@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,700&display=swap');

:root {
    --navy: #060E1C;
    --navy-light: #0D1B33;
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--navy); /* Restored solid color */
    color: var(--white);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

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

/* Background Video Wrapper - Restricted to Parent */
.video-bg {
    position: absolute; /* Changed from fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.video-overlay {
    position: absolute; /* Changed from fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(6, 14, 28, 0.4), rgba(6, 14, 28, 0.95));
    z-index: -1;
}

/* Testimonials Section - Solid background to hide video */
.testimonials {
    padding: 120px 10%;
    background: #060E1C; /* Solid Navy to cover video */
    position: relative;
    overflow: hidden;
    z-index: 1; /* Ensure it stays above video-bg */
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 10%;
    display: flex;
    flex-direction: row-reverse; /* Logo to Right, Links to Left */
    justify-content: space-between;
    align-items: center;
    z-index: 4000;
    transition: 0.5s;
}

.navbar.scrolled {
    padding: 15px 10%;
    background: rgba(6, 14, 28, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Light Navbar for Internal Pages (Results, Demo, Contact) */
.navbar-light {
    background: #FFFFFF !important;
    border-bottom: 2px solid #D4AF37;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-direction: row !important; /* Keep Logo Left on internal pages */
}

/* On Mobile, make internal navbar a premium Gold/Navy hybrid */
@media (max-width: 900px) {
    .navbar-light {
        background: #FFFFFF !important; 
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    }
    
    .navbar-light .logo img {
        filter: none !important; /* Keep original logo colors */
        height: 35px !important;
    }
    
    /* Ensure the hamburger is VERY visible on the white navbar */
    .navbar-light .hamburger span {
        background: #060E1C !important;
        height: 3px !important;
        width: 30px !important;
    }

    /* Fixed visibility for the mobile slide-out menu links */
    .navbar-light .nav-links a {
        color: #FFFFFF !important;
        font-weight: 600 !important;
        font-size: 1.1rem !important;
    }

    .navbar-light .nav-links a.active {
        color: var(--gold) !important;
    }
}

/* Keep the original logo colors on Desktop — just add a shadow for visibility on white */
@media (min-width: 901px) {
    .navbar-light .logo img {
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15)) !important;
    }
}

/* Desktop only link colors for Light Navbar */
@media (min-width: 901px) {
    .navbar-light .nav-links a {
        color: #060E1C !important;
    }

    .navbar-light .nav-links a:hover,
    .navbar-light .nav-links a.active {
        color: #D4AF37 !important;
    }
}

.navbar-light .hamburger span {
    background: #060E1C !important;
}



.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 55px; /* Increased from 45px */
    width: auto;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo img:hover {
    filter: brightness(1.5) contrast(1.2) drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transform: scale(1.1);
}


.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    position: relative;
    background: transparent; /* Changed from solid gradient to transparent */
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -2px;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    text-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 850px;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-btns {
    display: flex;
    gap: 25px;
    animation: fadeInUp 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 22px 50px;
    border-radius: 50px; /* Rounder for premium feel */
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px var(--gold-glow);
}

.btn-secondary {
    border: 1px solid var(--gold);
    color: var(--white);
    padding: 22px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: 0.4s;
    background: rgba(255,255,255,0.02);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Stats */
.stats-grid {
    display: flex;
    gap: 60px;
    margin-top: 80px;
    padding: 30px 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Services Section */
.services {
    padding: 150px 10%;
    background: #040A14;
}

.section-tag {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    padding: 50px 35px;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: -1;
    transition: 0.5s;
    font-family: 'Playfair Display', serif;
}

.card:hover .card-number {
    color: rgba(212, 175, 55, 0.08);
    transform: translate(-10px, 10px);
}

.card-icon {
    width: 65px;
    height: 65px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 30px;
    transition: 0.5s;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 60%);
    opacity: 0;
    transition: 0.5s;
}

.card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px var(--gold-glow);
}

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

.card-icon {
    width: 65px;
    height: 65px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 30px;
    transition: 0.5s;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--gold);
    color: var(--navy);
}

