/* ========================================
   PERFECT PAGE FREIGHT - COMPLETE CSS
   ======================================== */

/* ========================================
   1. CSS VARIABLES & THEME
   ======================================== */

:root {
    /* Primary Colors - Blue Shades */
    --primary-dark: #0A1628;
    --primary-deep: #0D2137;
    --primary-blue: #1A3A5C;
    --primary-mid: #1E4A7A;
    --primary-medium: #2563EB;
    --primary-light: #3B82F6;
    --primary-lighter: #60A5FA;
    --primary-lightest: #93BBFC;
    --primary-glow: rgba(59, 130, 246, 0.3);
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F1F5F9;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --black: #0B1120;
    
    /* Accent Colors */
    --success: #10B981;
    --success-dark: #059669;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #06B6D4;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0A1628 0%, #1A3A5C 50%, #2563EB 100%);
    --gradient-light: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
    --gradient-accent: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    --gradient-glow: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 30px 80px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.2);
    --shadow-glow-hover: 0 0 60px rgba(59, 130, 246, 0.35);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Fluid Typography (min, preferred-vw, max) via clamp() */
    --fs-hero-title: clamp(1.75rem, 1.1rem + 3.2vw, 3rem);
    --fs-section-title: clamp(1.5rem, 1.1rem + 1.8vw, 2.25rem);
    --fs-cta-title: clamp(1.5rem, 1.1rem + 1.8vw, 2.25rem);
    --fs-hero-desc: clamp(0.95rem, 0.85rem + 0.5vw, 1.125rem);
    --fs-stat-number: clamp(1.375rem, 1.1rem + 1.2vw, 2rem);

    /* Fluid Spacing */
    --space-section: clamp(3.5rem, 2.5rem + 4vw, 6.25rem);
    --space-section-sm: clamp(2.75rem, 2rem + 3vw, 4.375rem);

    /* Safe-area insets for notched devices */
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    
    /* Spacing */
    --container-width: 1200px;
    --container-width-wide: 1440px;
    --section-padding: var(--space-section) 0;
    --section-padding-sm: var(--space-section-sm) 0;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========================================
   2. RESET & BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevents iOS text auto-inflation on rotate, keeps rem scaling predictable */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /* Locks the viewport so full-bleed elements (100vw) can never open up
       sideways scroll, and the page never wobbles horizontally on mobile */
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    opacity: 0;
    animation: fadeInBody 0.6s ease forwards 0.1s;
    /* Guard against horizontal scroll from any oversized child on small screens */
    min-width: 320px;
}

@keyframes fadeInBody {
    to {
        opacity: 1;
    }
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ========================================
   ACCESSIBILITY: FOCUS STATES & MOTION
   ======================================== */

/* Consistent, visible keyboard focus across all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.service-card:focus-visible,
.qr-btn:focus-visible,
.chatbot-toggle:focus-visible,
.whatsapp-float:focus-visible,
.hamburger:focus-visible {
    outline: 2.5px solid var(--primary-light);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Remove default mouse-click outline while preserving keyboard outline above */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* Respect users who have requested reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    body {
        opacity: 1;
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ========================================
   3. SCROLLBAR STYLING
   ======================================== */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-accent);
    border-radius: 10px;
    transition: var(--transition-base);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-medium);
}

/* ========================================
   4. BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    /* Comfortable touch target on all devices */
    min-height: 48px;
}

.btn i {
    font-size: 18px;
    transition: var(--transition-base);
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(59, 130, 246, 0.45);
}

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

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 58, 92, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
    border-color: var(--white);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.btn-large {
    padding: 20px 44px;
    font-size: 18px;
    border-radius: var(--radius-lg);
}

.btn-large i {
    font-size: 20px;
}

.btn-small {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: var(--radius-sm);
    min-height: 40px;
}

/* ========================================
   5. HEADER / NAVIGATION - FIXED
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    padding-top: var(--safe-top);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled .navbar {
    height: 64px;
}

.header.scrolled .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
}

.header.scrolled .logo-text {
    font-size: 19px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    gap: 10px;
}

/* ========================================
   LOGO
   ======================================== */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 22px;
    color: var(--primary-dark);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.02);
}

