/* ─────────────────────────────────────────────────────────────
   1. GLOBAL VARIABLES & RESET
   ───────────────────────────────────────────────────────────── */
:root {
    --primary-maroon: #8B0000;   /* Traditional Deep Red */
    --accent-saffron: #FF9933;   /* Sacred Saffron */
    --gold-highlight: #FFD700;   /* Divine Gold */
    --off-white: #FFFBF2;        /* Parchment-like Background */
    --text-dark: #2d2d2d;
    --transition-smooth: all 0.4s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden; /* Prevents horizontal scroll from animations */
}

/* ─────────────────────────────────────────────────────────────
   2. TOP CONTACT BAR
   ───────────────────────────────────────────────────────────── */
.top-bar {
    background: #1a1a1a;
    color: #efefef;
    font-size: 13px;
    border-bottom: 1px solid #333;
}

.top-bar a {
    color: var(--accent-saffron);
    font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────
   3. ANNOUNCEMENT BAR (Scrolling Text)
   ───────────────────────────────────────────────────────────── */
.announce-bar {
    background: var(--accent-saffron);
    color: white;
    overflow: hidden;
    padding: 8px 0;
    font-weight: 500;
    border-bottom: 2px solid var(--gold-highlight);
}

.announce-scroll {
    display: flex;
    white-space: nowrap;
}

.scroll-content {
    display: inline-block;
    padding-left: 100%; /* Initial offset */
    animation: scroll-left 40s linear infinite;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* ─────────────────────────────────────────────────────────────
   4. NAVBAR STYLING
   ───────────────────────────────────────────────────────────── */
.navbar {
    background-color: var(--off-white); 
    transition: var(--transition-smooth);
    padding: 10px 0;
    border-bottom: 2px solid var(--gold-highlight);
}

.navbar-nav {
    display: flex;
    align-items: center; /* Vertically centers the "Pill" links with the Logo box */
}

.main-logo {
    height: 80px; 
    transition: var(--transition-smooth);
    
    background-color: white;       /* This prevents mixing with maroon */
    padding: 0px;             /* Space around the logo inside the box */
    border-radius: 8px;           /* Rounded corners for a modern feel */
    /* Gold outline to match theme */
    /* Subtle shadow for depth */
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    color: var(--primary-maroon) !important;
    font-weight: 600;
    padding: 8px 20px !important; /* Added padding for the pill effect */
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 50px; /* Rounded corners for the hover pill */
    transition: all 0.3s ease;
}

/* Hover Effect: Modern Pill Style */
.nav-link:hover {
    background-color: rgba(255, 153, 51, 0.15); /* Light saffron transparent bg */
    color: var(--accent-saffron) !important;
}

/* Scrolled State Logic */
.navbar-scrolled {
    background-color: var(--primary-maroon) !important;
    padding: 5px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.navbar-scrolled .nav-link {
    color: white !important;
}

/* Pill hover effect when navbar is scrolled (maroon background) */
.navbar-scrolled .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2); /* White transparent pill */
    color: var(--gold-highlight) !important;
}

/* Scrolled State Logic */
/* Scrolled State Logic */
.navbar-scrolled .main-logo {
    height: 65px;                  /* Shorter height on scroll */
    padding: 0px;             /* Slightly smaller padding */
    background-color: white;       /* KEEP white background */
        /* Change border to saffron on scroll */
    filter: none;                  /* REMOVE the drop-shadow we tried earlier */
}

/* ─────────────────────────────────────────────────────────────
   5. BUTTONS & UI ELEMENTS
   ───────────────────────────────────────────────────────────── */
.btn-donations {
    background-color: var(--primary-maroon);
    color: white !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 8px 25px;
    border: 2px solid var(--gold-highlight);
    transition: var(--transition-smooth);
    margin-left: 10px;
}

.btn-donations:hover {
    background-color: var(--accent-saffron);
    color: white !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Donate button style when navbar is scrolled */
.navbar-scrolled .btn-donations {
    background-color: var(--accent-saffron);
    border-color: var(--gold-highlight);
}

/* ─────────────────────────────────────────────────────────────
   6. HERO SLIDER 2.0 (DIVINE SANCTUM STYLE)
   ───────────────────────────────────────────────────────────── */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    background-color: #1a1a1a;
    overflow: hidden;
    border-bottom: 5px solid var(--gold-highlight);
}

/* Ensure Carousel takes full height */
#heroCarousel, 
#heroCarousel .carousel-inner, 
#heroCarousel .carousel-item {
    height: 100%;
}

.hero-img-wrap {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: flex-start; /* Default for Desktop */
}

/* The Traditional Gold Border */
.divine-sanctum-frame {
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 25px;
    right: 25px;
    border: 2px solid var(--gold-highlight);
    pointer-events: none;
    z-index: 5;
    opacity: 0.7;
}

/* Traditional corner ornaments */
.divine-sanctum-frame::before, 
.divine-sanctum-frame::after {
    content: '🕉️';
    position: absolute;
    background: var(--gold-highlight);
    color: var(--primary-maroon);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    border: 2px solid white;
    z-index: 6;
}
.divine-sanctum-frame::before { top: -17px; left: -17px; }
.divine-sanctum-frame::after { bottom: -17px; right: -17px; }

/* Content Positioning - Left Aligned */
.hero-content-modern {
    position: relative;
    z-index: 10;
    max-width: 750px;
    padding-left: 5%;
    text-align: left;
}

.telugu-main {
    font-family: 'Suranna', serif;
    color: var(--accent-saffron);
    font-size: clamp(1.8rem, 5vw, 3rem); /* Responsive font size */
    margin-bottom: 5px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
}

.english-sub {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.9);
}

