/* ========================================================
   ASTRO BHARAT BHARGAV — MAIN STYLESHEET
   Theme: Dark Maroon + Royal Gold + Cosmic Deep Blue
   ======================================================== */

/* ---- CSS Custom Properties ---- */
:root {
    --maroon: #6b0f1a;
    --maroon-dark: #4a0a12;
    --maroon-deep: #2d0609;
    --gold: #d4a017;
    --gold-light: #f0c040;
    --gold-dark: #a07010;
    --cream: #fdf8ef;
    --navy: #0a0e1a;
    --navy-mid: #10162a;
    --text-light: #f5f0e8;
    --text-muted: #c9b899;
    --white: #ffffff;
    --success: #22c55e;
    --error: #ef4444;
    --wa-green: #25d366;
    --wa-dark: #128c7e;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;

    --shadow-gold: 0 0 30px rgba(212, 160, 23, 0.35);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --border-gold: 1px solid rgba(212, 160, 23, 0.3);

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Animated Background Stars ---- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 15%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 35% 60%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 55% 20%, rgba(212, 160, 23, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 75% 45%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 20% 85%, rgba(212, 160, 23, 0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 60% 75%, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
    animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* ========================================================
   TOP TICKER
   ======================================================== */
.top-ticker {
    background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 50%, var(--maroon-dark) 100%);
    border-bottom: 2px solid var(--gold);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.ticker-icon {
    color: var(--gold-light);
    font-size: 14px;
    flex-shrink: 0;
    padding: 0 10px;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ticker-content {
    flex: 1;
    overflow: hidden;
}

.ticker-content marquee {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.5px;
}

/* ========================================================
   HEADER
   ======================================================== */
#site-header {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1300px;
    margin: 0 auto;
    gap: 16px;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-symbol {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.5);
    flex-shrink: 0;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 160, 23, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(212, 160, 23, 0.9), 0 0 60px rgba(212, 160, 23, 0.4);
    }
}

.om-symbol {
    font-size: 26px;
    color: var(--maroon-dark);
    font-weight: 900;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(240, 192, 64, 0.4);
}

.logo-tagline {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.header-contact {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-header-call,
.btn-header-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.btn-header-call {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    border-color: var(--gold);
    color: var(--gold-light);
}

.btn-header-call:hover {
    background: var(--gold);
    color: var(--maroon-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
}

.btn-header-whatsapp {
    background: linear-gradient(135deg, #128c7e, #25d366);
    color: white;
}

.btn-header-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-header-call span,
.btn-header-whatsapp span {
    line-height: 1.3;
}

.btn-header-call i,
.btn-header-whatsapp i {
    font-size: 18px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: var(--transition);
}

.main-nav {
    background: rgba(10, 14, 26, 0.98);
    border-top: 1px solid rgba(212, 160, 23, 0.2);
}

.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 4px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav ul li a {
    display: block;
    padding: 12px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--gold-light);
}

/* ========================================================
   HERO SECTION
   ======================================================== */
.hero {
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy);
    padding: 50px 20px 60px;
}

/* ==== Mahadev Full Background ==== */
.hero-mahadev-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-mahadev-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.28) saturate(1.3);
    transform: scale(1.05);
    animation: hero-bg-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-bg-zoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.12);
    }
}

.hero-mahadev-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(10, 8, 20, 0.92) 0%,
            rgba(10, 8, 20, 0.65) 45%,
            rgba(10, 8, 20, 0.10) 100%),
        linear-gradient(to top,
            rgba(10, 8, 20, 0.95) 0%,
            transparent 40%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0.05));
    border: 1px solid rgba(212, 160, 23, 0.4);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    color: var(--gold-light);
    margin-bottom: 20px;
    width: fit-content;
    animation: fade-in-down 0.8s ease both;
}

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

.hero-title {
    margin-bottom: 20px;
    animation: fade-in-left 0.9s ease 0.1s both;
}

.hero-name {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 900;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(240, 192, 64, 0.5), 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(16px, 2.5vw, 24px);
    color: var(--text-muted);
    font-style: italic;
    margin-top: 8px;
    font-weight: 400;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
    animation: fade-in-left 0.9s ease 0.2s both;
}

.hero-desc strong {
    color: var(--gold-light);
}

.hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 40px;
    animation: fade-in-left 0.9s ease 0.3s both;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fade-in-left 0.9s ease 0.4s both;
}