.logo .logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.logo:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.35);
}

.logo-text {
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.logo-text .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--white);
    background: var(--gradient-accent);
    padding: 2px 10px;
    border-radius: 50px;
    -webkit-text-fill-color: white;
    margin-left: 2px;
    opacity: 0.9;
}

/* ========================================
   NAVIGATION MENU
   ======================================== */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-light);
    transform: translateY(-1px);
}

.nav-link:hover::before {
    width: 50%;
}

.nav-link.active {
    color: var(--primary-light);
    font-weight: 600;
}

.nav-link.active::before {
    width: 50%;
}

.nav-link i {
    font-size: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.5;
}

.nav-link:hover i {
    opacity: 1;
}

/* ========================================
   DROPDOWN
   ======================================== */

.dropdown {
    position: relative;
}

.dropdown .nav-link i:last-child {
    font-size: 11px;
    opacity: 0.4;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-left: 2px;
}

.dropdown:hover .nav-link i:last-child {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--primary-light);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.96);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    min-width: 220px;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 100;
    list-style: none;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px 0 0 0;
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
    opacity: 0.5;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    text-decoration: none;
}

.dropdown-menu li a i {
    width: 20px;
    font-size: 15px;
    color: var(--primary-light);
    opacity: 0.6;
    transition: var(--transition-base);
}

.dropdown-menu li a:hover {
    color: var(--primary-light);
    background: rgba(59, 130, 246, 0.04);
    border-left-color: var(--primary-light);
    padding-left: 28px;
}

.dropdown-menu li a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* ========================================
   NAV ACTIONS
   ======================================== */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-actions .btn-nav {
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-primary);
    white-space: nowrap;
    min-height: 40px;
}

.nav-actions .btn-nav i {
    font-size: 14px;
}

.nav-actions .btn-nav-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.nav-actions .btn-nav-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.nav-actions .btn-nav-primary:active {
    transform: scale(0.97);
}

.nav-actions .btn-nav-ghost {
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.nav-actions .btn-nav-ghost:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    background: rgba(59, 130, 246, 0.04);
    transform: translateY(-2px);
}

/* ========================================
   HAMBURGER MENU - FIXED
   ======================================== */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px 10px;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    position: relative;
    margin-left: 4px;
    /* Comfortable touch target */
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(59, 130, 246, 0.1);
}

.hamburger .bar {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--primary-dark);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.hamburger .bar:nth-child(2) {
    width: 18px;
    margin: 0 auto;
}

.hamburger:hover .bar {
    background: var(--primary-light);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background: var(--primary-light);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
    width: 26px;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background: var(--primary-light);
}

