* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    font-family: 'Cairo', 'Tajawal', sans-serif;
    background-color: #F3E6D8;
    color: #0f172a;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.mobile-container {
    width: 100%;
    max-width: 430px; /* Mobile Viewport Width */
    min-height: 100vh;
    min-height: 100dvh;
    background-color: #F3E6D8;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    background-color: #0b0416;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* ======================================================
   TOP MARQUEE BAR (#E7CFB2) - 100% GAPLESS SEAMLESS LOOP
   ====================================================== */
.nitrogen-marquee-bar {
    position: relative;
    width: 100%;
    padding: 3px 0;
    overflow: hidden;
    white-space: nowrap;
    background-color: #F3E6D8;
    z-index: 10;
    display: flex;
}

.nitrogen-marquee-bar::before,
.nitrogen-marquee-bar::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px; /* Border thickness */
    background: linear-gradient(
        110deg,
        #99681f 0%,
        #66410c 40%,
        #fce38a 50%,
        #66410c 60%,
        #99681f 100%
    );
    background-size: 200% auto;
    animation: waveShine 4s linear infinite;
    z-index: 15;
}

.nitrogen-marquee-bar::before {
    top: 0;
}

.nitrogen-marquee-bar::after {
    bottom: 0;
}

.nitrogen-marquee-content {
    display: flex;
    width: max-content;
    animation: marqueeContinuous 16s linear infinite;
    will-change: transform;
}