.card-icon i {
    width: 32px;
    height: 32px;
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-tag {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
}

/* Staggered entry for cards */
.services-grid .card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .card:nth-child(3) { transition-delay: 0.3s; }
.services-grid .card:nth-child(4) { transition-delay: 0.4s; }

/* Why Choose Us Redesign */
.why-choose {
    padding: 150px 10%;
    background: #040A14;
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-flex-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.why-text-side {
    flex: 1;
    position: sticky;
    top: 150px;
}

.why-text-side .section-title {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.inline-logo {
    height: 85px; /* Significantly larger */
    width: auto;
    padding: 12px 30px;
    background: #FFFFFF; /* Solid Light Color as requested */
    border-radius: 100px;
    border: 2px solid var(--gold);
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.1));
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: 0.5s;
}

.inline-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.why-stats-mini {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

.mini-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
}

.mini-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.why-grid-side {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 30px;
    perspective: 1000px; /* For 3D effects */
}

.why-card-new {
    background: #060E1C;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 45px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Snake Border Animation */
.why-card-new::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 0deg, transparent, transparent, var(--gold), transparent, transparent);
    animation: rotate-border 4s linear infinite;
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.why-card-new:hover::before {
    opacity: 1;
}

.why-card-new:hover {
    transform: translateZ(30px) rotateX(2deg) rotateY(-2deg);
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #0A1628;
}

.card-step {
    position: absolute;
    bottom: -10px;
    right: 20px;
    font-size: 6rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: rgba(212, 175, 55, 0.03);
    transition: 0.8s;
    z-index: 0;
}

.why-card-new:hover .card-step {
    color: rgba(212, 175, 55, 0.08);
    transform: translateY(-20px) scale(1.1);
}

.why-icon-new {
    width: 80px;
    height: 80px;
    min-width: 800px; /* Fixed sizing issue */
    min-width: 80px;
    background: rgba(212, 175, 55, 0.05);
    color: var(--gold);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 1;
}

.why-card-new:hover .why-icon-new {
    background: var(--gold);
    color: var(--navy);
    transform: translateZ(50px) rotate(360deg);
}

.card-info {
    z-index: 1;
}

.card-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin-bottom: 12px;
    color: #FFF;
    transition: 0.3s;
}

.why-card-new:hover h3 {
    color: var(--gold);
}

.card-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Testimonials Redesign */
.test-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.test-card-new {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 45px;
    border-radius: 35px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: float-slow 6s ease-in-out infinite;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.test-card-new:nth-child(even) { animation-delay: 1.5s; }

.test-card-new:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--gold);
    transform: translateZ(20px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    animation-play-state: paused;
}

.test-quote {
    position: absolute;
    top: 30px;
    right: 40px;
    color: rgba(212, 175, 55, 0.1);
}

.test-quote i { width: 40px; height: 40px; }

.test-stars {
    display: flex;
    gap: 5px;
    color: var(--gold);
}

.test-stars i { 
    width: 18px; 
    height: 18px; 
    fill: var(--gold); 
    color: var(--gold); 
}

.test-stars svg {
    fill: var(--gold);
    stroke: var(--gold);
}

.test-card-new p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.test-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 15px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.meta-item i { width: 14px; height: 14px; color: var(--gold); }
.meta-item span { font-size: 0.7rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }

.test-user-new {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.test-user-new h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #FFF;
    margin: 0;
}

@media (max-width: 768px) {
    .test-grid-new { grid-template-columns: 1fr; }
    .test-card-new { padding: 40px 25px; text-align: center; }
    .test-meta { justify-content: center; }
    .test-quote { right: 50%; transform: translateX(50%); top: 10px; opacity: 0.3; }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .why-card-new:hover { transform: translateY(-10px) scale(1.02); }
    .inline-logo { height: 60px; padding: 8px 15px; }
}

.card-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #FFF;
}

.card-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile Redesign Fixes */
@media (max-width: 1100px) {
    .why-flex-layout { flex-direction: column; gap: 60px; }
    .why-text-side { position: relative; top: 0; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .why-text-side .section-title { align-items: center; }
    .why-stats-mini { justify-content: center; }
}

@media (max-width: 768px) {
    .why-choose { padding: 100px 5%; }
    .why-card-new { 
        flex-direction: column; 
        text-align: center; 
        padding: 50px 30px; 
        gap: 20px;
    }
    .why-card-new:hover { transform: translateY(-10px); }
    .card-step { top: 15px; right: 50%; transform: translateX(50%); font-size: 4rem; opacity: 0.5; }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: 0.4s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ====== TABLET (768px – 1024px) ====== */
@media (max-width: 1024px) {
    .hero { padding: 0 6%; }
    .services { padding: 100px 6%; }
    .section-title { font-size: 2.8rem; }
    .stats-grid { gap: 40px; padding: 25px 40px; }
    .stat-val { font-size: 2.4rem; }
    .card { padding: 40px 30px; }
}

/* ====== MOBILE NAV TRIGGER (≤ 900px) ====== */
@media (max-width: 900px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(6, 14, 28, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--gold-glow);
        z-index: 5000; /* Ensure it's above the chatbot and everything else */
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        opacity: 1;
    }

    .navbar {
        flex-direction: row;
        padding: 15px 5%;
    }
}

/* ====== MOBILE (≤ 768px) ====== */
@media (max-width: 768px) {
    .hero {
        padding: 0 6%;
        padding-top: 80px;
        min-height: 100vh;
        height: auto;
    }

    .hero-title {
        font-size: 2.4rem;
        letter-spacing: -1px;
        line-height: 1.15;
    }

    .hero-title br { display: none; }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        padding: 18px 30px;
        font-size: 0.8rem;
        text-align: center;
        width: 100%;
    }

    .stats-grid {
        flex-direction: row;
        gap: 20px;
        padding: 20px 25px;
        border-radius: 20px;
        margin-top: 50px;
    }

    .stat-val { font-size: 1.8rem; }
    .stat-label { font-size: 0.65rem; letter-spacing: 1px; }

    .services { padding: 80px 5%; }
    .section-title { font-size: 2.2rem; margin-bottom: 50px; }
    .section-tag { font-size: 0.7rem; letter-spacing: 3px; }

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

    .card {
        padding: 40px 25px;
        text-align: center;
        align-items: center;
    }

    .card-icon {
        margin: 0 auto 25px;
    }

    .card h3 { font-size: 1.4rem; }
}

