/* ============================================================
   🔒 FULLY SCOPED — .astro-about-section prefix on every rule
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

.astro-about-section *,
.astro-about-section *::before,
.astro-about-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ══════════════════════════════════
   SECTION
══════════════════════════════════ */
.astro-about-section {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fefcf7 0%, #fdf4e3 40%, #fef0d4 70%, #fdf6e8 100%);
    padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 60px);
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* ── decorative background orbs ── */
.astro-about-section::before {
    content: '';
    position: absolute;
    width: clamp(300px, 40vw, 600px);
    height: clamp(300px, 40vw, 600px);
    background: radial-gradient(circle, rgba(255, 140, 0, 0.08), transparent 70%);
    top: -10%;
    left: -10%;
    border-radius: 50%;
    pointer-events: none;
}

.astro-about-section::after {
    content: '';
    position: absolute;
    width: clamp(200px, 30vw, 450px);
    height: clamp(200px, 30vw, 450px);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
    bottom: -5%;
    right: -5%;
    border-radius: 50%;
    pointer-events: none;
}

/* ── floating sparkle particles ── */
.astro-about-section .about-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(255, 200, 50, 0.4);
}
.astro-about-section .about-particle.ap1 { width:5px;height:5px; top:12%; left:8%;  animation: abtFloat 7s ease-in-out infinite; }
.astro-about-section .about-particle.ap2 { width:3px;height:3px; top:70%; left:5%;  animation: abtFloat 9s ease-in-out 2s infinite reverse; }
.astro-about-section .about-particle.ap3 { width:4px;height:4px; top:30%; right:6%; animation: abtFloat 8s ease-in-out 1s infinite; }
.astro-about-section .about-particle.ap4 { width:3px;height:3px; bottom:20%; right:12%;animation:abtFloat 6s ease-in-out 3s infinite reverse; }
.astro-about-section .about-particle.ap5 { width:6px;height:6px; top:55%; left:48%; animation: abtFloat 10s ease-in-out 4s infinite; }

/* ── horizontal divider line (top) ── */
.astro-about-section .about-top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff8c00, #ffd700, #ff8c00, transparent);
    animation: abtShimmerBar 4s ease infinite;
}