.nitrogen-track {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 16px;
    font-size: 0.65rem;
    font-weight: 800;
    color: #2c1f0d;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

@keyframes marqueeContinuous {
    0% { transform: translateX(0%); }
    100% { transform: translateX(50%); }
}

.nitrogen-sparkle {
    font-size: 0.64rem;
    color: #8c6834;
    margin: 0 1px;
}

/* ======================================================
   EXACT SOFT CELESTIAL PORTAL BACKGROUND & LIGHT OVERLAY
   ====================================================== */
.main-content {
    flex: 1;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.sacred-portal-bg {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 1250px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

/* Ensure all text and content sit above the overlay */
.content-wrapper {
    position: relative;
    z-index: 2;
    padding: 0;
    flex: 1;
    min-height: 1250px;
    background: transparent;
}

.top-hero-section {
    background: transparent;
    margin: 0;
    padding: 25px 20px 30px 20px; /* Added 30px space at the bottom */
    box-shadow: none;
}

.top-hero-section .title-white {
    color: #2c1f0d; /* Dark text for beige background */
    filter: none;
}

/* ======================================================
   GRAND HEADLINE TITLE (ANIMATED GOLD WAVE)
   ====================================================== */
.main-hero-title {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.45;
    font-weight: 800;
    margin: 12px 0 20px 0;
    font-family: 'Noto Naskh Arabic', serif;
}

.title-white {
    color: #2c1f0d; /* Dark text on white background */
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
    filter: none;
}

.title-gold {
    display: block;
    margin-top: 2px;
}

/* EXACT CSS ANIMATION FROM BIOND LIMIT / SAFIA COACH LANDING PAGES */
@-webkit-keyframes waveShine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes waveShine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ANIMATED GOLD WAVE CLASS (ONLY FOR THE TWO SPECIFIED TITLES) */

.gold-animated-wave {
    background: linear-gradient(
        110deg,
        #99681f 0%,
        #66410c 40%,
        #fce38a 50%,
        #66410c 60%,
        #99681f 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -0.2px;
    -webkit-animation: waveShine 4s linear infinite;
    animation: waveShine 4s linear infinite;
    display: inline-block;
}

/* ======================================================
   MINIMALIST LUXURY GOLD CARD (ANIMATED GOLD BORDER)
   ====================================================== */
.selkie-gold-card {
    position: relative;
    width: 85%;
    margin: 22px auto 25px auto;
    padding: 5.5px;
    background: linear-gradient(
        110deg,
        #99681f 0%,
        #66410c 40%,
        #fce38a 50%,
        #66410c 60%,
        #99681f 100%
    );
    background-size: 200% auto;
    border-radius: 26px;
    box-shadow: 0 16px 38px rgba(122, 80, 18, 0.22);
    -webkit-animation: waveShine 8s linear infinite;
    animation: waveShine 8s linear infinite;
}

.small-photo-card {
    width: 45% !important;
    margin: 40px auto 40px auto !important; /* Ensure it stays perfectly centered */
}

.card-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
}

.full-width-frameless-photo {
    width: 100%; /* Respects the 20px padding of the parent content-wrapper */
    margin: 20px auto 30px auto;
    display: block;
    height: auto;
    border-radius: 22px;
    box-shadow: none;
    border: none;
}

/* ======================================================
   ULTRA-TRANSPARENT GLASS PARAGRAPH CARD & RICH TEXT
   ====================================================== */
.glass-paragraph-card {
    position: relative;
    width: 65%;
    max-width: 500px;
    margin: 22px auto 35px auto;
    padding: 18px 14px;
    background: rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.05),
        inset 0 0 20px rgba(255, 255, 255, 0.6);
    text-align: center;
}

.text-block {
    margin-bottom: 8px;
}

.block-question {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.5;
    font-family: 'Noto Naskh Arabic', serif;
}

.block-subheading {
    font-size: 0.9rem;
    font-weight: 800;
    color: #2c1f0d; /* Dark text */
    margin-bottom: 8px;
    text-shadow: none;
    font-family: 'Noto Naskh Arabic', serif;
}

.text-p {
    font-size: 0.72rem;
    line-height: 1.85;
    font-weight: 700;
    color: #2c1f0d; /* Dark text */
    margin-bottom: 8px;
    text-shadow: none;
    font-family: 'Tajawal', sans-serif;
}

.text-p-bold {
    font-size: 0.75rem;
    line-height: 1.85;
    font-weight: 800;
    color: #2c1f0d; /* Dark text */
    margin-bottom: 8px;
    text-shadow: none;
    font-family: 'Tajawal', sans-serif;
}

.sacred-headline {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 5px;
    font-family: 'Noto Naskh Arabic', serif;
}

.sacred-subline {
    font-size: 0.75rem;
    font-weight: 800;
    color: #2c1f0d; /* Dark text */
    margin-bottom: 5px;
    text-shadow: none;
    font-family: 'Tajawal', sans-serif;
}

.text-white-inline {
    color: #2c1f0d !important;
    font-weight: 800 !important;
    text-shadow: none !important;
    -webkit-text-fill-color: #2c1f0d !important;
}

.sacred-note {
    font-size: 0.86rem;
    font-weight: 700;
    color: #4a3b2c; /* Dark text Note */
    font-style: italic;
    text-shadow: none;
}

.text-p-final {
    font-size: 1.08rem;
    line-height: 1.85;
    font-weight: 800;
    color: #2c1f0d; /* Dark text */
    text-shadow: none;
}

/* RADIANT CLEAR LUXURY GOLD FOR SMALL PARAGRAPH KEYWORDS */
.gold-static-text,
.gold-luxury-text {
    background: none !important;
    color: #b38533 !important; /* Rich Solid Gold */
    -webkit-text-fill-color: initial !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    font-weight: 800 !important;
    letter-spacing: -0.2px;
    animation: none !important;
    -webkit-animation: none !important;
    display: inline-block !important;
    text-shadow: none !important;
}

/* 3D Gold Divider Lines */
.divider-3d-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 25px auto;
    width: 55%; /* Elegant width */
}

.divider-line {
    flex: 1;
    height: 1px; /* Thinner, more refined line */
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(179, 133, 51, 0.3) 25%, 
        #b38533 50%, 
        rgba(179, 133, 51, 0.3) 75%, 
        transparent 100%);
    box-shadow: 0 0 6px rgba(179, 133, 51, 0.4); /* Soft glow matching the new color */
}

.divider-emblem {
    font-size: 1.2rem; /* Perfect size for ✦ */
    font-family: inherit;
    font-weight: 400;
    color: #b38533; /* Rich Solid Gold */
    text-shadow: 0 0 8px rgba(179, 133, 51, 0.5); /* Matching glow */
    line-height: 0;
    margin: 0 12px;
    margin-top: -1px; 
    
    /* Reset background and clip */
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
}
/* ======================================================
   ULTRA PREMIUM AURA CAROUSEL (TRANSPARENT BACKGROUND)
   ====================================================== */