/* ========================================
   MOBILE RESPONSIVE - COMPLETE FIX
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .nav-link {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .nav-actions .btn-nav .btn-text {
        display: none;
    }
    
    .nav-actions .btn-nav {
        padding: 10px 14px;
    }
    
    .nav-actions .btn-nav i {
        font-size: 16px;
        margin: 0;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    /* Show hamburger */
    .hamburger {
        display: flex !important;
    }
    
    /* Hide ghost button on mobile */
    .nav-actions .btn-nav-ghost {
        display: none !important;
    }
    
    /* Compact quote button on mobile */
    .nav-actions .btn-nav-primary {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .nav-actions .btn-nav-primary .btn-text {
        display: none;
    }
    
    .nav-actions .btn-nav-primary i {
        font-size: 16px;
        margin: 0;
    }
    
    /* Mobile Menu - Full screen overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px) saturate(200%);
        -webkit-backdrop-filter: blur(30px) saturate(200%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        padding: calc(90px + var(--safe-top)) 20px calc(40px + var(--safe-bottom));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile Menu Items */
    .nav-menu .nav-link {
        font-size: 20px;
        padding: 16px 20px;
        width: 100%;
        justify-content: center;
        border-radius: var(--radius-sm);
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        min-height: 44px;
    }
    
    .nav-menu .nav-link::before,
    .nav-menu .nav-link::after {
        display: none;
    }
    
    .nav-menu .nav-link.active {
        background: rgba(59, 130, 246, 0.08);
        color: var(--primary-light);
    }
    
    /* Mobile Dropdown - Fixed */
    .dropdown {
        width: 100%;
    }
    
    .dropdown .nav-link {
        justify-content: center;
        cursor: pointer;
    }
    
    .dropdown .nav-link i:last-child {
        display: inline-block;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        margin-left: 8px;
    }
    
    .dropdown.active .nav-link i:last-child {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        display: none;
        border: none;
        width: 100%;
        margin-top: 0;
        border-radius: 0;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        animation: dropdownSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes dropdownSlide {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .dropdown-menu li:not(:last-child)::after {
        display: none;
    }
    
    .dropdown-menu li a {
        justify-content: center;
        padding: 12px 20px;
        font-size: 16px;
        border-left: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        background: rgba(0, 0, 0, 0.02);
    }
    
    .dropdown-menu li a:hover {
        padding-left: 20px;
        border-left: none;
        background: rgba(59, 130, 246, 0.04);
    }
    
    .dropdown-menu li a i {
        font-size: 16px;
    }
    
    /* Mobile Menu Animation */
    .nav-menu.active .nav-link {
        animation: mobileNavIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        opacity: 0;
        transform: translateY(20px);
    }
    
    .nav-menu.active .nav-link:nth-child(1) { animation-delay: 0.05s; }
    .nav-menu.active .nav-link:nth-child(2) { animation-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(3) { animation-delay: 0.15s; }
    .nav-menu.active .nav-link:nth-child(4) { animation-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(5) { animation-delay: 0.25s; }
    .nav-menu.active .nav-link:nth-child(6) { animation-delay: 0.3s; }
    
    @keyframes mobileNavIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    /* Logo */
    .logo-text {
        font-size: 16px;
    }
    
    .logo .logo-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .logo-badge {
        font-size: 6px;
        padding: 1px 6px;
    }
    
    .header.scrolled .logo-text {
        font-size: 14px;
    }
    
    .header.scrolled .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    /* Nav Actions */
    .nav-actions .btn-nav-primary {
        padding: 6px 10px;
    }
    
    .nav-actions .btn-nav-primary i {
        font-size: 14px;
    }
    
    /* Hamburger */
    .hamburger {
        padding: 5px 6px;
        gap: 4px;
    }
    
    .hamburger .bar {
        width: 20px;
        height: 2px;
    }
    
    .hamburger .bar:nth-child(2) {
        width: 14px;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    /* Mobile Menu */
    .nav-menu {
        padding-top: calc(80px + var(--safe-top));
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: calc(30px + var(--safe-bottom));
    }
    
    .nav-menu .nav-link {
        font-size: 17px;
        padding: 14px 16px;
    }
    
    .dropdown-menu li a {
        font-size: 14px;
        padding: 10px 16px;
    }
}

/* Very small phones - 360px and below (e.g. Galaxy Fold, older SE) */
@media (max-width: 360px) {
    .container {
        padding: 0 16px;
    }

    .logo-text {
        font-size: 14px;
    }

    .logo .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .nav-actions .btn-nav-primary {
        padding: 6px 8px;
    }
}

/* No scroll when menu is open */
.no-scroll {
    overflow: hidden !important;
}

/* ========================================
   6. HERO SECTION - FIXED MOBILE
   ======================================== */

.hero {
    padding: 140px 0 80px;
    padding-top: calc(140px + var(--safe-top));
    position: relative;
    overflow: hidden;
    background: var(--off-white);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.02) 50%, transparent 70%);
    border-radius: 50%;
    animation: floatGlow 20s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGlow2 25s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-50px, 30px) scale(1.1);
    }
}

@keyframes floatGlow2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(40px, -30px) scale(1.2);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.12);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: var(--fs-hero-title);
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-dark);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.hero-title .highlight {
    display: block;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: var(--fs-hero-desc);
    color: var(--gray-600);
    max-width: 520px;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: var(--fs-stat-number);
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -1px;
    transition: var(--transition-base);
}

