/* =====================================================
   KASTANA MENA - Modern Glassmorphism Design System
   LIGHT THEME VERSION
   ===================================================== */

/* CSS Variables */
:root {
    /* Brand Colors */
    --primary: #F5A623;
    --primary-dark: #E89B1C;
    --secondary: #2E5AAC;
    --secondary-dark: #234785;
    --accent-orange: #E87C1E;
    --accent-green: #5BA829;

    /* Glassmorphism Colors - Light Theme */
    --glass-bg: rgba(0, 0, 0, 0.05);
    --glass-bg-light: rgba(0, 0, 0, 0.08);
    --glass-bg-dark: rgba(0, 0, 0, 0.1);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.1);

    /* Light Theme */
    --bg-dark: #f5f5f7;
    --bg-dark-secondary: #e8e8ed;
    --bg-gradient-start: #f5f5f7;
    --bg-gradient-end: #e0e0e5;

    /* Text Colors - Light Theme */
    --text-light: #1a1a2e;
    --text-muted: rgba(0, 0, 0, 0.6);
    --text-dark: #1a1a2e;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #F5A623 0%, #E87C1E 100%);
    --gradient-secondary: linear-gradient(135deg, #2E5AAC 0%, #5BA829 100%);
    --gradient-hero: linear-gradient(135deg, #f5f5f7 0%, #e0e0e5 50%, #f5f5f7 100%);
    --gradient-glass: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.02) 100%);

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 5%;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50%;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Shadows */
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(245, 166, 35, 0.3);
    --shadow-glow-blue: 0 0 40px rgba(46, 90, 172, 0.3);
}

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

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-text-size-adjust: 100%;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--text-dark);
}

/* Links */
a {
    text-decoration: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--glass-bg-light);
    border-radius: 4px;
}

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

/* =====================================================
   PRELOADER
   ===================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    width: 120px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    margin: 30px auto 0;
    border: 3px solid var(--glass-border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

/* =====================================================
   ANIMATED BACKGROUND
   ===================================================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--gradient-hero);
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(245, 166, 35, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(46, 90, 172, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(91, 168, 41, 0.1) 0%, transparent 60%);
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: 50%;
    right: -80px;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--accent-green);
    bottom: -100px;
    left: 30%;
    animation-delay: -10s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: var(--accent-orange);
    top: 30%;
    left: 50%;
    animation-delay: -15s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(-50px, -30px) scale(1.05);
    }
}

/* Particles Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Grid Pattern Overlay */
.grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* =====================================================
   GLASSMORPHISM COMPONENTS
   ===================================================== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
}

.glass-light {
    background: var(--glass-bg-light);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.glass-dark {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.glass-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glass), var(--shadow-glow);
    border-color: rgba(245, 166, 35, 0.3);
}

/* Card text – black (overrides blue/primary link color) */
.glass-card,
.glass-card h3,
.glass-card h4,
.glass-card p {
    color: #1a1a2e;
}
.glass-card a {
    color: #1a1a2e;
}
.glass-card a:hover {
    color: #000;
}
.glass-card a i {
    color: #1a1a2e;
}
.glass-card a:hover i {
    color: #000;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-bg-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
}

.btn-glass:hover {
    background: var(--glass-bg-light);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* Button Icon Animation */
.btn i {
    transition: transform var(--transition-normal);
}

.btn:hover i {
    transform: translateX(5px);
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 5%;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-logo img {
    height: 45px;
    width: auto;
    transition: transform var(--transition-normal);
}

.navbar-logo:hover img {
    transform: scale(1.05);
}

.navbar-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.navbar-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-normal);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--primary);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 100%;
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-cta .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

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

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

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

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

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

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phone {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f0f5 100%);
    border-radius: 40px;
    border: 3px solid var(--glass-border);
    box-shadow: var(--shadow-glass), var(--shadow-glow);
    overflow: hidden;
    animation: floatPhone 6s ease-in-out infinite;
}

.hero-phone::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #1a1a2e;
    border-radius: 20px;
    z-index: 10;
}

.hero-phone-screen {
    position: absolute;
    top: 50px;
    left: 10px;
    right: 10px;
    bottom: 20px;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
}

.hero-phone-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 15px;
}

.phone-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
}

.phone-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.phone-status {
    font-size: 0.75rem;
    color: var(--accent-green);
}