.luxury-carousel-container {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    padding: 20px 7.5% 50px 7.5%;
    gap: 15px;
    margin-top: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    direction: rtl;
}

.luxury-carousel-container::-webkit-scrollbar {
    display: none;
}

.luxury-point-card {
    scroll-snap-align: center;
    flex: 0 0 85%; /* Card takes up 85% width, sides peek out */
    position: relative;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center; /* Centered content */
    gap: 15px;
    border-radius: 20px;
    z-index: 1;
    /* Soft transparent glass to show the background more clearly */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, box-shadow 0.4s ease;
}

.luxury-point-card.activeCard {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
    box-shadow: 0 20px 45px rgba(163, 128, 89, 0.25);
}

.luxury-point-card.inactiveCard {
    transform: scale(0.9);
    opacity: 0.5;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* The Animated Golden Aura Border using CSS Masking */
.luxury-point-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(60deg, rgba(138, 98, 29, 0.3) 0%, #b88538 25%, #fce38a 50%, #b88538 75%, rgba(138, 98, 29, 0.3) 100%);
    background-size: 300% 300%;
    animation: shimmerAura 6s ease-in-out infinite alternate;
    border-radius: 20px;
    z-index: -2;
    padding: 2px; /* Border thickness */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes shimmerAura {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* A soft radial glow inside the card on the right side */
.card-glow-overlay {
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 100%;
    background: radial-gradient(circle at right center, rgba(255, 255, 255, 0.6), transparent 70%);
    z-index: 0;
    pointer-events: none;
    border-radius: 20px;
}

.card-number-lux {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px #b88538; /* Darker gold stroke for light background */
    background: linear-gradient(135deg, #b88538 0%, #fce38a 100%);
    -webkit-background-clip: text;
    z-index: 2;
    font-family: 'Times New Roman', Times, serif; /* Classic luxury serif */
    position: relative;
    width: 55px;
    text-align: center;
    flex-shrink: 0;
    filter: drop-shadow(0 3px 5px rgba(184, 133, 56, 0.2));
}

/* Adding a tiny elegant vertical divider between number and text */
.card-divider-lux {
    width: 1.5px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(184, 133, 56, 0.5), transparent);
    z-index: 2;
    flex-shrink: 0;
}

.card-text-lux {
    color: #ffffff; /* User requested white text */
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 700;
    text-shadow: 0 1.5px 3px rgba(38, 27, 12, 0.65);
    margin: 0;
    z-index: 2;
    position: relative;
    text-align: center; /* Center the text since numbers are removed */
    flex: 1;
}

.gold-highlight-lux {
    color: #8c6834; /* Darker brown/gold for contrast */
    font-weight: 800;
    text-shadow: none;
}

/* ======================================================
   ICON FEATURE LIST (LIKE SCREENSHOT)
   ====================================================== */
.features-list-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    gap: 35px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ======================================================
   TOP HERO SECTION WITH BEIGE BACKGROUND (#F3E6D8)
   ====================================================== */
.top-hero-section {
    position: relative;
    width: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 25px 20px 30px 20px; /* Added 30px space at the bottom */
    margin: 0;
}

.feature-icon-box {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8c6834;
    box-shadow: -5px -5px 12px rgba(255, 255, 255, 0.9), 5px 5px 15px rgba(184, 133, 56, 0.15);
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(184, 133, 56, 0.2));
    position: relative;
    overflow: hidden;
}

.feature-icon-box::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, transparent 50%, #fce38a 75%, #b38533 100%);
    animation: spinGoldBorder 3s linear infinite;
    z-index: 0;
}

.feature-icon-box::after {
    content: "";
    position: absolute;
    inset: 1.5px;
    background: linear-gradient(135deg, #ffffff 0%, #f7f2eb 100%);
    border-radius: 14.5px;
    box-shadow: inset 1px 1px 3px rgba(255, 255, 255, 1), inset -1px -1px 3px rgba(184, 133, 56, 0.05);
    z-index: 1;
}

@keyframes spinGoldBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-icon-box svg {
    position: relative;
    z-index: 2;
    width: 26px;
    height: 26px;
}

.feature-title {
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0 0 6px 0;
    letter-spacing: -0.2px;
    background: linear-gradient(110deg, #99681f 0%, #66410c 40%, #fce38a 50%, #66410c 60%, #99681f 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: waveShine 4s linear infinite;
    animation: waveShine 4s linear infinite;
}

.feature-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #2c1f0d; /* Dark text */
    font-weight: 700;
    max-width: 95%;
    margin: 0;
    text-shadow: none;
}
/* ABOUT AUTHOR SECTION */
.about-author-section {
    background-color: #F3E6D8;
    padding: 60px 0 0 0; /* Removed side padding, removed bottom padding to flow into bio */
    width: 100%;
    text-align: center;
}

/* LUXURY AUTHOR BIO (IVORY & GOLD GLASS) */
.luxury-author-bio-container {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 35px 20px;
    margin: 25px auto 40px auto;
    width: 92%;
    position: relative;
    z-index: 10;
    text-align: center;
}

.luxury-author-bio-container::before {
    content: "❝";
    display: block;
    font-size: 60px;
    color: #d4af37;
    font-family: Georgia, serif;
    line-height: 0.5;
    margin-bottom: 25px;
    opacity: 0.6;
}

.luxury-author-bio-container::after {
    content: "❞";
    display: block;
    font-size: 60px;
    color: #d4af37;
    font-family: Georgia, serif;
    line-height: 0.5;
    margin-top: 20px;
    opacity: 0.6;
}

.bio-p {
    color: #2c1f0d;
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Tajawal', sans-serif;
    font-weight: 600;
    text-shadow: none;
    position: relative;
    z-index: 2;
}

.bio-highlight {
    color: #a37217;
    font-weight: 800;
}

.bio-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 30px auto;
}

.bio-path-list {
    margin: 35px auto;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bio-path-item {
    color: #2c1f0d;
    font-size: 0.8rem;
    font-family: 'Tajawal', sans-serif;
    font-weight: 800;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.5);
    width: 95%;
    max-width: 340px;
    white-space: normal;
    line-height: 1.6;
}

.bio-path-item:last-child {
    border-bottom: none;
}

.bio-signature {
    font-family: 'Noto Naskh Arabic', serif;
    font-size: 1.8rem;
    margin-top: 40px;
    font-weight: 800;
    background: linear-gradient(110deg, #99681f 0%, #d4af37 50%, #99681f 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waveShine 4s linear infinite;
    position: relative;
    z-index: 2;
}

/* LONG BACKGROUND SECTION */
.long-background-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    background-image: url('Picture/long_middle_bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: top center;
}

.long-background-image {
    display: none;
}

.long-background-content {
    position: relative;
    width: 100%;
    z-index: 1;
}



/* Revert the glass card inside to the pure glass look */
.long-background-section .glass-paragraph-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    padding: 30px 20px;
    width: 92%;
    margin: 22px auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2; /* Keep above the background */
}


/* 8 GATES STYLES */
.solid-bg-section {
    background-color: #0A0A0A;
    position: relative;
    width: 100%;
}

.gates-section-white {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    position: relative;
    margin-left: -20px;
    margin-right: -20px;
    padding: 40px 20px;
}

.gates-intro-dark {
    text-align: center;
    color: #1a1a1a;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    padding: 0 15px;
    font-weight: 600;
}

.title-dark {
    color: #1a1a1a;
    font-weight: 800;
}

.gates-container {
    padding: 0 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gates-intro {
    text-align: center;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    padding: 0 15px;
    font-weight: 600;
}

.gate-card {
    margin-bottom: 20px;
}

.gate-image-container {
    padding: 0;
}

.gate-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.gate-content {
    padding: 10px 20px 25px 20px;
    text-align: center;
}

.gate-title {
    color: #fce38a;
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0 0 12px 0;
}

.gate-desc {
    color: #f8fafc; /* Crisp white */
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 15px 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.gate-quran {
    color: #b38533;
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0;
    text-align: center;
}

.gates-images-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin-bottom: 40px;
    margin-top: 20px;
    width: 100%;
}
.gates-images-stack img {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* Gate Image Card Overlay Styles */
.gate-image-card {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, z-index 0.4s ease;
    z-index: 1;
}
.gate-image-card:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
    z-index: 10;
}
.gate-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.gate-overlay-box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    text-align: center;
}
.overlay-left {
    left: 12%;
    width: 38%;
}
.overlay-right {
    right: 12%;
    width: 38%;
}
.gate-overlay-title {
    font-size: 0.8rem;
    margin-bottom: 5px;
    font-weight: bold;
}
.gate-overlay-title .title-dark {
    color: #1a1a1a;
}
.gate-overlay-ayah {
    font-family: 'Amiri', serif;
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 480px) {
    .gate-overlay-box {
        padding: 5px;
    }
    .gate-overlay-title {
        font-size: 0.7rem;
        margin-bottom: 3px;
    }
    .gate-overlay-ayah {
        font-size: 0.85rem;
    }
}

.gate-overlay-phrase {
    font-family: 'Amiri', serif;
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 480px) {
    .gate-overlay-phrase {
        font-size: 0.85rem;
    }
}

.glass-overlay-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 15px;
}

/* ======================================================
   TECHNIQUES SECTION (GLASS LIST CARDS)
   ====================================================== */
.techniques-section {
    position: relative;
    width: 100%;
    padding: 30px 20px 60px 20px;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.techniques-glass-container {
    background: rgba(245, 237, 227, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    padding: 30px 20px;
    width: 95%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06), inset 0 0 20px rgba(255, 255, 255, 0.4);
}

.techniques-title {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 800;
    color: #2c1f0d;
    margin-bottom: 25px;
    font-family: 'Noto Naskh Arabic', serif;
}

.technique-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 16px 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.technique-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(184, 133, 56, 0.15);
    background: rgba(255, 255, 255, 1);
}

.technique-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2c1f0d;
    line-height: 1.6;
    font-family: 'Tajawal', sans-serif;
    text-align: right;
    flex: 1;
    margin-left: 0;
    margin-right: 15px;
}