.stat-number::after {
    content: '+';
    color: var(--primary-light);
    font-size: 24px;
    margin-left: 2px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-image {
    position: relative;
    animation: fadeInUp 0.8s ease forwards 0.4s;
    opacity: 0;
}

.hero-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image .image-wrapper:hover img {
    transform: scale(1.05);
}

.hero-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.2) 0%, transparent 100%);
}

.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatCard 6s ease-in-out infinite;
    transition: var(--transition-base);
}

.hero-floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.floating-card-1 {
    bottom: -15px;
    right: -15px;
    animation-delay: 0s;
}

.floating-card-2 {
    top: 20px;
    left: -20px;
    animation-delay: -2s;
}

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

.hero-floating-card i {
    font-size: 20px;
    color: var(--primary-light);
}

/* ========================================
   RESPONSIVE HERO
   ======================================== */

/* Ultra-wide screens: cap growth and add breathing room */
@media (min-width: 1440px) {
    .container {
        max-width: var(--container-width-wide);
    }

    .hero-image img {
        height: 460px;
    }

    .hero-content {
        gap: 80px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 120px 0 60px;
        padding-top: calc(120px + var(--safe-top));
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .floating-card-2 {
        display: none;
    }
}

/* Below tablet, the hero photo goes full-bleed: it fills the entire screen
   width edge-to-edge (breaking out of .container's side padding) and covers
   a fixed share of the viewport height, instead of shrinking into a small
   inset box. object-fit: cover (set on .hero-image img above) keeps the
   photo filling that box without distorting it. */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 50px;
        padding-top: calc(100px + var(--safe-top));
    }
    
    .hero-stats {
        gap: 20px;
    }

    .hero-image {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .hero-image .image-wrapper {
        border-radius: 0;
        box-shadow: none;
    }

    .hero-image img {
        width: 100vw;
        height: 55vh;
        height: 55dvh;
        min-height: 320px;
    }
    
    .hero-floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 0 40px;
        padding-top: calc(90px + var(--safe-top));
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image img {
        height: 48vh;
        height: 48dvh;
        min-height: 260px;
    }
    
    .hero-stats {
        gap: 16px;
        justify-content: center;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

/* Very short landscape phones: keep the full-bleed photo from eating the
   whole visible area since vh/dvh is tiny in landscape */
@media (max-width: 768px) and (max-height: 480px) and (orientation: landscape) {
    .hero-image img {
        height: 200px;
        min-height: 0;
    }
}

/* Short/landscape phones: relax the min-height & vertical padding so content isn't cropped */
@media (max-height: 480px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding-top: calc(110px + var(--safe-top));
        padding-bottom: 40px;
    }
}

/* ========================================
   7. SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-light);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.section-title {
    font-size: var(--fs-section-title);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .section-description {
        font-size: 15px;
    }
}

/* ========================================
   8. SERVICES OVERVIEW
   ======================================== */

.services-overview {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

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

.service-card * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary-light);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
    background: var(--gradient-accent);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    transition: var(--transition-base);
}

.service-card:hover h3 {
    color: var(--primary-light);
}

.service-card p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition-base);
}

.service-link i {
    transition: var(--transition-base);
}

.service-card:hover .service-link i {
    transform: translateX(6px);
}