/* ====== SMALL PHONES (≤ 480px) ====== */
@media (max-width: 480px) {
    .hero { padding: 0 5%; padding-top: 70px; }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .btn-primary, .btn-secondary {
        padding: 16px 20px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .stats-grid {
        gap: 15px;
        padding: 18px 15px;
        border-radius: 15px;
    }

    .stat-val { font-size: 1.5rem; }
    .stat-label { font-size: 0.6rem; letter-spacing: 0.5px; }

    .logo { font-size: 1.3rem; }

    .section-title { font-size: 1.8rem; }
    .card { padding: 30px 20px; }
    .card h3 { font-size: 1.2rem; }
}

/* ====== VERY SMALL PHONES (≤ 360px) ====== */
@media (max-width: 360px) {
    .hero-title { font-size: 1.7rem; }
    .hero-subtitle { font-size: 0.85rem; }

    .stats-grid {
        flex-direction: column;
        gap: 20px;
        border-radius: 15px;
        padding: 25px 20px;
        align-items: center;
    }

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

    .btn-primary, .btn-secondary {
        padding: 14px 15px;
        font-size: 0.7rem;
    }

    .logo { font-size: 1.1rem; }
    .section-title { font-size: 1.5rem; }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 110px; /* Above Chatbot */
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    background: #128C7E;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 100px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* Chatbot Styles */
.chatbot-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}

.chat-bubble {
    width: 65px;
    height: 65px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.chat-bubble:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.chat-bubble i {
    width: 28px;
    height: 28px;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: rgba(6, 14, 28, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}

.chat-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-header {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bot-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-avatar {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.bot-info h4 {
    font-size: 0.95rem;
    margin: 0;
    color: #FFF;
}

.online-status {
    font-size: 0.7rem;
    color: #4CAF50;
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4CAF50;
    border-radius: 50%;
}

.close-chat {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    opacity: 0.6;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 0.9rem;
    max-width: 85%;
    line-height: 1.5;
}

.bot-message {
    background: rgba(255, 255, 255, 0.05);
    color: #FFF;
    border-bottom-left-radius: 5px;
    align-self: flex-start;
}

.user-message {
    background: var(--gold);
    color: var(--navy);
    border-bottom-right-radius: 5px;
    align-self: flex-end;
    font-weight: 500;
}

.quick-questions {
    padding: 0 20px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-btn {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.quick-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.chat-input-area {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 12px;
    color: #FFF;
    outline: none;
}

.chat-input-area input:focus {
    border-color: var(--gold);
}

.chat-input-area button {
    background: var(--gold);
    border: none;
    color: var(--navy);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 40px);
        right: -10px;
        height: 70vh;
    }
}

/* Floating Home Button */
.floating-home {
    position: fixed;
    bottom: 30px;
    left: 30px !important;
    right: auto !important;
    background: var(--gold);
    color: var(--navy);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 2px solid transparent;
}

.floating-home:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--navy);
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.floating-home i {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .floating-home span { display: none; }
    .floating-home { padding: 15px; border-radius: 50%; }
}

/* Footer Section */
.footer-section {
    background: #040A14;
    padding: 100px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px;
    border-radius: 40px;
    text-align: center;
    margin-bottom: 80px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.footer-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-cta h2 span { color: #D4AF37; }

.footer-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 35px;
}

.footer-btn {
    padding: 18px 40px;
    font-size: 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    height: 50px;
    margin-bottom: 25px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.footer-contact h3, .footer-links h3 {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    color: #D4AF37;
    width: 18px;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact-item a:hover { color: #D4AF37; }

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #D4AF37;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .footer-contact-item { justify-content: center; }
    .footer-cta { padding: 40px 20px; }
    .footer-cta h2 { font-size: 1.8rem; }
}