.technique-icon-wrapper {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(184, 133, 56, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(247, 242, 235, 0.4);
    transition: all 0.3s ease;
}

.technique-card:hover .technique-icon-wrapper {
    background: #b88538;
    border-color: #b88538;
}

.technique-card:hover .technique-icon-wrapper svg {
    stroke: #ffffff;
}

.technique-icon-wrapper svg {
    width: 14px;
    height: 14px;
    stroke: #8c6834;
    stroke-width: 1.5;
    fill: none;
    transition: all 0.3s ease;
}


/* ======================================================
   TESTIMONIALS SECTION (AUDIO CARDS)
   ====================================================== */
.testimonials-section {
    padding: 50px 20px 40px 20px;
    position: relative;
    z-index: 2;
}

.testimonials-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Noto Naskh Arabic', serif;
}

.highlight-brown {
    color: #8c6834;
}

.testimonials-subtitle {
    text-align: center;
    color: #2c1f0d;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.7;
    font-family: 'Tajawal', sans-serif;
}

.audio-cards-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.audio-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04), inset 0 0 15px rgba(255, 255, 255, 0.5);
    padding: 12px 15px 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audio-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.8);
}

.audio-play-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #99681f);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(153, 104, 31, 0.3);
    transition: all 0.3s ease;
}