.phone-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.phone-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.85rem;
    animation: messageSlide 0.5s ease-out;
}

.phone-message.received {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.phone-message.sent {
    background: var(--gradient-primary);
    color: var(--text-dark);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.phone-message.verified {
    background: linear-gradient(135deg, rgba(46, 90, 172, 0.3), rgba(91, 168, 41, 0.3));
    border: 1px solid var(--accent-green);
}

.phone-message .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--accent-green);
    margin-top: 5px;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

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

/* Floating Elements around phone */
.hero-floating {
    position: absolute;
    animation: floatElement 4s ease-in-out infinite;
}

.hero-floating-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-floating-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: -1s;
}

.hero-floating-3 {
    top: 40%;
    right: -5%;
    animation-delay: -2s;
}

.floating-icon {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-glass);
}

.floating-icon.whatsapp {
    color: #25D366;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
}

.floating-icon.ai {
    color: var(--secondary);
    box-shadow: var(--shadow-glow-blue);
}

.floating-icon.sms {
    color: var(--primary);
    box-shadow: var(--shadow-glow);
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

/* =====================================================
   HERO SLIDER
   ===================================================== */
.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.slide-text {
    position: relative;
    z-index: 2;
}

.slide-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.slider-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

.slider-dot:hover {
    border-color: var(--primary);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-normal);
}

.slider-arrow:hover {
    background: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Slide Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--glass-bg);
}

