@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* BASIC SETUP */
:root {
    --blue: #0757f8;
    --dark-blue: #071243;
    --light-blue: #edf8ff;
    --gold: #d59d25;
    --text: #132044;
    --muted: #5e6880;
    --white: #ffffff;
    --border: rgba(8, 35, 85, 0.10);
    --shadow: 0 16px 35px rgba(36, 101, 170, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at 8% 12%, rgba(7, 87, 248, 0.10), transparent 28%),
        radial-gradient(circle at 92% 24%, rgba(213, 157, 37, 0.12), transparent 24%),
        linear-gradient(180deg, #eaf7ff, #ffffff 46%, #edf8ff);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg opacity='0.045' fill='%230757f8'%3E%3Ccircle cx='60' cy='60' r='2'/%3E%3Ccircle cx='60' cy='60' r='18' fill='none' stroke='%230757f8' stroke-width='0.6'/%3E%3Ccircle cx='60' cy='60' r='34' fill='none' stroke='%230757f8' stroke-width='0.4'/%3E%3Cpath d='M60 42 C64 50 64 70 60 78 C56 70 56 50 60 42Z' fill='%23d59d25' opacity='0.5'/%3E%3Cpath d='M42 60 C50 56 70 56 78 60 C70 64 50 64 42 60Z' fill='%23d59d25' opacity='0.5'/%3E%3Cpath d='M47 47 C52 54 68 66 73 73 C66 68 54 52 47 47Z' fill='%23d59d25' opacity='0.4'/%3E%3Cpath d='M73 47 C68 54 52 66 47 73 C54 68 66 52 73 47Z' fill='%23d59d25' opacity='0.4'/%3E%3Ccircle cx='60' cy='42' r='2.5' fill='%23d59d25' opacity='0.6'/%3E%3Ccircle cx='60' cy='78' r='2.5' fill='%23d59d25' opacity='0.6'/%3E%3Ccircle cx='42' cy='60' r='2.5' fill='%23d59d25' opacity='0.6'/%3E%3Ccircle cx='78' cy='60' r='2.5' fill='%23d59d25' opacity='0.6'/%3E%3Ccircle cx='47.5' cy='47.5' r='2' fill='%23d59d25' opacity='0.5'/%3E%3Ccircle cx='72.5' cy='47.5' r='2' fill='%23d59d25' opacity='0.5'/%3E%3Ccircle cx='47.5' cy='72.5' r='2' fill='%23d59d25' opacity='0.5'/%3E%3Ccircle cx='72.5' cy='72.5' r='2' fill='%23d59d25' opacity='0.5'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 120px;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

/* =====================
   NAVBAR
===================== */
.navbar {
    position: fixed;
    top: 14px;
    left: 0;
    right: 0;
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1400px;
    margin: 0 auto;
    min-height: 70px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.90);
    border-radius: 16px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #0757f8;
}

.logo-text h2 {
    color: var(--dark-blue);
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    line-height: 1;
}

.logo-text p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.nav-links a {
    color: var(--dark-blue);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--blue);
}

/* =====================
   BUTTONS
===================== */
.nav-btn,
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 20px;
    border: none;
    border-radius: 8px;
    color: white;
    background: linear-gradient(135deg, #0a67ff, #0436c7);
    box-shadow: 0 10px 22px rgba(7, 87, 248, 0.25);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-btn:hover,
.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(7, 87, 248, 0.3);
}

/* Join form button — smaller, not full-width */
.join-section button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 28px;
    width: auto;
    border: none;
    border-radius: 8px;
    color: white;
    background: linear-gradient(135deg, #0a67ff, #0436c7);
    box-shadow: 0 10px 22px rgba(7, 87, 248, 0.25);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 4px;
}

.join-section button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(7, 87, 248, 0.3);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--dark-blue);
    background: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.secondary-btn:hover {
    background: white;
    border-color: var(--blue);
    color: var(--blue);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--dark-blue);
    background: white;
    cursor: pointer;
}

