/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a2c26;
    /* Deep Forest Green */
    --accent-color: #c9a25e;
    /* Muted Gold */
    --accent-hover: #b38e50;
    --bg-color: #f9f6f0;
    /* Soft warm off-white */
    --text-main: #2d3748;
    --text-light: #4a5568;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -5px rgba(26, 44, 38, 0.15);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(201, 162, 94, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 94, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 20px 0;
    background: transparent;
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-cta {
    padding: 8px 20px;
    font-size: 0.95rem;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

/* Background elements for depth */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 94, 0.15) 0%, rgba(249, 246, 240, 0) 70%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 44, 38, 0.08) 0%, rgba(249, 246, 240, 0) 70%);
    z-index: -1;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.hero-content {
    max-width: 750px;
    width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 100%);
    opacity: 0.15;
    transform: translate(20px, 20px);
    z-index: -1;
}

.hero-image {
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
}

/* Hero video centered */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin: 40px auto 0;
}

.hero-video-wrapper .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.hero-video-wrapper .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ──────────────────────────────────────────────
   Hero Side Review Columns
   Absolutely placed inside the section,
   stretched top-to-bottom on both edges
────────────────────────────────────────────── */
.hero-side-reviews {
    position: absolute;
    top: 120px;
    /* clear the header */
    bottom: 30px;
    width: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 16px;
    z-index: 5;
}

.left-side-reviews {
    left: 20px;
}

.right-side-reviews {
    right: 20px;
}

/* Chat bubble shape */
.review-bubble {
    position: relative !important;
    border-radius: 18px !important;
    padding: 16px 18px !important;
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(201, 162, 94, 0.3) !important;
    border-left: 3px solid var(--accent-color) !important;
    box-shadow: 0 8px 32px rgba(26, 44, 38, 0.12),
        0 0 0 1px rgba(201, 162, 94, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-bubble:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(26, 44, 38, 0.18),
        0 0 20px rgba(201, 162, 94, 0.15) !important;
}

.review-bubble p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--primary-color);
    margin: 0;
    font-weight: 500;
}

.bubble-highlight {
    background: rgba(201, 162, 94, 0.18);
    color: var(--primary-color);
    padding: 1px 5px;
    border-radius: 4px;
    font-weight: 700;
}


.right-side-reviews .review-bubble {
    border-left: 1px solid rgba(201, 162, 94, 0.3) !important;
    border-right: 3px solid var(--accent-color) !important;
}

/* Tail on left bubbles → points RIGHT */
.review-bubble-left {
    border-bottom-right-radius: 4px !important;
}

.review-bubble-left::after {
    content: '';
    position: absolute;
    top: 18px;
    right: -9px;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 9px solid var(--glass-bg);
}

/* Tail on right bubbles → points LEFT */
.review-bubble-right {
    border-bottom-left-radius: 4px !important;
}

.review-bubble-right::after {
    content: '';
    position: absolute;
    top: 18px;
    left: -9px;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 9px solid var(--glass-bg);
}

/* Staggered float animations */
.left-side-reviews .review-bubble:nth-child(1) {
    animation: float 4s ease-in-out infinite;
}

.left-side-reviews .review-bubble:nth-child(2) {
    animation: float 5.5s ease-in-out infinite 1.5s reverse;
}

.right-side-reviews .review-bubble:nth-child(1) {
    animation: float 5s ease-in-out infinite 0.7s;
}

.right-side-reviews .review-bubble:nth-child(2) {
    animation: float 4.5s ease-in-out infinite 2s reverse;
}

.right-side-reviews .review-bubble:nth-child(3) {
    animation: float 6s ease-in-out infinite 1s;
}



.glass-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}



.stats-card-1 {
    bottom: 40px;
    left: -30px;
    animation: float 4s ease-in-out infinite;
}

.stats-card-2 {
    top: 40px;
    right: -20px;
    animation: float 5s ease-in-out infinite reverse;
}