.hero-btns .btn {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

/* Animation for text */
.carousel-item.active .hero-content-modern {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 📱 Mobile Specific Adjustments */
@media (max-width: 768px) {
    .hero-slider {
        height: 85vh; /* Balanced height for mobile screens */
    }

    .hero-img-wrap {
        justify-content: center; /* Center content horizontally */
        align-items: center;     /* Center content vertically */
    }

    .divine-sanctum-frame {
        top: 15px;
        bottom: 15px;
        left: 15px;
        right: 15px;
        opacity: 0.3; /* Subtle frame to keep focus on text */
    }

    .hero-content-modern {
        padding-left: 0 !important;
        text-align: center !important; 
        margin: 0 auto;
        width: 95%;
        display: flex;
        flex-direction: column;
        align-items: center; /* Ensures all children are centered */
    }

    .telugu-main {
        font-size: 1.6rem; 
        margin-bottom: 8px;
    }

    .english-sub {
        font-size: 2.4rem; 
        line-height: 1.1;
        margin-bottom: 15px;
    }

    /* ── Updated Button Logic ── */
    .hero-btns {
        display: flex;
        flex-direction: column; /* Vertical stack */
        gap: 12px;
        width: 100%;
        max-width: 280px; /* Prevents buttons from being too wide on tablets */
        margin: 0 auto;   /* Centers the button block */
    }

    .hero-btns .btn {
        margin-right: 0 !important; 
        width: 100%;       /* Uniform width for both buttons */
        padding: 12px;     /* Better tap area */
        font-size: 0.95rem;
        border-radius: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
/* ─────────────────────────────────────────────────────────────
   7. RESPONSIVENESS (MOBILE NAV FIX)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .navbar {
        background-color: var(--primary-maroon) !important; /* Always maroon on mobile */
    }
    
    .nav-link {
        color: white !important;
        padding: 10px 15px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: left;
    }

    .main-logo {
        height: 60px; /* Smaller for mobile */
        padding: 0px;
        background-color: white !important; /* Ensure box stays white */
        filter: none !important; /* REMOVE THE INVERT FILTER - This was the bug */
        border-radius: 0px;
    }

    /* Fix for hamburger menu icon color */
    .navbar-toggler {
        border-color: rgba(255,255,255,0.5);
    }
    .fa-bars.text-maroon {
        color: white !important; /* Make icon white against maroon bg */
    }
}

    /* ─────────────────────────────────────────────────────────────
    8. ABOUT SECTION: DIVINE ARCH & TORANAM
    ───────────────────────────────────────────────────────────── */
    .about-section {
        background-color: var(--off-white);
        padding: 100px 0;
        position: relative;
    }

    .about-image-wrapper {
        position: relative;
        padding-top: 50px; /* Space for the bells/flowers at top */
    }

    /* Updated Arch: Taller and Rounded to show the whole temple */
    .temple-arch {
        width: 100%;
        height: 600px; 
        border: 6px solid var(--gold-highlight);
        border-bottom: 15px solid var(--gold-highlight); /* Thick base like a pedestal */
        border-radius: 300px 300px 20px 20px; /* High dome shape */
        overflow: hidden;
        position: relative;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        background-color: #eee;
    }

    .parallax-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120%;
        background-image: url('../img/swamy.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center bottom; /* Keeps temple base aligned */
        background-attachment: fixed;
        transition: transform 0.2s ease-out;
    }

    /* 🔔 THE TORANAM (Bells & Flowers Decoration) */
    .about-image-wrapper::before {
        content: '🔔 🌸 🔔 🌸 🔔 🌸 🔔'; 
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        font-size: 22px;
        white-space: nowrap;
        letter-spacing: 12px;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    }

    .arch-ornament {
        position: absolute;
        bottom: -15px;
        right: 30px;
        width: 80px;
        height: 80px;
        background: white;
        border: 3px solid var(--gold-highlight);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* Typography Enhancements */
    .telugu-main {
        font-family: 'Suranna', serif;
        color: var(--accent-saffron);
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .english-title {
        font-family: 'Playfair Display', serif;
        color: var(--primary-maroon);
        font-weight: 700;
        font-size: 2rem;
        margin-top: -5px;
    }

    .about-text {
        line-height: 1.8;
        color: #444;
        font-size: 1.1rem;
        text-align: justify;
    }

    .btn-outline-maroon {
        background-color: transparent;
        color: var(--primary-maroon);
        border: 2px solid var(--gold-highlight); /* Gold border like btn-donations */
        border-radius: 50px;
        font-weight: 700;
        padding: 10px 35px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: var(--transition-smooth);
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .btn-outline-maroon:hover {
        background-color: var(--primary-maroon); /* Changes to Maroon on hover */
        color: white !important;                 /* Text turns white */
        border-color: var(--accent-saffron);    /* Border shifts to Saffron */
        transform: translateY(-3px);            /* Subtle lift effect */
        box-shadow: 0 6px 15px rgba(139, 0, 0, 0.2);
    }

    /* 📱 Responsive Adjustments */
    @media (max-width: 768px) {
        .temple-arch { height: 400px; border-radius: 150px 150px 20px 20px; }
        .about-image-wrapper::before { font-size: 16px; letter-spacing: 8px; }
        .telugu-main { font-size: 1.8rem; }
        .english-title { font-size: 1.5rem; }

    }

    /* 💻 DESKTOP VIEW (769px and up) */
@media (min-width: 769px) {
    .parallax-img {
        /* Desktop Image */
        background-image: url('../img/temple.webp'); 
        
        /* Fit logic we discussed */
        height: 100%;
        width: 100%;
        background-size: contain; 
        background-position: center bottom;
        background-attachment: local;
    }

    .temple-arch {
        /* Ensure the arch height is appropriate for the desktop image */
        height: 600px; 
        border: 6px solid var(--gold-highlight);
        border-bottom: 15px solid var(--gold-highlight);
        border-radius: 300px 300px 20px 20px;
        background-color: #f9f9f9;
        display: flex;
        align-items: flex-end;
    }
}

/* ─────────────────────────────────────────────────────────────
   9. ARCHITECTURE SECTION (DIVINE STONE THEME)
   ───────────────────────────────────────────────────────────── */
.arch-parallax-section {
    position: relative;
    padding: 100px 0;
    /* Light Marble/Stone Background */
    background-color: #fcfaf5; 
    background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
    border-top: 1px solid var(--gold-highlight);
    border-bottom: 1px solid var(--gold-highlight);
}

/* Featured Cards - Now looking like Stone Plaques */
.arch-parallax-card {
    background: white;
    padding: 40px 30px;
    border: 1px solid var(--gold-highlight);
    border-top: 5px solid var(--primary-maroon); /* Maroon top border */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    z-index: 5;
}

.arch-parallax-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.1);
}

.arch-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-saffron);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.arch-parallax-card h5 {
    color: var(--primary-maroon);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.arch-parallax-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* The Center Arch - Keeping the Dome Shape */
.steps-frame {
    width: 100%;
    height: 500px;
    border: 8px solid white;
    outline: 2px solid var(--gold-highlight);
    border-radius: 250px 250px 0 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.steps-parallax-img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

/* Section Text Colors */
.arch-parallax-section .english-title {
    color: var(--primary-maroon);
}

.section-tag {
    color: var(--accent-saffron);
    font-weight: 700;
    letter-spacing: 2px;
}

/* ─────────────────────────────────────────────────────────────
   10. RITUALS SECTION (RESPONSIVE IMAGE SWAP)
   ───────────────────────────────────────────────────────────── */
.ritual-parallax-wrap {
    background-color: #fffefb;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.ritual-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/mandala.png');
    opacity: 0.05;
    z-index: 1;
}

.ritual-image-box {
    position: relative;
    z-index: 5;
}

/* 📱 MOBILE IMAGE SETTINGS (Default) */
.ritual-img-responsive {
    width: 100%;
    height: 350px;
    background-image: url('../img/image_2.png'); /* Mobile Image */
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.scalloped-frame {
    border-radius: 15px;
    overflow: hidden;
}

.ritual-badge {
    display: none; /* Hide badge on small screens to save space */
}

/* 💻 DESKTOP IMAGE SETTINGS (769px and up) */
@media (min-width: 769px) {
    .scalloped-frame {
        width: 100%;
        height: 500px;
        border: 10px solid white;
        outline: 1px solid var(--gold-highlight);
        /* Petal/Dome Shape */
        clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0 100%, 0 25%);
        border-radius: 50% 50% 15px 15px; 
        box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    }

    .ritual-img-responsive {
        height: 120%; /* Extra height for parallax */
        background-image: url('../img/group.png'); /* Desktop Image */
        background-attachment: fixed;
        background-position: center bottom;
    }

    .ritual-badge {
        display: block;
        position: absolute;
        top: -15px;
        right: 40px;
        background: var(--accent-saffron);
        color: white;
        padding: 8px 20px;
        border-radius: 0 0 15px 15px;
        font-weight: 700;
        font-size: 0.8rem;
        z-index: 10;
    }
}

/* Typography Consistency */
.ritual-mini-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.mini-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────
   11. GALLERY SECTION (BALANCED RECTANGULAR GRID)
   ───────────────────────────────────────────────────────────── */
.gallery-section {
    background-color: #fff;
    padding: 80px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px; /* Smooth regular corners */
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

/* Height for Horizontal Items */
.gallery-item.horizontal {
    height: 280px;
}

/* Height for the Large Vertical Item */
.gallery-item.vertical-full {
    height: 585px; /* Matches 280px + 280px + gap */
}

.gallery-img-parallax {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

/* Parallax only on Desktop */
@media (min-width: 992px) {
    .gallery-img-parallax {
        background-attachment: fixed;
    }
}

/* Hover Effects */
.gallery-item:hover .gallery-img-parallax {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-left: 3px solid var(--accent-saffron);
    padding-left: 10px;
}

/* 📱 Mobile Adjustments */
@media (max-width: 991px) {
    .gallery-item.horizontal, 
    .gallery-item.vertical-full {
        height: 250px; /* Uniform size for easier scrolling on mobile */
    }
}

/* ─────────────────────────────────────────────────────────────
   12. ONLINE SERVICES (PARALLAX GRID)
   ───────────────────────────────────────────────────────────── */
.services-parallax-section {
    position: relative;
    background-color: #fdfdfd;
    overflow: hidden;
}

.services-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 120%;
    background-image: url('../img/logo-o.png'); /* Using a faint logo as background watermark */
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.03;
    z-index: 1;
}

.service-glass-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
    position: relative;
    height: 100%;
}

.service-glass-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.1);
    border-color: var(--gold-highlight);
}

.s-icon-circle {
    width: 70px;
    height: 70px;
    background: #fff5eb;
    color: var(--primary-maroon);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.service-glass-card:hover .s-icon-circle {
    background: var(--primary-maroon);
    color: white;
}

.telugu-tiny {
    font-family: 'Suranna', serif;
    color: var(--accent-saffron);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.btn-service-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-maroon);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-service-link:hover {
    color: var(--accent-saffron);
    padding-left: 10px;
}

.service-note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* 📱 Mobile Adjustments */
@media (max-width: 768px) {
    .service-glass-card {
        padding: 30px 20px;
    }
}

/* ─────────────────────────────────────────────────────────────
   13. SOCIAL MEDIA HUB (PARALLAX & GLASS)
   ───────────────────────────────────────────────────────────── */
.social-parallax-section {
    position: relative;
    background: linear-gradient(135deg, #fffcf5 0%, #fff 100%);
    overflow: hidden;
    padding: 100px 0;
}

.social-bg-smoke {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 150%;
    background-image: url('../img/logo-o.png'); /* Using logo as a watermark */
    background-attachment: fixed;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0.04;
    z-index: 1;
}

.social-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 45px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.social-glass-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
}

.social-icon-top {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Platform Colors */
.yt-color { color: #FF0000; }
.insta-color { color: #E1306C; }
.wa-color { color: #25D366; }

/* Buttons */
.btn-social {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: 0.3s;
}

.yt-btn { background: #FF0000; }
.insta-btn { background: linear-gradient(45deg, #f09433, #e1306c, #bc1888); }
.wa-btn { background: #25D366; }

.btn-social:hover {
    opacity: 0.9;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

/* 📱 Mobile Logic */
@media (max-width: 991px) {
    .social-glass-card {
        margin-bottom: 20px;
        backdrop-filter: none; /* Better mobile performance */
        background: white;
    }
}

/* ─────────────────────────────────────────────────────────────
   14. REDESIGNED LOCATION SECTION
   ───────────────────────────────────────────────────────────── */
.location-section {
    background-color: #fffcf7; /* Warm spiritual white */
    padding: 80px 0;
}

.address-text {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

/* --- Map Styling --- */
.map-premium-wrapper {
    position: relative;
    padding: 10px;
    background: white;
    border: 1px solid var(--gold-highlight);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.map-inner-frame {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
}

.map-inner-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-floating-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-maroon);
    color: white !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
    transition: 0.3s;
}

.map-floating-btn:hover {
    background: var(--accent-saffron);
    transform: scale(1.05);
}

/* --- Travel Cards --- */
.travel-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.travel-info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 5px solid var(--gold-highlight);
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.travel-info-card:hover {
    transform: translateX(10px);
    border-left-color: var(--primary-maroon);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.travel-icon-box {
    width: 60px;
    height: 60px;
    background: #fff5eb;
    color: var(--accent-saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.travel-info-card:hover .travel-icon-box {
    background: var(--primary-maroon);
    color: white;
}

.travel-details h6 {
    margin: 0;
    font-weight: 700;
    color: var(--primary-maroon);
    text-transform: uppercase;
    font-size: 0.95rem;
}

.travel-details p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* 📱 Responsive Adjustments */
@media (max-width: 991px) {
    .map-inner-frame { height: 350px; }
    .travel-info-card:hover { transform: none; }
}

/* ─────────────────────────────────────────────────────────────
   15. GRAND FOOTER STYLING
   ───────────────────────────────────────────────────────────── */
.footer-section {
    background-color: var(--primary-maroon);
    color: #f1f1f1;
    position: relative;
    border-top: 5px solid var(--gold-highlight);
}

.footer-logo {
    height: 65px;
    background: white;
    padding: 8px 15px;
    border-radius: 8px;
    border: 2px solid var(--gold-highlight);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-title {
    color: var(--gold-highlight);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--gold-highlight);
    padding-left: 8px;
}

.timing-box p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.text-gold {
    color: var(--gold-highlight) !important;
}

/* Social Icons */
.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--gold-highlight);
    color: var(--primary-maroon);
    transform: translateY(-5px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.developer-link {
    color: var(--gold-highlight);
    text-decoration: none;
    font-weight: 600;
}

.developer-link:hover {
    text-decoration: underline;
    color: white;
}

/* 📱 Mobile Adjustments */
@media (max-width: 768px) {
    .footer-section { text-align: center; }
    .footer-links li { margin-bottom: 10px; }
    .footer-social { justify-content: center; display: flex; }
}

/* ─────────────────────────────────────────────────────────────
   ======================= ABOUT PAGE STYLES =======================
   ───────────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────────────
   ABOUT PAGE SPECIFIC STYLES
   ───────────────────────────────────────────────────────────── */

/* Hero */
.about-hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-hero-parallax {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.6);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 5;
}

/* History Section */
.history-section {
    background-color: #fffdfb;
}

.history-quote {
    padding: 20px 30px;
    border-left: 4px solid var(--accent-saffron);
    background: rgba(255, 153, 51, 0.05);
    font-style: italic;
    color: var(--primary-maroon);
}

/* Tapered Arch Design */
.history-image-wrapper {
    position: relative;
}

.tapered-arch {
    width: 100%;
    height: 500px;
    border: 6px solid var(--gold-highlight);
    /* Unique Shape: Narrower top, wider base */
    clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.history-img-parallax {
    height: 120%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.arch-badge {
    position: absolute;
    top: 20px;
    left: -10px;
    background: var(--primary-maroon);
    color: white;
    padding: 5px 15px;
    font-weight: 700;
    transform: rotate(-5deg);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
}

/* Founder Specific Styles */
.history-quote small {
    display: block;
    margin-top: 10px;
    font-weight: 700;
    font-style: normal;
    color: var(--accent-saffron);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-maroon {
    color: var(--primary-maroon);
}

.founder-contact {
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Ensure badge reflects the historical accuracy */
.arch-badge {
    background: var(--primary-maroon); /* Keep your maroon theme */
    color: white;
    font-size: 1.1rem;
}

/* ─────────────────────────────────────────────────────────────
   EXTENDED HISTORY STYLES
   ───────────────────────────────────────────────────────────── */

/* Contact & Location Pills */
.contact-info-pill, .location-info-pill {
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--gold-highlight);
    color: var(--primary-maroon);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info-pill i, .location-info-pill i {
    color: var(--accent-saffron);
    margin-right: 8px;
}

/* 18 Hills Decorative Tag */
.hills-tag {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--accent-saffron);
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-family: 'Suranna', serif;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 10;
}

/* Gold Badge for Year */
.arch-badge-gold {
    position: absolute;
    top: 30px;
    left: -15px;
    background: linear-gradient(45deg, #d4af37, #f9f295, #d4af37);
    color: var(--primary-maroon);
    padding: 8px 20px;
    font-weight: 800;
    transform: rotate(-3deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid white;
}

/* Typography Enhancements */
.english-title {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.telugu-main {
    line-height: 1.4;
}

/* 📱 Responsive Adjustments */
@media (max-width: 768px) {
    .about-hero { height: 40vh; }
    .tapered-arch { height: 350px; clip-path: none; border-radius: 20px; }
}

/* ─────────────────────────────────────────────────────────────
   16. 18 STEPS PARALLAX ASCENT
   ───────────────────────────────────────────────────────────── */
.steps-parallax-section {
    background: linear-gradient(135deg, #2c0404 0%, #5d0a0a 100%); /* Deep Maroon sunset */
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.steps-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../img/logo-o.png');
    background-attachment: fixed;
    background-size: 40%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.text-gold-light {
    color: #f9f295;
    font-family: 'Playfair Display', serif;
}

/* The Step Card */
.step-parallax-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    position: relative;
    z-index: 5;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(5px);
}

.step-parallax-card:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #f9f295;
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.step-num-circle {
    width: 35px;
    height: 35px;
    background: var(--gold-highlight);
    color: var(--primary-maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.step-content span {
    display: block;
}

.step-telugu {
    font-family: 'Suranna', serif;
    color: #f9f295;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.step-english {
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.vratham-note {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-size: 0.9rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: inline-block;
    padding-top: 20px;
}

/* 📱 Mobile Grid */
@media (max-width: 768px) {
    .step-parallax-card { padding: 15px 5px; }
    .step-telugu { font-size: 0.95rem; }
}

/* ─────────────────────────────────────────────────────────────
   17. SHRINES GRID PARALLAX (MOBILE REFINED)
   ───────────────────────────────────────────────────────────── */
.shrines-section {
    background-color: #fcfaf5;
    position: relative;
    overflow: hidden;
    padding: 60px 0; /* Reduced padding for mobile */
}

.shrine-parallax-card {
    background: white;
    padding: 35px 25px; /* Increased padding for better readability */
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%; /* Ensures cards in the same row are equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.telugu-tiny {
    font-family: 'Suranna', serif;
    color: var(--accent-saffron);
    font-size: 1.3rem;
    margin-bottom: 8px;
    line-height: 1.2;
}

.shrine-parallax-card h5 {
    color: var(--primary-maroon);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.shrine-parallax-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
    line-height: 1.5;
}

/* 📱 Mobile Specific Fixes (Below 768px) */
@media (max-width: 767px) {
    .shrines-section {
        padding: 40px 0;
    }
    
    .shrine-parallax-card {
        padding: 30px 20px;
        margin: 0 auto;
        max-width: 400px; /* Prevents card from becoming too wide on large phones */
    }

    .shrine-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .telugu-tiny {
        font-size: 1.1rem;
    }

    .shrine-parallax-card h5 {
        font-size: 1rem;
    }
    
    /* Remove parallax background on mobile for performance */
    .shrines-parallax-bg {
        background-attachment: scroll;
    }
}

/* ─────────────────────────────────────────────────────────────
   18. FOUNDER & LEADERSHIP SECTION
   ───────────────────────────────────────────────────────────── */
.leadership-parallax-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.leadership-bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../img/logo-o.png');
    background-attachment: fixed;
    background-size: 25%;
    background-position: left bottom;
    opacity: 0.04;
    z-index: 1;
}

/* Founder Image Shield Frame */
.founder-image-container {
    position: relative;
    z-index: 5;
    padding: 20px;
}

.founder-frame {
    width: 100%;
    height: 500px;
    border: 12px solid white;
    outline: 2px solid var(--gold-highlight);
    /* Shield-like shape */
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.founder-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.founder-frame:hover .founder-img {
    transform: scale(1.05);
}

.founder-name-tag {
    position: absolute;
    bottom: -10px;
    right: 0;
    background: var(--primary-maroon);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.3);
}

.founder-name-tag h4 {
    font-family: 'Suranna', serif;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.founder-name-tag span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-highlight);
}

/* Value List */
.value-list {
    list-style: none;
    padding: 0;
}

.value-list li {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-maroon);
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-list li i {
    color: var(--accent-saffron);
    font-size: 0.8rem;
}

/* 📱 Mobile Fix */
@media (max-width: 991px) {
    .founder-frame { height: 400px; }
    .founder-name-tag { position: relative; bottom: 0; margin-top: 20px; width: 100%; text-align: center; }
}


/* ─────────────────────────────────────────────────────────────
   ======================== Festival Page Styles ========================
   ───────────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────────────
   19. FESTIVAL TIMELINE STYLES
   ───────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────
   FESTIVALS V3: HERO & STAGGERED TIMELINE
   ───────────────────────────────────────────────────────────── */

/* --- Hero Section --- */
.festivals-hero-v2 {
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.fest-parallax-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(60,0,0,0.75));
}

.telugu-hero-title {
    font-family: 'Suranna', serif;
    font-size: 3.5rem;
    color: #f9f295;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.english-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
}

.gold-separator {
    width: 200px;
    height: 2px;
    background: var(--gold-highlight);
    position: relative;
    margin: 25px auto;
}

.gold-separator i {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #4a0000; /* Matches typical maroon hero overlay */
    padding: 0 15px;
    color: var(--gold-highlight);
    font-size: 1.2rem;
}

/* --- Timeline Section --- */
.festival-timeline-v3 {
    background-color: #fffcf7;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.timeline-v3-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* The Central Aura Line */
.main-aura-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e0e0e0;
    transform: translateX(-50%);
}

.main-aura-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, var(--gold-highlight), var(--primary-maroon), var(--gold-highlight));
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Timeline Item Logic */
.timeline-v3-item {
    position: relative;
    width: 50%;
    padding: 20px 60px;
    margin-bottom: 40px;
    z-index: 5;
}

/* Alternating Sides */
.timeline-v3-item.left {
    left: 0;
    text-align: right;
}

.timeline-v3-item.right {
    left: 50%;
    text-align: left;
}

/* Glowing Nodes */
.aura-node {
    position: absolute;
    width: 54px;
    height: 54px;
    background: white;
    border: 3px solid var(--gold-highlight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-maroon);
    font-size: 1.2rem;
    z-index: 10;
    top: 30px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.left .aura-node { right: -27px; }
.right .aura-node { left: -27px; }

.timeline-v3-item:hover .aura-node {
    background: var(--primary-maroon);
    color: white;
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 0 25px var(--gold-highlight);
}

/* Festival Cards */
.fest-v3-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
    transition: 0.3s;
}

.fest-v3-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-highlight);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.08);
}

.card-date {
    display: inline-block;
    color: var(--accent-saffron);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fest-badge {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-maroon);
    background: #fff5eb;
    padding: 4px 12px;
    border-radius: 50px;
}

/* 📱 Mobile Responsive (Carefully updated) */
@media (max-width: 991px) {
    .telugu-hero-title { font-size: 2.2rem; }
    
    .main-aura-line { 
        left: 30px; 
        transform: none;
    }
    
    .timeline-v3-item { 
        width: 100%; 
        left: 0 !important; 
        text-align: left !important; 
        padding: 20px 20px 20px 80px; 
    }
    
    .aura-node { 
        left: 3px !important; 
        width: 45px;
        height: 45px;
        top: 25px;
    }

    .fest-v3-card {
        padding: 25px;
    }
}

/* ─────────────────────────────────────────────────────────────
   20 : DIGITAL PANDALS (PARALLAX CARDS)
   ───────────────────────────────────────────────────────────── */
.digital-pandals-section {
    background-color: #fffdfb;
}

.pandal-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.pandal-image-wrap {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
}

.pandal-img-parallax {
    height: 120%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* This creates the parallax reveal */
}

/* Date Badge on Image */
.pandal-date-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--primary-maroon);
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
    z-index: 10;
}

.pandal-date-badge span {
    display: block;
    font-family: 'Suranna', serif;
    font-size: 1.1rem;
    color: var(--gold-highlight);
}

.pandal-date-badge small {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Content Area */
.pandal-content {
    padding: 50px;
}

.telugu-pandal-title {
    font-family: 'Suranna', serif;
    font-size: 2rem;
    color: var(--primary-maroon);
    margin-bottom: 5px;
}

.english-pandal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pandal-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin: 25px 0;
}

/* Schedule Button */
.btn-ritual-schedule {
    background: transparent;
    border: 2px solid var(--gold-highlight);
    color: var(--primary-maroon);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-ritual-schedule:hover {
    background: var(--gold-highlight);
    color: white;
}

.schedule-table {
    background: #fff9f2;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* 📱 Mobile Tweaks */
@media (max-width: 991px) {
    .pandal-image-wrap { height: 300px; }
    .pandal-content { padding: 30px 20px; text-align: center !important; }
    .gold-line { margin: 15px auto !important; }
    .pandal-img-parallax { background-attachment: scroll; } /* Mobile performance */
}

/* ─────────────────────────────────────────────────────────────
   21: MAKARA JYOTI IMMERSIVE FEATURE
   ───────────────────────────────────────────────────────────── */
.jyoti-feature-section {
    height: 85vh;
    position: relative;
    overflow: hidden;
    background-color: #050a18; /* Deep Midnight Blue */
    display: flex;
    align-items: center;

}

.jyoti-parallax-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 140%;
    background-image: url('../img/makara.png'); /* Use the generated Star image here */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.2;
    z-index: 1;
}

/* The Pulsing Star Glow */
.divine-star-aura {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,242,149,0.4) 0%, rgba(255,242,149,0) 70%);
    z-index: 2;
    animation: starPulse 4s infinite ease-in-out;
}

@keyframes starPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.8; }
}

.text-gold-glow {
    color: #f9f295;
    text-shadow: 0 0 20px rgba(249, 242, 149, 0.6);
    font-size: 3.5rem;
}

.jyoti-poem {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.jyoti-mantra {
    display: inline-block;
    padding: 10px 40px;
    border: 1px solid var(--gold-highlight);
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.1);
}

.jyoti-mantra span {
    font-family: 'Suranna', serif;
    font-size: 1.5rem;
    color: var(--gold-highlight);
    letter-spacing: 2px;
}

/* 📱 Mobile Adjustments (Fixed for Content Cutting) */
@media (max-width: 768px) {
    .jyoti-feature-section { 
        /* Use min-height instead of fixed height so it expands if content is long */
        min-height: 80vh; 
        height: auto;
        padding: 60px 0; /* Adds space at top and bottom */
        display: block; /* Changes from flex to block for better flow on small screens */
    }

    .jyoti-content-box {
        padding: 0 15px; /* Ensures text doesn't touch screen edges */
    }

    .text-gold-glow { 
        font-size: 2rem; 
        line-height: 1.2;
        margin-top: 15px;
    }

    .jyoti-poem { 
        font-size: 0.95rem; 
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .jyoti-mantra {
        padding: 8px 25px;
        width: 90%; /* Ensures it fits narrow screens */
    }

    .jyoti-mantra span {
        font-size: 1.2rem;
        display: block; /* Prevents overflow of Telugu text */
    }

    /* Adjust the star aura position for the new height */
    .divine-star-aura {
        top: 20%;
        width: 150px;
        height: 150px;
    }
}

/* ─────────────────────────────────────────────────────────────
   22: MONTHLY RITUALS (LUNAR CAROUSEL)
   ───────────────────────────────────────────────────────────── */
.monthly-rituals-section {
    background-color: #f4f6f9;
    overflow: hidden;
}

.text-charcoal { color: #2c3e50; }
.silver-line { width: 80px; height: 3px; background: #bdc3c7; border-radius: 5px; }

.ritual-slider-wrapper {
    padding: 20px 0;
}

.lunar-card {
    transition: 0.4s ease;
    padding: 10px;
}

.lunar-circle-wrap {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    position: relative;
    padding: 10px;
    background: white;
    border: 1px solid #dcdde1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: visible;
}

.lunar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lunar-card:hover .lunar-img {
    transform: scale(1.1) rotate(5deg);
}

.lunar-phase-tag {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Custom Horizontal Scrollbar */
.custom-scrollbar::-webkit-scrollbar { height: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: #eee; border-radius: 10px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #bdc3c7; border-radius: 10px; }

/* 📱 Mobile Adjustments */
@media (max-width: 768px) {
    .lunar-circle-wrap { width: 180px; height: 180px; }
}

/* ─────────────────────────────────────────────────────────────
   23: FESTIVAL CTA BRIDGE
   ───────────────────────────────────────────────────────────── */

.festival-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Background Overlay Layer (Stays Back) */
.cta-parallax-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Use a direct background declaration for cleaner layering */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1; /* Sets it behind everything else */
}

/* New Content Wrapper (Forces to Front) */
.cta-content-z-index {
    position: relative;
    z-index: 10; /* This number must be HIGHER than the overlay's z-index */
}

/* We must add an actual dark overlay here for legibility */
.cta-content-box {
    position: relative;
    z-index: 5;
    background: rgba(139, 0, 0, 0.4); /* Subtle primary maroon tinted overlay */
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(5px); /* Optional: slight blur effect */
}

.text-gold-light {
    color: #f9f295;
    font-size: 1.5rem;
}

/* Premium Button Styles */
.btn-divine-gold {
    background: linear-gradient(45deg, #d4af37, #f9f295);
    color: var(--primary-maroon);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-divine-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    color: #000;
}

.btn-divine-outline {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #f9f295;
    transition: 0.3s;
    display: inline-block;
}

/*-------------------------------------------------------------------------
                                Rituals Page Styles
-------------------------------------------------------------------------*/

/* ─────────────────────────────────────────────────────────────
   24:RITUALS PAGE STYLES
   ───────────────────────────────────────────────────────────── */

/* Hero Section */
.rituals-hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.rit-hero-parallax {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.6);
}

.hero-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.section-tag-saffron {
    background: rgba(255, 126, 0, 0.2);
    color: #ff5100;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 126, 0, 0.3);
}

/* Vratham Process Timeline */
.vratham-process {
    background: #fff;
    position: relative;
}

.vratham-steps-wrapper {
    position: relative;
    margin-top: 50px;
}

.process-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #eee;
    z-index: 1;
}

.process-node-card {
    position: relative;
    z-index: 5;
}

.node-circle {
    width: 120px;
    height: 120px;
    background: white;
    border: 2px solid var(--gold-highlight);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-maroon);
    position: relative;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.node-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-saffron);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-node-card:hover .node-circle {
    background: var(--primary-maroon);
    color: white;
    transform: translateY(-10px);
    border-color: var(--primary-maroon);
}

.vratham-process p {
    font-size: 0.9rem;
    color: #666;
    max-width: 250px;
    margin: 10px auto 0;
}

/* 📱 Mobile Fix */
@media (max-width: 768px) {
    .process-line { display: none; }
    .node-circle { width: 100px; height: 100px; }
}

/* ─────────────────────────────────────────────────────────────
   25 : IRUMUDI DEEP-DIVE
   ───────────────────────────────────────────────────────────── */
.irumudi-section {
    background-color: #fff;
    border-top: 1px solid #eee;
}

.bg-stone-texture {
    background-color: #f9f7f2;
    background-image: url('../img/stone-pattern.png'); /* Light subtle texture */
    background-blend-mode: multiply;
    z-index: 0;
}

.vh-lg-100 { height: 100vh; }

.irumudi-visual-container {
    position: relative;
    max-width: 400px;
}

.floating-bag {
    animation: bagFloat 6s infinite ease-in-out;
}

@keyframes bagFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Hotspots */
.hotspot {
    position: absolute;
    width: 25px;
    height: 25px;
    z-index: 10;
}

.hotspot span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--gold-highlight);
    border-radius: 50%;
    animation: pulseGold 2s infinite;
}

.hs-front { top: 40%; left: 30%; }
.hs-back { top: 60%; right: 20%; }

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Content Blocks */
.irumudi-content-block {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg-faded-saffron { background-color: #fff9f2; }

.part-indicator {
    font-weight: 800;
    color: var(--accent-saffron);
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.ritual-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.ritual-list li {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.ritual-list i {
    color: var(--primary-maroon);
    margin-right: 10px;
}

/* 📱 Mobile Fix: No sticky side */
@media (max-width: 991px) {
    .vh-lg-100 { height: 400px; }
    .sticky-lg-top { position: relative !important; top: 0 !important; }
}


/* ─────────────────────────────────────────────────────────────
    26:  SACRED STEPS (PATHINETTAM PADI)
   ───────────────────────────────────────────────────────────── */
.steps-section {
    background-color: #0c0c0c; /* Deep black to make gold pop */
    position: relative;
    overflow: hidden;
}

/* The Inclined Staircase Visual */
.staircase-visual {
    padding: 20px;
    transform: rotate(-10deg) skew(10deg); /* Creates the inclined look */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-line {
    height: 12px;
    width: 100%;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 5px;
    position: relative;
    transition: 0.5s;
}

.step-line span {
    position: absolute;
    left: -40px;
    top: -5px;
    font-size: 0.8rem;
    color: rgba(212, 175, 55, 0.4);
    font-weight: 800;
}

/* The Active Glowing Step */
.step-line.active {
    background: linear-gradient(90deg, #d4af37, #f9f295);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.step-line.active span {
    color: #f9f295;
    text-shadow: 0 0 10px rgba(249, 242, 149, 0.8);
}

/* Padi Glow Effect */
.padi-glow {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    filter: blur(20px);
}

/* Step Info Cards */
.step-mini-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
}

.step-mini-card h6 {
    color: var(--gold-highlight);
    font-weight: 800;
    margin-bottom: 5px;
}

.step-mini-card span {
    font-size: 0.75rem;
    color: #ccc;
    display: block;
}

/* 📱 Mobile Adjustments */
@media (max-width: 991px) {
    .staircase-visual { transform: none; margin-bottom: 40px; }
    .step-line { height: 8px; }
}


/* ─────────────────────────────────────────────────────────────
   27 : NEYYABHISHEKAM (FLUID PARALLAX)
   ───────────────────────────────────────────────────────────── */
.neyya-section {
    position: relative;
    background-color: #4a0404; /* Deep Blood Maroon */
    overflow: hidden;
    padding: 120px 0;
}

/* Liquid Gold Effect */
.liquid-parallax {
    position: absolute;
    top: -10%; left: 0; width: 100%; height: 120%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 80%);
    background-image: url('../img/liquid-gold-texture.png');
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.4;
    z-index: 1;
}

.text-gold-glow {
    color: #f9f295;
    text-shadow: 0 0 15px rgba(249, 242, 149, 0.5);
    font-size: 3rem;
}

.neyya-desc {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

/* Meta Items */
.ritual-meta-info .meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gold-highlight);
}

.ritual-meta-info .meta-item i {
    font-size: 1.8rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.ritual-meta-info .meta-item span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

/* Final Button */
.btn-ritual-final {
    background: white;
    color: #4a0404;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.4s;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-ritual-final:hover {
    background: var(--gold-highlight);
    color: white;
    transform: translateY(-5px);
}

/* 📱 Mobile Adjustments */
@media (max-width: 768px) {
    .text-gold-glow { font-size: 2rem; }
    .ritual-meta-info { flex-direction: column; gap: 30px; }
}

/* ─────────────────────────────────────────────────────────────
   28: contact page styles
   ───────────────────────────────────────────────────────────── */



/* Hero Fix - Adjusted for Navbar clearance */
.contact-hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-maroon);
}

.con-hero-parallax {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.7;
}

.hero-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

/* Address Badge */
.address-premium-badge {
    display: inline-flex;
    align-items: center;
    background: #fff9f2;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px 30px;
    border-radius: 60px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: left;
    gap: 20px;
}

.badge-icon {
    font-size: 1.8rem;
    color: var(--primary-maroon);
}

.badge-text p { margin: 0; font-size: 0.9rem; color: #666; }
.badge-text strong { display: block; color: #333; font-size: 1rem; }

/* Map Pro Frame */
.map-container-pro {
    position: relative;
    height: 100%;
    min-height: 480px;
    border-radius: 25px;
    overflow: hidden;
    border: 8px solid white;
}

.map-container-pro iframe { width: 100%; height: 100%; border: 0; }

.btn-map-float {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: var(--primary-maroon);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-decoration: none !important;
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.4);
    transition: 0.3s;
}

.btn-map-float:hover { background: var(--gold-highlight); transform: translateY(-5px); }

/* Travel Timeline */
.travel-timeline {
    position: relative;
    padding-top: 10px;
}

.travel-item {
    position: relative;
    display: flex;
    gap: 25px;
    padding-bottom: 40px;
}

/* Vertical Gold Line */
.travel-item::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    width: 2px;
    height: calc(100% - 40px);
    background: linear-gradient(to bottom, var(--gold-highlight), transparent);
}

.travel-item:last-child::before { display: none; }

.travel-icon {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--gold-highlight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-maroon);
    z-index: 2;
    flex-shrink: 0;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.travel-content h5 { font-weight: 800; font-family: 'Playfair Display', serif; margin: 0; }
.travel-content p { color: #777; font-size: 0.95rem; margin-top: 5px; }
.travel-content strong { color: var(--primary-maroon); }

/* 📱 Mobile Tweaks */
@media (max-width: 991px) {
    .contact-hero { height: 50vh; }
    .address-premium-badge { flex-direction: column; text-align: center; border-radius: 20px; }
    .map-container-pro { min-height: 350px; border: 4px solid white; }
}

/* ─────────────────────────────────────────────────────────────
   29: ENQUIRY FORM (GLASSMORPHISM)
   ───────────────────────────────────────────────────────────── */
.enquiry-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Floating Glass Card */
.glass-form-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Sidebar Styling */
.form-sidebar {
    background: var(--primary-maroon);
    background-image: linear-gradient(135deg, #8b0000 0%, #4a0000 100%);
    padding: 50px 40px;
    display: flex;
    align-items: center;
    color: white;
}

.sidebar-content h5 { font-weight: 800; margin-bottom: 20px; color: var(--gold-highlight); }
.sidebar-info-item { display: flex; gap: 15px; align-items: center; margin-top: 30px; }
.sidebar-info-item i { font-size: 1.5rem; color: var(--gold-highlight); }

/* Premium Input Styling */
.form-group-premium {
    position: relative;
    margin-bottom: 10px;
}

.form-group-premium label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-maroon);
    margin-bottom: 8px;
    display: block;
    letter-spacing: 1px;
}

.form-control-premium {
    width: 100%;
    background: #fdfdfd;
    border: none;
    border-bottom: 2px solid #eee;
    padding: 12px 0;
    border-radius: 0;
    transition: 0.4s;
    font-size: 1rem;
    color: #333;
}

.form-control-premium:focus {
    outline: none;
    border-color: var(--gold-highlight);
    background: transparent;
}

/* Custom Styled Select */
.select-premium {
    cursor: pointer;
    background: url('data:image/svg+xml;charset=US-ASCII,<svg%20xmlns="http://www.w3.org/2000/svg"%20width="20"%20height="20"%20viewBox="0%200%2020%2020"><path%20fill="%238b0000"%20d="M5%207l5%205%205-5z"/></svg>') no-repeat right center;
    appearance: none;
    padding-right: 30px;
}

/* Submit Button */
.btn-submit-premium {
    background: var(--primary-maroon);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2);
}

.btn-submit-premium:hover {
    background: var(--gold-highlight);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

/* 📱 Mobile Form Adjustment */
@media (max-width: 767px) {
    .glass-form-card { border-radius: 20px; }
    .form-body { padding: 30px 20px; }
}

/* ─────────────────────────────────────────────────────────────
   30: DIRECT CONNECT RIBBON
   ───────────────────────────────────────────────────────────── */
.connect-ribbon {
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
}

.connect-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none !important;
    padding: 30px 20px;
    border-radius: 20px;
    background: #fff;
    transition: 0.4s;
    border: 1px solid transparent;
}

.connect-card:hover {
    background: #fff9f2;
    border-color: var(--gold-highlight);
    transform: translateY(-10px);
}

.connect-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 15px;
    background: #f8f9fa;
    transition: 0.4s;
}

.connect-card:hover .connect-icon {
    background: var(--primary-maroon);
    color: white;
}

.connect-info h6 {
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.connect-info p {
    color: #777;
    font-size: 0.9rem;
    margin: 0;
}

/* 💓 Pulse Animations */
.pulse-maroon { color: var(--primary-maroon); box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.2); animation: pulse-m 2s infinite; }
.pulse-green { color: #25D366; box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.2); animation: pulse-g 2s infinite; }
.pulse-gold { color: var(--gold-highlight); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.2); animation: pulse-y 2s infinite; }

@keyframes pulse-m { 70% { box-shadow: 0 0 0 15px rgba(139, 0, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(139, 0, 0, 0); } }
@keyframes pulse-g { 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
@keyframes pulse-y { 70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); } 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); } }

/* 📱 Mobile Fix */
@media (max-width: 575px) {
    .connect-icon { width: 55px; height: 55px; font-size: 1.2rem; }
    .connect-info h6 { font-size: 0.75rem; }
}

/* ─────────────────────────────────────────────────────────────
   31: PREMIUM FAQ ACCORDION
   ───────────────────────────────────────────────────────────── */
.premium-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    background: transparent;
}

.premium-accordion .accordion-button {
    background-color: #fffaf5;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px !important;
    padding: 20px 25px;
    font-weight: 700;
    color: #333;
    font-size: 1.05rem;
    box-shadow: none;
    transition: 0.3s;
}

.premium-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-maroon);
    color: white;
    border-color: var(--primary-maroon);
}

.premium-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238b0000'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.premium-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.faq-number {
    font-size: 0.8rem;
    color: var(--gold-highlight);
    margin-right: 15px;
    font-weight: 800;
}

.premium-accordion .accordion-button:not(.collapsed) .faq-number {
    color: white;
    opacity: 0.7;
}

.premium-accordion .accordion-body {
    padding: 25px;
    color: #666;
    line-height: 1.8;
    background: #fff;
    border: 1px solid #eee;
    border-top: none;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