.audio-card:hover .audio-play-btn {
    transform: scale(1.05);
}

.audio-play-btn svg {
    width: 20px;
    height: 20px;
    margin-right: -2px; /* optical center for play icon */
}

.audio-play-btn .pause-icon {
    margin-right: 0;
}

.audio-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.audio-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1.5px solid rgba(184, 133, 56, 0.15);
    padding-bottom: 6px;
    margin-bottom: 2px;
    gap: 10px;
}

.audio-title {
    font-weight: 800;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-family: 'Tajawal', sans-serif;
    white-space: nowrap;
}

.audio-action {
    color: #99681f;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'Tajawal', sans-serif;
    white-space: nowrap;
}

/* Fake Waveform */
.audio-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    height: 18px;
    flex: 1;
    min-width: 60px;
    padding: 0 10px;
}

.audio-waveform .bar {
    width: 2px;
    background-color: rgba(184, 133, 56, 0.3);
    border-radius: 2px;
    height: 4px; /* base height */
    transition: all 0.2s ease;
}

/* Static heights for the bars */
.audio-waveform .bar:nth-child(1) { height: 4px; }
.audio-waveform .bar:nth-child(2) { height: 8px; }
.audio-waveform .bar:nth-child(3) { height: 14px; }
.audio-waveform .bar:nth-child(4) { height: 10px; }
.audio-waveform .bar:nth-child(5) { height: 16px; }
.audio-waveform .bar:nth-child(6) { height: 6px; }
.audio-waveform .bar:nth-child(7) { height: 12px; }
.audio-waveform .bar:nth-child(8) { height: 18px; }
.audio-waveform .bar:nth-child(9) { height: 8px; }
.audio-waveform .bar:nth-child(10) { height: 14px; }
.audio-waveform .bar:nth-child(11) { height: 6px; }
.audio-waveform .bar:nth-child(12) { height: 10px; }