/* =====================
   HERO
   FIX: Lower white opacity so Krishna image is more visible
===================== */
.hero-section {
    min-height: 720px;
    width: 100%;
    margin: 0;
    padding: 150px 54px 70px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(90deg,
            rgba(255, 255, 255, 0.82) 0%,
            rgba(255, 255, 255, 0.55) 42%,
            rgba(255, 255, 255, 0.05) 100%),
        url("hero-bg.jpg");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero-content {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto 0 0;
    padding-left: 20px;
    text-align: left;
    animation: heroTextDown 0.9s ease both;
}

@keyframes heroTextDown {
    from {
        opacity: 0;
        transform: translateY(-42px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.small-title {
    color: #164db9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
}

.small-title::before,
.small-title::after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 1px;
    margin: 0 8px 4px;
    background: var(--gold);
}

.hero-content h1 {
    margin: 20px 0;
    color: var(--dark-blue);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.1;
    text-align: left;
}

.hero-text {
    max-width: 520px;
    margin-bottom: 28px;
    color: #233253;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
    justify-content: flex-start;
}

.devotee-count {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-start;
}

.avatar-list {
    display: flex;
}

.avatar-list span {
    width: 34px;
    height: 34px;
    margin-right: -8px;
    display: grid;
    place-items: center;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    background: var(--blue);
    font-size: 10px;
    font-weight: 800;
}

.avatar-list span:nth-child(2) {
    background: var(--gold);
}

.avatar-list span:nth-child(3) {
    background: #17a96b;
}

.devotee-count strong {
    color: var(--dark-blue);
    font-size: 15px;
}

.devotee-count p {
    color: var(--muted);
    font-size: 12px;
}

/* =====================
   COMMON SECTIONS
===================== */
.section-box {
    width: 100%;
    max-width: 100%;
    margin: 44px 0 0;
    padding: 54px 24px;
    border: none;
    background: transparent;
    position: relative;
}

/* Spiritual lotus divider line between sections */
.section-box::before {
    content: "🪷";
    display: block;
    text-align: center;
    font-size: 22px;
    margin-bottom: 32px;
    opacity: 0.55;
    letter-spacing: 18px;
}

/* Subtle gold top border accent */
.section-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 30px;
    text-align: center;
}

.section-heading p {
    color: #164db9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-heading p::before,
.section-heading p::after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 1px;
    margin: 0 8px 4px;
    background: var(--gold);
}

.section-heading h2 {
    margin: 10px 0;
    color: var(--dark-blue);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
}

.section-heading span {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.card-grid {
    display: grid;
    gap: 18px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.five-card-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.six-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.audio-card,
.faq-card,
.join-benefits div {
    padding: 24px 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.90);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 28px rgba(36, 101, 170, 0.11);
    transition: transform 0.2s;
}

.info-card:hover,
.audio-card:hover,
.faq-card:hover {
    transform: translateY(-4px);
}

.info-card i,
.audio-card i,
.join-benefits i {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: #edf5ff;
    font-size: 22px;
}

.info-card.orange i {
    color: #df8b1b;
    background: #fff5e5;
}

.info-card.green i {
    color: #17a96b;
    background: #e9fbf2;
}

.info-card.purple i {
    color: #7b45c7;
    background: #f3ecff;
}

.info-card.pink i {
    color: #df5f94;
    background: #fff0f6;
}

.info-card.blue i {
    color: #0a67ff;
    background: #edf5ff;
}

.info-card h3,
.audio-card h3,
.faq-card h3,
.join-benefits h4 {
    margin-bottom: 8px;
    color: var(--dark-blue);
    font-size: 16px;
    line-height: 1.3;
}

.info-card p,
.audio-card p,
.faq-card p,
.join-benefits p,
.join-content p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* =====================
   AUDIO
===================== */
.audio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.audio-card audio {
    width: 100%;
    margin-top: 18px;
}

/* =====================
   JOIN SECTION
===================== */

.join-section {
    width: 100%;
    min-height: 720px;
    padding: 70px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
    margin-top: 0;

    /* Gradient fades from page background into image — seamless top */
    background:
        linear-gradient(to bottom,
            rgba(237, 248, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.38) 18%,
            rgba(255, 255, 255, 0.25) 100%),
        url("join-bg.jpg") center center / cover no-repeat;
}

/* BENEFITS */

.join-benefits {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;

    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);

    padding: 16px 24px;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);

    font-weight: 600;
    color: var(--text);
}

.benefit-item i {
    color: var(--blue);
    font-size: 20px;
}

.benefit-item span {
    font-size: 15px;
}

/* FORM CARD */

.join-content {
    width: 100%;
    max-width: 460px;

    background: rgba(255, 255, 255, 0.82);

    backdrop-filter: blur(16px);

    border-radius: 28px;

    padding: 34px 28px;

    text-align: center;

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.12);
}