/* ---- Shared Button Styles ---- */
.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--maroon), #8b1a27);
    border: 2px solid var(--gold);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-call:hover {
    background: var(--gold);
    color: var(--maroon-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.5);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--wa-dark), var(--wa-green));
    border: 2px solid var(--wa-green);
    border-radius: 50px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    filter: brightness(1.1);
}

.btn-consult {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-consult:hover {
    background: rgba(212, 160, 23, 0.1);
    transform: translateY(-3px);
}

/* ===== Mahadev Image Panel Styles ===== */
.hero-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fade-in-right 1s ease 0.3s both;
    z-index: 2;
}

/* ======================================
   HERO VERTICAL PORTRAIT PANEL
   ====================================== */

/* Outer positioning container */
.hero-portrait-outer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* max-width: 420px; */
    margin: 0 auto;
}

/* Rotating decorative rings */
.hero-portrait-ring {
    position: absolute;
    border-radius: 20px;
    pointer-events: none;
}

.hero-portrait-ring.ring-1 {
    inset: -12px;
    border: 2px dashed rgba(212, 160, 23, 0.35);
    border-radius: 28px;
    animation: spin-cw 18s linear infinite;
}

.hero-portrait-ring.ring-2 {
    inset: -24px;
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 36px;
    animation: spin-ccw 30s linear infinite;
}

@keyframes spin-cw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-ccw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* The main portrait frame */
.hero-portrait-frame {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* border: 3px solid rgba(212, 160, 23, 0.55); */
    /* box-shadow:
        0 0 40px rgba(212, 160, 23, 0.3),
        0 0 100px rgba(107, 15, 26, 0.4),
        inset 0 0 30px rgba(0, 0, 0, 0.4); */
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* .hero-portrait-frame:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 70px rgba(212, 160, 23, 0.5),
        0 0 140px rgba(107, 15, 26, 0.5);
} */

/* Shine sweep animation on top */
.hero-portrait-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 20%,
            rgba(255, 255, 255, 0.06) 50%,
            transparent 80%);
    z-index: 4;
    pointer-events: none;
    animation: shine-sweep 4s ease-in-out infinite;
}

@keyframes shine-sweep {
    0% {
        left: -100%;
    }

    50% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}

/* Portrait image — tall vertical aspect ratio */
.hero-portrait-img {
    width: 100%;
    display: block;
    /* aspect-ratio: 2 / 3; */
    /* Tall vertical portrait */
    object-fit: cover;
    object-position: top center;
    border-radius: 17px;
    filter: brightness(1.04) contrast(1.05) saturate(1.08);
    transition: filter 0.5s ease, transform 0.5s ease;
    object-fit: contain;
}

.hero-portrait-frame:hover .hero-portrait-img {
    filter: brightness(1.1) contrast(1.08) saturate(1.15);
    transform: scale(1.02);
}

/* Caption bar */
.hero-portrait-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.om-symbol-sm {
    font-size: 20px;
    color: var(--gold-light);
    text-shadow: 0 0 12px rgba(240, 192, 64, 0.9);
    animation: om-pulse 2.5s ease-in-out infinite;
}

.hero-portrait-caption span:last-child {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--gold-light);
    letter-spacing: 2px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(212, 160, 23, 0.6);
}

@keyframes om-pulse {

    0%,
    100% {
        text-shadow: 0 0 12px rgba(240, 192, 64, 0.8), 0 0 24px rgba(240, 192, 64, 0.4);
    }

    50% {
        text-shadow: 0 0 22px rgba(240, 192, 64, 1), 0 0 44px rgba(240, 192, 64, 0.7);
    }
}


/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
    animation: float 2s ease-in-out infinite;
    z-index: 3;
}