/* Playing Animation */
@keyframes sound {
    0% { height: 4px; opacity: 0.8; }
    100% { height: 18px; opacity: 1; }
}

.audio-card.playing .audio-waveform .bar {
    background-color: #c79a4a;
}

.audio-card.playing .audio-waveform .bar:nth-child(1) { animation: sound 400ms -800ms linear infinite alternate; }
.audio-card.playing .audio-waveform .bar:nth-child(2) { animation: sound 400ms -600ms linear infinite alternate; }
.audio-card.playing .audio-waveform .bar:nth-child(3) { animation: sound 400ms -400ms linear infinite alternate; }
.audio-card.playing .audio-waveform .bar:nth-child(4) { animation: sound 400ms -200ms linear infinite alternate; }
.audio-card.playing .audio-waveform .bar:nth-child(5) { animation: sound 400ms -100ms linear infinite alternate; }
.audio-card.playing .audio-waveform .bar:nth-child(6) { animation: sound 400ms -300ms linear infinite alternate; }
.audio-card.playing .audio-waveform .bar:nth-child(7) { animation: sound 400ms -500ms linear infinite alternate; }
.audio-card.playing .audio-waveform .bar:nth-child(8) { animation: sound 400ms -700ms linear infinite alternate; }
.audio-card.playing .audio-waveform .bar:nth-child(9) { animation: sound 400ms -900ms linear infinite alternate; }
.audio-card.playing .audio-waveform .bar:nth-child(10) { animation: sound 400ms -250ms linear infinite alternate; }
.audio-card.playing .audio-waveform .bar:nth-child(11) { animation: sound 400ms -450ms linear infinite alternate; }
.audio-card.playing .audio-waveform .bar:nth-child(12) { animation: sound 400ms -150ms linear infinite alternate; }



/* ======================================================
   PREMIUM MINI AUDIO GRID
   ====================================================== */
.premium-mini-audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.mini-audio-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(243, 230, 216, 0.5) 50%, rgba(212, 175, 55, 0.15) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(138, 98, 29, 0.08), inset 0 0 15px rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
}

.mini-audio-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.mini-audio-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(138, 98, 29, 0.12), inset 0 0 20px rgba(255,255,255,0.6);
    border-color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(243, 230, 216, 0.6) 50%, rgba(212, 175, 55, 0.25) 100%);
}

.mini-play-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8d089, #b88538);
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(184, 133, 56, 0.3);
}