.join-content h2 {
    margin-top: 8px;
    margin-bottom: 12px;
}

/* .price and .join-subtitle moved to price-display block below */

#joinForm {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#joinForm input {
    width: 100%;
    height: 54px;

    border: 1px solid var(--border);

    border-radius: 12px;

    padding: 0 16px;

    background: white;

    font-size: 15px;
}

#joinForm button {
    height: 58px;

    border: none;

    border-radius: 14px;

    background: var(--blue);

    color: white;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    transition: .3s;
}

#joinForm button:hover {
    transform: translateY(-2px);
}

.form-message {
    min-height: 20px;
    font-size: 13px;
}

/* Desktop-only checklist (hidden on mobile) */
.desktop-only {
    display: none;
    /* hidden by default; not used in visible UI, just semantic */
}

/* Privacy note */
.privacy-note {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin: 0;
}

/* Price display inside form */
.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 4px 0 8px;
    flex-wrap: wrap;
}

.price-original {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

.price {
    color: #0b4fcf;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.price-badge {
    background: rgba(7, 87, 248, 0.08);
    color: #0757f8;
    border: 1px solid rgba(7, 87, 248, 0.20);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 800;
}

/* Coupon row */
.coupon-row {
    display: flex;
    gap: 8px;
}

.coupon-row input {
    flex: 1;
}

.coupon-row button {
    height: 54px !important;
    min-height: unset !important;
    padding: 0 18px !important;
    width: auto !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    background: linear-gradient(135deg, var(--gold), #b87d0e) !important;
    flex-shrink: 0;
}

.coupon-message {
    font-size: 12px;
    min-height: 16px;
    text-align: center;
    margin: -4px 0 0;
}

/* Trust badges below form */
.trust-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}

.trust-badges i {
    color: var(--blue);
}

/* =====================
   MOBILE HIDE checklist on mobile — join section
===================== */
@media (max-width: 768px) {
    .join-checklist {
        display: none !important;
    }
}

/* MOBILE */

@media (max-width: 768px) {

    .join-section {
        padding: 55px 16px;
        gap: 20px;
    }

    .join-benefits {
        flex-direction: column;
        width: 100%;
    }

    .benefit-item {
        width: 100%;
        justify-content: center;
    }

    .join-content {
        max-width: 100%;
        padding: 26px 18px;
    }

    /* Center the "Join Today" small-title on mobile */
    .join-content .small-title {
        display: block;
        text-align: center;
        width: 100%;
    }

    .price {
        font-size: 36px;
    }

    .join-content h2 {
        font-size: 32px;
    }
}

/* =====================
   FAQ
===================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-card {
    text-align: left;
}

/* =====================
   FOOTER
===================== */
footer {
    width: 100%;
    margin: 44px 0 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.88);
}

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

.footer-links a {
    color: var(--dark-blue);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.3s;
}

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