.scroll-arrow {
    font-size: 20px;
    margin-top: 4px;
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

/* ========================================================
   SECTION SHARED STYLES
   ======================================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(107, 15, 26, 0.5), rgba(212, 160, 23, 0.1));
    border: 1px solid rgba(212, 160, 23, 0.4);
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(240, 192, 64, 0.2);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================================
   BOOKING SECTION (After Hero)
   ======================================================== */
.booking-section {
    background: linear-gradient(135deg, var(--maroon-deep) 0%, #1a0408 40%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(212, 160, 23, 0.4);
    border-bottom: 2px solid rgba(212, 160, 23, 0.4);
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 15, 26, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.booking-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.booking-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: 580px;
    position: relative;
    z-index: 1;
}

/* ---- Booking Left ---- */
.booking-left {
    padding: 70px 50px 70px 60px;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(212, 160, 23, 0.15);
}

.booking-left-content {
    width: 100%;
}

.booking-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 14px;
    text-shadow: 0 0 20px rgba(240, 192, 64, 0.2);
}

.booking-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.booking-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.booking-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(16, 22, 42, 0.7);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.booking-contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(212, 160, 23, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.booking-contact-card:hover {
    border-color: var(--gold);
    transform: translateX(6px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.booking-contact-card:hover::before {
    opacity: 1;
}

.bcc-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.bcc-icon.call-icon {
    background: linear-gradient(135deg, var(--maroon), #9b1a28);
    border: 1.5px solid rgba(212, 160, 23, 0.4);
    color: var(--gold-light);
}

.bcc-icon.wa-icon {
    background: linear-gradient(135deg, var(--wa-dark), var(--wa-green));
    color: white;
}

.bcc-text {
    flex: 1;
}

.bcc-text span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.bcc-text strong {
    font-size: 17px;
    color: var(--gold-light);
    font-weight: 700;
}

.bcc-arrow {
    color: rgba(212, 160, 23, 0.4);
    font-size: 14px;
    transition: var(--transition);
}

.booking-contact-card:hover .bcc-arrow {
    color: var(--gold);
    transform: translateX(4px);
}

.booking-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 160, 23, 0.08);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-badge i {
    color: var(--gold);
    font-size: 12px;
}

/* ---- Booking Right (Form) ---- */
.booking-right {
    padding: 50px 60px 50px 50px;
    display: flex;
    align-items: center;
}

.booking-form-box {
    width: 100%;
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.booking-form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.bfh-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--maroon-dark);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.4);
}

.booking-form-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 3px;
}

.booking-form-header p {
    font-size: 13px;
    color: var(--text-muted);
}

.booking-form .form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.booking-form .form-group label i {
    color: var(--gold);
    font-size: 12px;
}

.booking-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-form .form-group {
    margin-bottom: 14px;
}

.btn-booking-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border: none;
    border-radius: var(--radius);
    color: var(--maroon-dark);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    margin-top: 6px;
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.btn-booking-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.5);
    filter: brightness(1.08);
}

/* Booking responsive */
@media (max-width: 1024px) {
    .booking-inner {
        grid-template-columns: 1fr;
    }

    .booking-left {
        padding: 50px 30px 30px;
        border-right: none;
        border-bottom: 1px solid rgba(212, 160, 23, 0.15);
    }

    .booking-right {
        padding: 30px 30px 50px;
    }

    .booking-contact-cards {
        flex-direction: row;
    }

    .booking-contact-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .booking-left {
        padding: 40px 20px 24px;
    }

    .booking-right {
        padding: 24px 20px 40px;
    }

    .booking-form-box {
        padding: 24px 18px;
    }

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

    .booking-contact-cards {
        flex-direction: column;
    }

    .booking-trust-badges {
        justify-content: center;
    }
}

/* ========================================================
   SERVICES SECTION
   ======================================================== */
.services-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.service-card {
    background: linear-gradient(135deg, rgba(16, 22, 42, 0.9) 0%, rgba(45, 6, 9, 0.5) 100%);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: var(--radius-lg);
    padding: 0;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(107, 15, 26, 0.4), 0 0 30px rgba(212, 160, 23, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

/* Big rectangular image at top of service card */
.service-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
    flex-shrink: 0;
}

.service-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(16, 22, 42, 0.95));
    pointer-events: none;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

/* Icon-only cards (no photo) */
.service-icon-alt {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.service-icon-alt::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(212, 160, 23, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-icon-alt::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(212, 160, 23, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-fa-icon {
    font-size: 64px;
    color: var(--gold-light);
    position: relative;
    z-index: 1;
    transition: var(--transition);
    opacity: 0.85;
}

.service-card:hover .service-fa-icon {
    transform: scale(1.1);
    opacity: 1;
    text-shadow: 0 0 30px rgba(212, 160, 23, 0.6);
}

/* Service card text area */
.service-card-body {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold-light);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* Dual buttons row in service cards */
.service-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.svc-btn-call,
.svc-btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.svc-btn-call {
    background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
    border: 1.5px solid rgba(212, 160, 23, 0.5);
    color: var(--gold-light);
}

.svc-btn-call:hover {
    background: var(--gold);
    color: var(--maroon-dark);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 160, 23, 0.35);
}

.svc-btn-wa {
    background: linear-gradient(135deg, var(--wa-dark), var(--wa-green));
    border: 1.5px solid var(--wa-green);
    color: #fff;
}

.svc-btn-wa:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* ========================================================
   ABOUT SECTION
   ======================================================== */
.about-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.about-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: blur(2px);
}

.about-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, rgba(10, 14, 26, 0.92) 100%);
}

