/* ==========================================================================
   HIDDEN ORACLE - INDIAN ASTROLOGY HIGH CONVERSION LANDING PAGE
   Theme Palette: Cosmic Midnight (#0F051D), Royal Gold (#FFD700),
   Warm Saffron (#FF9933), Crimson (#8B0000), Neon Emerald & Amber Glow
   ========================================================================== */

:root {
    --bg-dark: #0F051D;
    --bg-card: rgba(26, 11, 46, 0.75);
    --bg-card-hover: rgba(40, 15, 70, 0.85);
    
    --color-gold: #FFD700;
    --color-gold-light: #FFE57F;
    --color-saffron: #FF9933;
    --color-crimson: #8B0000;
    --color-text-main: #F8F9FA;
    --color-text-muted: #CBD5E1;
    
    --neon-amber: #FF9E00;
    --neon-amber-glow: 0 0 15px rgba(255, 158, 0, 0.8), 0 0 30px rgba(255, 158, 0, 0.4), 0 0 45px rgba(255, 158, 0, 0.2);
    
    --neon-whatsapp: #25D366;
    --neon-whatsapp-glow: 0 0 15px rgba(37, 211, 102, 0.8), 0 0 30px rgba(37, 211, 102, 0.4), 0 0 45px rgba(37, 211, 102, 0.2);

    --font-heading: 'Cinzel Decorative', 'Philosopher', serif;
    --font-subheading: 'Philosopher', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --transition-fast: 0.3s ease;
}

/* RESET & GENERAL STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 70px; /* Space for sticky CTA bar */
}

/* Cosmic Canvas Background */
#cosmic-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.text-center {
    text-align: center;
}