/* =====================
   TABLET — 980px
===================== */
@media (max-width: 980px) {
    .navbar {
        position: fixed;
        top: 10px;
        width: calc(100% - 30px);
    }

    .hero-content {
        margin-bottom: 300px;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        padding: 12px;
        border-radius: 8px;
        background: white;
        box-shadow: var(--shadow);
    }

    .nav-links.show {
        display: grid;
        gap: 8px;
    }

    .nav-links a {
        padding: 10px;
    }

    .mobile-toggle {
        display: grid;
        place-items: center;
    }

    .nav-btn {
        display: none;
    }

    .hero-section {
        min-height: 640px;
        padding: 130px 34px 56px;
    }

    .hero-content {
        padding-left: 20px;
    }

    .hero-text {
        margin-top: 18px;
        margin-bottom: 18px;
    }

    .five-card-grid,
    .six-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =====================
   MOBILE — 768px
   FIXED: Proper mobile layout
===================== */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        top: 8px;
        width: calc(100% - 24px);
        min-height: 56px;
        padding: 8px 14px;
        border-radius: 12px;
    }

    .logo-img {
        width: 38px;
        height: 38px;
    }

    .logo-text h2 {
        font-size: 18px;
    }

    .logo-text p {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .mobile-toggle {
        width: 36px;
        height: 36px;
    }

    /* Hero — lower opacity so image shows through nicely on mobile */
    .hero-section {
        min-height: auto;
        padding: 88px 18px 20px;
        align-items: flex-start;

        background:
            linear-gradient(90deg,
                rgba(255, 255, 255, 0.88) 0%,
                rgba(255, 255, 255, 0.60) 55%,
                rgba(255, 255, 255, 0.18) 100%),
            url("hero-bg.jpg") center top / cover no-repeat;
    }

    .hero-content {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .small-title {
        font-size: 9px;
        letter-spacing: 0.8px;
    }

    .small-title::before,
    .small-title::after {
        width: 14px;
        margin: 0 5px 3px;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
        margin: 14px 0;
    }

    .hero-text {
        margin-bottom: 18px;
    }

    /* Buttons on hero — auto width, not full */
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 22px;
    }

    .hero-buttons .primary-btn,
    .hero-buttons .secondary-btn {
        min-height: 40px;
        padding: 0 16px;
        font-size: 13px;
        flex: 1 1 auto;
        min-width: 140px;
        max-width: 200px;
    }

    .devotee-count strong {
        font-size: 13px;
    }

    .devotee-count p {
        font-size: 11px;
    }

    .avatar-list span {
        width: 30px;
        height: 30px;
        font-size: 9px;
    }

    /* Sections */
    .section-box,
    .join-section {
        margin-top: 28px;
        padding: 32px 14px;
    }

    .section-heading {
        margin-bottom: 22px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .section-heading span {
        font-size: 13px;
    }

    .card-grid {
        padding: 0 8px;
        gap: 12px;
    }

    .five-card-grid,
    .six-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-card,
    .audio-card,
    .faq-card,
    .join-benefits div {
        padding: 16px 12px;
    }

    .info-card i,
    .audio-card i,
    .join-benefits i {
        width: 42px;
        height: 42px;
        font-size: 17px;
        margin-bottom: 10px;
    }

    .info-card h3,
    .audio-card h3 {
        font-size: 13px;
    }

    .info-card p,
    .audio-card p {
        font-size: 12px;
        line-height: 1.55;
    }

    /* Audio */
    .audio-grid {
        grid-template-columns: 1fr;
        padding: 0 8px;
    }

    /* Join section */
    .join-section {
        min-height: auto;
        padding: 32px 14px;
    }

    .join-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        padding: 0 4px;
    }

    .join-benefits div {
        padding: 14px 8px;
    }

    .join-benefits h4 {
        font-size: 12px;
    }

    .join-benefits p {
        font-size: 11px;
    }

    .join-benefits i {
        width: 36px;
        height: 36px;
        font-size: 15px;
        margin-bottom: 8px;
    }

    .join-content {
        width: 100%;
    }

    .join-content h2 {
        font-size: 26px;
    }

    .price {
        font-size: 32px;
    }

    #joinForm {
        gap: 10px;
        margin-top: 16px;
    }

    #joinForm input {
        min-height: 42px;
        font-size: 14px;
    }

    /* Join button — compact, centered */
    .join-section button[type="submit"] {
        min-height: 42px;
        padding: 0 24px;
        font-size: 14px;
        justify-self: center;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 8px;
        gap: 12px;
    }

    .faq-card h3 {
        font-size: 14px;
    }

    .faq-card p {
        font-size: 13px;
    }

    /* Footer */
    footer {
        margin-top: 28px;
        padding: 20px 16px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        text-align: center;
    }

    .footer-links a {
        font-size: 13px;
    }
}

