* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: var(--gradient-background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== CSS VARIABLES ===== */
:root {
    --color-navy: #641797;
    --color-blue: #e03bf6;
    --color-light-blue: #e0f2fe;
    --color-gold: #f59e0b;
    --color-dark: #1f2937;
    --color-gray: #6b7280;
    --color-light-gray: #f8fafc;
    --color-white: #ffffff;
    
    --color-navy-rgb: 30, 58, 138;
    --color-blue-rgb: 59, 130, 246;
    --color-gold-rgb: 245, 158, 11;
    --color-dark-rgb: 31, 41, 55;
    
    --shadow-soft: 0 4px 20px rgba(31, 41, 55, 0.1);
    --shadow-medium: 0 8px 30px rgba(31, 41, 55, 0.15);
    --shadow-strong: 0 12px 40px rgba(31, 41, 55, 0.2);
    
    --gradient-primary: linear-gradient(135deg, var(--color-navy), var(--color-blue));
    --gradient-secondary: linear-gradient(135deg, var(--color-gold), #fbbf24);
    --gradient-background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --gradient-hero: linear-gradient(135deg, #ffffff 0%, var(--color-light-blue) 100%);
    --gradient-services: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --gradient-about: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    --gradient-cta: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 2rem;
    color: var(--color-blue);
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-content {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--color-blue);
}

.nav-link.active {
    color: var(--color-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-blue);
    border-radius: 1px;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
}

.btn-primary {
    position: relative;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-light-gray);
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--color-light-blue);
    border-color: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.nav-overlay {
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: transparent;
        transition: right 0.4s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
    }
    
    .nav-content {
        position: absolute;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 2rem 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: block;
    }
    
    .nav-link:hover {
        background: rgba(176, 196, 177, 0.05);
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .nav-actions {
        margin: 1rem 2rem 0;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.3rem;
    }
    
    .nav-content {
        width: 100%;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        
        url('./assets/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(45px);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

/* Hero Text */
.hero-text {
    color: white;
    animation: fadeInLeft 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(176, 196, 177, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hero-badge i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.text-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-decoration {
    position: absolute;
    top: -10px;
    right: -40px;
    color: var(--color-gold);
    font-size: 2rem;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.description-icon {
    color: var(--color-blue);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.btn-hero {
    position: relative;
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-light-blue) 100%);
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.btn-hero:active {
    transform: translateY(-2px);
}

.btn-hero i {
    font-size: 1.1rem;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0)
    );
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

.btn-hero:hover::before {
    left: 100%;
}

.hero-description {
    max-width: 500px;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-blue);
}

.description-icon {
    color: var(--color-blue);
    font-size: 1.2rem;
    position: absolute;
    left: -15px;
    background: white;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--color-light-gray);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item i {
    color: var(--color-blue);
    font-size: 1rem;
}

/* Hero Visual Styles */
.hero-visual {
    position: relative;
    height: 100%;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 0;
}

.pattern-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-dark);
    opacity: 0.2;
}

.pattern-dot:nth-child(1) {
    top: 10%;
    left: 15%;
    animation: twinkle 4s infinite;
}

.pattern-dot:nth-child(2) {
    top: 20%;
    right: 20%;
    animation: twinkle 5s infinite;
}

.pattern-dot:nth-child(3) {
    bottom: 15%;
    left: 30%;
    animation: twinkle 4.5s infinite;
}

.pattern-dot:nth-child(4) {
    bottom: 25%;
    right: 25%;
    animation: twinkle 3.5s infinite;
}

/* Logistics Illustration */
.logistics-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* World Connection */
.world-connection {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.connection-node {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.connection-node i {
    font-size: 1.25rem;
    color: var(--color-blue);
}

.node-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(var(--color-blue-rgb), 0.3);
    z-index: -1;
    animation: pulse 2s infinite;
}

.connection-line {
    flex: 1;
    height: 4px;
    background-color: rgba(var(--color-dark-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

.line-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--color-blue), var(--color-light-blue));
    animation: lineProgress 3s infinite;
}

.data-packets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.packet {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-blue);
    animation: packetFlow 3s infinite;
}

.packet:nth-child(2) {
    animation-delay: 1s;
}

.packet:nth-child(3) {
    animation-delay: 2s;
}

/* Floating Vehicles */
.vehicle-fleet {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vehicle {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.vehicle i {
    color: var(--color-dark);
    font-size: 1.25rem;
}

.vehicle-trail {
    position: absolute;
    top: 50%;
    left: -10px;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, rgba(var(--color-dark-rgb), 0), rgba(var(--color-dark-rgb), 0.3));
    transform: translateY(-50%);
    z-index: -1;
}

.truck-vehicle {
    top: 30%;
    left: 20%;
    animation: vehicleMove1 10s infinite;
}

.plane-vehicle {
    top: 15%;
    right: 25%;
    animation: vehicleMove2 12s infinite;
}

.ship-vehicle {
    bottom: 25%;
    left: 35%;
    animation: vehicleMove3 14s infinite;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.float-icon i {
    font-size: 0.9rem;
    color: var(--color-blue);
}

.icon-1 {
    top: 15%;
    right: 15%;
    animation: floatIcon 6s infinite;
}

.icon-2 {
    top: 60%;
    right: 25%;
    animation: floatIcon 8s infinite;
}

.icon-3 {
    bottom: 20%;
    right: 10%;
    animation: floatIcon 7s infinite;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    position: relative;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text);
    opacity: 0.8;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item i {
    color: var(--color-blue);
    font-size: 0.9rem;
}

.trust-item span {
    font-size: 0.85rem;
    color: var(--color-text);
    opacity: 0.9;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--color-blue-rgb), 0.05) 0%, rgba(var(--color-peach-rgb), 0.05) 100%);
}

.shape-1 {
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    opacity: 0.6;
    animation: floatBg 15s infinite;
}

.shape-2 {
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    opacity: 0.4;
    animation: floatBg 20s infinite reverse;
}

.shape-3 {
    top: 40%;
    right: 20%;
    width: 300px;
    height: 300px;
    opacity: 0.3;
    animation: floatBg 18s infinite;
}

/* ===== SERVICES SECTION - WITHOUT BOXES ===== */
.services {
    position: relative;
    padding: 100px 0;
    background: var(--gradient-services);
    overflow: hidden;
}

/* Add decorative elements to background */
.services::before,
.services::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
    filter: blur(80px);
}

.services::before {
    width: 400px;
    height: 400px;
    background: var(--color-blue);
    top: -200px;
    right: -200px;
}

.services::after {
    width: 300px;
    height: 300px;
    background: var(--color-gold);
    bottom: -150px;
    left: -150px;
}

/* Section Header - Keep same */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(176, 196, 177, 0.1);
    border: 1px solid var(--color-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 1.5rem;
}

.section-badge i {
    font-size: 1.1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: #6c7a7c;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid - NEW DESIGN WITHOUT BOXES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem 2rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Decorative lines */
/* Service Items - WITHOUT BOXES */
.service-card {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 3px solid transparent;
    padding-left: 1.5rem;
    z-index: 3;
}

.service-card::before {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(176, 196, 177, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    left: 0;
    top: 0;
    z-index: -1;
    transition: width 0.4s ease;
    border-radius: 0 20px 20px 0;
}

.service-card:hover::before {
    width: 100%;
}

/* Card Header - Redesigned */
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    width: 100%;
    position: relative;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(176, 196, 177, 0.2) 0%, rgba(176, 196, 177, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    margin-right: 1rem;
    border: 1px solid rgba(176, 196, 177, 0.2);
    backdrop-filter: blur(5px);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--color-blue);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(10deg);
    background: linear-gradient(135deg, var(--color-blue) 0%, #9fb5a0 100%);
    box-shadow: 0 8px 20px rgba(176, 196, 177, 0.3);
    border-color: transparent;
}

.service-card:hover .service-icon i {
    color: white;
    transform: scale(1.1);
}

.service-badge {
    background: var(--color-gold);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    top: -8px;
    right: 0;
    z-index: 3;
}

/* Card Content - Redesigned */
.card-content {
    width: 100%;
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.service-card:hover .service-title::after {
    width: 100%;
}

.service-description {
    font-size: 1rem;
    color: #6c7a7c;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Service Features - Redesigned */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-dark);
    font-weight: 500;
    transition: transform 0.3s ease;
}

.service-features li:hover {
    transform: translateX(5px);
}

.service-features i {
    color: white;
    font-size: 0.8rem;
    width: 22px;
    height: 22px;
    background: var(--color-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-features li:hover i {
    transform: scale(1.2);
    background: var(--color-gold);
}

/* Card Footer - Simplified */
.card-footer {
    margin-top: auto;
    width: 100%;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: none;
    padding: 0;
    font-weight: 600;
    color: var(--color-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
}

.service-btn:hover {
    color: var(--color-gold);
}

.service-btn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

.service-btn:hover i {
    transform: translateX(8px);
}

.service-btn span {
    position: relative;
}

.service-btn span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.service-btn:hover span::after {
    width: 100%;
}

/* Remove box decorations */
.card-decoration {
    display: none;
}

.decoration-circle {
    display: none;
}

/* ===== CTA SECTION REDESIGNED ===== */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: var(--gradient-background);
    overflow: hidden;
}

.services-cta {
    position: relative;
    background: var(--gradient-cta);
    border-radius: 20px;
    padding: 3rem;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(var(--color-blue-rgb), 0.1);
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
}

.cta-content {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.1rem;
    color: #6c7a7c;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-cta,
.btn-secondary-cta {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--color-blue-rgb), 0.3);
}

.btn-primary-cta:hover::before {
    left: 100%;
}

.btn-secondary-cta {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-blue);
}

.btn-secondary-cta:hover {
    background: rgba(var(--color-blue-rgb), 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--color-blue-rgb), 0.2);
}

.cta-decoration {
    flex: 0 0 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.decoration-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
    animation: floatElement 6s infinite;
    font-size: 2rem;
    color: var(--color-blue);
}

.decoration-element i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.element-1 {
    top: 0;
    left: 30%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 20%;
    left: 0;
    animation-delay: 2s;
}

.element-3 {
    right: 10%;
    bottom: 30%;
    animation-delay: 1s;
}

@media (max-width: 768px) {
    .services-cta {
        padding: 3rem 2rem;
        margin: 3rem auto;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .decoration-element {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .services-cta {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }
    
    .cta-title {
        font-size: 1.7rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .decoration-element {
        display: none;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .service-card {
        padding-left: 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 70px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .service-card {
        padding-left: 1rem;
        border-left-width: 2px;
        margin-bottom: 1rem;
    }
    
    .card-header {
        margin-bottom: 1rem;
    }
    
    .service-title::after {
        bottom: -5px;
        height: 2px;
    }
    
    .service-card:hover .service-title::after {
        width: 70%;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 2rem 1rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        margin-right: 0.75rem;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
    }
}

/* ===== ABOUT SECTION - CORRECTED AND IMPROVED ===== */
.about {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--gradient-about);
    z-index: 1;
}

.about .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.about .header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about .decoration-line {
    height: 2px;
    width: 60px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.about .decoration-dot {
    width: 10px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 50%;
    margin: 0 10px;
    position: relative;
}

.about .decoration-dot::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.5;
}

.about .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
}

.about .title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Content */
.about-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.content-section {
    position: relative;
}

.content-section.reverse .section-layout {
    flex-direction: row-reverse;
}

.section-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 400px;
}

/* Content Visual */
.content-visual {
    flex: 0 0 300px;
    height: 300px;
    position: relative;
}

.visual-element {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.visual-element:hover {
    transform: translateY(-10px);
}

.floating-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(176, 196, 177, 0.3);
}

.floating-icon::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 3s infinite 1s;
}

/* Visual Lines */
.visual-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line {
    position: absolute;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.6;
}

.line-1 {
    width: 80px;
    height: 3px;
    top: 30%;
    left: 20%;
    animation: lineMove1 6s ease-in-out infinite;
}

.line-2 {
    width: 60px;
    height: 3px;
    top: 60%;
    right: 25%;
    animation: lineMove2 8s ease-in-out infinite 2s;
}

.line-3 {
    width: 40px;
    height: 3px;
    bottom: 25%;
    left: 30%;
    animation: lineMove3 7s ease-in-out infinite 4s;
}

/* Mission Visual - Orbits */
.mission-visual .orbit-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.orbit {
    position: absolute;
    border: 2px solid var(--color-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-2 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 40s;
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

/* Content Text */
.content-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    padding-left: 20px;
}

.content-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.content-title .text-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-description {
    font-size: 1.2rem;
    color: #6c7a7c;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
    padding-left: 20px;
    border-left: 1px solid rgba(176, 196, 177, 0.3);
}

/* Content Features */
.content-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-left: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.feature-item:hover {
    transform: translateX(10px);
    border-left: 3px solid var(--color-gold);
    padding-left: 10px;
}

.feature-item i {
    color: var(--color-blue);
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2);
    color: var(--color-gold);
}

.feature-item span {
    font-weight: 600;
    color: var(--color-dark);
}

/* Mission Stats */
.mission-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-left: 20px;
}

.mini-stat {
    text-align: center;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--color-blue);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    min-width: 100px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mini-stat:hover {
    transform: translateY(-5px);
    border-left-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(74, 87, 89, 0.1);
}

.mini-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.mini-stat:hover .mini-number {
    color: var(--color-gold);
}

.mini-label {
    font-size: 0.9rem;
    color: #6c7a7c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Background Elements */
.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.about-bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.05;
}

.about-bg-element.element-1 {
    width: 400px;
    height: 400px;
    background: var(--color-gold);
    top: 10%;
    left: -200px;
    animation: floatBg 15s ease-in-out infinite;
}

.about-bg-element.element-2 {
    width: 300px;
    height: 300px;
    background: var(--color-blue);
    bottom: 20%;
    right: -150px;
    animation: floatBg 20s ease-in-out infinite reverse;
}

.about-bg-element.element-3 {
    width: 250px;
    height: 250px;
    background: var(--color-light-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatBg 12s ease-in-out infinite;
}

/* Content Section Hover Effects */
.content-section:hover .floating-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(176, 196, 177, 0.4);
}

.content-section:hover .visual-element {
    transform: translateY(-15px);
}

.content-text:hover .content-title {
    transform: translateX(5px);
}


/* Custom Popup Styles */
.custom-popup {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 200px;
}

.custom-popup h3 {
    margin: 0 0 0.5rem 0;
    color: var(--color-dark);
    font-size: 1rem;
    font-weight: 600;
}

.custom-popup p {
    margin: 0.2rem 0;
    color: #6c7a7c;
    font-size: 0.85rem;
    line-height: 1.3;
}

.custom-popup .popup-type {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--color-blue);
    color: white;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* ===== MODALES DE SERVICIOS ===== */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #ffffff;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.service-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    background: #e9ecef;
    transform: rotate(90deg);
}

.modal-header {
    padding: 40px 40px 20px 40px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: white;
    font-size: 2rem;
}

.modal-header h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin: 0;
    font-weight: 700;
}

.modal-body {
    padding: 30px 40px 40px 40px;
}

.modal-description {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-section {
    margin-bottom: 30px;
}

.modal-section h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-section h3 i {
    color: #667eea;
}

.modal-features,
.modal-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-features li,
.modal-benefits li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
}

.modal-features li i {
    color: #10b981;
    font-size: 0.9rem;
}

.modal-benefits li i {
    color: #f59e0b;
    font-size: 0.9rem;
}

.modal-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.modal-cta .btn-primary {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Responsive para modales */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 30px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ===== VALIDACIÓN DE FORMULARIOS ===== */
.form-group {
    position: relative;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.error-message::before {
    content: "⚠";
    font-size: 0.8rem;
}

.form-group input:focus.error,
.form-group textarea:focus.error,
.form-group select:focus.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* ===== CONTACT MODAL ===== */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(0px);
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(5px);
}

.contact-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.contact-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #ffffff;
    border-radius: 25px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.contact-modal.active .contact-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.contact-modal .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f8f9fa;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    color: #333333;
    font-size: 1.2rem;
}

.contact-modal .modal-close:hover {
    background: #e9ecef;
    transform: rotate(90deg);
}

.contact-modal-header {
    padding: 50px 40px 30px 40px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.contact-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.contact-modal-header h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.contact-modal-header p {
    font-size: 1.1rem;
    color: #666666;
    margin: 0;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.contact-modal-form {
    padding: 40px;
}

.contact-modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-modal-form .form-group {
    margin-bottom: 25px;
}

.contact-modal-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333333;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-modal-form input,
.contact-modal-form select,
.contact-modal-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #333333;
    box-sizing: border-box;
}

.contact-modal-form input::placeholder,
.contact-modal-form textarea::placeholder {
    color: #999999;
}

.contact-modal-form input:focus,
.contact-modal-form select:focus,
.contact-modal-form textarea:focus {
    outline: none;
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 0 0 0.3rem rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.contact-modal-form select {
    cursor: pointer;
}

.contact-modal-form select option {
    background: #ffffff;
    color: #333333;
}

.contact-modal-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-submit-btn:hover::before {
    left: 100%;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-submit-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Contact Modal */
@media (max-width: 768px) {
    .contact-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 20px;
    }
    
    .contact-modal-header {
        padding: 40px 25px 25px 25px;
    }
    
    .contact-modal-header h2 {
        font-size: 2rem;
    }
    
    .contact-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-modal-form {
        padding: 30px 25px;
    }
    
    .contact-modal-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-submit-btn {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-modal-content {
        width: 98%;
        margin: 10px;
    }
    
    .contact-modal-header {
        padding: 30px 20px 20px 20px;
    }
    
    .contact-modal-form {
        padding: 25px 20px;
    }
}



/* ===== MODERN FOOTER ===== */
.footer {
    background: var(--gradient-hero);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-light-blue), var(--color-blue));
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Main Footer Layout */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Branding */
.footer-branding {
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo-image {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-branding h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    letter-spacing: 1px;
}

.footer-branding p {
    color: rgba(var(--color-dark-rgb), 0.7);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    letter-spacing: 1px;
}

/* Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
}

.footer-links a {
    color: var(--color-dark);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.15rem 0;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    pointer-events: auto;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.footer-links a:hover {
    color: var(--color-blue);
    transform: translateX(5px);
}

.footer-dot {
    display: none;
}

/* Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-dark);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--color-blue);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    pointer-events: auto;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.contact-item a:hover {
    color: var(--color-blue);
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(var(--color-dark-rgb), 0.1);
}

.footer-copyright {
    color: rgba(var(--color-dark-rgb), 0.6);
    font-size: 0.85rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-branding {
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-dot {
        display: none;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes lineProgress {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

@keyframes packetFlow {
    0% { left: -8px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

@keyframes vehicleMove1 {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(30px) translateY(-10px); }
}

@keyframes vehicleMove2 {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-25px) translateY(15px); }
}

@keyframes vehicleMove3 {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(20px) translateY(-8px); }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 75%; }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes floatBg {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-40px); }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== RESPONSIVE STYLES FOR ABOUT SECTION ===== */
@media (max-width: 768px) {
    /* About Section Mobile */
    .about {
        padding: 80px 0;
    }
    
    .about .section-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    /* About Content Mobile */
    .about-content {
        gap: 4rem;
    }
    
    .section-layout {
        flex-direction: column !important;
        gap: 2rem;
        min-height: auto;
        text-align: center;
    }
    
    .content-section.reverse .section-layout {
        flex-direction: column !important;
    }
    
    /* Content Visual Mobile */
    .content-visual {
        flex: none;
        width: 100%;
        height: 200px;
        margin: 0 auto;
    }
    
    .floating-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    /* Content Text Mobile */
    .content-text {
        flex: none;
        width: 100%;
    }
    
    .content-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .content-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    /* Features Mobile */
    .content-features {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .feature-item {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    /* Mission Stats Mobile */
    .mission-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .mini-stat {
        text-align: center;
    }
    
    .mini-number {
        font-size: 1.5rem;
    }
    
    .mini-label {
        font-size: 0.8rem;
    }
    
    /* Background Elements Mobile */
    .about-bg-element.element-1 {
        width: 200px;
        height: 200px;
        left: -100px;
    }
    
    .about-bg-element.element-2 {
        width: 150px;
        height: 150px;
        right: -75px;
    }
    
    .about-bg-element.element-3 {
        width: 125px;
        height: 125px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .about {
        padding: 60px 0;
    }
    
    .about .section-title {
        font-size: 2rem;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .floating-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .content-visual {
        height: 150px;
    }
}
