:root {
    --primary: #69ADF0;
    --primary-dark: #1e2f6d;
    --primary-light: #3b5cb8;
    --secondary: #f59e0b;
    --secondary-light: #fbbf24;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-secondary: #8CC2FF;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0;
    max-width: 100%;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.loader {
    width: 48px;
    height: 48px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(30, 58, 138, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}
.header.scrolled .header-top { display: none; }

.header-top {
    background: var(--dark);
    padding: 0.5rem 0;
    font-size: 0.813rem;
}
.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-info {
    display: flex;
    gap: 1.5rem;
}
.contact-info a, .header-top-right span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-300);
}
.contact-info a:hover { color: var(--white); }
.header-top-right {
    display: flex;
    gap: 1.5rem;
}
.header-top-right span { color: var(--gray-400); }

.navbar {
    padding: 1rem 0;
    background: transparent;
    transition: var(--transition);
}
.header.scrolled .navbar { padding: 0.75rem 0; }
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.logo-img {
    width: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.logo-text { display: flex; flex-direction: column; }
.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #234E94;
    line-height: 1.2;
}
.logo-subtitle {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
}
.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.938rem;
    font-weight: 500;
    color: #000;
    border-radius: var(--radius);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: #00CCFF;
    background: rgba(30, 58, 138, 0.08);
}

.nav-cta { margin-left: 1rem; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Desktop navigation - hide hamburger by default */
@media (min-width: 993px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Hide mobile CTA in desktop */
    .nav-menu .mobile-cta {
        display: none !important;
    }

}

/* Hero */



.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(30, 58, 138, 0.3) 50%, rgba(245, 158, 11, 0.3) 100%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}
.hero-badge svg { color: var(--secondary); }

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
	
}
.highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.hero-cta .btn-outline-white {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}
.hero-cta .btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.hero-zones { margin-top: 1rem; }
.zones-label {
    font-size: 0.813rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    margin-bottom: 0.75rem;
    display: block;
}
.zones-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.zones-tags span {
    padding: 0.375rem 0.75rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 0.813rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
}
.zones-tags span:hover {
    background: var(--secondary);
    color: var(--dark);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-card {
    width: 320px;
    height: 420px;
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-2xl);
    position: relative;
}
.hero-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
}
.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
.hero-card-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0.95;
}
.hero-card-content {
    padding: 1.5rem;
    background: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.hero-card-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}
.hero-card-text {
    font-size: 0.938rem;
    color: var(--gray-600);
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: float 3s ease-in-out infinite;
}
.floating-badge svg { color: var(--primary); }
.floating-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
}
.badge-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}
.badge-2 {
    bottom: 20%;
    right: -10%;
    animation-delay: 1.5s;
}
.badge-2 svg { color: var(--secondary); }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.813rem;
}
.scroll-indicator svg {
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Section Styles */
.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Benefits */
.benefits {
    padding: 6rem 0;
    background: var(--white);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.benefit-card {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}
.benefit-icon.yellow {
    background: rgba(245, 158, 11, 0.1);
    color: var(--secondary);
}
.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.benefit-card p {
    color: var(--gray-600);
    font-size: 0.938rem;
}

/* About */
.about {
    padding: 6rem 0;
    background: var(--gray-50);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-image-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}
.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}
.experience-badge {
    position: absolute;
    bottom: 10%;
    left: -10%;
    background: var(--secondary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
}
.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.exp-text {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.9;
}
.mexico-badge {
    position: absolute;
    top: 10%;
    right: -5%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
}
.mexico-badge svg { color: var(--primary); }

.about-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--dark);
}
.about-feature svg { color: var(--primary); flex-shrink: 0; }

/* Services */
.services {
    padding: 3rem 0;
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
.service-card {
    padding: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.service-card:hover .service-image img {
    transform: scale(1.1);
}
.service-card-content {
    padding: 1.5rem;
}
.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
    transition: var(--transition);
    position: absolute;
    top: 10px;
    left: 1.5rem;
}
.service-card {
    position: relative;
    padding-top: 2.5rem;
}
.service-icon.yellow {
    background: rgba(245, 158, 11, 0.1);
    color: var(--secondary);
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}
.service-card:hover .service-icon.yellow {
    background: var(--secondary);
}
.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    padding: 0 1.5rem;
}
.service-card p {
    color: var(--gray-600);
    font-size: 0.938rem;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0 1.5rem 1.5rem;
}
.service-link:hover { gap: 0.75rem; }