/* =====================
   SMALL MOBILE — 480px
===================== */
@media (max-width: 480px) {
    .hero-section {
        padding: 84px 14px 38px;
        background: linear-gradient(90deg,
                rgba(255, 255, 255, 0.90) 0%,
                rgba(255, 255, 255, 0.68) 60%,
                rgba(255, 255, 255, 0.25) 100%),
            url("hero-bg.jpg") center right 10% / cover no-repeat;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-text {
        font-size: 13px;
    }

    .hero-buttons .primary-btn,
    .hero-buttons .secondary-btn {
        font-size: 12px;
        padding: 0 14px;
        min-height: 38px;
    }

    .join-benefits {
        grid-template-columns: 1fr;
    }
}

/* =====================
   VERY SMALL — 350px
===================== */
@media (max-width: 350px) {

    .five-card-grid,
    .six-card-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .logo-text h2 {
        font-size: 15px;
    }
}

/* =========================
   LEGAL PAGES
========================= */

.legal-page {
    min-height: 100vh;
    padding: 120px 20px 60px;
}

.legal-container {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    border: 1px solid rgba(255, 255, 255, .8);
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    color: var(--blue);
    font-weight: 600;
}

.legal-title {
    font-size: 56px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--dark-blue);
    margin-bottom: 10px;
    line-height: 1.1;
}

.legal-date {
    color: var(--muted);
    margin-bottom: 40px;
    font-size: 14px;
}

.legal-section {
    margin-bottom: 32px;
}

.legal-section h2 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 28px;
}

.legal-section p {
    color: var(--text);
    line-height: 1.9;
    font-size: 16px;
}

.legal-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, .08);

    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.legal-footer a {
    font-weight: 600;
    color: var(--dark-blue);
}

.legal-footer a:hover {
    color: var(--blue);
}

/* MOBILE */

@media (max-width:768px) {

    .legal-page {
        padding: 90px 14px 40px;
    }

    .legal-container {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .legal-title {
        font-size: 34px;
    }

    .legal-date {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .legal-section {
        margin-bottom: 24px;
    }

    .legal-section h2 {
        font-size: 20px;
        line-height: 1.4;
    }

    .legal-section p {
        font-size: 14px;
        line-height: 1.8;
    }

    .legal-footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

.legal-footer-content {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.copyright {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 15px;
}

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

.footer-links a {
    color: var(--dark-blue);
    font-weight: 600;
    transition: .3s;
}

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

@media(max-width:768px) {

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .copyright {
        font-size: 13px;
    }
}

header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px 20px;
}

.legal-container {
    max-width: 900px;
    margin: 30px auto 80px;
    padding: 0 20px;
}

.legal-box {
    background: #fff;
    padding: 50px;
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
}

@media (max-width:768px) {

    .legal-container {
        padding: 0 15px;
        margin: 20px auto 50px;
    }

    .legal-box {
        padding: 25px;
        border-radius: 20px;
    }

    .legal-container h1 {
        font-size: 36px;
    }

    .legal-box h2 {
        font-size: 24px;
    }

    .legal-box p {
        font-size: 16px;
        line-height: 1.8;
    }

}

.logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

/* ==============================================
   LOGIN PAGE
============================================== */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background:
        radial-gradient(circle at 20% 30%, rgba(7, 87, 248, 0.12), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(213, 157, 37, 0.10), transparent 35%),
        linear-gradient(160deg, #e8f4ff 0%, #ffffff 50%, #edf8ff 100%);
}

.login-box {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 24px 60px rgba(7, 87, 248, 0.14);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.login-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 4px;
    border: 3px solid rgba(7, 87, 248, 0.15);
}

.login-box h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--dark-blue);
    margin: 0;
    line-height: 1.2;
}

.login-box>p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.login-box label {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f8ff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0 14px;
    height: 50px;
    text-align: left;
}

.login-box label i {
    color: var(--blue);
    font-size: 15px;
    flex-shrink: 0;
}

.login-box label input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: var(--text);
}