.about-section>.container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: center;
}

.about-img-frame {
    position: relative;
    display: inline-block;
}

.about-img {
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-lg);
    border: 3px solid rgba(212, 160, 23, 0.4);
    box-shadow: var(--shadow-card), 0 0 60px rgba(107, 15, 26, 0.3);
}

.about-badge-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(212, 160, 23, 0.6);
    animation: pulse-glow 3s ease-in-out infinite;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--maroon-dark);
    line-height: 1;
}

.exp-text {
    font-size: 10px;
    color: var(--maroon-dark);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
}

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

.about-intro {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 16px;
}

.about-body {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-body strong {
    color: var(--gold-light);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.about-feature i {
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

.about-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========================================================
   WHY CHOOSE US
   ======================================================== */
.why-us-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--navy-mid) 0%, var(--maroon-deep) 50%, var(--navy-mid) 100%);
    position: relative;
}

.why-us-section::before,
.why-us-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.why-us-section::before {
    top: 0;
}

.why-us-section::after {
    bottom: 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.why-card {
    background: linear-gradient(135deg, rgba(16, 22, 42, 0.8), rgba(45, 6, 9, 0.4));
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.why-card:hover {
    border-color: rgba(212, 160, 23, 0.4);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    border: 2px solid rgba(212, 160, 23, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--gold-light);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--maroon-dark);
    border-color: var(--gold);
    transform: rotateY(360deg);
    transition: transform 0.6s ease, background 0.3s, color 0.3s, border-color 0.3s;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold-light);
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================================
   TESTIMONIALS
   ======================================================== */
.testimonials-section {
    padding: 100px 20px;
    background: var(--navy);
}

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

.testimonial-card {
    background: linear-gradient(135deg, rgba(16, 22, 42, 0.95), rgba(45, 6, 9, 0.4));
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-family: var(--font-display);
    font-size: 80px;
    color: rgba(212, 160, 23, 0.1);
    line-height: 1;
    font-weight: 700;
}

.testimonial-card:hover {
    border-color: rgba(212, 160, 23, 0.5);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card), 0 0 30px rgba(212, 160, 23, 0.1);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 14px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(212, 160, 23, 0.15);
    padding-top: 16px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--maroon), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-light);
    border: 2px solid rgba(212, 160, 23, 0.3);
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    color: var(--gold-light);
    font-size: 14px;
}

.author-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========================================================
   CONTACT SECTION
   ======================================================== */
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--maroon-deep) 50%, var(--navy) 100%);
    position: relative;
}

.contact-section::before,
.contact-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-section::before {
    top: 0;
}