.special-service {
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.special-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}
.special-content {
    flex: 1;
}
.special-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.special-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.938rem;
}

/* Stats */
.stats {
    padding: 5rem 0;
    background: var(--dark);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item {
    padding: 2rem;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}
.stat-label {
    display: block;
    margin-top: 0.75rem;
    color: var(--gray-400);
    font-size: 0.938rem;
    font-weight: 500;
}

/* Values */
.values {
    padding: 6rem 0;
    background: var(--gray-50);
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.values-content p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}
.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.value-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
}
.value-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.value-tag svg { color: var(--primary); }

.values-card {
    background: var(--white);
    padding: 0;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
    overflow: hidden;
}
.values-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.values-card-icon {
    width: 100px;
    height: 100px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 1.5rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}
.values-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    padding: 0 2rem;
}
.values-card p {
    color: var(--gray-600);
    padding: 0 2rem 2rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 58, 138, 0.85) 100%);
}
.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}
.cta-content p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact */
.contact {
    padding: 6rem 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-details p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-icon.yellow {
    background: rgba(245, 158, 11, 0.1);
    color: var(--secondary);
}
.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}
.contact-text p, .contact-text a {
    font-size: 0.938rem;
    color: var(--gray-600);
}
.contact-text a:hover { color: var(--primary); }

.contact-form-wrapper {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
}
.form-group input, .form-group select, .form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.938rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}
.form-group textarea { resize: vertical; }