/* ══════════════════════════════════
   EYEBROW LABEL
══════════════════════════════════ */
.astro-about-section .about-eyebrow {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
    animation: abtFadeUp 0.6s ease both;
}
.astro-about-section .about-eyebrow-line {
    height: 1px;
    width: 50px;
    background: linear-gradient(90deg, transparent, #ff8c00);
}
.astro-about-section .about-eyebrow-line.right {
    background: linear-gradient(90deg, #ff8c00, transparent);
}
.astro-about-section .about-eyebrow span {
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c4780a;
}

/* ══════════════════════════════════
   CONTAINER
══════════════════════════════════ */
.astro-about-section .astro-about-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
    position: relative;
    z-index: 2;
}

/* ══════════════════════════════════
   IMAGE SIDE
══════════════════════════════════ */
.astro-about-section .astro-about-image {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    animation: abtFadeLeft 0.8s ease 0.1s both;
}

/* wrapper */
.astro-about-section .astro-img-wrapper {
    position: relative;
    width: clamp(260px, 32vw, 420px);
    height: clamp(260px, 32vw, 420px);
    animation: abtImgFloat 6s ease-in-out infinite;
}

/* spinning conic aura */
.astro-about-section .astro-img-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: conic-gradient(#ffd700, #ff8c00, #ffaa00, #ff4500, #ff8c00, #ffd700);
    animation: abtRotate 10s linear infinite;
    filter: blur(4px);
    opacity: 0.85;
}

/* second pulsing ring */
.astro-about-section .astro-img-wrapper::after {
    content: '';
    position: absolute;
    inset: -22px;
    border-radius: 50%;
    border: 1.5px dashed rgba(255, 140, 0, 0.3);
    animation: abtRotateRev 18s linear infinite;
}

/* actual image */
.astro-about-section .astro-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.astro-about-section .astro-img-wrapper:hover img {
    transform: scale(1.06) rotate(2deg);
    box-shadow: 0 28px 80px rgba(255,140,0,0.3);
}

/* decorative orange shape */
.astro-about-section .astro-orange-shape {
    position: absolute;
    width: clamp(120px, 14vw, 170px);
    height: 95%;
    background: linear-gradient(160deg, #ff8c00, #ffb347, #ffd700);
    border-radius: 120px;
    right: clamp(-50px, -5vw, -38px);
    top: 0;
    z-index: 1;
    opacity: 0.9;
    animation: abtGlowPulse 3s ease-in-out infinite;
}

/* badge on image */
.astro-about-section .about-img-badge {
    position: absolute;
    bottom: -12px;
    left: -12px;
    background: #fff;
    border: 2px solid rgba(255,140,0,0.2);
    border-radius: 16px;
    padding: 10px 16px;
    z-index: 5;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    animation: abtBadgeFloat 5s ease-in-out infinite;
    text-align: left;
    min-width: 130px;
}
.astro-about-section .about-img-badge .badge-num {
    font-size: 22px;
    font-weight: 800;
    color: #ff8c00;
    line-height: 1;
    font-family: 'Cinzel', serif;
}
.astro-about-section .about-img-badge .badge-lbl {
    font-size: 11px;
    color: #888;
    font-weight: 500;
    margin-top: 2px;
}

.astro-about-section .about-img-badge-right {
    position: absolute;
    top: -14px;
    right: -14px;
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    border-radius: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 6px 24px rgba(255,140,0,0.4);
    animation: abtBadgeFloat 4s ease-in-out 1s infinite;
}
.astro-about-section .about-img-badge-right .br-num {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-family: 'Cinzel', serif;
}
.astro-about-section .about-img-badge-right .br-lbl {
    font-size: 8px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    text-align: center;
    margin-top: 2px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* trust strip below image */
.astro-about-section .astro-image-trust {
    font-size: clamp(13px, 1.3vw, 16px);
    font-weight: 600;
    color: #555;
    line-height: 1.8;
    text-align: center;
    padding: 14px 22px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    border: 1px solid rgba(255,140,0,0.12);
    animation: abtFadeUp 0.8s ease 0.4s both;
}

/* ══════════════════════════════════
   CONTENT SIDE
══════════════════════════════════ */
.astro-about-section .astro-about-content {
    flex: 1;
    animation: abtFadeRight 0.8s ease 0.2s both;
}

/* heading */
.astro-about-section .astro-about-content h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(22px, 3.2vw, 42px);
    line-height: 1.25;
    color: #1a1a2e;
    margin-bottom: 18px;
}
.astro-about-section .astro-about-content h2 span {
    background: linear-gradient(45deg, #ff8c00, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200%;
    animation: abtShimmerText 4s ease infinite;
}

/* desc */
.astro-about-section .astro-about-desc {
    font-size: clamp(14px, 1.3vw, 17px);
    color: #5a5a6e;
    line-height: 1.8;
    margin-bottom: 24px;
    padding-left: 14px;
    border-left: 3px solid rgba(255,140,0,0.4);
}

/* ── divider ── */
.astro-about-section .about-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255,140,0,0.3), rgba(255,215,0,0.2), transparent);
    margin: 20px 0;
}

/* points */
.astro-about-section .astro-points {
    list-style: none;
    margin-bottom: 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.astro-about-section .astro-points li {
    font-size: clamp(13px, 1.1vw, 15px);
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(255,140,0,0.1);
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: default;
    font-weight: 500;
}

.astro-about-section .astro-points li:hover {
    transform: translateX(5px) translateY(-2px);
    border-color: rgba(255,140,0,0.35);
    box-shadow: 0 8px 24px rgba(255,140,0,0.12);
}

.astro-about-section .astro-points li .pt-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* trust badges */
.astro-about-section .astro-about-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.astro-about-section .astro-about-trust div {
    background: #fff;
    padding: 9px 16px;
    border-radius: 50px;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;
    color: #333;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    border: 1px solid rgba(255,140,0,0.12);
    transition: all 0.3s ease;
    cursor: default;
}

.astro-about-section .astro-about-trust div:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 30px rgba(255,140,0,0.18);
    border-color: rgba(255,140,0,0.35);
}

/* rating row */
.astro-about-section .about-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 28px;
}
.astro-about-section .about-stars {
    display: flex;
    gap: 2px;
}
.astro-about-section .about-stars span {
    font-size: 18px;
    animation: abtStarPop 0.4s ease both;
}
.astro-about-section .about-stars span:nth-child(1){animation-delay:0.1s;}
.astro-about-section .about-stars span:nth-child(2){animation-delay:0.2s;}
.astro-about-section .about-stars span:nth-child(3){animation-delay:0.3s;}
.astro-about-section .about-stars span:nth-child(4){animation-delay:0.4s;}
.astro-about-section .about-stars span:nth-child(5){animation-delay:0.5s;}
.astro-about-section .about-rating-text {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}
.astro-about-section .about-rating-text strong {
    color: #333;
}