.card-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    background: rgba(201, 162, 94, 0.15);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.card-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 4px;
}

.about-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9;
}

.about-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Experience / Features Section */
.bg-light-green {
    background-color: rgba(26, 44, 38, 0.03);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.feature-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(201, 162, 94, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background: var(--accent-color);
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Experience Disclaimer */
.experience-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 45px;
    background: rgba(26, 44, 38, 0.04);
    border: 1px solid rgba(26, 44, 38, 0.1);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 12px 12px 0;
    padding: 18px 24px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.experience-disclaimer i {
    color: var(--accent-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.experience-disclaimer p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* ============================================
   Method / Cycle Section
   ============================================ */
.method-section {
    padding: 90px 0;
    background: var(--bg-color);
}

.cycles-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
    align-items: start;
    justify-items: center;
}

.cycle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 440px;
}

.cycle-item svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(26, 44, 38, 0.12));
}

.cycle-caption {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

.cycle-caption::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    margin: 8px auto 0;
    border-radius: 2px;
}

@media (max-width: 820px) {
    .cycles-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cycle-item {
        max-width: 380px;
    }
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-section {
    padding: 90px 0;
    background: var(--bg-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 1.5px solid rgba(26, 44, 38, 0.1);
    border-radius: 18px;
    padding: 30px 24px 28px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(26, 44, 38, 0.12);
}

/* Featured (Most Popular) card */
.pricing-card--featured {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 44, 38, 0.25);
}

.pricing-card--featured:hover {
    transform: translateY(-14px);
}

/* Save badge (top-right corner) */
.pricing-save-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: rgba(201, 162, 94, 0.12);
    color: var(--accent-color);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 0 0 8px 8px;
}

.pricing-save-badge--light {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
}

/* Most Popular badge (top-left corner) */
.pricing-popular-badge {
    position: absolute;
    top: 0;
    left: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 0 0 8px 8px;
}

/* Header */
.pricing-header {
    margin-top: 18px;
}

.pricing-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-card--featured .pricing-name {
    color: var(--accent-color);
}

/* Stats row: sessions vertically stacked above price */
.pricing-stats-stacked {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 14px;
}

.pricing-sessions-styled {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: var(--accent-color);
}

.pricing-sessions-styled .session-amount {
    font-size: 2.0rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-sessions-styled .session-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}

.pricing-card--featured .pricing-sessions-styled .session-text {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card--featured .pricing-sessions-styled .session-amount {
    color: #f0d090;
}

@keyframes priceGlow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(201, 162, 94, 0.3), 0 0 20px rgba(201, 162, 94, 0.15);
    }

    50% {
        text-shadow: 0 0 18px rgba(201, 162, 94, 0.6), 0 0 28px rgba(201, 162, 94, 0.4);
    }
}

.pricing-price-glow {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.pricing-price-glow .price-amount {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    animation: priceGlow 2.5s infinite alternate ease-in-out;
}

.pricing-price-glow .price-per {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-card--featured .pricing-price-glow .price-per {
    color: rgba(255, 255, 255, 0.6);
}

/* Meta */
.pricing-meta {
    margin: 16px 0 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(26, 44, 38, 0.08);
}

.pricing-card--featured .pricing-meta {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.pricing-total {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 3px;
}

.pricing-card--featured .pricing-total {
    color: rgba(255, 255, 255, 0.55);
}

.pricing-save {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 5px;
}

.pricing-card--featured .pricing-save {
    color: #f0d090;
}

/* Feature list */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-light);
}

.pricing-card--featured .pricing-features li {
    color: rgba(255, 255, 255, 0.75);
}

.pricing-features li i {
    color: var(--accent-color);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Reassurance message */
.pricing-reassurance {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding: 20px 28px;
    background: rgba(201, 162, 94, 0.07);
    border: 1px solid rgba(201, 162, 94, 0.25);
    border-radius: 14px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.pricing-reassurance i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-reassurance p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
    margin: 0;
}

.pricing-reassurance p span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* CTA below cards */
.pricing-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}
.pricing-note--warning {
    color: #b8860b; /* Dark Goldenrod for caution/alert */
    font-weight: 600;
    font-style: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    text-align: center;
}

/* Responsive */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card--featured {
        transform: none;
    }

    .pricing-card--featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Kids Section */
.kids-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--primary-color);
    border-radius: 30px;
    padding: 60px;
    color: var(--white);
}