.mini-audio-card:hover .mini-play-btn {
    background: linear-gradient(135deg, #fce38a, #d4af37);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 15px rgba(184, 133, 56, 0.5);
}

.mini-play-btn svg {
    width: 16px;
    height: 16px;
    fill: #ffffff !important;
}

.mini-play-btn .play-icon {
    margin-right: -2px; /* optical center */
}
.mini-play-btn .pause-icon {
    margin-right: 0;
}

.mini-audio-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.mini-audio-title {
    color: #2c1f0d;
    font-size: 0.9rem;
    font-weight: 800;
    font-family: 'Tajawal', sans-serif;
    letter-spacing: 0px;
}

.mini-audio-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.mini-waveform {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 12px;
    flex: 1;
}

.mini-waveform .bar {
    width: 2px;
    background-color: rgba(184, 133, 56, 0.4);
    border-radius: 2px;
    height: 3px;
    transition: all 0.2s ease;
}

.mini-waveform .bar:nth-child(even) { height: 6px; }
.mini-waveform .bar:nth-child(3n) { height: 9px; }
.mini-waveform .bar:nth-child(1) { height: 4px; }
.mini-waveform .bar:nth-child(8) { height: 4px; }

.mini-audio-card.playing .mini-waveform .bar {
    background-color: #b88538;
    box-shadow: 0 0 5px rgba(184, 133, 56, 0.4);
}

.mini-audio-card.playing .mini-waveform .bar:nth-child(1) { animation: soundMini 400ms -800ms linear infinite alternate; }
.mini-audio-card.playing .mini-waveform .bar:nth-child(2) { animation: soundMini 400ms -600ms linear infinite alternate; }
.mini-audio-card.playing .mini-waveform .bar:nth-child(3) { animation: soundMini 400ms -400ms linear infinite alternate; }
.mini-audio-card.playing .mini-waveform .bar:nth-child(4) { animation: soundMini 400ms -200ms linear infinite alternate; }
.mini-audio-card.playing .mini-waveform .bar:nth-child(5) { animation: soundMini 400ms -100ms linear infinite alternate; }
.mini-audio-card.playing .mini-waveform .bar:nth-child(6) { animation: soundMini 400ms -300ms linear infinite alternate; }
.mini-audio-card.playing .mini-waveform .bar:nth-child(7) { animation: soundMini 400ms -500ms linear infinite alternate; }
.mini-audio-card.playing .mini-waveform .bar:nth-child(8) { animation: soundMini 400ms -700ms linear infinite alternate; }

@keyframes soundMini {
    0% { height: 3px; opacity: 0.7; }
    100% { height: 12px; opacity: 1; }
}

.mini-audio-duration {
    color: rgba(212, 175, 55, 0.8);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Tajawal', sans-serif;
    white-space: nowrap;
}


/* ======================================================
   CUSTOM AUDIO SLIDERS
   ====================================================== */
.mini-audio-controls-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.custom-seek-slider {
    flex: 1;
    -webkit-appearance: none;
    height: 4px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}
.custom-seek-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #d4af37;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
    transition: transform 0.1s;
}
.custom-seek-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}
.volume-container {
    display: flex;
    align-items: center;
    gap: 6px;
}
.vol-icon {
    width: 16px;
    height: 16px;
    fill: #d4af37;
}
.custom-vol-slider {
    width: 50px;
    -webkit-appearance: none;
    height: 4px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}
.custom-vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    background: #d4af37;
    border-radius: 50%;
    cursor: pointer;
}
.mini-audio-time {
    font-size: 0.75rem;
    color: rgba(44, 31, 13, 0.9);
    font-weight: 700;
    font-family: "Tajawal", sans-serif;
}


/* Elegant Seek Slider under Waveform */
.elegant-seek-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 3px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    margin-top: 4px;
}
.elegant-seek-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(212, 175, 55, 0.6);
    transition: transform 0.1s;
}
.elegant-seek-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}




/* --- Premium Pricing Card --- */
.premium-pricing-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
    perspective: 1000px;
}





/* Decorative Gold Ornaments */





/* --- Support Section --- */
.support-section {
    padding: 40px 20px;
    background: transparent;
}





/* --- Agents Section --- */
.agents-section {
    padding: 40px 20px;
    max-width: 480px; /* Same as FAQ */
    margin: 0 auto;
    text-align: center;
}
.agents-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 800;
}
.agents-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
}
.agents-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.agent-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid #d4af37; /* Encadrer bel gold */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content */
    gap: 15px;
}
.agent-badge {
    background: #fdf9f1;
    color: #aa7c11;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}
.agent-country-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
}
.agent-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #d4af37, #aa7c11); /* WhatsApp Green */
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 25px;
    width: 100%;
    max-width: 200px;
    transition: transform 0.2s, background 0.2s;
}
.agent-wa-btn:hover {
    background: linear-gradient(135deg, #e5c048, #bd8e22);
    transform: translateY(-2px);
    color: #000;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 60px 20px;
    background: transparent;
}
.faq-container {
    max-width: 480px;
    margin: 0 auto;
}
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}
.faq-title {
    font-size: 2.2rem;
    color: #333;
    font-weight: 800;
}
.faq-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 5px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.faq-item {
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
    padding: 15px 0;
    font-weight: 700;
    font-size: 0.95rem;
    color: #222;
    cursor: pointer;
    gap: 15px;
}
.faq-question span {
    flex-grow: 1;
    text-align: right;
}
.faq-toggle {
    background: #f6efe3;
    color: #b8860b;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
    font-weight: 300;
}
.faq-answer {
    padding: 0 0 15px 0;
    color: #555;
    line-height: 1.8;
    display: none;
    text-align: right;
    font-size: 0.9rem;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #b8860b;
    color: #fff;
}
@media (max-width: 768px) {
    .agents-title, .faq-title {
        font-size: 1.8rem;
    }
}