.login-box label input::placeholder {
    color: var(--muted);
}

.login-box button[type="submit"] {
    height: 50px;
    background: linear-gradient(135deg, #0a67ff, #0436c7);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 24px rgba(7, 87, 248, 0.28);
    margin-top: 4px;
}

.login-box button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(7, 87, 248, 0.35);
}

.login-box button[type="submit"]:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.login-box .form-message {
    font-size: 13px;
    min-height: 18px;
    color: #e74c3c;
}

.login-box .form-message[data-type="success"] {
    color: #17a96b;
}

.login-box .form-message[data-type="info"] {
    color: var(--blue);
}

@media (max-width: 480px) {
    .login-box {
        padding: 30px 20px;
        border-radius: 18px;
        gap: 13px;
    }

    .login-logo {
        width: 72px;
        height: 72px;
    }

    .login-box h1 {
        font-size: 26px;
    }
}

/* ==============================================
   ADMIN DASHBOARD
============================================== */
.admin-shell {
    display: flex;
    min-height: 100vh;
    background: #f0f4fc;
}

/* --- SIDEBAR --- */
.admin-sidebar {
    width: 230px;
    flex-shrink: 0;
    background: #fff;
    border-right: 1px solid rgba(7, 87, 248, 0.10);
    display: flex;
    flex-direction: column;
    padding: 24px 0 20px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar .logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
    text-decoration: none;
}

.admin-sidebar .logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--blue);
    flex-shrink: 0;
}

.admin-sidebar .logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.admin-sidebar .logo-text strong {
    color: var(--dark-blue);
    font-size: 13px;
    line-height: 1.2;
}

.admin-sidebar .logo-text small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Tabs nav */
.admin-tabs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 12px;
    flex: 1;
}

.admin-tabs button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: none;
    background: transparent;
    border-radius: 10px;
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-align: left;
    width: 100%;
}

.admin-tabs button i {
    width: 18px;
    text-align: center;
    font-size: 14px;
}

.admin-tabs button:hover {
    background: #f0f4ff;
    color: var(--blue);
}

.admin-tabs button.active {
    background: #eef3ff;
    color: var(--blue);
    font-weight: 700;
}

.admin-logout {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 12px 0;
    padding: 10px 14px;
    border: 1px solid rgba(231, 76, 60, 0.25);
    background: rgba(231, 76, 60, 0.06);
    border-radius: 10px;
    color: #e74c3c;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: calc(100% - 24px);
}

.admin-logout:hover {
    background: rgba(231, 76, 60, 0.14);
}

/* --- MAIN CONTENT --- */
.admin-main {
    flex: 1;
    padding: 28px 28px 40px;
    overflow-y: auto;
    min-width: 0;
}

.admin-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
    gap: 12px;
}

.admin-header span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.admin-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: var(--dark-blue);
    margin-top: 2px;
    line-height: 1.1;
}

#adminUserLabel {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    padding-top: 4px;
    white-space: nowrap;
}

/* =====================
   ADMIN HAMBURGER BUTTON
===================== */

.admin-message {
    display: block;
    min-height: 18px;
    font-size: 13px;
    color: var(--blue);
    margin-bottom: 16px;
    font-weight: 500;
}

/* --- PANELS --- */
.admin-panel {
    display: none;
}

.admin-panel.active {
    display: block;
}

/* Overview cards */
.admin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.admin-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 4px 16px rgba(7, 87, 248, 0.07);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.admin-card span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-card strong {
    color: var(--dark-blue);
    font-size: 36px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

/* CMS Cards */
.cms-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(7, 87, 248, 0.06);
}

.cms-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
    gap: 14px;
    flex-wrap: wrap;
}

.cms-card-head span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cms-card-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--dark-blue);
    margin-top: 2px;
}

.cms-card-head button,
.cms-card>form>button[type="submit"],
#sectionsForm>.cms-card-head button[type="submit"],
#policiesForm>.cms-card-head button[type="submit"] {
    height: 40px;
    padding: 0 20px;
    background: linear-gradient(135deg, #0a67ff, #0436c7);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 16px rgba(7, 87, 248, 0.25);
    flex-shrink: 0;
}