.contact-section::after {
    bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-title {
    text-align: left;
}

.contact-intro {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(16, 22, 42, 0.7);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-detail-item:hover {
    border-color: rgba(212, 160, 23, 0.5);
    background: rgba(107, 15, 26, 0.2);
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    border: 1px solid rgba(212, 160, 23, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold-light);
    flex-shrink: 0;
}

.wa-icon {
    background: linear-gradient(135deg, var(--wa-dark), var(--wa-green));
    border-color: var(--wa-green);
}

.time-icon {
    background: linear-gradient(135deg, #1a1f40, #2a3060);
    border-color: rgba(100, 120, 255, 0.3);
    color: #a0b0ff;
}

.detail-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.detail-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-light);
    transition: var(--transition);
}

a.detail-value:hover {
    color: var(--gold);
}

.contact-big-btns {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.big-btn-call,
.big-btn-wa {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
}

.big-btn-call {
    background: linear-gradient(135deg, var(--maroon), #9b1a28);
    border: 2px solid var(--gold);
    color: var(--gold-light);
}

.big-btn-call i {
    font-size: 24px;
}

.big-btn-call:hover {
    background: var(--gold);
    color: var(--maroon-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.4);
}

.big-btn-wa {
    background: linear-gradient(135deg, var(--wa-dark), var(--wa-green));
    border: 2px solid var(--wa-green);
    color: white;
}

.big-btn-wa i {
    font-size: 28px;
}

.big-btn-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

.big-btn-text span {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.big-btn-text strong {
    font-size: 16px;
    font-weight: 700;
}

/* Contact Form */
.contact-form-box {
    background: linear-gradient(135deg, rgba(16, 22, 42, 0.95), rgba(45, 6, 9, 0.3));
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--gold-light);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-title i {
    color: var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-light);
    outline: none;
    transition: var(--transition);
    -webkit-appearance: none;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--navy-mid);
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
    background: rgba(16, 22, 42, 0.9);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(200, 185, 153, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border: none;
    border-radius: var(--radius);
    color: var(--maroon-dark);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.5);
    filter: brightness(1.1);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.form-alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: var(--success);
}

.form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: var(--error);
}

/* ========================================================
   FLOATING BUTTONS
   ======================================================== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.float-call,
.float-wa {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
}

.float-call::before,
.float-wa::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid;
    animation: ripple-float 2s ease-out infinite;
    opacity: 0;
}

.float-call {
    background: linear-gradient(135deg, var(--maroon), #9b1a28);
    color: var(--gold-light);
    border: 2px solid var(--gold);
}

.float-call::before {
    border-color: var(--gold);
}

.float-wa {
    background: linear-gradient(135deg, var(--wa-dark), var(--wa-green));
    color: white;
    border: 2px solid var(--wa-green);
}

.float-wa::before {
    border-color: var(--wa-green);
}

.float-call:hover,
.float-wa:hover {
    transform: scale(1.15);
}

@keyframes ripple-float {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer {
    background: linear-gradient(180deg, var(--maroon-deep) 0%, #080d18 100%);
    border-top: 2px solid rgba(212, 160, 23, 0.3);
}

.footer-top {
    padding: 70px 20px 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-logo .om-symbol {
    font-size: 36px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon-dark);
    font-weight: 900;
    flex-shrink: 0;
}

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold-light);
}

.footer-logo p {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-about {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-quick a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gold-light);
    transition: var(--transition);
}

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

.footer-contact-quick i {
    color: var(--gold);
    width: 18px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--gold-light);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
    letter-spacing: 1px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: var(--gold);
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-btn-call,
.footer-btn-wa,
.footer-btn-consult {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.footer-btn-call {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    border: 1px solid var(--gold);
    color: var(--gold-light);
}

.footer-btn-call:hover {
    background: var(--gold);
    color: var(--maroon-dark);
}

.footer-btn-wa {
    background: linear-gradient(135deg, var(--wa-dark), var(--wa-green));
    color: white;
}

.footer-btn-wa:hover {
    filter: brightness(1.1);
}

.footer-btn-consult {
    background: transparent;
    border: 1px solid rgba(212, 160, 23, 0.3);
    color: var(--text-muted);
}

.footer-btn-consult:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.footer-timing {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-timing i {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 160, 23, 0.15);
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(200, 185, 153, 0.5);
    margin-bottom: 4px;
}

.footer-disclaimer {
    font-size: 11px !important;
}

/* ========================================================
   ANIMATIONS
   ======================================================== */
@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* ========================================================
   RESPONSIVE / MOBILE
   ======================================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        gap: 40px;
    }

    .hero-content {
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .header-contact {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1001;
        border-bottom: 2px solid rgba(212, 160, 23, 0.3);
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    .main-nav ul li a {
        padding: 14px 24px;
        border-bottom: 1px solid rgba(212, 160, 23, 0.08);
    }

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

    .hero-image-wrap {
        order: -1;
    }

    .mahadev-frame {
        max-width: 340px;
        margin: 0 auto;
    }

    .mahadev-ring-2,
    .mahadev-ring-3 {
        display: none;
    }

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

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

    .hero-badge {
        margin: 0 auto 20px;
    }

    .hero-mahadev-overlay {
        background:
            linear-gradient(to bottom,
                rgba(10, 8, 20, 0.9) 0%,
                rgba(10, 8, 20, 0.5) 40%,
                rgba(10, 8, 20, 0.85) 100%);
    }

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

    .about-image-col {
        text-align: center;
    }

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

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

    .about-cta-row {
        justify-content: center;
    }

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

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

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

    .contact-big-btns {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-box {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 16px 60px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-call,
    .btn-whatsapp,
    .btn-consult {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 22px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 16px;
    }

    .float-call,
    .float-wa {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ========================================================
   FORM SUBMIT SPINNER
   ======================================================== */
@keyframes btn-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: btn-spin 0.7s linear infinite;
    flex-shrink: 0;
}

/* Booking form button — spinner inherits dark color */
.btn-booking-submit .btn-spinner {
    border-color: rgba(107, 15, 26, 0.25);
    border-top-color: var(--maroon-dark);
}

/* Contact form button — spinner inherits gold color */
.btn-submit .btn-spinner {
    border-color: rgba(212, 160, 23, 0.25);
    border-top-color: var(--gold-light);
}

/* Disabled state overlay feel */
.btn-booking-submit:disabled,
.btn-submit:disabled {
    pointer-events: none;
    filter: brightness(0.9);
}