/* Footer */
.footer {
    background: var(--dark);
}
.footer-top {
    padding: 4rem 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand {
    max-width: 320px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.footer-logo .logo-icon {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}
.footer-logo .logo-title {
    color: var(--white);
}
.footer-logo .logo-subtitle {
    color: var(--gray-400);
}
.footer-brand p {
    color: var(--gray-400);
    font-size: 0.938rem;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-links a {
    color: var(--gray-400);
    font-size: 0.938rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-400);
    font-size: 0.938rem;
}
.footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.footer-contact a {
    color: var(--gray-400);
}
.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}
.footer-bottom a {
    color: var(--gray-400);
    font-size: 0.875rem;
}
.footer-bottom a:hover {
    color: var(--white);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-4px);
    background: var(--primary-dark);
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    /* Show hamburger on tablet and mobile */
    .hamburger {
        display: flex !important;
    }
    
    /* Hide desktop nav menu - replace with mobile menu styles */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        background: rgba(255, 255, 255, 1) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 1rem !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.3s ease, visibility 0.3s ease !important;
        z-index: 9999 !important;
        padding: 100px 2rem 2rem !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
    
    .nav-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-link {
        font-size: 1.5rem !important;
        padding: 1rem 2rem !important;
        color: var(--primary) !important;
        text-align: center;
    }
    
    .nav-cta { 
        display: none; 
    }
    
    /* Mobile CTA in menu */
    .nav-menu .mobile-cta {
        display: flex !important;
        margin-top: 1rem;
        padding: 1rem 2rem;
    }
    
    /* Rest of tablet styles */
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text { order: 1; }
    .hero-visual { order: 0; margin-bottom: 2rem; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-zones { text-align: center; }
    .zones-tags { justify-content: center; }
    .floating-badge { display: none; }

    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { order: 0; margin-bottom: 2rem; }
    .about-content { order: 1; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .values-visual { order: 0; margin-bottom: 2rem; }
    .values-content { order: 1; }
    .contact-grid { 
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    /* Header and Navigation */
    .header-top { display: none; }
    	.hero {
  margin-top:10px;
}

.logo-img {
    width: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

    .navbar {
        padding: 0.75rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .navbar .container {
        position: relative;
    }
    
    /* Hamburger - always visible on mobile */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1002;
        padding: 10px;
    }
    
    .hamburger span {
        width: 24px;
        height: 2px;
        background: var(--dark);
        border-radius: 2px;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .hamburger span:nth-child(1) { margin-bottom: 5px; }
    .hamburger span:nth-child(2) { margin-bottom: 5px; }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Mobile Navigation Menu */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        background: rgba(255, 255, 255, 1) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 1rem !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.3s ease, visibility 0.3s ease !important;
        z-index: 9999 !important;
        padding: 100px 2rem 2rem !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
    
    .nav-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-link {
        font-size: 1.5rem !important;
        padding: 1rem 2rem !important;
        color: var(--primary) !important;
        text-align: center;
    }
    
    .nav-cta { 
        display: none; 
    }
    
    /* Mobile CTA in menu */
    .nav-menu .mobile-cta {
        display: flex !important;
        margin-top: 1rem;
        padding: 1rem 2rem;
    }

    /* Hero */
    .hero { 
        padding: 6rem 0 3rem; 
        min-height: auto; 
    }
    .hero-title { 
        font-size: 1.75rem; 
        line-height: 1.3;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-card { 
        width: 260px; 
        height: 340px; 
    }
    .hero-card-image {
        height: 220px;
    }
    .hero-cta { 
        flex-direction: column; 
    }
    .hero-cta .btn { 
        width: 100%; 
    }
    .zones-tags span {
        font-size: 0.75rem;
    }

    /* Benefits */
    .benefits {
        padding: 3rem 0;
    }
    .benefits-grid { 
        grid-template-columns: 1fr; 
        gap: 1.5rem;
    }
    .benefit-card {
        padding: 1.5rem;
    }
    .benefit-icon {
        width: 56px;
        height: 56px;
    }
    .benefit-icon svg {
        width: 28px;
        height: 28px;
    }

    /* About */
    .about {
        padding: 3rem 0;
    }
    .about-image-container {
        max-width: 280px;
    }
    .experience-badge {
        padding: 1rem;
        left: -5%;
    }
    .exp-number {
        font-size: 2rem;
    }
    .mexico-badge {
        right: -5%;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    .about-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .about-content .btn {
        width: 100%;
        justify-content: center;
    }

    /* Services */
    .services {
        padding: 3rem 0;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .services-grid { 
        grid-template-columns: 1fr; 
    }
    .service-card {
        margin-bottom: 1rem;
    }
    .service-image {
        height: 160px;
    }
    .service-icon {
        width: 56px;
        height: 56px;
        top: -28px;
        left: 1rem;
    }
    .service-icon svg {
        width: 28px;
        height: 28px;
    }
    .service-card h3,
    .service-card p,
    .service-link {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .service-link {
        padding-bottom: 1rem;
    }
    .special-service { 
        flex-direction: column; 
        text-align: center; 
        padding: 2rem;
        gap: 1.5rem;
    }
    .special-icon {
        width: 64px;
        height: 64px;
    }
    .special-icon svg {
        width: 32px;
        height: 32px;
    }

    /* Stats */
    .stats {
        padding: 3rem 0;
    }
    .stats-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 1rem;
    }
    .stat-item {
        padding: 1.5rem 1rem;
    }
    .stat-number { 
        font-size: 2rem; 
    }
    .stat-suffix {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.813rem;
    }

    /* Values */
    .values {
        padding: 3rem 0;
    }
    .values-list {
        gap: 0.5rem;
    }
    .value-tag {
        font-size: 0.813rem;
        padding: 0.5rem 0.75rem;
    }

    /* CTA */
    .cta-section {
        padding: 3rem 0;
    }

    /* Contact */
    .contact {
        padding: 3rem 0;
    }
    .contact .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
        width: 100%;
    }
    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }
    .contact-details {
        width: 100%;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .contact-form {
        width: 100%;
    }
    .form-group {
        width: 100%;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .contact-cards {
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .contact-card {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .contact-text {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Footer */
    .footer-top {
        padding: 2.5rem 0;
    }
    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 2rem;
    }
    .footer-brand { 
        max-width: 100%; 
    }
    .footer-logo { 
        justify-content: center; 
    }
    .footer-bottom .container { 
        flex-direction: column; 
        gap: 1rem; 
        text-align: center;
    }

    /* Floating buttons */
    .whatsapp-float { 
        bottom: 1.5rem; 
        right: 1.5rem; 
        width: 54px; 
        height: 54px; 
    }
    .back-to-top { 
        right: 4.5rem; 
        width: 42px; 
        height: 42px; 
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .container { 
        padding: 0 1rem; 
    }
    .section-title { 
        font-size: 1.5rem; 
    }
    .section-desc {
        font-size: 1rem;
    }
    .benefit-card, 
    .service-card { 
        padding: 1.25rem; 
    }
    .contact-form-wrapper { 
        padding: 1.25rem; 
    }
    .stats-grid { 
        grid-template-columns: 1fr; 
    }
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    .logo-title {
        font-size: 1rem;
    }
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    .logo-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .btn:hover {
        transform: none;
    }
    .benefit-card:hover,
    .service-card:hover,
    .contact-card:hover {
        transform: none;
    }
    .service-image img:hover {
        transform: none;
    }
    .floating-badge {
        animation: none;
    }
}