.kids-content h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.kids-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.kids-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.kids-list i {
    color: var(--accent-color);
}

.kids-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.kids-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* Testimonials */
.testimonial-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 2rem 0;
    -webkit-overflow-scrolling: touch;
}

/* Infinite Scroll Marquee styles */
.testimonial-carousel.infinite-scroll {
    overflow: hidden;
    scroll-snap-type: none;
}

.testimonial-carousel.infinite-scroll::-webkit-scrollbar {
    display: none;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
    /* ensure the track is as wide as its content and shrinks */
    flex-shrink: 0;
    min-width: 100%;
}

.testimonial-carousel.infinite-scroll:hover .testimonial-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 2rem));
    }
}

.testimonial-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: rgba(201, 162, 94, 0.15);
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
}

.author-info h4 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.stars {
    color: #FFB800;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.stars.glow {
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #FFB800;
    }

    to {
        text-shadow: 0 0 15px #FFB800;
    }
}

mark.highlight {
    background: rgba(201, 162, 94, 0.15);
    color: var(--primary-color);
    padding: 0 0.2rem;
    border-radius: 0.2rem;
    font-weight: 600;
}

/* Journey Section */
.journey-section {
    padding-bottom: 100px;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.journey-step {
    position: relative;
    padding: 10px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

@keyframes pulse-number {
    0% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.35;
        color: var(--accent-color);
    }

    100% {
        transform: scale(1);
        opacity: 0.15;
    }
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-light);
    opacity: 0.15;
    line-height: 1;
    animation: pulse-number 4s infinite ease-in-out;
}

.journey-step:nth-child(1) .step-number {
    animation-delay: 0s;
}

.journey-step:nth-child(2) .step-number {
    animation-delay: 1.3s;
}

.journey-step:nth-child(3) .step-number {
    animation-delay: 2.6s;
}