@media (max-width: 768px) {
    .service-card {
        padding: 32px 20px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 24px 16px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* ========================================
   9. WHY CHOOSE US
   ======================================== */

.why-choose {
    padding: var(--section-padding);
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-choose-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-choose-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.why-choose-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    cursor: default;
}

.why-choose-list li:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.why-choose-list li .icon-wrapper {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-light);
    transition: var(--transition-base);
}

.why-choose-list li:hover .icon-wrapper {
    background: var(--gradient-accent);
    color: var(--white);
    transform: scale(1.05);
}

.why-choose-list li strong {
    display: block;
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.why-choose-list li p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .why-choose-list li {
        text-align: left;
    }
    
    .why-choose-image img {
        height: 300px;
    }
}

/* Full-bleed on mobile: the image covers the full screen width edge-to-edge
   rather than sitting inset with padding on either side. */
@media (max-width: 768px) {
    .why-choose-list li {
        padding: 14px 16px;
    }

    .why-choose-image {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        border-radius: 0;
        box-shadow: none;
    }

    .why-choose-image img {
        width: 100vw;
        height: 50vh;
        height: 50dvh;
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .why-choose-image img {
        height: 42vh;
        height: 42dvh;
        min-height: 220px;
    }
}

/* ========================================
   10. TESTIMONIALS
   ======================================== */

.testimonials {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 60px;
    color: rgba(59, 130, 246, 0.06);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.testimonial-stars {
    color: var(--warning);
    font-size: 13px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--gray-200);
    transition: var(--transition-base);
}

.testimonial-card:hover .testimonial-author img {
    border-color: var(--primary-light);
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--primary-dark);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
}

/* ========================================
   11. CTA SECTION
   ======================================== */

.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGlow 20s ease-in-out infinite alternate;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGlow2 25s ease-in-out infinite alternate;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content .cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    font-size: var(--fs-cta-title);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.cta-content .btn-primary:hover {
    background: var(--off-white);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

/* ========================================
   12. FOOTER
   ======================================== */

.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
    padding-bottom: var(--safe-bottom);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-logo img {
    height: 36px;
    width: auto;
}

.footer-motto {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-lighter);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.footer-description {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 280px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    background: var(--gradient-accent);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border-color: transparent;
}

.footer-col h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a::before {
    content: '→';
    opacity: 0;
    transition: var(--transition-base);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-col ul li a:hover::before {
    opacity: 1;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    transition: var(--transition-base);
}

.footer-contact li:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact li i {
    color: var(--primary-light);
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-base);
}

.footer-contact li a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-base);
}

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

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========================================
   13. WHATSAPP FLOATING BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: calc(30px + var(--safe-bottom));
    right: calc(30px + var(--safe-right));
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: pulseWhatsApp 2s ease-in-out infinite;
    text-decoration: none;
}

@keyframes pulseWhatsApp {
    0%, 100% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 50px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 50px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-tooltip {
    position: absolute;
    right: 74px;
    background: var(--gray-900);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--gray-900);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 28px;
        bottom: calc(20px + var(--safe-bottom));
        right: calc(20px + var(--safe-right));
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 24px;
        bottom: calc(16px + var(--safe-bottom));
        right: calc(16px + var(--safe-right));
    }
}

/* ========================================
   14. UTILITY CLASSES
   ======================================== */

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

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   15. ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-left {
    animation: slideLeft 0.8s ease forwards;
}

.animate-slide-right {
    animation: slideRight 0.8s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

.animate-delay-4 {
    animation-delay: 0.8s;
}

/* ========================================
   16. PREMIUM LOADER WITH MOTTO
   ======================================== */

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: var(--white);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.loader-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    animation: logoPulse 2s ease-in-out infinite;
}

.loader-logo .logo-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 4px 30px rgba(59, 130, 246, 0.3);
}

.loader-logo .logo-text {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.loader-logo .logo-text .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.loader-bars {
    display: flex;
    gap: 8px;
    align-items: center;
    height: 40px;
}

.loader-bar {
    width: 6px;
    height: 100%;
    border-radius: 3px;
    background: var(--gradient-accent);
    animation: barBounce 1.2s ease-in-out infinite;
}

.loader-bar:nth-child(1) {
    animation-delay: 0s;
    height: 20px;
}

.loader-bar:nth-child(2) {
    animation-delay: 0.1s;
    height: 30px;
}

.loader-bar:nth-child(3) {
    animation-delay: 0.2s;
    height: 40px;
}

.loader-bar:nth-child(4) {
    animation-delay: 0.3s;
    height: 35px;
}

.loader-bar:nth-child(5) {
    animation-delay: 0.4s;
    height: 25px;
}

.loader-bar:nth-child(6) {
    animation-delay: 0.5s;
    height: 40px;
}

.loader-bar:nth-child(7) {
    animation-delay: 0.6s;
    height: 30px;
}

.loader-bar:nth-child(8) {
    animation-delay: 0.7s;
    height: 20px;
}

@keyframes barBounce {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1.8);
        opacity: 1;
    }
}