.slider-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0;
    transition: width 0.1s linear;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section {
    padding: var(--section-padding);
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.service-card {
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.service-icon.blue {
    background: var(--gradient-secondary);
    color: var(--text-light);
}

.service-icon.green {
    background: linear-gradient(135deg, #5BA829 0%, #7BC142 100%);
}

.service-icon.orange {
    background: linear-gradient(135deg, #E87C1E 0%, #F5A623 100%);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--accent-green);
    font-size: 0.75rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.service-link:hover {
    gap: 12px;
}

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

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

/* =====================================================
   ENGAGE SECTION
   ===================================================== */
.engage-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.engage-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.engage-content {
    position: relative;
    z-index: 2;
}

.engage-visual {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Phone Comparison */
.phone-comparison {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.compare-phone {
    width: 220px;
    height: 450px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f0f5 100%);
    border-radius: 30px;
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-slow);
}

.compare-phone::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #1a1a2e;
    border-radius: 15px;
    z-index: 10;
}

.compare-phone.before {
    opacity: 0.6;
    transform: scale(0.95);
}

.compare-phone.after {
    box-shadow: var(--shadow-glass), var(--shadow-glow);
}

.compare-phone:hover {
    transform: translateY(-10px);
}

.phone-screen {
    position: absolute;
    top: 40px;
    left: 8px;
    right: 8px;
    bottom: 15px;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    padding: 15px;
}

.call-ui {
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Left screen (Without ENGAGE): fit content inside mobile */
.compare-phone.before .phone-screen {
    padding: 6px 10px 12px 10px;
}

.compare-phone.before .call-ui {
    justify-content: flex-start;
    gap: 8px;
    padding-top: 0;
}

.compare-phone.before .call-status {
    font-size: 0.65rem;
    margin-bottom: 4px;
}

.compare-phone.before .caller-number {
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.compare-phone.before .caller-name {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.compare-phone.before .call-actions {
    gap: 24px;
    margin-top: auto;
}

.compare-phone.before .call-action {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
}

.call-status {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.caller-avatar {
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 15px;
    border: 2px solid var(--glass-border);
    overflow: hidden;
}

.caller-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.caller-avatar--transparent {
    background: transparent !important;
    border: none !important;
}

.compare-phone.after .caller-avatar--transparent {
    background: #ffffff !important;
}

.caller-avatar--transparent img {
    object-fit: contain;
}

.caller-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.caller-number {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.call-verified {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(91, 168, 41, 0.2);
    border: 1px solid var(--accent-green);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--accent-green);
    margin-bottom: 30px;
}

.call-actions {
    display: flex;
    gap: 40px;
}

.call-action {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all var(--transition-normal);
}

.call-action.decline {
    background: #ff4444;
}

.call-action.accept {
    background: var(--accent-green);
}

.call-action:hover {
    transform: scale(1.1);
}

.compare-label {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.compare-arrow {
    display: flex;
    align-items: center;
    font-size: 2rem;
    color: var(--primary);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(10px); opacity: 0.5; }
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    background: var(--glass-bg-light);
    border-color: var(--primary);
    transform: translateX(10px);
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* =====================================================
   AI SECTION
   ===================================================== */
.ai-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.ai-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ai-visual {
    position: relative;
    order: -1;
}

.ai-chat-demo {
    background: #ffffff;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-glass), var(--shadow-glow-blue);
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
    background: #f5f5f7;
}

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

.chat-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.chat-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.chat-info span {
    font-size: 0.75rem;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-info span::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chat-body {
    padding: 20px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #ffffff;
}

.chat-message {
    display: flex;
    gap: 10px;
    max-width: 85%;
    animation: messageSlide 0.5s ease-out;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chat-message-avatar {
    width: 35px;
    height: 35px;
    background: #e8e8ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
    color: #1a1a2e;
}

.chat-message.user .chat-message-avatar {
    background: var(--gradient-primary);
    color: var(--text-dark);
}

.chat-message-content {
    padding: 12px 16px;
    background: #f0f0f5;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    font-size: 0.9rem;
    color: #1a1a2e;
}

.chat-message.user .chat-message-content {
    background: var(--gradient-secondary);
    border: none;
}

.chat-message.bot .chat-message-content {
    border-bottom-left-radius: 4px;
}

.chat-message.user .chat-message-content {
    border-bottom-right-radius: 4px;
}

.chat-typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
    background: #f0f0f5;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    width: fit-content;
}

.chat-typing span {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingDot 1.4s infinite ease-in-out;
}

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

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

@keyframes typingDot {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1.2); opacity: 1; }
}

.chat-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 10px;
    background: #f5f5f7;
}

.chat-input {
    flex: 1;
    padding: 12px 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    color: #1a1a2e;
    font-size: 0.9rem;
    outline: none;
    transition: all var(--transition-normal);
}

.chat-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(46, 90, 172, 0.2);
}

.chat-send {
    width: 45px;
    height: 45px;
    background: var(--gradient-secondary);
    border: none;
    border-radius: 50%;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.chat-send:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-blue);
}

/* =====================================================
   WHATSAPP SECTION
   ===================================================== */
.whatsapp-section {
    padding: var(--section-padding);
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(37, 211, 102, 0.05) 50%, transparent 100%);
}

.whatsapp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.whatsapp-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.whatsapp-phone {
    width: 320px;
    height: 620px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f0f5 100%);
    border-radius: 35px;
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-glass), 0 0 40px rgba(37, 211, 102, 0.2);
    overflow: hidden;
    position: relative;
    animation: floatPhone 6s ease-in-out infinite;
}

.whatsapp-phone::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #1a1a2e;
    border-radius: 15px;
    z-index: 10;
}

.wa-screen {
    position: absolute;
    top: 45px;
    left: 8px;
    right: 8px;
    bottom: 15px;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.wa-screen img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.wa-header {
    background: #f0f2f5;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.wa-back {
    color: var(--text-light);
    font-size: 1.25rem;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
}

.wa-contact {
    flex: 1;
}

.wa-contact-name {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wa-verified {
    color: #25D366;
    font-size: 0.875rem;
}

.wa-contact-status {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.wa-icons {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
}

.wa-chat {
    padding: 15px 15px 70px 15px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #efeae2 url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: auto;
}

.wa-message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    position: relative;
}

.wa-message.received {
    background: #ffffff;
    align-self: flex-start;
    border-bottom-left-radius: 0;
    color: #1a1a2e;
}

.wa-message.sent {
    background: #d9fdd3;
    align-self: flex-end;
    border-bottom-right-radius: 0;
    color: #1a1a2e;
}

.wa-message-time {
    font-size: 0.65rem;
    color: rgba(0,0,0,0.5);
    text-align: right;
    margin-top: 5px;
}

.wa-input {
    position: absolute;
    bottom: 15px;
    left: 8px;
    right: 8px;
    display: flex;
    gap: 10px;
    padding: 0 10px;
}

.wa-input-field {
    flex: 1;
    padding: 10px 15px;
    background: #ffffff;
    border: none;
    border-radius: 20px;
    color: #1a1a2e;
    font-size: 0.85rem;
}

.wa-input-send {
    width: 40px;
    height: 40px;
    background: #00a884;
    border: none;
    border-radius: 50%;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =====================================================
   SMS SECTION
   ===================================================== */
.sms-section {
    padding: var(--section-padding);
    position: relative;
}

.sms-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.sms-header {
    text-align: center;
    margin-bottom: 4rem;
}

.sms-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.sms-stat {
    text-align: center;
    padding: 40px 30px;
}

.sms-stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--text-dark);
    margin: 0 auto 1.5rem;
}

.sms-stat-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.sms-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sms-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sms-feature {
    padding: 30px;
    text-align: center;
}

.sms-feature i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.sms-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.sms-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
    padding: 80px 5%;
    position: relative;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0 auto 1.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.stat-value span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    padding: var(--section-padding);
    position: relative;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--container-padding);
    text-align: center;
}

