:root {
    --primary: #0052cc;
    --primary-dark: #0747a6;
    --secondary: #00875a;
    --accent: #00b8d9;
    --text: #172b4d;
    --text-light: #5e6c84;
    --background: #ffffff;
    --gray-50: #f7fafc;
    --gray-100: #f4f5f7;
    --gray-200: #ebecf0;
    --success: #36b37e;
    --warning: #ffab00;
    --danger: #ff5630;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);

    /* Announcement bar (top notice) */
    --announcement-height: 34px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.seo-helper {
    max-width: 640px;
    margin-top: 14px;
    font-size: 12.5px;
    line-height: 1.55;
    color: #9ca3af;
    text-align: center;
}
.seo-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


/* Navbar Styles */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--announcement-height);
    z-index: 1001;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.announcement-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.announcement-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.announcement-text {
    font-size: 13px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    display: flex;
    align-items: center;
    gap: 8px;
}

.announcement-text strong {
    color: #ffffff;
    font-weight: 600;
}

.announcement-close {
    position: absolute;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    line-height: 1;
    padding: 0;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.announcement-close:active {
    transform: scale(0.95);
}

.navbar {
    position: fixed;
    width: 100%;
    top: var(--announcement-height);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px 0;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.announcement-hidden {
    top: 0;
}

@media (max-width: 768px) {
    :root {
        --announcement-height: 38px;
    }

    .announcement-container {
        padding: 0 20px;
    }

    .announcement-text {
        font-size: 12px;
    }
}
.hero-cta-note {
    margin-top: 0px;
    font-size: 0.85rem;
    color: #6b7280; /* gris SaaS moderno */
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    line-height: 0%;
    gap: 6px;
    opacity: 0.9;
}

.hero-cta-note::before {
    content: "✓";
    color: #10b981; /* verde confianza */
    font-weight: 600;
    font-size: 0.9rem;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.logo-img {
    height: 30px;
    transition: var(--transition);
}

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

.logo i {
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.logo:hover i {
    transform: scale(1.1);
}

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

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0 40px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

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

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.phone-link i {
    color: var(--primary);
    font-size: 16px;
}

.phone-link:hover {
    color: var(--primary);
}

.lang-switcher {
    display: flex;
    gap: 4px;
    padding: 4px;
}

.lang-btn {
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--text-light);
    border-radius: 0px;
    transition: var(--transition);
    font-weight: 500;
    border-bottom-color:white;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.lang-btn:hover {
    border-bottom-color: rgba(0, 82, 204, 0.1);
    color: var(--primary);
}

.lang-btn.active {
    border-bottom-color: var(--primary);
    color: var(--primary);
}

.booking-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.booking-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    color: var(--primary);
}


.primary-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow);
}

.primary-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.secondary-btn {
    background: white;
    color: var(--text);
    border: 2px solid var(--gray-200);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.secondary-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

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

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

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-text {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}


.card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-title {
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.card-subtitle {
    font-size: 12px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

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

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

    .hero-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

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

/* Estilos generales para secciones */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: var(--text);
    margin-bottom: 16px;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text);
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.service-features i {
    color: var(--success);
}

.service-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
}

.service-btn:hover {
    background: var(--primary-dark);
}

/* Tecnología */
.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tech-image {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

.tech-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.tech-feature i {
    font-size: 24px;
    color: var(--primary);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 80px 0 0;
}

.footer-top {
    padding-bottom: 60px;
}

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

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

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: white;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 24px;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links,
    .nav-cta {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }

    .nav-links.active,
    .nav-cta.active {
        left: 0;
    }

    .nav-links {
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-cta {
        top: 320px;
    }

    .lang-switcher {
        margin-right: 0 !important;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

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

    .primary-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
    }

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

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

    .footer-brand {
        margin: 0 auto;
    }

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




       /* ===== HERO CONTAINER ===== */
        header.hero-modern {
            background: linear-gradient(135deg, #f5f7fa 0%, #fafbfc 100%) !important;
            padding: 140px 20px 80px !important;
            min-height: 100vh !important;
            position: relative !important;
            overflow: hidden !important;
            transition: padding-top 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        }
        
        header.hero-modern.announcement-hidden {
            padding-top: 100px !important;
        }
        
        .hero-modern .hero-container {
            max-width: 1280px !important;
            margin: 0 auto !important;
            display: grid !important;
            grid-template-columns: 1fr 1.1fr !important;
            gap: 60px !important;
            position: relative !important;
            z-index: 1 !important;
        }
        
        /* ===== LEFT COLUMN ===== */
        .hero-modern .hero-message {
            padding: 80px 0 !important;
        }
        
        .hero-modern .hero-headline {
            font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
            font-weight: 800 !important;
            line-height: 1.1 !important;
            color: #0f172a !important;
            margin: 0 0 24px 0 !important;
        }
        
        .hero-modern .hero-subheadline {
            font-size: clamp(1.05rem, 2vw, 1.2rem) !important;
            line-height: 1.6 !important;
            color: #475569 !important;
            margin: 0 0 40px 0 !important;
        }
        
        .hero-modern .hero-ctas {
            display: flex !important;
            gap: 16px !important;
            margin-bottom: 48px !important;
        }
        
        .hero-modern .cta-primary {
            display: inline-flex !important;
            align-items: center !important;
            gap: 10px !important;
            padding: 16px 32px !important;
            border-radius: 12px !important;
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
            color: white !important;
            text-decoration: none !important;
            font-weight: 600 !important;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25) !important;
            transition: all 0.3s ease !important;
        }
        
        .hero-modern .cta-primary:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35) !important;
        }
        
        .hero-modern .cta-secondary {
            display: inline-flex !important;
            align-items: center !important;
            gap: 10px !important;
            padding: 16px 32px !important;
            border-radius: 12px !important;
            background: white !important;
            color: #1e40af !important;
            border: 2px solid #e2e8f0 !important;
            text-decoration: none !important;
            font-weight: 600 !important;
            transition: all 0.3s ease !important;
        }
        
        .hero-modern .hero-stats-modern {
            display: grid !important;
            grid-template-columns: repeat(3, auto) !important;
            gap: 48px !important;
            padding-top: 32px !important;
            border-top: 1px solid #e2e8f0 !important;
            
        }
        
        .hero-modern .stat-number-modern {
            font-size: 2.25rem !important;
            font-weight: 800 !important;
            color: #2563eb !important;
            font-variant-numeric: tabular-nums !important;
            min-width: 120px !important;
                        text-align: center !important;

        }
        
        .hero-modern .stat-label-modern {
            font-size: 0.875rem !important;
            font-weight: 600 !important;
            color: #64748b !important;
            text-transform: uppercase !important;
            text-align: center !important;

        }
        
        /* ===== RIGHT COLUMN - VISUAL DEMO ===== */
        .hero-modern .hero-visual {
            padding: 80px 0 !important;
        }
        
        .hero-modern .demo-container {
            position: relative !important;
            width: 100% !important;
            height: 600px !important;
        }
        
        .hero-modern .map-visual {
            position: absolute !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 600px !important;
            background: white !important;
            border-radius: 24px !important;
            overflow: hidden !important;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08) !important;
            border: 1px solid #e5e7eb !important;
        }
        
        .hero-modern .map-bg {
            position: absolute !important;
            inset: 0 !important;
            background: linear-gradient(to bottom, #fafbfc 0%, #f8f9fa 100%) !important;
        }
        
        /* City Indicator */
        .hero-modern .city-indicator {
            position: absolute !important;
            top: 20px !important;
            left: 20px !important;
            background: white !important;
            padding: 12px 40px 12px 30px !important;
            border-radius: 12px !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
            display: flex !important;
            align-items: center !important;
            gap: 5px !important;
            z-index: 10 !important;
            animation: fadeInDown 0.6s ease !important;
        }
        
        .hero-modern .city-pin {
            margin-top:5px;
            animation: fadeInDown 2s  !important;
        }
        
        .hero-modern .city-name {
            font-weight: 600 !important;
            color: #1e293b !important;
            font-size: 0.95rem !important;
        }
        
        /* Hotel Markers */
        .hero-modern .hotel-marker {
            position: absolute !important;
            cursor: pointer !important;
            z-index: 5 !important;
            transition: all 0.3s ease !important;
        }
        
        .hero-modern .hotel-marker:hover {
            z-index: 15 !important;
            transform: scale(1.1) !important;
        }
        
        .hero-modern .marker-pin {
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) !important;
            animation: markerBounce 2s ease-in-out infinite !important;
        }
        
        .hero-modern .marker-popup {
            position: absolute !important;
            bottom: 40px !important;
            left: 50% !important;
            transform: translateX(-50%) translateY(10px) !important;
            background: white !important;
            padding: 10px 14px !important;
            border-radius: 10px !important;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
            opacity: 0 !important;
            pointer-events: none !important;
            transition: all 0.3s ease !important;
            white-space: nowrap !important;
            border: 2px solid #3b82f6 !important;
        }
        
        .hero-modern .hotel-marker:hover .marker-popup {
            opacity: 1 !important;
            transform: translateX(-50%) translateY(0) !important;
        }
        
        .hero-modern .popup-rating {
            color: #fbbf24 !important;
            font-size: 0.8rem !important;
            margin-bottom: 4px !important;
        }
        
        .hero-modern .popup-name {
            font-weight: 700 !important;
            color: #1e293b !important;
            font-size: 0.85rem !important;
            margin-bottom: 4px !important;
        }
        
        .hero-modern .popup-price {
            color: #2563eb !important;
            font-weight: 600 !important;
            font-size: 0.8rem !important;
        }
        
        /* Feature Card */
        .hero-modern .feature-card {
            position: absolute !important;
            right: -40px !important;
            top: 20% !important;
            transform: translateY(-50%) !important;
            width: 320px !important;
            background: white !important;
            border-radius: 16px !important;
            overflow: hidden !important;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
            z-index: 20 !important;
            animation: slideInRight 0.8s ease 0.3s both !important;
        }
        
        .hero-modern .card-image {
            position: relative !important;
            height: 50px !important;
            background: #e2e8f0 !important;
        }
        
        .hero-modern .image-placeholder {
            width: 100% !important;
            height: 100% !important;
        }
        
        .hero-modern .card-rating-badge {
            position: absolute !important;
            top: 8px !important;
            right: 12px !important;
            background: white !important;
            padding: 6px 12px !important;
            border-radius: 8px !important;
            display: flex !important;
            align-items: center !important;
            gap: 6px !important;
        }
        
        .hero-modern .card-rating-badge .stars {
            color: #fbbf24 !important;
            font-size: 0.85rem !important;
        }
        
        .hero-modern .card-rating-badge .score {
            font-weight: 700 !important;
            color: #1e293b !important;
            font-size: 0.9rem !important;
        }
        
        .hero-modern .card-content {
            padding: 20px !important;
        }
        
        .hero-modern .card-content h3 {
            font-size: 1.1rem !important;
            font-weight: 700 !important;
            color: #0f172a !important;
            margin: 0 0 12px 0 !important;
            line-height: 1.3 !important;
        }
        
        .hero-modern .card-location {
            display: flex !important;
            align-items: center !important;
            gap: 6px !important;
            color: #64748b !important;
            font-size: 0.875rem !important;
            margin-bottom: 12px !important;
        }
        
        .hero-modern .card-amenities {
            display: flex !important;
            flex-wrap: wrap !important;
            gap: 8px !important;
            margin-bottom: 12px !important;
        }
        
        .hero-modern .amenity-tag {
            display: flex !important;
            align-items: center !important;
            gap: 4px !important;
            background: #eff6ff !important;
            color: #2563eb !important;
            padding: 4px 10px !important;
            border-radius: 6px !important;
            font-size: 0.75rem !important;
            font-weight: 500 !important;
        }
        
        .hero-modern .card-coordinates {
            padding-top: 12px !important;
            border-top: 1px solid #e5e7eb !important;
        }
        
        .hero-modern .card-coordinates code {
            font-family: 'Courier New', monospace !important;
            font-size: 0.8rem !important;
            color: #64748b !important;
            background: #f8fafc !important;
            padding: 6px 10px !important;
            border-radius: 6px !important;
            display: block !important;
        }
        
        /* API Snippet */
        .hero-modern .api-snippet {
            position: absolute !important;
            left: -50px !important;
            bottom: 20px !important;
            width: 380px !important;
            max-height: 360px !important;
            background: #1e293b !important;
            border-radius: 12px !important;
            overflow: hidden !important;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25) !important;
            z-index: 20 !important;
        }
        
        .hero-modern .snippet-header {
            background: #0f172a !important;
            padding: 10px 16px !important;
            display: flex !important;
            align-items: center !important;
            gap: 12px !important;
        }
        
        .hero-modern .snippet-dots {
            display: flex !important;
            gap: 6px !important;
        }
        
        .hero-modern .snippet-dots span {
            width: 10px !important;
            height: 10px !important;
            border-radius: 50% !important;
        }
        
        .hero-modern .snippet-dots span:nth-child(1) { background: #ef4444 !important; }
        .hero-modern .snippet-dots span:nth-child(2) { background: #fbbf24 !important; }
        .hero-modern .snippet-dots span:nth-child(3) { background: #10b981 !important; }
        
        .hero-modern .snippet-label {
            flex: 1 !important;
            color: #94a3b8 !important;
            font-size: 0.8rem !important;
            font-family: 'Courier New', monospace !important;
        }
        
        .hero-modern .snippet-status {
            background: #10b98120 !important;
            color: #10b981 !important;
            padding: 4px 8px !important;
            border-radius: 6px !important;
            font-size: 0.75rem !important;
            font-weight: 600 !important;
        }
        
        .hero-modern .snippet-code {
            padding: 16px !important;
        }
        
        .hero-modern .snippet-code pre {
            margin: 0 !important;
            font-family: 'Courier New', monospace !important;
            font-size: 0.8rem !important;
            line-height: 1.6 !important;
            color: #e2e8f0 !important;
        }
        
        .hero-modern .json-key { color: #7dd3fc !important; }
        .hero-modern .json-string { color: #86efac !important; }
        .hero-modern .json-number { color: #fbbf24 !important; }
        
        /* Animations */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }
        
        @keyframes markerBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        
        @keyframes slideInRight {
            from { opacity: 0; transform: translateY(-50%) translateX(30px); }
            to { opacity: 1; transform: translateY(-50%) translateX(0); }
        }
        
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-modern .hero-container {
                grid-template-columns: 1fr !important;
                gap: 40px !important;
            }
            
            .hero-modern .hero-message {
                padding: 40px 0 !important;
            }
            
            .hero-modern .hero-visual {
                padding: 20px 0 !important;
            }
            
            .hero-modern .demo-container {
                height: 450px !important;
            }
            
            .hero-modern .feature-card {
                right: 20px !important;
                width: 280px !important;
            }
            
            .hero-modern .api-snippet {
                left: 20px !important;
                width: 300px !important;
            }
        }
        
        @media (max-width: 768px) {
            .hero-modern {
                padding: 120px 16px 40px !important;
                min-height: auto !important;
            }
            
            .hero-modern .hero-container {
                gap: 30px !important;
            }
            
            .hero-modern .hero-message {
                padding: 20px 0 !important;
            }
            
            .hero-modern .hero-headline {
                font-size: 2rem !important;
                margin-bottom: 16px !important;
            }
            
            .hero-modern .hero-subheadline {
                font-size: 1rem !important;
                margin-bottom: 24px !important;
            }
            
            .hero-modern .hero-ctas {
                flex-direction: column !important;
                gap: 12px !important;
                margin-bottom: 32px !important;
            }
            
            .hero-modern .cta-primary,
            .hero-modern .cta-secondary {
                width: 100% !important;
                justify-content: center !important;
                padding: 14px 24px !important;
            }
            
            .hero-modern .hero-stats-modern {
                gap: 20px !important;
            }
            
            .hero-modern .stat-modern {
                flex: 1 !important;
            }
            
            .hero-modern .stat-number-modern {
                font-size: 1.75rem !important;
                min-width: auto !important;
            }
            
            .hero-modern .stat-label-modern {
                font-size: 0.75rem !important;
            }
            
            .hero-modern .hero-visual {
                padding: 0 !important;
            }
            
            .hero-modern .demo-container {
                height: 350px !important;
            }
            
            .hero-modern .map-visual {
                height: 350px !important;
                border-radius: 16px !important;
            }
            
            .hero-modern .city-indicator {
                top: 12px !important;
                left: 12px !important;
                padding: 8px 20px 8px 16px !important;
                font-size: 0.875rem !important;
            }
            
            .hero-modern .hotel-marker {
                transform: scale(0.85) !important;
            }
            
            .hero-modern .feature-card,
            .hero-modern .api-snippet {
                display: none !important;
            }
        }
        
        @media (max-width: 480px) {
            .hero-modern {
                padding: 110px 12px 30px !important;
            }
            
            .hero-modern .hero-headline {
                font-size: 1.75rem !important;
            }
            
            .hero-modern .hero-subheadline {
                font-size: 0.95rem !important;
            }
            
            .hero-modern .demo-container {
                height: 280px !important;
            }
            
            .hero-modern .map-visual {
                height: 280px !important;
            }
            
            .hero-modern .hero-stats-modern {
                flex-direction: column !important;
                gap: 16px !important;
            }
        }



.contact {
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    padding: 6rem 0;
}

        .capabilities {
    padding: 90px 0;
    background: #fff;
}

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

.section-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.section-header p {
    color: #666;
    font-size: 1.05rem;
}

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

.capability-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.capability-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.capability-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.capability-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.capability-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 14px;
}

.capability-card ul {
    padding-left: 18px;
    font-size: 0.9rem;
    color: #444;
}

.capability-card ul li {
    margin-bottom: 6px;
}