.loader-text {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: textPulse 1.5s ease-in-out infinite;
}

.loader-text .dots {
    display: inline-block;
}

.loader-text .dots span {
    display: inline-block;
    animation: dotBounce 1.5s ease-in-out infinite;
}

.loader-text .dots span:nth-child(1) {
    animation-delay: 0s;
}

.loader-text .dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-text .dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes dotBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

.loader-motto {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.loader-motto .motto-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.loader-motto .motto-line .divider {
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.loader-motto .motto-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0.5px;
    text-transform: none;
    text-align: center;
    padding: 0 10px;
    opacity: 0.8;
    animation: mottoPulse 3s ease-in-out infinite;
}

.loader-motto .motto-text .highlight {
    color: var(--primary-light);
    font-weight: 600;
}

@keyframes mottoPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.loader-motto .motto-dots {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.loader-motto .motto-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-light);
    opacity: 0.3;
}

.loader-motto .motto-dots span:nth-child(1) {
    animation: dotFade 2s ease-in-out infinite 0s;
}

.loader-motto .motto-dots span:nth-child(2) {
    animation: dotFade 2s ease-in-out infinite 0.3s;
}

.loader-motto .motto-dots span:nth-child(3) {
    animation: dotFade 2s ease-in-out infinite 0.6s;
}

.loader-motto .motto-dots span:nth-child(4) {
    animation: dotFade 2s ease-in-out infinite 0.9s;
}

.loader-motto .motto-dots span:nth-child(5) {
    animation: dotFade 2s ease-in-out infinite 1.2s;
}

@keyframes dotFade {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   RESPONSIVE LOADER
   ======================================== */

@media (max-width: 768px) {
    .loader-logo {
        font-size: 22px;
        gap: 10px;
    }
    
    .loader-logo .logo-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
    
    .loader-bars {
        height: 32px;
        gap: 6px;
    }
    
    .loader-bar {
        width: 5px;
    }
    
    .loader-text {
        font-size: 12px;
    }
    
    .loader-motto .motto-text {
        font-size: 12px;
    }
    
    .loader-motto .motto-line .divider {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .loader-logo {
        font-size: 18px;
        gap: 8px;
    }
    
    .loader-logo .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .loader-bars {
        height: 26px;
        gap: 5px;
    }
    
    .loader-bar {
        width: 4px;
    }
    
    .loader-text {
        font-size: 11px;
    }
    
    .loader-motto .motto-text {
        font-size: 11px;
    }
    
    .loader-motto .motto-line .divider {
        width: 15px;
    }
}

/* ========================================
   17. CHATBOT - FIXED POSITION
   ======================================== */

.chatbot-toggle {
    position: fixed;
    bottom: calc(100px + var(--safe-bottom));
    right: calc(20px + var(--safe-right));
    z-index: 999;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 25px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 35px rgba(59, 130, 246, 0.5);
}

.chatbot-toggle .close-icon {
    display: none;
}

.chatbot-toggle.active .chat-icon {
    display: none;
}

.chatbot-toggle.active .close-icon {
    display: block;
}

.chatbot-toggle .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: #EF4444;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.chatbot-window {
    position: fixed;
    bottom: calc(170px + var(--safe-bottom));
    right: calc(20px + var(--safe-right));
    z-index: 998;
    width: 360px;
    max-width: calc(100vw - 40px);
    height: 460px;
    max-height: min(460px, 70dvh);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideUp 0.3s ease;
}

.chatbot-window.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    min-height: 52px;
}

.chatbot-header .info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.chatbot-header .avatar {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.chatbot-header .title {
    flex: 1;
    min-width: 0;
}

.chatbot-header .title h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chatbot-header .title span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 4px;
}

.chatbot-header .title .dot {
    width: 5px;
    height: 5px;
    background: #10B981;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.chatbot-header .close-btn {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-header .close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    padding: 12px 14px 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #F8FAFC;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 10px;
}

