/* Reset and Base Styles */
@font-face {
    font-family: 'Bitink';
    src: url('fonts/Bitink.otf') format('opentype'),
         url('fonts/Bitink.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

:root {
    /* Colores primarios basados en las imágenes */
    --primary-dark: #13192C;        /* Del análisis de plataformas.png */
    --primary-blue: #123056;        /* Azul oscuro dominante */
    --accent-blue: #19649A;         /* Azul medio de plataformas */
    --light-blue: #36B2D5;         /* Azul claro de plataformas */
    --secondary-blue: #3B718D;      /* Azul de industria.png */
    
    /* Colores de apoyo */
    --steel-blue: #5399AC;          /* Azul acero de industria */
    --warm-accent: #D79853;         /* Acento cálido de industria */
    --tech-purple: #3E489C;         /* Púrpura tech de expertos */
    --cyan-accent: #3FB7C5;         /* Cian de expertos */
    
    /* Grises y neutros */
    --light-gray: #B8BDBD;          /* Gris claro de industria */
    --soft-gray: #B6DDDC;           /* Gris suave de plataformas */
    --white: #ffffff;
    
    /* Textos */
    --text-dark: #1D152C;           /* Texto oscuro de expertos */
    --text-medium: #323D5A;         /* Texto medio de plataformas */
    --text-light: #6c7b7f;
}

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

/* Base responsive utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

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

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: var(--white);
    border-color: var(--accent-blue);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.btn-secondary:hover {
    background-color: var(--accent-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background-color: var(--primary-dark);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Complete logo styles */
.logo-complete {
    height: 65px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0;
    animation: logoAppear 2s ease-out forwards;
    animation-delay: 5s;
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: scale(0.8);
        filter: brightness(0) invert(1) blur(3px);
    }
    30% {
        opacity: 0.3;
        transform: scale(0.9);
        filter: brightness(0) invert(1) blur(2px);
    }
    60% {
        opacity: 0.7;
        transform: scale(1.05);
        filter: brightness(0) invert(1) blur(1px) drop-shadow(0 0 10px rgba(135, 165, 193, 0.6));
    }
    80% {
        opacity: 0.9;
        transform: scale(1.1);
        filter: brightness(0) invert(1) blur(0px) drop-shadow(0 0 15px rgba(135, 165, 193, 0.8));
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(135, 165, 193, 0.6));
    }
}

/* Speed lines effect */
.speed-lines {
    position: absolute;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    z-index: 7;
    pointer-events: none;
}

.speed-line {
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--light-blue), transparent);
    opacity: 0;
    border-radius: 1px;
}

.speed-line:nth-child(1) {
    top: -10px;
    animation: speedLine1 2s ease-out forwards;
    animation-delay: 2.5s;
}

.speed-line:nth-child(2) {
    top: 0px;
    animation: speedLine2 2s ease-out forwards;
    animation-delay: 2.7s;
}

.speed-line:nth-child(3) {
    top: 10px;
    animation: speedLine3 2s ease-out forwards;
    animation-delay: 2.9s;
}

@keyframes speedLine1 {
    0% { opacity: 0; left: 0; transform: scaleX(0.3); }
    20% { opacity: 1; left: 50px; transform: scaleX(1); }
    40% { opacity: 0.8; left: 120px; transform: scaleX(0.8); }
    60% { opacity: 0.4; left: 180px; transform: scaleX(0.6); }
    100% { opacity: 0; left: 250px; transform: scaleX(0.2); }
}

@keyframes speedLine2 {
    0% { opacity: 0; left: 0; transform: scaleX(0.3); }
    20% { opacity: 1; left: 60px; transform: scaleX(1); }
    40% { opacity: 0.8; left: 130px; transform: scaleX(0.8); }
    60% { opacity: 0.4; left: 190px; transform: scaleX(0.6); }
    100% { opacity: 0; left: 260px; transform: scaleX(0.2); }
}

@keyframes speedLine3 {
    0% { opacity: 0; left: 0; transform: scaleX(0.3); }
    20% { opacity: 1; left: 40px; transform: scaleX(1); }
    40% { opacity: 0.8; left: 110px; transform: scaleX(0.8); }
    60% { opacity: 0.4; left: 170px; transform: scaleX(0.6); }
    100% { opacity: 0; left: 240px; transform: scaleX(0.2); }
}

/* Flash effect for transition */
.flash-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(135, 165, 193, 0.4) 30%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    animation: flashTransition 0.5s ease-out forwards;
    animation-delay: 4.8s;
    z-index: 9;
    pointer-events: none;
}

@keyframes flashTransition {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Logo pulse effect */
.logo-pulse-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(135, 165, 193, 0.3) 0%, rgba(135, 165, 193, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    animation: logoPulse 2s ease-out forwards;
    animation-delay: 4.8s;
    z-index: 8;
    pointer-events: none;
}

@keyframes logoPulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    20% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    40% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 1;
    }
    70% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.logo-text {
    font-family: 'Bitink', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--light-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 20px;
        min-height: 80vh;
    }
}

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

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 4rem;
    line-height: 1.1;
}