/* CTA */
.astro-about-section .astro-about-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.astro-about-section .astro-about-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(45deg, #ff8c00, #ffd700);
    color: #1a0a00;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(255,140,0,0.35);
    animation: abtPulse 2.5s ease-in-out infinite;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(13px, 1.2vw, 15px);
    position: relative;
    overflow: hidden;
}

.astro-about-section .astro-about-btn::before {
    content: '';
    position: absolute;
    width: 200%; height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    top: -100%; left: -100%;
    transition: 0.6s;
}

.astro-about-section .astro-about-btn:hover::before {
    top: 100%; left: 100%;
}

.astro-about-section .astro-about-btn:hover {
    transform: scale(1.06) translateY(-3px);
    box-shadow: 0 14px 40px rgba(255,140,0,0.5);
}

.astro-about-section .astro-about-btn small {
    font-size: clamp(11px, 0.9vw, 12px);
    opacity: 0.75;
    font-weight: 400;
}

.astro-about-section .astro-about-link {
    color: #ff8c00;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(13px, 1.1vw, 15px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    border: 1.5px solid rgba(255,140,0,0.35);
    border-radius: 50px;
}

.astro-about-section .astro-about-link:hover {
    background: rgba(255,140,0,0.06);
    border-color: rgba(255,140,0,0.7);
    transform: translateX(4px);
}

/* ══════════════════════════════════
   ANIMATED COUNTER STRIP (bonus)
══════════════════════════════════ */
.astro-about-section .about-mini-stats {
    display: flex;
    gap: 0;
    margin-bottom: 26px;
    border: 1px solid rgba(255,140,0,0.12);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.astro-about-section .about-mini-stat {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    border-right: 1px solid rgba(255,140,0,0.1);
    transition: background 0.3s ease;
}

.astro-about-section .about-mini-stat:last-child {
    border-right: none;
}

.astro-about-section .about-mini-stat:hover {
    background: rgba(255,140,0,0.04);
}

.astro-about-section .about-mini-stat .ms-num {
    font-family: 'Cinzel', serif;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 900;
    color: #ff8c00;
    line-height: 1;
}

.astro-about-section .about-mini-stat .ms-lbl {
    font-size: 11px;
    color: #999;
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ══════════════════════════════════
   KEYFRAMES  (abt- prefixed)
══════════════════════════════════ */
@keyframes abtRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes abtRotateRev {
    from { transform: rotate(360deg); }
    to   { transform: rotate(0deg); }
}
@keyframes abtImgFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}
@keyframes abtGlowPulse {
    0%, 100% { opacity: 0.8; }
    50%       { opacity: 1; }
}
@keyframes abtPulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,140,0,0.5); }
    70%  { box-shadow: 0 0 0 16px rgba(255,140,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,140,0,0); }
}
@keyframes abtFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes abtFadeLeft {
    from { opacity: 0; transform: translateX(-36px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes abtFadeRight {
    from { opacity: 0; transform: translateX(36px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes abtShimmerText {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes abtShimmerBar {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes abtFloat {
    0%, 100% { transform: translateY(0) scale(1);   opacity: 0.4; }
    50%       { transform: translateY(-20px) scale(1.4); opacity: 1; }
}
@keyframes abtBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}
@keyframes abtStarPop {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
    .astro-about-section .astro-about-container {
        flex-direction: column;
        text-align: center;
    }
    .astro-about-section .astro-about-desc {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid rgba(255,140,0,0.3);
        padding-top: 12px;
    }
    .astro-about-section .astro-points {
        grid-template-columns: 1fr;
    }
    .astro-about-section .astro-about-trust,
    .astro-about-section .astro-about-actions,
    .astro-about-section .about-rating-row {
        justify-content: center;
    }
    .astro-about-section .astro-img-wrapper {
        width: clamp(220px, 60vw, 300px);
        height: clamp(220px, 60vw, 300px);
    }
    .astro-about-section .astro-orange-shape {
        height: 90%;
    }
}

@media (max-width: 480px) {
    .astro-about-section .about-mini-stats {
        flex-wrap: wrap;
    }
    .astro-about-section .about-mini-stat {
        flex: 1 0 45%;
    }
    .astro-about-section .astro-about-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .astro-about-section .astro-about-btn,
    .astro-about-section .astro-about-link {
        justify-content: center;
    }
}