.faq-title .gold-text { color: #b8860b; }


/* --- REBUILT PRICING & SUPPORT DESIGN --- */
.premium-pricing-card, .support-card {
    position: relative;
    width: 92%;
    max-width: 480px;
    background: #fffdf9;
    border-radius: 35px;
    padding: 35px 20px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin: 5px auto;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

/* Badge */
.pricing-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e5c048, #c4962c);
    color: #111;
    font-weight: 900;
    font-size: 0.95rem;
    padding: 8px 20px;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(196, 150, 44, 0.25);
    z-index: 10;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Divider trick with ::after */
.pricing-original, .support-title {
    position: relative;
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}
.pricing-original::after, .support-title::after {
    content: "✦";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fffdf9;
    color: #d4af37;
    font-size: 1.5rem;
    padding: 0 15px;
    line-height: 1;
}

.pricing-original .pricing-label {
    display: block;
    color: #8b6420;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 5px;
}
.pricing-original .pricing-amount {
    display: block;
    color: #cca45c;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: line-through;
    text-decoration-color: rgba(204, 164, 92, 0.5);
}

.pricing-discounted {
    width: 100%;
}
.pricing-discounted .pricing-label {
    display: block;
    color: #111;
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 0px;
}
.pricing-amount-huge {
    color: #b38827;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.pricing-amount-huge .currency {
    font-size: 1.5rem;
    margin-top: 10px;
    margin-right: 5px;
}

.pricing-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e5c048, #c4962c);
    color: #111;
    font-weight: 900;
    font-size: 1.3rem;
    padding: 15px 40px;
    border-radius: 30px;
    margin-top: 30px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(196, 150, 44, 0.25);
    transition: transform 0.2s;
    width: auto;
    min-width: 200px;
}
.pricing-cta-btn:hover, .support-btn:hover {
    transform: translateY(-3px);
    color: #000;
}

/* Support Card */
.support-title {
    color: #111;
    font-size: 1.4rem;
    font-weight: 900;
    margin: 0 0 35px 0;
}
.support-divider {
    display: none; 
}
.support-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #e5c048, #c4962c);
    color: #111;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(196, 150, 44, 0.25);
    width: 100%;
    transition: transform 0.2s;
}
.support-btn .chat-icon {
    width: 24px;
    height: 24px;
    fill: #111;
}


/* Wrapper Background for Bio and Agents */
.long-middle-bg-wrapper {
    background-image: url('Picture/long_middle_bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}


/* Text-only CTA for middle of landing page */
.text-only-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 900;
    color: #d4af37;
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 10px 20px;
    transition: all 0.3s ease;
}
.text-only-cta span {
    transition: transform 0.3s ease;
}
.text-only-cta:hover {
    color: #d4af37;
    text-decoration: underline;
    text-underline-offset: 8px;
}
.text-only-cta:hover span {
    transform: translateX(-8px);
}


/* =====================
   STICKY COUNTDOWN BAR - Frosted Glass
   ===================== */
.sticky-countdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    /* Frosted glass */
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    background: transparent;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    /* Hidden by default */
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.sticky-countdown.visible-bar {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.countdown-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    direction: ltr;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 38px;
}

.time-value {
    font-family: 'Cairo', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #8a6a00;
    line-height: 1;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(212,175,55,0.3);
}

.time-label {
    font-size: 0.58rem;
    color: rgba(100, 75, 0, 0.7);
    margin-top: 2px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.time-separator {
    font-size: 1.4rem;
    color: #8a6a00;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.7;
}