.highlight {
    color: var(--light-blue);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
    border-radius: 2px;
}

.hero-subtitle {
    color: var(--light-gray);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-blue), var(--light-blue));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.float-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 10%;
    animation-delay: 2s;
}

.float-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background-color: var(--white);
}

.solutions-content {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

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

.solution-item.reverse {
    direction: rtl;
}

.solution-item.reverse * {
    direction: ltr;
}

.solution-text h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.solution-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.solution-text ul {
    list-style: none;
    padding-left: 0;
}

.solution-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.solution-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.solution-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.image-placeholder .responsive-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-gray);
}

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

.about-text h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

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

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

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

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--light-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-blue);
    color: var(--light-gray);
}

/* Typing effect styles */
.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--light-blue);
}

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

/* Remove cursor after typing is complete */
.typing-complete .typing-text::after {
    display: none;
}

/* Bitink font for all INGOOSE text */
.ingoose-text {
    font-family: 'Bitink', Arial, sans-serif;
    font-weight: normal;
    letter-spacing: 1px;
}

/* Flying goose effect */
.flying-goose {
    position: absolute;
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0;
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
    animation: flyToLogo 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 1.5s;
    z-index: 10;
    pointer-events: none;
}

/* Goose trail effect */
.goose-trail {
    position: absolute;
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
    z-index: 9;
    pointer-events: none;
}

.trail-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: rgba(135, 165, 193, 0.8);
    border-radius: 50%;
    opacity: 0;
}

.trail-particle:nth-child(1) {
    animation: trailParticle1 4s ease-out forwards;
    animation-delay: 1.7s;
}

.trail-particle:nth-child(2) {
    animation: trailParticle2 4s ease-out forwards;
    animation-delay: 1.9s;
}

.trail-particle:nth-child(3) {
    animation: trailParticle3 4s ease-out forwards;
    animation-delay: 2.1s;
}

@keyframes trailParticle1 {
    0% { opacity: 0; left: -140px; top: 0; transform: scale(0.5); }
    20% { opacity: 1; left: -80px; top: -5px; transform: scale(1); }
    40% { opacity: 0.8; left: 20px; top: -10px; transform: scale(0.8); }
    60% { opacity: 0.6; left: 80px; top: -8px; transform: scale(0.6); }
    80% { opacity: 0.3; left: 120px; top: -5px; transform: scale(0.4); }
    100% { opacity: 0; left: 150px; top: 0; transform: scale(0.2); }
}

@keyframes trailParticle2 {
    0% { opacity: 0; left: -130px; top: 0; transform: scale(0.5); }
    20% { opacity: 1; left: -70px; top: 5px; transform: scale(1); }
    40% { opacity: 0.8; left: 30px; top: 8px; transform: scale(0.8); }
    60% { opacity: 0.6; left: 90px; top: 10px; transform: scale(0.6); }
    80% { opacity: 0.3; left: 130px; top: 5px; transform: scale(0.4); }
    100% { opacity: 0; left: 160px; top: 0; transform: scale(0.2); }
}

@keyframes trailParticle3 {
    0% { opacity: 0; left: -120px; top: 0; transform: scale(0.5); }
    20% { opacity: 1; left: -60px; top: 3px; transform: scale(1); }
    40% { opacity: 0.8; left: 40px; top: 5px; transform: scale(0.8); }
    60% { opacity: 0.6; left: 100px; top: 3px; transform: scale(0.6); }
    80% { opacity: 0.3; left: 140px; top: 0; transform: scale(0.4); }
    100% { opacity: 0; left: 170px; top: 0; transform: scale(0.2); }
}

@keyframes flyToLogo {
    0% {
        left: -150px;
        opacity: 0;
        transform: translateY(-50%) rotate(-15deg) scale(0.6);
        filter: brightness(0) invert(1) blur(2px);
    }
    20% {
        opacity: 1;
        transform: translateY(-60%) rotate(-5deg) scale(0.9);
        filter: brightness(0) invert(1) blur(1px);
    }
    40% {
        left: 30%;
        transform: translateX(-50%) translateY(-40%) rotate(5deg) scale(1.1);
        filter: brightness(0) invert(1) blur(0px);
    }
    60% {
        left: 45%;
        transform: translateX(-50%) translateY(-50%) rotate(-2deg) scale(1.2);
        filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(135, 165, 193, 0.6));
    }
    80% {
        left: 50%;
        transform: translateX(-50%) translateY(-50%) rotate(0deg) scale(1.3);
        filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(135, 165, 193, 0.8));
    }
    85% {
        transform: translateX(-50%) translateY(-50%) rotate(0deg) scale(1.4);
        filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(135, 165, 193, 1));
        opacity: 1;
    }
    95% {
        transform: translateX(-50%) translateY(-50%) rotate(0deg) scale(1.2);
        filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(135, 165, 193, 0.9));
        opacity: 0.8;
    }
    100% {
        left: 50%;
        opacity: 0;
        transform: translateX(-50%) translateY(-50%) rotate(0deg) scale(1);
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(135, 165, 193, 0.7));
    }
}