.step-line {
    flex-grow: 1;
    height: 1px;
    background: rgba(201, 162, 94, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.whatsapp-btn {
    border-color: #25D366;
    color: #25D366;
}

.whatsapp-btn:hover {
    background: #25D366;
    border-color: #25D366;
    color: white !important;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Curriculum Section */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.curriculum-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 6px solid var(--accent-color);
    display: flex;
    flex-direction: column;
}

.curriculum-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.curriculum-card:nth-child(1) {
    border-top-color: #D4AF37;
}

/* Gold */
.curriculum-card:nth-child(2) {
    border-top-color: #B8860B;
}

/* Dark Goldenrod */
.curriculum-card:nth-child(3) {
    border-top-color: #48D1CC;
}

/* Medium Turquoise */
.curriculum-card:nth-child(4) {
    border-top-color: #4169E1;
}

/* Royal Blue */

.curriculum-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.curriculum-card:nth-child(1) .icon-wrapper {
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
}

.curriculum-card:nth-child(2) .icon-wrapper {
    background: rgba(184, 134, 11, 0.15);
    color: #B8860B;
}

.curriculum-card:nth-child(3) .icon-wrapper {
    background: rgba(72, 209, 204, 0.15);
    color: #48D1CC;
}

.curriculum-card:nth-child(4) .icon-wrapper {
    background: rgba(65, 105, 225, 0.15);
    color: #4169E1;
}

.curriculum-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.curriculum-card .stage-subtitle {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.curriculum-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
    flex-grow: 1;
}

.curriculum-card .view-details {
    color: var(--accent-color);
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.curriculum-card:nth-child(3) .view-details {
    color: #48D1CC;
}

.curriculum-card:nth-child(4) .view-details {
    color: #4169E1;
}

.curriculum-card .view-details:hover {
    gap: 12px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-color);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow-y: auto;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.5rem;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-wide {
    max-width: 1000px !important;
    padding: 0 !important;
    background: #f4f6f8 !important;
}

.curriculum-details-advanced {
    padding: 40px;
    background: #f4f6f8;
    border-radius: 20px;
}

.modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-header h2 {
    font-size: 2.2rem;
}

.modal-header p {
    color: var(--text-light);
    margin-top: 10px;
}

.stage-block {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.stage-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    color: var(--white);
}

.stage-header i {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 12px;
}

.stage-1-bg .custom-icon {
    color: var(--accent-color);
}

.stage-2-bg .custom-icon {
    color: var(--accent-color);
}

.stage-3-bg .custom-icon {
    color: var(--accent-color);
}

.stage-4-bg .custom-icon {
    color: var(--accent-color);
}

.stage-header h3 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    color: var(--white);
}

.stage-header p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.stage-1-bg {
    background: var(--primary-color);
}

.stage-2-bg {
    background: var(--primary-color);
}

.stage-3-bg {
    background: var(--primary-color);
}

.stage-4-bg {
    background: var(--primary-color);
}

.stage-body {
    padding: 30px;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.single-column {
    padding-top: 20px;
}

.stage-col h4,
.single-column h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.stage-block--1 .stage-body h4 i {
    color: #D4AF37;
}

.stage-block--2 .stage-body h4 i {
    color: #B8860B;
}

.stage-block--3 .stage-body h4 i {
    color: #48D1CC;
}

.stage-block--4 .stage-body h4 i {
    color: #4169E1;
}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
}

.custom-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 1;
}

.bullet-list {
    padding-left: 20px;
}

.bullet-list li {
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.bullet-list-sm {
    padding-left: 20px;
    margin-top: 8px;
    margin-bottom: 15px;
}

.bullet-list-sm li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.arabic {
    font-family: 'Amiri', serif;
    color: var(--accent-color);
    font-size: 1.3rem;
    margin: 0 3px;
    direction: rtl;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.method-card {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.method-card h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1rem;
}

.method-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.relative {
    position: relative;
}

.goal-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background: #FFB800;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 0 0 8px 8px;
}

.celebration-banner {
    background: rgba(39, 174, 96, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.celebration-banner strong {
    color: var(--accent-color);
}

.khatma-content-box {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

.modal-cta {
    background: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.modal-cta h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.modal-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.text-green {
    color: var(--primary-color) !important;
}

@media (max-width: 768px) {
    .two-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }

    .stage-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .goal-badge {
        right: 15px;
    }

    .curriculum-details-advanced {
        padding: 20px;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =============================
   RESPONSIVE STYLES
   ============================= */

/* --- Large Tablets (max 1024px) --- */
@media (max-width: 1024px) {
    .hero .container {
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-card-1 {
        left: -10px;
        bottom: 20px;
    }

    .stats-card-2 {
        right: -10px;
        top: 20px;
    }
}

/* --- Laptops (max 1200px) --- */
@media (max-width: 1200px) {
    .hero-side-reviews {
        width: 180px;
    }

    .review-bubble p {
        font-size: 0.72rem;
    }
}

/* --- Under 1024px: hide side reviews entirely --- */
@media (max-width: 1024px) {
    .hero-side-reviews {
        display: none;
    }
}

/* --- Tablets (max 992px) --- */
@media (max-width: 992px) {
    section {
        padding: 70px 0;
    }

    .hero {
        padding: 130px 0 80px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-features {
        text-align: left;
    }

    .about-text {
        order: -1;
    }

    .journey-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-line {
        display: none;
    }

    .kids-section .container {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 30px;
        text-align: center;
    }

    .kids-list li {
        justify-content: center;
    }

    .kids-image-wrapper {
        height: 300px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: var(--shadow-md);
        z-index: 999;
    }

    .nav-links a {
        padding: 8px 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-cta {
        padding: 7px 16px;
        font-size: 0.88rem;
    }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {

    /* Header */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: var(--shadow-md);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-cta {
        padding: 6px 14px;
        font-size: 0.85rem;
    }

    /* Typography */
    .section-title {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    /* Hero */
    .hero {
        padding: 110px 0 70px;
        min-height: auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .glass-card {
        padding: 10px 14px;
    }

    .stats-card-1 {
        left: 0;
        bottom: 10px;
    }

    .stats-card-2 {
        right: 0;
        top: 10px;
    }

    /* About */
    .about-features {
        grid-template-columns: 1fr;
    }

    /* Features / Why Subscribe */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Curriculum */
    .curriculum-grid {
        grid-template-columns: 1fr;
    }

    /* Kids */
    .kids-section .container {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .kids-content h2 {
        font-size: 1.8rem;
    }

    .kids-image-wrapper {
        height: 220px;
    }

    /* Testimonials */
    .testimonial-card {
        flex: 0 0 280px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-social {
        justify-content: center;
    }

    /* Modal */
    .modal-content,
    .modal-wide {
        width: 95% !important;
        max-height: 90vh !important;
        border-radius: 15px !important;
        padding: 20px !important;
    }

    .modal-close {
        top: 12px;
        right: 15px;
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }

    .stage-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px;
    }

    .goal-badge {
        right: 15px;
    }

    .curriculum-details-advanced {
        padding: 15px;
    }

    .modal-cta {
        padding: 25px 20px;
    }

    .modal-cta h3 {
        font-size: 1.4rem;
    }
}

/* --- Small Mobile (max 480px) --- */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .container {
        width: 95%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }

    .header-cta {
        display: none;
    }

    .glass-card {
        display: none;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .curriculum-card {
        padding: 25px 15px;
    }

    .testimonial-card {
        flex: 0 0 260px;
        padding: 30px 20px;
    }

    .kids-image-wrapper {
        height: 180px;
    }

    .stage-body {
        padding: 20px 15px;
    }

    .section-header {
        margin-bottom: 35px;
    }
}

/* About Stats Animation & Styling */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 35px;
}

.stat-card {
    background-color: #f8f9fc;
    border: 1px solid #eef1f6;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.7;
    z-index: 0;
}

.stat-card>* {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.stat-text-gold {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 8px;
}

@media (max-width: 576px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Policy Modal Styles
   ============================================ */
.policy-modal-box {
    position: relative;
    background: var(--white);
    width: 90%;
    max-width: 980px;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(26, 44, 38, 0.3);
    animation: modalSlideUp 0.35s ease;
}

.policy-modal-box.gender-notice-box {
    max-width: 520px;
    padding: 0;
}

.policy-modal-hero.gender-notice-hero {
    background: linear-gradient(135deg, #1a2c26, #2d4c3f);
    padding: 35px 30px;
}

.policy-modal-hero-icon.gender-notice-icon {
    background: rgba(201, 162, 94, 0.2);
    color: #c9a25e;
}

.policy-modal-title.gender-notice-title {
    margin-top: 15px;
    font-size: 1.6rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.policy-body.gender-notice-body {
    padding: 30px;
    background: #fafaf8;
}

.policy-block.gender-notice-message {
    border-left: 4px solid var(--accent-color);
    padding: 18px 22px;
    background: #fff;
    margin-bottom: 25px;
}

.policy-block.gender-notice-message p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-main);
    margin: 0;
    font-weight: 500;
}

.gender-notice-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
}

.gender-notice-actions .btn {
    padding: 10px 24px;
    font-size: 0.92rem;
    border-radius: 30px;
    text-align: center;
}

.gender-notice-actions .btn-outline {
    border-color: rgba(26, 44, 38, 0.2);
    background: transparent;
}

.gender-notice-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 28px;
    padding-right: 28px;
}

.policy-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
}

.policy-close-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.policy-modal-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a4a3e 60%, #1a2c26 100%);
    padding: 22px 40px 18px;
    text-align: center;
    flex: 0 0 auto;
    position: relative;
}

.policy-modal-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #e8c47a, var(--accent-color));
}

.policy-modal-hero-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 162, 94, 0.15);
    border: 2px solid rgba(201, 162, 94, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.3rem;
    color: var(--accent-color);
}

.policy-modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.45rem;
    color: var(--white);
    margin-bottom: 4px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.policy-modal-subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    margin-bottom: 0;
}

.policy-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    letter-spacing: 0.02em;
}

.policy-download-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    color: var(--primary-color);
}

.policy-body {
    overflow-y: auto;
    padding: 35px 40px 40px;
    flex: 1 1 auto;
    background: #fafaf8;
}

.policy-body::-webkit-scrollbar {
    width: 6px;
}

.policy-body::-webkit-scrollbar-track {
    background: transparent;
}

.policy-body::-webkit-scrollbar-thumb {
    background: #d5c9b8;
    border-radius: 3px;
}

/* Intro paragraph */
.policy-intro {
    background: linear-gradient(135deg, rgba(26, 44, 38, 0.05), rgba(201, 162, 94, 0.07));
    border-left: 4px solid var(--accent-color);
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    font-size: 0.97rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 30px;
}

/* Individual section blocks */
.policy-block {
    background: var(--white);
    border: 1px solid rgba(26, 44, 38, 0.08);
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 16px;
    transition: box-shadow 0.2s;
}

.policy-block:hover {
    box-shadow: 0 4px 20px rgba(26, 44, 38, 0.07);
}

.policy-block p {
    color: var(--text-light);
    line-height: 1.75;
    margin-top: 8px;
}

.policy-block p+p {
    margin-top: 8px;
}

/* Section headings with icon */
.policy-section-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.policy-heading-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--accent-color), #e8c47a);
    color: var(--primary-color);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Custom list style */
.policy-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-list li {
    position: relative;
    padding: 6px 10px 6px 25px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
    border-radius: 8px;
    transition: background 0.15s;
}

.policy-list li:hover {
    background: rgba(26, 44, 38, 0.03);
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 15px;
    width: 7px;
    height: 7px;
    background: var(--accent-color);
    border-radius: 50%;
}

.policy-list li strong {
    color: var(--text-main);
    font-weight: 600;
}

/* Inline tag badge */
.policy-tag {
    display: inline-block;
    background: rgba(201, 162, 94, 0.12);
    color: #8c6a2f;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 1px 8px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 4px;
}

/* Footer legal links hover */
.footer-legal-links a:hover {
    color: var(--accent-color) !important;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
}

/* Responsive */
@media (max-width: 600px) {
    .policy-modal-box {
        width: 95%;
        border-radius: 16px;
    }

    .policy-modal-hero {
        padding: 28px 20px 24px;
    }

    .policy-modal-title {
        font-size: 1.35rem;
    }

    .policy-body {
        padding: 24px 18px 28px;
    }

    .policy-block {
        padding: 16px 18px;
    }

    .policy-modal-title.gender-notice-title {
        font-size: 1.35rem;
    }

    .policy-body.gender-notice-body {
        padding: 22px 18px;
    }

    .policy-block.gender-notice-message {
        padding: 16px 18px;
    }

    .gender-notice-actions {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 10px;
    }

    .gender-notice-actions .btn {
        width: 100%;
        min-height: 44px;
    }
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background-color: #128c7e;
    color: white;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

/* Custom Mask Icon for Coloring PNGs */
.custom-mask-icon {
    display: inline-block;
    background-color: currentColor;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}