.cms-card-head button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(7, 87, 248, 0.30);
}

/* Form grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.form-grid label,
.cms-card label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.form-grid label input,
.form-grid label textarea,
.cms-card label textarea,
.cms-card label input {
    background: #f5f8ff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 13.5px;
    color: var(--text);
    resize: vertical;
    transition: border-color 0.2s;
    font-family: 'Poppins', sans-serif;
}

.form-grid label input:focus,
.form-grid label textarea:focus,
.cms-card label textarea:focus,
.cms-card label input:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
}

.full-field {
    grid-column: 1 / -1;
}

/* Sections repeatable */
.repeat-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.repeat-toolbar button {
    padding: 7px 14px;
    background: #eef3ff;
    border: 1px solid rgba(7, 87, 248, 0.2);
    border-radius: 8px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.repeat-toolbar button:hover {
    background: #dde8ff;
}

.repeat-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.repeat-item {
    background: #f9fbff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.repeat-item input,
.repeat-item textarea {
    background: white;
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 8px 11px;
    font-size: 13px;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
}

.repeat-item input:focus,
.repeat-item textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.repeat-item .remove-btn {
    align-self: flex-end;
    padding: 4px 10px;
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 6px;
    color: #e74c3c;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.repeat-item .remove-btn:hover {
    background: rgba(231, 76, 60, 0.18);
}

/* Assets */
.asset-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.asset-upload {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    background: #f5f8ff;
    border: 1px dashed rgba(7, 87, 248, 0.3);
    border-radius: 14px;
    padding: 20px;
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
}

.asset-upload img {
    width: 100%;
    max-height: 130px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.asset-upload input[type="file"] {
    display: none;
}

.asset-upload button {
    height: 36px;
    padding: 0 16px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.2s;
}

.asset-upload button:hover {
    opacity: 0.88;
}

/* Members table */
.members-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.members-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.members-table th {
    padding: 10px 14px;
    background: #f0f4fc;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-align: left;
    white-space: nowrap;
}

.members-table td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: middle;
}

.members-table tr:last-child td {
    border-bottom: none;
}

.members-table tr:hover td {
    background: #f9fbff;
}

/* Policies */
#policiesForm label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 16px;
}

#policiesForm label textarea {
    background: #f5f8ff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13.5px;
    color: var(--text);
    resize: vertical;
    font-family: 'Poppins', sans-serif;
}

#policiesForm label textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
}

/* =====================
   ADMIN HEADER — NEW STRUCTURE
===================== */
.admin-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.admin-header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.admin-header-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* On desktop, hide the logo row in header (sidebar already has logo) */
@media (min-width: 901px) {
    .admin-header-top {
        display: none;
    }

    .admin-header {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .admin-header-title {
        display: flex;
    }
}

/* On mobile, full card layout */
@media (max-width: 900px) {
    .admin-header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px 16px 12px;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid var(--border);
        border-radius: 14px;
        box-shadow: 0 4px 16px rgba(7, 87, 248, 0.08);
        margin-bottom: 18px;
    }

    .admin-header-top {
        display: flex;
    }

    .admin-header-title {
        padding-top: 4px;
        border-top: 1px solid var(--border);
    }

    .admin-header h1 {
        font-size: 20px;
    }

    .admin-header span {
        font-size: 10px;
    }

    .admin-hamburger {
        display: flex;
    }

    #adminUserLabel {
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        border-top: 1px solid var(--border);
        padding-top: 6px;
    }
}


.admin-hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: white;
    color: var(--dark-blue);
    font-size: 16px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(7, 87, 248, 0.08);
    transition: background 0.2s;
}

.admin-hamburger:hover {
    background: #eef3ff;
}

/* Overlay behind sidebar on mobile */
.admin-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(7, 18, 67, 0.35);
    backdrop-filter: blur(2px);
}

.admin-overlay.show {
    display: block;
}