/* Large desktop screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .service-card {
        padding: 3rem;
    }
    
    .logo-complete {
        height: 75px;
    }
    
    .flying-goose {
        width: 55px;
        height: 55px;
    }
    
    .logo-pulse-effect {
        width: 120px;
        height: 120px;
    }
    
    .flash-effect {
        width: 250px;
        height: 250px;
    }
}
/* Tablets and small laptops */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .solution-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .solution-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .image-placeholder {
        width: 280px;
        height: 280px;
    }
    
    .image-placeholder .responsive-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: inherit;
        position: absolute;
        top: 0;
        left: 0;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 3rem 20px 2rem 20px;
        min-height: 85vh;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

    .service-card {
        padding: 2rem;
    }

    .solution-item,
    .solution-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .image-placeholder {
        width: 220px;
        height: 220px;
    }
    
    .image-placeholder .responsive-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: inherit;
        position: absolute;
        top: 0;
        left: 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Responsive logo effects */
    .logo-complete {
        height: 50px;
    }
    
    .flying-goose {
        width: 35px;
        height: 35px;
    }
    
    .logo-pulse-effect {
        width: 80px;
        height: 80px;
    }
    
    .flash-effect {
        width: 150px;
        height: 150px;
    }
    
    .trail-particle {
        width: 3px;
        height: 3px;
    }
    
    .speed-line {
        width: 30px;
        height: 1.5px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 2rem 0;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }

    .image-placeholder {
        width: 180px;
        height: 180px;
        font-size: 2rem;
    }
    
    .image-placeholder .responsive-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: inherit;
        position: absolute;
        top: 0;
        left: 0;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Extra small logo effects for mobile */
    .logo-complete {
        height: 40px;
    }
    
    .flying-goose {
        width: 28px;
        height: 28px;
    }
    
    .logo-pulse-effect {
        width: 60px;
        height: 60px;
    }
    
    .flash-effect {
        width: 120px;
        height: 120px;
    }
    
    .trail-particle {
        width: 2px;
        height: 2px;
    }
    
    .speed-line {
        width: 25px;
        height: 1px;
    }
    
    /* Adjust flying animation for smaller screens */
    .flying-goose {
        left: -100px;
        animation-duration: 3.5s;
    }
    
    .goose-trail {
        left: -100px;
    }
    
    .speed-lines {
        left: -120px;
    }
    
    /* Adjust animation timings for mobile */
    @keyframes flyToLogo {
        0% {
            left: -100px;
            opacity: 0;
            transform: translateY(-50%) rotate(-15deg) scale(0.6);
            filter: brightness(0) invert(1) blur(2px);
        }
        25% {
            opacity: 1;
            transform: translateY(-60%) rotate(-5deg) scale(0.9);
            filter: brightness(0) invert(1) blur(1px);
        }
        50% {
            left: 40%;
            transform: translateX(-50%) translateY(-40%) rotate(5deg) scale(1.1);
            filter: brightness(0) invert(1) blur(0px);
        }
        70% {
            left: 50%;
            transform: translateX(-50%) translateY(-50%) rotate(-2deg) scale(1.2);
            filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(135, 165, 193, 0.6));
        }
        85% {
            transform: translateX(-50%) translateY(-50%) rotate(0deg) scale(1.3);
            filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(135, 165, 193, 0.8));
            opacity: 1;
        }
        95% {
            transform: translateX(-50%) translateY(-50%) rotate(0deg) scale(1.1);
            filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(135, 165, 193, 0.9));
            opacity: 0.6;
        }
        100% {
            left: 50%;
            opacity: 0;
            transform: translateX(-50%) translateY(-50%) rotate(0deg) scale(1);
            filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(135, 165, 193, 0.7));
        }
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
}

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

/* Additional responsive improvements */
/* Ensure proper spacing for all sections */
section {
    padding: 80px 0;
}

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

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
}

/* Flexible grid systems */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Contact form responsiveness */
.contact-form {
    max-width: 100%;
    padding: 2rem;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1rem;
    }
}

/* Footer responsiveness */
.footer {
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer p {
        font-size: 0.9rem;
    }
}

/* Utility classes for responsive design */
.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

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

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

/* Responsive text sizing */
.section-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 2rem;
}

/* Ensure proper touch targets for mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .nav-menu a {
        padding: 1rem;
        display: block;
    }
    
    .hamburger {
        padding: 0.5rem;
    }
}