.msg {
    max-width: 88%;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
    word-wrap: break-word;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.msg.bot {
    align-self: flex-start;
    background: #fff;
    color: #1E293B;
    border: 1px solid #E2E8F0;
    border-bottom-left-radius: 4px;
}

.msg.bot .time {
    font-size: 8px;
    color: #94A3B8;
    margin-top: 3px;
    display: block;
}

.msg.user {
    align-self: flex-end;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.msg.user .time {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 3px;
    display: block;
    text-align: right;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 4px;
}

.qr-btn {
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 50px;
    color: #3B82F6;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.qr-btn:hover {
    background: #3B82F6;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.typing {
    align-self: flex-start;
    display: none;
    padding: 6px 12px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    border-bottom-left-radius: 4px;
    gap: 4px;
}

.typing.active {
    display: flex;
}

.typing span {
    width: 6px;
    height: 6px;
    background: #94A3B8;
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-5px); opacity: 1; }
}

.chatbot-input {
    padding: 8px 12px;
    border-top: 1px solid #E2E8F0;
    display: flex;
    gap: 6px;
    flex-shrink: 0;
    background: #fff;
    min-height: 44px;
}

.chatbot-input input {
    flex: 1;
    padding: 6px 12px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-family: inherit;
    /* 16px minimum prevents iOS Safari from auto-zooming on focus */
    font-size: 16px;
    outline: none;
    background: #F8FAFC;
    min-width: 0;
}

.chatbot-input input:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: #fff;
}

.chatbot-input input::placeholder {
    color: #94A3B8;
}

.chatbot-input button {
    padding: 6px 14px;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-height: 36px;
    min-width: 44px;
}

.chatbot-input button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* ========================================
   RESPONSIVE CHATBOT
   ======================================== */

@media (max-width: 768px) {
    .chatbot-toggle {
        bottom: calc(85px + var(--safe-bottom));
        right: calc(15px + var(--safe-right));
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .chatbot-window {
        bottom: calc(145px + var(--safe-bottom));
        right: calc(15px + var(--safe-right));
        width: 320px;
        max-width: calc(100vw - 30px);
        height: 400px;
        max-height: min(400px, 65dvh);
    }
}

@media (max-width: 480px) {
    .chatbot-toggle {
        bottom: calc(70px + var(--safe-bottom));
        right: calc(12px + var(--safe-right));
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .chatbot-window {
        bottom: calc(120px + var(--safe-bottom));
        right: calc(10px + var(--safe-right));
        left: calc(10px + var(--safe-left));
        width: auto;
        max-width: none;
        height: 360px;
        max-height: min(360px, 60dvh);
        border-radius: 12px;
    }
    
    .chatbot-header {
        padding: 8px 12px;
        min-height: 44px;
    }
    
    .chatbot-header .avatar {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 12px;
    }
    
    .chatbot-header .title h4 {
        font-size: 12px;
    }
    
    .chatbot-header .title span {
        font-size: 9px;
    }
    
    .chatbot-header .close-btn {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 12px;
    }
    
    .chatbot-messages {
        padding: 8px 10px 6px;
        gap: 5px;
    }
    
    .msg {
        font-size: 11px;
        padding: 6px 10px;
        max-width: 92%;
    }
    
    .qr-btn {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .chatbot-input {
        padding: 6px 10px;
        min-height: 38px;
        gap: 5px;
    }
    
    .chatbot-input button {
        padding: 5px 12px;
        font-size: 12px;
    }
}

/* Landscape phones: keep the chat window from overrunning the short viewport */
@media (max-height: 480px) and (orientation: landscape) {
    .chatbot-window {
        height: min(320px, 80dvh);
        max-height: min(320px, 80dvh);
        bottom: calc(80px + var(--safe-bottom));
    }

    .chatbot-toggle {
        bottom: calc(20px + var(--safe-bottom));
    }

    .whatsapp-float {
        bottom: calc(20px + var(--safe-bottom));
    }
}

/* Print: strip fixed UI and decorative chrome that don't belong on paper */
@media print {
    .header,
    .whatsapp-float,
    .chatbot-toggle,
    .chatbot-window,
    .hamburger,
    .loader-overlay {
        display: none !important;
    }

    body {
        opacity: 1;
        animation: none;
    }
}