/* Admin responsive */
@media (max-width: 900px) {
    .admin-hamburger {
        display: flex;
    }

    .admin-shell {
        flex-direction: column;
    }

    /* Sidebar becomes a slide-in drawer */
    .admin-sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 260px;
        height: 100vh;
        z-index: 999;
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 20px 0;
        gap: 0;
        border-right: 1px solid var(--border);
        border-bottom: none;
        transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 24px rgba(7, 18, 67, 0.12);
    }

    .admin-sidebar.open {
        left: 0;
    }

    .admin-sidebar .logo-area {
        width: 100%;
        padding: 0 20px 18px;
        margin-bottom: 12px;
    }

    .admin-tabs {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 4px;
        padding: 0 12px;
        flex: 1;
    }

    .admin-tabs button {
        padding: 10px 14px;
        font-size: 13.5px;
        flex: unset;
        width: 100%;
        text-align: left;
    }

    .admin-logout {
        margin: 16px 12px 0;
        width: calc(100% - 24px);
        padding: 10px 14px;
        font-size: 13px;
    }

    .admin-main {
        padding: 18px 14px 30px;
    }

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

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

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

@media (max-width: 600px) {
    .admin-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cms-card {
        padding: 18px 14px;
    }

    .cms-card-head {
        flex-direction: column;
        gap: 10px;
    }

    .cms-card-head button {
        width: 100%;
    }
}

/* =====================
   ADDITIONAL FIXES & UPDATES
===================== */

/* 1. Hero devotee sub-text — darker */
.devotee-sub {
    color: #182132 !important;
    font-size: 12px;
    font-weight: 500;
}

/* Also darken the devotee-count p globally */
.devotee-count p {
    color: #222c41;
    font-size: 12px;
    font-weight: 500;
}

/* 2. Join section white box — more transparent */
.join-content {
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

/* 3. Price color — warm gold-blue blend matching join section theme */
.price {
    color: #0b4fcf !important;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.price-badge {
    background: rgba(7, 87, 248, 0.08);
    color: #0757f8;
    border: 1px solid rgba(7, 87, 248, 0.20);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 800;
}

/* 4. Join form — input with icons */
.input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrap i {
    position: absolute;
    left: 16px;
    color: var(--blue);
    font-size: 15px;
    pointer-events: none;
    z-index: 1;
}

.input-icon-wrap input {
    width: 100%;
    padding-left: 46px !important;
}

/* 5. Contact section */
.contact-section {
    text-align: center;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 700;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.contact-email:hover {
    transform: translateY(-2px);
}

/* 6. Footer — add contact link styling (already added in HTML) */

/* 7. Hero background — lotus/followers section bigger & more visible */
/* The section-box::before emoji (lotus) — bigger and darker */
.section-box::before {
    font-size: 28px;
    opacity: 0.75;
}

/* 8. Mobile responsiveness improvements */
@media (max-width: 768px) {

    /* Better card spacing on mobile — not full-width cramped */
    .card-grid {
        padding: 0 12px;
    }

    .five-card-grid,
    .six-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    /* Join section — more side padding so form has breathing room */
    .join-section {
        padding: 40px 20px;
    }

    .join-content {
        max-width: 92%;
        padding: 24px 20px;
    }

    /* Smaller text in join form inputs */
    #joinForm input,
    .input-icon-wrap input {
        font-size: 14px;
        height: 48px;
    }

    /* Contact on mobile */
    .contact-email {
        font-size: 13px;
        padding: 14px 20px;
    }

    /* Footer — add contact properly in 2-col grid */
    .footer-links {
        grid-template-columns: repeat(2, 1fr) !important;
        display: grid !important;
    }
}

@media (max-width: 480px) {

    .five-card-grid,
    .six-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .join-content {
        max-width: 100%;
        padding: 22px 16px;
    }
}


/* --- Overview 3-box grid --- */
.overview-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

.highlight-card {
    border-left: 4px solid var(--blue) !important;
}

.revenue-card {
    border-left: 4px solid var(--gold) !important;
}

/* Audio upload grid */
.audio-upload-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

@media (max-width: 600px) {
    .overview-3 {
        grid-template-columns: 1fr !important;
    }

    .audio-upload-grid {
        grid-template-columns: 1fr;
    }
}