.cta-card {
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary), transparent 30%);
    animation: rotateBorder 4s linear infinite;
    opacity: 0.3;
}

.cta-card::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--bg-dark);
    border-radius: calc(var(--radius-xl) - 2px);
    z-index: 0;
}

@keyframes rotateBorder {
    to { transform: rotate(360deg); }
}

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

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 80px 5% 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.125rem;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-newsletter h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-normal);
}

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

/* =====================================================
   PAGE HEADER
   ===================================================== */
.page-header {
    padding: 180px 5% 100px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.page-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.page-breadcrumb a:hover {
    color: var(--primary);
}

.page-breadcrumb span {
    color: var(--text-muted);
}

.page-breadcrumb .current {
    color: var(--primary);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   ABOUT PAGE STYLES
   ===================================================== */
.about-intro {
    padding: var(--section-padding);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-glass), var(--shadow-glow);
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    padding: 30px;
    text-align: center;
}

.about-image-float .stat-value {
    font-size: 3rem;
    font-weight: 800;
}

.about-image-float .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 2rem;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.about-highlight i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.about-highlight span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Mission Vision */
.mission-vision {
    padding: var(--section-padding);
}

.mv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
}

.mv-card.vision::before {
    background: var(--gradient-secondary);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.mv-card.vision .mv-icon {
    background: var(--gradient-secondary);
    color: var(--text-light);
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Values */
.values-section {
    padding: var(--section-padding);
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.value-card {
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 1.5rem;
    transition: all var(--transition-normal);
}

.value-card:hover .value-icon {
    background: var(--gradient-primary);
    color: var(--text-dark);
    border-color: var(--primary);
    transform: scale(1.1);
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

/* Team */
.team-section {
    padding: var(--section-padding);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 30px 20px;
    transition: all var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-dark);
    overflow: hidden;
    border: 3px solid var(--glass-border);
    transition: all var(--transition-normal);
}

.team-card:hover .team-avatar {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

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

.team-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.team-card .role {
    font-size: 0.875rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: all var(--transition-normal);
}

.team-social a:hover {
    background: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary);
}

/* =====================================================
   SERVICES PAGE STYLES
   ===================================================== */
.services-overview {
    padding: var(--section-padding);
}

.services-overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.services-tab {
    padding: 15px 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-light);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-tab:hover {
    background: var(--glass-bg-light);
    border-color: var(--primary);
}

.services-tab.active {
    background: var(--gradient-primary);
    color: var(--text-dark);
    border-color: var(--primary);
}

.services-tab i {
    font-size: 1.125rem;
}

.services-tab-content {
    display: none;
}

.services-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Service Detail */
.service-detail {
    padding: var(--section-padding);
}

.service-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail.reverse .service-detail-container {
    direction: rtl;
}

.service-detail.reverse .service-detail-container > * {
    direction: ltr;
}

.service-detail-content {
    position: relative;
}

.service-detail-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

/* =====================================================
   BRANCHES PAGE STYLES
   ===================================================== */
.branches-map {
    padding: var(--section-padding);
    position: relative;
}

.branches-map-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.map-wrapper {
    position: relative;
    padding: 60px;
    margin-bottom: 4rem;
}

.world-map {
    width: 100%;
    height: auto;
    opacity: 0.5;
}

.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
    animation: markerPulse 2s infinite;
}

.marker-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(245, 166, 35, 0.3);
    border-radius: 50%;
    animation: markerPulseOuter 2s infinite;
}

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

@keyframes markerPulseOuter {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.marker-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    margin-bottom: 15px;
}

.map-marker:hover .marker-tooltip {
    opacity: 1;
    visibility: visible;
}

.marker-tooltip h5 {
    font-size: 0.875rem;
    margin-bottom: 2px;
}

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

/* Branch Cards */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.branch-card {
    padding: 40px 30px;
    text-align: left;
    transition: all var(--transition-normal);
}

.branch-card:hover {
    transform: translateY(-10px);
}

.branch-card.headquarters {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.branch-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.branch-flag {
    width: 56px;
    height: 56px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    border: 2px solid var(--glass-border);
    transition: all var(--transition-normal);
}

.branch-card:hover .branch-flag {
    border-color: var(--primary);
    transform: scale(1.1);
}

.branch-card-title-wrap {
    flex: 1;
    min-width: 0;
}

.branch-card-title-wrap .hq-badge {
    margin-top: 0.25rem;
}

.branch-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.branch-card .hq-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-primary);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.branch-card p,
.branch-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.branch-card-desc {
    min-height: 2.8em;
}

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

.branch-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: #1a1a2e;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-normal);
}