/* GOLD GRADIENT TEXT */
.gold-gradient-text {
    background: linear-gradient(135deg, #FFD700 0%, #FF9933 50%, #FFE57F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* SECTION HEADINGS */
.section-tagline {
    display: inline-block;
    color: var(--color-saffron);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.75rem;
}

.section-description {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

/* ==========================================================================
   BUTTONS & ANIMATED NEON GLOW EFFECTS
   ========================================================================== */

.btn-neon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.4rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

/* Call Button - Amber Neon Glow */
.btn-phone, .btn-neon-hero-call, .btn-popup-call, .btn-sticky-phone, .btn-phone-sm {
    background: linear-gradient(135deg, #FF9E00, #E65100);
    color: #FFF;
    box-shadow: var(--neon-amber-glow);
}

.btn-phone:hover, .btn-neon-hero-call:hover, .btn-popup-call:hover, .btn-sticky-phone:hover, .btn-phone-sm:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 25px rgba(255, 158, 0, 1), 0 0 50px rgba(255, 158, 0, 0.6);
}

/* WhatsApp Button - Emerald Neon Glow */
.btn-whatsapp, .btn-neon-hero-wa, .btn-popup-wa, .btn-sticky-wa, .btn-wa-sm {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFF;
    box-shadow: var(--neon-whatsapp-glow);
}

.btn-whatsapp:hover, .btn-neon-hero-wa:hover, .btn-popup-wa:hover, .btn-sticky-wa:hover, .btn-wa-sm:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 25px rgba(37, 211, 102, 1), 0 0 50px rgba(37, 211, 102, 0.6);
}

/* Icon Animations */
.icon-ringing, .icon-shake {
    animation: phoneRing 1.8s infinite;
}

@keyframes phoneRing {
    0% { transform: rotate(0deg) scale(1); }
    10% { transform: rotate(14deg) scale(1.2); }
    20% { transform: rotate(-14deg) scale(1.2); }
    30% { transform: rotate(14deg) scale(1.2); }
    40% { transform: rotate(-14deg) scale(1.2); }
    50% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(0deg) scale(1); }
}

.icon-pulse {
    animation: waPulse 1.5s infinite alternate;
}

@keyframes waPulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px #fff); }
    100% { transform: scale(1.25); filter: drop-shadow(0 0 8px #25D366); }
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR & NAVBAR
   ========================================================================== */

.top-announcement {
    background: linear-gradient(90deg, #8B0000, #FF5722, #8B0000);
    color: #FFF;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.urgency-timer {
    background: rgba(0, 0, 0, 0.4);
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    border: 1px solid var(--color-gold);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(15, 5, 29, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0.75rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.brand-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--color-gold);
    letter-spacing: 1px;
    line-height: 1.1;
}

.brand-tagline {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.header-cta-group {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-shrink: 0;
}

.mobile-text {
    display: none;
}
.desktop-text {
    display: inline;
}

/* COMPACT HEADER BUTTONS */
.btn-header-compact {
    padding: 0.45rem 0.95rem !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    white-space: nowrap !important;
    gap: 0.4rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    padding: 4rem 0 5rem 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(139, 0, 0, 0.3) 0%, rgba(15, 5, 29, 0.95) 70%);
    z-index: 1;
}

.zodiac-mandala-bg {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 650px;
    height: 650px;
    background: url('images/hero_bg.png') no-repeat center center/contain;
    opacity: 0.12;
    z-index: 1;
    animation: rotateMandala 60s linear infinite;
    pointer-events: none;
}

@keyframes rotateMandala {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.badge-trust-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.8rem;
}

.hero-usp-list {
    list-style: none;
    margin-bottom: 2.2rem;
}

.hero-usp-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.hero-usp-list i {
    color: var(--color-gold);
}

.hero-cta-box {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.btn-neon-hero-call, .btn-neon-hero-wa {
    padding: 0.9rem 1.8rem;
    border-radius: 14px;
}

.btn-text-block {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-subtext {
    font-size: 0.65rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.btn-maintext {
    font-size: 1.1rem;
    font-weight: 800;
}

.hero-rating-strip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.stars-gold {
    color: var(--color-gold);
}

/* Hero Visual Card */
.divine-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.2);
}

.hero-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.divine-frame:hover .hero-main-img {
    transform: scale(1.04);
}

.divine-badge-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 5, 29, 0.9);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    backdrop-filter: blur(8px);
}

/* ==========================================================================
   TRUST & SOCIAL PROOF STRIP
   ========================================================================== */

.trust-bar-section {
    background: rgba(26, 11, 46, 0.9);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    padding: 2rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.trust-icon {
    font-size: 2rem;
    color: var(--color-gold);
}

.trust-info h4 {
    font-size: 1rem;
    color: #FFF;
}

.trust-info p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   ABOUT ASTROLOGER SIYA MITTAL
   ========================================================================== */

.about-section {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-img {
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.experience-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #8B0000, #1A0B2E);
    border: 2px solid var(--color-gold);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.exp-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    color: #FFF;
    text-transform: uppercase;
}

.about-text-box h3.astrologer-subtitle {
    font-size: 1.2rem;
    color: var(--color-gold-light);
    margin-bottom: 1.2rem;
}

.about-p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 1rem;
    border-radius: 12px;
    flex: 1;
    text-align: center;
}

.stat-card h3 {
    font-size: 1.6rem;
    color: var(--color-gold);
}

.stat-card p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-section {
    padding: 5rem 0;
    background: rgba(20, 8, 36, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    background: var(--bg-card-hover);
}

.service-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 5, 29, 0.85);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-family: var(--font-subheading);
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1.2rem;
}

.service-points {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-points li {
    font-size: 0.85rem;
    color: #E2E8F0;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-points i {
    color: var(--color-saffron);
    font-size: 0.75rem;
}

.service-card-cta {
    display: flex;
    gap: 0.5rem;
}

.service-card-cta .btn-neon {
    flex: 1;
    font-size: 0.75rem;
    padding: 0.6rem 0.5rem;
    border-radius: 8px;
}

/* ==========================================================================
   OUR WORK / PORTFOLIO SECTION
   ========================================================================== */

.work-section {
    padding: 5rem 0;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.work-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    transition: all 0.3s ease;
}

.work-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.work-img-wrapper {
    position: relative;
    height: 200px;
}

.work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.work-category {
    background: rgba(139, 0, 0, 0.85);
    border: 1px solid var(--color-gold);
    color: #FFF;
    font-size: 0.7rem;
    padding: 0.25rem 0.7rem;
    border-radius: 12px;
}

.work-info {
    padding: 1.25rem;
}

.work-info h4 {
    font-size: 1.1rem;
    color: var(--color-gold-light);
    margin-bottom: 0.5rem;
}

.work-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   TESTIMONIALS & VIDEO REELS
   ========================================================================== */

.testimonials-section {
    padding: 5rem 0;
    background: rgba(20, 8, 36, 0.6);
}

.video-testimonials-header {
    margin-bottom: 2rem;
    color: var(--color-gold);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
    margin-bottom: 3.5rem;
}

.video-card {
    background: #000;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    overflow: hidden;
}

.testimonial-video {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.video-caption {
    padding: 0.9rem;
    background: var(--bg-card);
    text-align: left;
}

.video-caption strong {
    display: block;
    color: var(--color-gold);
    font-size: 0.95rem;
}

.video-caption span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.testimonial-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.15);
    padding: 1.8rem;
    border-radius: 16px;
    text-align: left;
}

.testimonial-text {
    font-size: 0.9rem;
    color: #E2E8F0;
    font-style: italic;
    margin: 1rem 0;
}

.client-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.client-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF9933, #8B0000);
    color: #FFF;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.client-meta h4 {
    font-size: 0.95rem;
    color: #FFF;
}

.client-meta span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-section {
    padding: 5rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 2rem auto 0 auto;
    text-align: left;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-gold-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.2rem 1.2rem 1.2rem;
    display: none;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 215, 0, 0.08);
    margin-top: 0.4rem;
    padding-top: 0.8rem;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */

.cta-banner-section {
    padding: 3rem 0 5rem 0;
}

.cta-banner-box {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(26, 11, 46, 0.95));
    border: 2px solid var(--color-gold);
    border-radius: 24px;
    padding: 3.5rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.cta-banner-content h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.cta-banner-content p {
    font-size: 1.1rem;
    color: #E2E8F0;
    margin-bottom: 2rem;
}

.banner-buttons-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-neon-large {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background: #080212;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 3.5rem 0 2rem 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.footer-about-text {
    margin-top: 1rem;
    font-size: 0.85rem;
}

.footer-contact h4, .footer-disclaimer h4 {
    color: var(--color-gold);
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.copyright {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #64748B;
}

/* ==========================================================================
   STICKY FLOATING CONTACT BAR (Mobile & Desktop)
   ========================================================================== */

.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 5, 29, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--color-gold);
    padding: 0.6rem 0;
    z-index: 998;
}

.sticky-cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-text {
    display: flex;
    flex-direction: column;
}

.sticky-text strong {
    color: var(--color-gold);
    font-size: 0.95rem;
}

.sticky-text span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.sticky-btn-group {
    display: flex;
    gap: 0.8rem;
}

.sticky-btn-group .btn-neon {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
}

/* ==========================================================================
   REQUIRED POPUP MODAL STYLING
   ========================================================================== */

.popup-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.popup-modal-box {
    background: linear-gradient(135deg, #1A0B2E, #0F051D);
    border: 2px solid var(--color-gold);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    max-width: 440px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.3);
    transform: scale(0.85);
    transition: transform 0.4s ease;
}

.popup-modal-overlay.active .popup-modal-box {
    transform: scale(1);
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 18px;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.popup-divine-icon {
    margin-bottom: 1rem;
}

.popup-logo-img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

.popup-tagline {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.popup-subtext {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1.8rem;
}

.popup-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-buttons-group .btn-neon {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 1.05rem;
    border-radius: 12px;
}

/* ==========================================================================
   LIVE RECENT BOOKING NOTIFICATION TOAST
   ========================================================================== */

.live-toast-notification {
    position: fixed;
    bottom: 80px;
    left: 20px;
    background: rgba(26, 11, 46, 0.95);
    border: 1px solid var(--color-gold);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 997;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    transform: translateX(-150%);
    transition: transform 0.5s ease;
}

.live-toast-notification.show {
    transform: translateX(0);
}

.toast-icon {
    color: var(--color-gold);
    font-size: 1.4rem;
}

.toast-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 0.8rem;
}

.toast-content strong {
    color: #FFF;
}

.toast-content span {
    color: var(--color-text-muted);
}

.toast-content small {
    color: var(--color-saffron);
    font-size: 0.7rem;
}

/* ==========================================================================
   HERO CONSULTATION FORM CARD
   ========================================================================== */

.hero-form-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.hero-form-card {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.95), rgba(15, 5, 29, 0.95));
    border: 2px solid var(--color-gold);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 215, 0, 0.25);
    backdrop-filter: blur(12px);
    text-align: left;
}