.branch-contact a:hover {
    color: #000;
}

.branch-contact a i,
.branch-contact .branch-contact-item {
    color: #1a1a2e;
}

.branch-contact .branch-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #1a1a2e;
}

/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */
.contact-section {
    padding: var(--section-padding);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all var(--transition-normal);
}

.contact-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    padding: 50px;
}

/* Keep "Send Us a Message" card still: no move on hover, focus, or click */
.contact-form-wrapper--static.glass-card,
.contact-form-wrapper--static.glass-card:hover,
.contact-form-wrapper--static.glass-card:focus-within {
    transform: none;
    transition: none;
}
.contact-form-wrapper--static.glass-card::before {
    display: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

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

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

.form-submit {
    display: flex;
    justify-content: flex-end;
}

.form-submit .btn {
    min-width: 200px;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: var(--glass-bg-light);
}

.faq-question h4 {
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--primary);
    transition: transform var(--transition-normal);
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-out"] {
    transform: scale(1.1);
}

[data-aos="flip-up"] {
    transform: translateY(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger animations */
[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos-delay="400"] { transition-delay: 400ms; }
[data-aos-delay="500"] { transition-delay: 500ms; }
[data-aos-delay="600"] { transition-delay: 600ms; }

/* =====================================================
   MOUSE FOLLOWER
   ===================================================== */
.mouse-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    mix-blend-mode: difference;
}

.mouse-follower.hover {
    width: 50px;
    height: 50px;
    opacity: 0.3;
}

.mouse-follower-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--text-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

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

    .footer-brand {
        grid-column: span 3;
        max-width: 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .hero-container,
    .slide-content,
    .engage-container,
    .ai-container,
    .whatsapp-container,
    .about-container,
    .service-detail-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-visual,
    .ai-visual,
    .engage-visual {
        order: -1;
    }

    .hero-phone {
        width: 250px;
        height: 500px;
    }

    .phone-comparison {
        flex-direction: column;
        gap: 60px;
    }

    .compare-arrow {
        transform: rotate(90deg);
    }

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

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

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

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

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

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

    .navbar-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 20px;
        z-index: 999;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu a {
        font-size: 1.5rem;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar-cta {
        display: none;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    .engage-container,
    .ai-container,
    .whatsapp-container {
        gap: 40px;
    }

    .feature-list {
        gap: 15px;
    }

    .services-header,
    .sms-header,
    .values-header,
    .team-header,
    .faq-header {
        margin-bottom: 3rem;
    }

    .section-subtitle {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .hero {
        padding: 120px 5% 60px;
    }

    .hero-slide {
        padding: 120px 5% 60px;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stat-value {
        font-size: 2rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .navbar-logo img {
        height: 35px;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

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

    .service-card {
        padding: 30px 20px;
    }

    .feature-list {
        gap: 15px;
    }

    .feature-item {
        padding: 15px;
    }

    .compare-phone {
        width: 180px;
        height: 370px;
    }

    .compare-phone.before .phone-screen {
        padding: 8px 6px;
    }

    .compare-phone.before .call-status {
        font-size: 0.6rem;
    }

    .compare-phone.before .caller-number,
    .compare-phone.before .caller-name {
        font-size: 0.7rem;
    }

    .compare-phone.before .call-action {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .compare-phone.before .call-actions {
        gap: 16px;
    }

    .whatsapp-phone {
        width: 280px;
        height: 540px;
    }

    .ai-chat-demo {
        margin: 0 -5%;
        border-radius: var(--radius-lg);
    }

    .chat-body {
        min-height: 280px;
    }

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

    .footer-brand {
        grid-column: span 2;
    }

    .footer-newsletter {
        grid-column: span 2;
    }

    .mv-container {
        grid-template-columns: 1fr;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .cta-card {
        padding: 50px 30px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    /* Section spacing */
    section {
        padding: 60px 0;
    }

    .services-section,
    .engage-section,
    .ai-section,
    .whatsapp-section,
    .sms-section,
    .stats-section,
    .cta-section {
        padding: 60px 0;
    }

    /* Reduce gaps */
    .hero-container,
    .slide-content {
        gap: 40px;
    }

    .phone-comparison {
        gap: 40px;
    }

    /* Text adjustments */
    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Cards */
    .sms-stat {
        padding: 30px 20px;
    }

    .stat-card {
        padding: 30px 15px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .team-card {
        padding: 25px 15px;
    }

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

    /* Fix map wrapper */
    .map-wrapper {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-phone {
        width: 220px;
        height: 440px;
    }

    .compare-phone {
        width: 160px;
        height: 320px;
    }

    .compare-phone.before .phone-screen {
        padding: 6px 5px;
    }

    .compare-phone.before .call-status {
        font-size: 0.55rem;
    }

    .compare-phone.before .caller-number,
    .compare-phone.before .caller-name {
        font-size: 0.65rem;
    }

    .compare-phone.before .call-action {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .compare-phone.before .call-actions {
        gap: 12px;
    }

    .whatsapp-phone {
        width: 240px;
        height: 460px;
    }

    .page-header {
        padding: 140px 5% 60px;
    }

    .page-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .sms-stats {
        grid-template-columns: 1fr;
    }

    .sms-stat {
        padding: 25px 15px;
    }

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

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

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

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

    .branch-card {
        padding: 30px 20px;
    }

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

    .footer-brand,
    .footer-newsletter {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .slider-nav {
        bottom: 30px;
    }

    .slider-arrow {
        display: none;
    }

    .cta-card {
        padding: 40px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-card-icon {
        margin: 0 auto;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .floating-orb {
        opacity: 0.2;
    }

    /* Section spacing for smallest screens */
    section {
        padding: 50px 0;
    }

    .services-section,
    .engage-section,
    .ai-section,
    .whatsapp-section,
    .sms-section,
    .stats-section,
    .cta-section {
        padding: 50px 0;
    }

    /* Hero adjustments */
    .hero {
        padding: 120px 5% 50px;
    }

    .hero-slide {
        padding: 120px 5% 50px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        margin-bottom: 2rem;
    }

    /* Feature items */
    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-item i {
        margin: 0 auto;
    }

    /* Footer */
    .footer {
        padding: 50px 5% 25px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-column h4 {
        margin-bottom: 1rem;
    }

    /* Navbar padding */
    .navbar {
        padding: 15px 4%;
    }

    .navbar.scrolled {
        padding: 10px 4%;
    }

    /* Container padding adjustment */
    .services-container,
    .engage-container,
    .ai-container,
    .whatsapp-container,
    .sms-container,
    .stats-container,
    .cta-container {
        padding: 0 4%;
    }

    /* FAQ */
    .faq-question {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    /* Service icons */
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Stat icons */
    .stat-icon,
    .sms-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .sms-stat-value,
    .stat-value {
        font-size: 2rem;
    }

    /* Team avatar */
    .team-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    /* Value icon */
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Chat demo */
    .chat-body {
        min-height: 250px;
        padding: 15px;
    }

    .chat-message-content {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    /* About page */
    .about-highlights {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: 30px 20px;
    }

    .mv-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .mouse-follower,
    .mouse-follower-dot {
        display: none;
    }

    [data-aos] {
        opacity: 1;
        transform: none;
    }
}

/* =====================================================
   VIDEO POPUP
   ===================================================== */
.video-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-popup-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.video-popup {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #1a1a2e;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.video-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.video-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.video-popup-inner {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.video-popup-inner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