.form-header {
    text-align: center;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 0.8rem;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-header p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.hero-whatsapp-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #FFF;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group select option {
    background: #1A0B2E;
    color: #FFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.btn-neon-form-submit {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFF;
    box-shadow: var(--neon-whatsapp-glow);
    margin-top: 0.4rem;
}

.btn-neon-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(37, 211, 102, 1);
}

.form-privacy-note {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 0.2rem;
}

/* ==========================================================================
   RESPONSIVE MOBILE BREAKPOINTS
   ========================================================================== */

@media (max-width: 992px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .nav-links {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-usp-list {
        display: inline-block;
        text-align: left;
    }

    .hero-cta-box {
        justify-content: center;
    }

    .hero-rating-strip {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-img {
        height: 380px;
    }

    .experience-card {
        right: 10px;
        bottom: -15px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 0.6rem;
    }

    .nav-wrapper {
        gap: 0.3rem;
    }

    .brand-logo {
        gap: 0.35rem;
    }

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

    .brand-name {
        font-size: 0.85rem;
        letter-spacing: 0px;
    }

    .brand-tagline {
        display: none !important;
    }

    .header-cta-group {
        gap: 0.3rem;
    }

    .desktop-text {
        display: none !important;
    }

    .mobile-text {
        display: inline !important;
    }

    .btn-header-compact {
        padding: 0.32rem 0.6rem !important;
        font-size: 0.72rem !important;
        border-radius: 20px !important;
        gap: 0.25rem !important;
    }

    .hero-section {
        padding: 1.5rem 0 2.5rem 0;
    }

    .hero-title {
        font-size: 1.55rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 0.88rem;
    }

    .hero-cta-box {
        flex-direction: column;
        width: 100%;
    }

    .btn-neon-hero-call, .btn-neon-hero-wa {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    .hero-form-card {
        padding: 1.2rem 0.8rem;
    }

    .services-grid, .work-grid, .video-grid, .testimonial-cards-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        gap: 0.8rem;
    }

    .stat-card {
        width: 100%;
    }

    .sticky-text {
        display: none;
    }

    .sticky-cta-flex {
        justify-content: center;
        width: 100%;
    }

    .sticky-btn-group {
        width: 100%;
    }

    .sticky-btn-group .btn-neon {
        flex: 1;
        font-size: 0.75rem;
        padding: 0.65rem 0.4rem;
        border-radius: 25px;
    }
}
