/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background: #0f0f23; /* Dark background */
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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



.nav-logo {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.logo-img {
    height: 140px;
    width: auto;
    max-width: 520px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: relative;
    z-index: 1001;
}

.nav-menu li {
    position: relative;
    z-index: 1001;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 1001;
}

.nav-menu a:hover {
    color: #87CEEB; /* Light blue (celeste) */
}

/* Language Selector Styles */
.language-selector {
    position: relative;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    min-width: 60px;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.language-btn:hover {
    background: rgba(135, 206, 235, 0.1);
    border-color: #87CEEB;
    color: #87CEEB;
}

.language-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.language-btn.active i {
    transform: rotate(180deg);
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-width: 60px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.language-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-option {
    display: block;
    padding: 10px 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(135, 206, 235, 0.1);
    color: #87CEEB;
}

.lang-option.active {
    background: rgba(135, 206, 235, 0.2);
    color: #87CEEB;
}

/* Language selector animations */
.language-dropdown {
    position: relative;
    display: inline-block;
}

/* Translation animation */
.translating {
    transition: opacity 0.3s ease;
}

.translating * {
    transition: opacity 0.2s ease;
}

/* Smooth text transition for language changes */
.hero-title,
.section-title,
.nav-menu a,
.feature-card h3,
.pricing-card h3,
.team-member h3 {
    transition: all 0.3s ease;
}



.language-btn {
    position: relative;
    overflow: hidden;
}

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

.language-btn:hover::before {
    left: 100%;
}

/* Language options animation */
.language-options {
    transform-origin: top right;
}

.language-options.show {
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Desktop Navigation - Show normal menu, hide hamburger */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: none;
        box-shadow: none;
        border: none;
        padding: 0;
        gap: 2rem;
    }
    
    .nav-menu a {
        cursor: pointer;
        pointer-events: auto;
        position: relative;
    }
    
    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(135deg, #87CEEB, #00FFC8);
        transition: width 0.3s ease;
    }
    
    .nav-menu a:hover::after,
    .nav-menu a.active::after {
        width: 100%;
    }
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hamburger Animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Hero Section */
.hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(135, 206, 235, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Gotham', 'Inter', sans-serif;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.title-line {
    display: block;
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
    line-height: 1.1;
    color: #ffffff;
    font-family: 'Gotham', 'Inter', sans-serif;
    font-weight: 700;
}

.title-line.highlight {
    color: #87CEEB; /* Azul del logo */
    text-shadow: 0 0 30px rgba(135, 206, 235, 0.5);
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Gotham', 'Inter', sans-serif;
}

/* Estilos específicos para cada línea del título */
.title-line:nth-child(1) {
    color: #ffffff;
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Gotham', 'Inter', sans-serif;
}

.title-line:nth-child(2) {
    color: #87CEEB;
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Gotham', 'Inter', sans-serif;
}

.title-line:nth-child(3) {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Gotham', 'Inter', sans-serif;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #87CEEB; /* Light blue (celeste) */
    font-weight: 600;
    letter-spacing: 2px;
}

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

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Image Slider Styles */
.image-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.8) rotateY(20deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(135, 206, 235, 0.5);
}

.dot:hover {
    background: rgba(135, 206, 235, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: #00FFC8;
    border-color: #00FFC8;
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.5);
    transform: scale(1.3);
}

/* Slider Animation */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: scale(0.8) rotateY(20deg) translateX(100px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg) translateX(0);
    }
}

@keyframes slideOut {
    0% {
        opacity: 1;
        transform: scale(1) rotateY(0deg) translateX(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) rotateY(-20deg) translateX(-100px);
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #87CEEB; /* Light blue (celeste) */
    color: #0f0f23;
    border: 2px solid #87CEEB;
}

.btn-primary:hover {
    background: #5F9EA0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(135, 206, 235, 0.3);
}

/* Payment Button Styles */
.payment-btn {
    background: linear-gradient(135deg, #00FFC8, #00E6B8);
    color: #0f0f23;
    border: 2px solid #00FFC8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.payment-btn::before {
    content: '';
    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.6s ease;
}

.payment-btn:hover::before {
    left: 100%;
}

.payment-btn:hover {
    background: linear-gradient(135deg, #00E6B8, #00CC9A);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 255, 200, 0.4);
    color: #0f0f23;
}

/* Payment Buttons Container */
.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.payment-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.payment-buttons .btn-primary {
    background: linear-gradient(135deg, #00FFC8, #00E6B8);
    color: #0f0f23;
    border: 2px solid #00FFC8;
}

.payment-buttons .btn-secondary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: 2px solid #667eea;
}

.payment-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.payment-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #00E6B8, #00D4A8);
    box-shadow: 0 8px 25px rgba(0, 255, 200, 0.3);
}

.payment-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00FFC8, #00E6B8);
    color: #0f0f23;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 255, 200, 0.3);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: linear-gradient(135deg, #00FFC8, #00E6B8);
    color: #0f0f23;
}

.notification-info {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.notification i {
    font-size: 1.2rem;
}

.payment-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0f0f23;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #87CEEB, #00FFC8);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.section-title:hover::after {
    width: 100px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll Offset for Sections */
html {
    scroll-padding-top: 120px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #1a1a2e; /* Dark background */
    color: white;
    position: relative;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services .section-title {
    color: white;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.service-category {
    text-align: center;
    padding: 2rem;
    background: rgba(135, 206, 235, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(135, 206, 235, 0.2);
    transition: all 0.3s ease;
}

.service-category:hover {
    background: rgba(135, 206, 235, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.3);
}

.service-line {
    width: 50px;
    height: 3px;
    background: #00FFC8; /* Mint Green */
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.service-category h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #87CEEB; /* Light blue (celeste) */
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #16213e; /* Dark blue background */
}

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

.feature-card {
    background: #1a1a2e;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #00FFC8;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #87CEEB, #00FFC8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #0f0f23;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #a0a0a0;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #0f0f23;
}

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

.about-text h2 {
    color: #ffffff;
}

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

.about-section h3 {
    color: #87CEEB;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.about-section p {
    color: #a0a0a0;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.about-photo {
    width: 450px;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.about-photo:hover {
    transform: translateY(-5px);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #16213e;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 16px;
    padding: 0.4rem;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    overflow: hidden;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.pricing-card.starter {
    border: 2px solid #87CEEB; /* Light blue (celeste) */
    background: linear-gradient(145deg, #1a1a2e, #16213e);
}

.pricing-card.starter:hover {
    border-color: #87CEEB;
    box-shadow: 0 15px 35px rgba(135, 206, 235, 0.2);
}

.pricing-card.professional {
    border: 3px solid #00FFC8; /* Mint Green */
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 255, 200, 0.15);
    position: relative;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
}

.pricing-card.professional:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 255, 200, 0.4);
    border-color: #00FFC8;
}

.pricing-badge {
    position: absolute;
    top: -8px;
    left: -8px;
    background: linear-gradient(135deg, #00FFC8, #00E6B8);
    color: #0f0f23;
    padding: 4px 14px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 255, 200, 0.4);
    border: 2px solid #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    z-index: 10;
}

.pricing-header {
    text-align: center;
    margin-bottom: 0.3rem;
    position: relative;
}

.pricing-header h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #ffffff;
    font-weight: 700;
    transition: all 0.3s ease;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: #a0a0a0;
}

.amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #87CEEB; /* Light blue (celeste) */
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(135, 206, 235, 0.1);
}

.pricing-card.professional .amount {
    color: #00FFC8; /* Mint Green */
    text-shadow: 0 2px 4px rgba(0, 255, 200, 0.2);
}

.period {
    font-size: 1.1rem;
    color: #a0a0a0;
}

.setup-cost {
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    padding: 0.3rem;
    border-radius: 8px;
    margin-bottom: 0.4rem;
    text-align: center;
    border: 1px solid #2a2a3e;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.setup-cost h4 {
    margin-bottom: 0.3rem;
    color: #ffffff;
}

.original-price {
    text-decoration: line-through;
    color: #666666;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.discounted-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00FFC8; /* Mint Green */
    margin-bottom: 0.3rem;
}

.discount {
    background: #e6fffa;
    color: #00FFC8; /* Mint Green */
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.setup-cost small {
    color: #a0a0a0;
    font-size: 0.8rem;
}

.web-creation-note {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.1), rgba(0, 255, 200, 0.1));
    border: 1px solid rgba(135, 206, 235, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.web-creation-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(135, 206, 235, 0.2), transparent);
    transition: left 0.5s ease;
}

.web-creation-note:hover::before {
    left: 100%;
}

.web-creation-note p {
    margin: 0;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.web-creation-note strong {
    color: #87CEEB;
    font-weight: 600;
}

.feature-section {
    margin-bottom: 0.6rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-title {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.feature-title:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(3px);
}

.feature-title i {
    transition: transform 0.3s ease;
    font-size: 0.7rem;
}

.feature-title.active i {
    transform: rotate(180deg);
}

.feature-title.active {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing-card.starter .feature-title {
    color: #87CEEB; /* Light blue (celeste) */
}

.pricing-card.professional .feature-title {
    color: #00FFC8; /* Mint Green */
}

.feature-content {
    list-style: none;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    position: relative;
    z-index: 2;
}

.feature-content.active {
    max-height: 1000px;
    opacity: 1;
}

.feature-content li {
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    transition: all 0.4s ease;
    position: relative;
    border-radius: 6px;
    font-size: 0.7rem;
    line-height: 1.2;
}

.feature-content li:last-child {
    border-bottom: none;
}

.feature-content li:hover {
    background: rgba(0, 255, 200, 0.1);
    border-radius: 8px;
    padding-left: 0.5rem;
    margin-left: -0.5rem;
    transform: translateX(5px);
    animation: featureSlide 0.6s ease-in-out;
}

.pricing-card.professional .feature-content li:hover {
    background: rgba(0, 255, 200, 0.15);
    border-radius: 8px;
    padding-left: 0.5rem;
    margin-left: -0.5rem;
    transform: translateX(5px);
    animation: featureSlide 0.6s ease-in-out;
}

.feature-content i {
    color: #00FFC8; /* Mint Green */
    font-size: 0.7rem;
    transition: all 0.4s ease;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.feature-content li:hover i {
    transform: scale(1.3) rotate(10deg);
    color: #00E6B8;
    animation: iconSpin 0.6s ease-in-out;
}

.pricing-card.professional .feature-content li:hover i {
    transform: scale(1.3) rotate(10deg);
    color: #00E6B8;
    animation: iconSpin 0.6s ease-in-out;
}

/* Trayectoria Section */
.trayectoria {
    padding: 100px 0;
    background: #1a1a2e;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #87CEEB, #00FFC8);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: #00FFC8;
    border: 4px solid #1a1a2e;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(135, 206, 235, 0.2);
    z-index: 2;
}

.timeline-content {
    background: #16213e;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 45%;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.timeline-content h3 {
    color: #87CEEB;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content p {
    color: #a0a0a0;
    line-height: 1.6;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

/* Equipo Section */
.equipo {
    padding: 100px 0;
    background: #0f0f23;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: #1a1a2e;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: #00FFC8;
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #87CEEB, #00FFC8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: #0f0f23;
    transition: all 0.3s ease;
    overflow: hidden;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-member:hover .member-photo {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
}

.team-member h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-role {
    color: #87CEEB;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-description {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #16213e;
    color: #87CEEB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.member-social a:hover {
    background: #87CEEB;
    color: #0f0f23;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

/* Comparison Table */
.comparison {
    padding: 80px 0;
    background: #1a1a2e;
}

.comparison-table {
    background: #16213e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #2a2a3e;
}

.comparison-table th {
    background: #0f0f23;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table td:first-child {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comparison-table td:first-child i {
    color: #87CEEB;
    font-size: 1.2rem;
    width: 20px;
}

.starter-col {
    background: rgba(135, 206, 235, 0.2); /* Azul claro */
}

.professional-col {
    background: rgba(0, 102, 255, 0.2); /* Azul oscuro */
}

.text-success {
    color: #00FFC8 !important;
}

.text-danger {
    color: #ef4444 !important;
}

.comparison-note {
    background: #16213e;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.note-icon {
    background: #e6fffa;
    color: #00FFC8;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.note-content h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.note-content ul {
    list-style: none;
}

.note-content li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: #a0a0a0;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #87CEEB, #0f0f23);
    color: white;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #0f0f23;
}

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

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

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: #87CEEB;
    color: #0f0f23;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-item p {
    color: #a0a0a0;
}

.contact-form {
    background: #1a1a2e;
    padding: 2rem;
    border-radius: 12px;
}

/* Go High Level Form Container */
.ghl-form-container {
    background: #1a1a2e;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.ghl-form-container iframe {
    border-radius: 8px;
    background: white;
}

.contact-form h3 {
    color: #87CEEB;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-form p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Estilos para el calendario */
.calendar-container {
    background: #1a1a2e;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.calendar-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calendar-header h3 {
    color: #87CEEB;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.calendar-header p {
    color: #a0a0a0;
    margin: 0;
}

.calendar-wrapper {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.calendar-wrapper iframe {
    border: none;
    width: 100%;
    min-height: 600px;
}

.calendar-actions {
    text-align: center;
    margin-top: 1.5rem;
}

.calendar-actions .btn {
    background: linear-gradient(135deg, #2a2a4e, #1a1a2e);
    color: #ffffff;
    border: 1px solid #87CEEB;
    transition: all 0.3s ease;
}

.calendar-actions .btn:hover {
    background: linear-gradient(135deg, #87CEEB, #00FFC8);
    color: #0f0f23;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
}

/* Animación de transición */
.ghl-form, .calendar-container {
    transition: all 0.5s ease;
}

.ghl-form.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.calendar-container.show {
    opacity: 1;
    transform: translateY(0);
}

.ghl-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #2a2a3e;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: #16213e;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #87CEEB;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1);
}

/* Dropdown Styles */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2387CEEB' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
    position: relative;
}

.form-group select:hover {
    border-color: #87CEEB;
    background-color: #1a1a2e;
}

.form-group select option {
    background: #16213e;
    color: #ffffff;
    padding: 12px;
    border: none;
}

.form-group select option:hover {
    background: #87CEEB;
    color: #0f0f23;
}

.form-group select option:checked {
    background: linear-gradient(135deg, #87CEEB, #00FFC8);
    color: #0f0f23;
    font-weight: 500;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
        border-radius: 8px;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 12px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 6px;
        min-height: 48px; /* Better touch target */
    }
    
    .form-group select {
        background-size: 14px;
        background-position: right 10px center;
        padding-right: 35px;
        font-size: 16px;
    }
    
    .form-group select option {
        padding: 8px 12px;
        font-size: 16px;
    }
    
    .form-group textarea {
        min-height: 100px;
        resize: vertical;
    }
    
    /* Improve touch targets */
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        box-shadow: 0 0 0 2px rgba(135, 206, 235, 0.2);
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 10px;
        font-size: 16px;
    }
    
    .form-group select {
        background-size: 12px;
        background-position: right 8px center;
        padding-right: 30px;
    }
    
    /* Language Selector Small Mobile Styles */
    .nav-menu {
        gap: 0.5rem;
    }
    
    .language-btn {
        padding: 5px 8px;
        font-size: 0.6rem;
        min-width: 45px;
    }
    
    .language-options {
        min-width: 45px;
    }
    
    .lang-option {
        padding: 6px 8px;
        font-size: 0.6rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .nav-menu {
        gap: 0.3rem;
    }
    
    .language-selector {
        margin-left: 0.5rem;
    }
    
    .language-btn {
        padding: 4px 6px;
        font-size: 0.5rem;
        min-width: 40px;
    }
    
    .language-options {
        min-width: 40px;
    }
    
    .lang-option {
        padding: 5px 6px;
        font-size: 0.5rem;
    }
}

/* Footer */
.footer {
    background: #0f0f23;
    color: 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 h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #a0a0a0;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00FFC8;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #87CEEB;
    color: #0f0f23;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00FFC8;
    color: #0f0f23;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #2a2a3e;
    padding-top: 2rem;
    text-align: center;
    color: #666666;
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #87CEEB;
    color: #0f0f23;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(135, 206, 235, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.chat-button:hover {
    background: #00FFC8;
    color: #0f0f23;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 255, 200, 0.4);
}

/* Beautiful Scroll Effects */
html {
    scroll-behavior: smooth;
}

/* Enhanced floating animation for icons */
@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.feature-icon {
    animation: gentleFloat 4s ease-in-out infinite;
}

.pricing-badge {
    animation: gentleFloat 5s ease-in-out infinite;
}

/* Enhanced button hover effects */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.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 ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

/* Section title hover effect */
.section-title {
    transition: all 0.4s ease;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #87CEEB, #00FFC8); /* Celeste to Mint Green */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.section-title:hover::after {
    width: 100px;
}

.section-title:hover {
    transform: scale(1.02);
    color: #87CEEB; /* Light blue (celeste) */
}

/* Enhanced card animations */
.feature-card,
.pricing-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover,
.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Smooth section transitions */
section {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Enhanced text animations */
.hero-title,
.hero-subtitle {
    transition: all 0.6s ease;
}

/* Beautiful loading animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #87CEEB, #0f0f23); /* Celeste to Dark */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 255, 200, 0.3); /* Mint Green with opacity */
    border-top: 4px solid #00FFC8; /* Mint Green */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced scroll indicators */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #87CEEB, #00FFC8); /* Celeste to Mint Green */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1001;
}

/* Particle effects */
.background-particle {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-background {
        background-attachment: scroll;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .service-category {
        padding: 1.5rem;
    }
    
    .service-category h3 {
        font-size: 1rem;
    }
    
    .nav-container {
        flex-wrap: nowrap;
        height: 80px;
        padding: 8px 15px;
        align-items: center;
    }
    
    .nav-logo {
        order: 1;
        flex: 0 0 auto;
        margin-right: 1rem;
    }
    
    .nav-logo .logo-img {
        height: 50px;
        max-width: 150px;
    }
    
    .nav-menu {
        order: 2;
        flex: 1;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        gap: 0.8rem;
        padding: 0;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .nav-menu li {
        border: none;
    }
    
    .nav-menu a {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
        text-align: center;
        white-space: nowrap;
        font-weight: 500;
        letter-spacing: 0.3px;
        cursor: pointer;
        pointer-events: auto;
    }
    
    /* Language Selector Mobile Styles */
    .language-selector {
        margin-left: auto;
    }
    
    .language-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
        min-width: 50px;
    }
    
    .language-options {
        right: 0;
        min-width: 50px;
    }
    
    .lang-option {
        padding: 8px 10px;
        font-size: 0.7rem;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-line:nth-child(1) {
        font-size: 2rem;
    }
    
    .title-line:nth-child(2) {
        font-size: 2rem;
    }
    
    .title-line:nth-child(3) {
        font-size: 1rem;
    }
    
    .image-slider {
        width: 90%;
        height: 200px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1rem;
        padding: 0 15px;
    }
    
    .pricing-card.professional {
        transform: none;
    }
    
    .pricing-card {
        padding: 1rem;
        min-height: auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-photo {
        width: 300px;
        max-height: 350px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        overflow-x: auto;
        margin: 30px 15px;
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 6px;
    }
    
    .comparison-note {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .calendar-container {
        padding: 1.5rem;
    }
    
    iframe {
        height: 600px;
    }
}

@media (max-width: 480px) {
    .services-background {
        background-attachment: scroll;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .service-category {
        padding: 1rem;
    }
    
    .service-category h3 {
        font-size: 0.9rem;
    }
    
    .web-creation-note {
        padding: 0.8rem;
        margin: 0.8rem 0;
    }
    
    .web-creation-note p {
        font-size: 0.8rem;
    }
    
    .nav-container {
        height: 70px;
        padding: 5px 10px;
    }
    
    .nav-logo .logo-img {
        height: 40px;
        max-width: 120px;
    }
    
    .nav-menu a {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .title-line:nth-child(1) {
        font-size: 1.5rem;
    }
    
    .title-line:nth-child(2) {
        font-size: 1.5rem;
    }
    
    .title-line:nth-child(3) {
        font-size: 0.9rem;
    }
    
    .image-slider {
        width: 95%;
        height: 180px;
    }
    
    .pricing-card {
        padding: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 6px 4px;
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .about-photo {
        width: 250px;
        max-height: 300px;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .calendar-container {
        padding: 1rem;
    }
    
    iframe {
        height: 500px;
    }
}

/* Enhanced animations for new sections */
.timeline-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.team-member {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.team-member.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.timeline-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-item:nth-child(2) { transition-delay: 0.2s; }
.timeline-item:nth-child(3) { transition-delay: 0.3s; }
.timeline-item:nth-child(4) { transition-delay: 0.4s; }
.timeline-item:nth-child(5) { transition-delay: 0.5s; }
.timeline-item:nth-child(6) { transition-delay: 0.6s; }

.team-member:nth-child(1) { transition-delay: 0.1s; }
.team-member:nth-child(2) { transition-delay: 0.2s; }
.team-member:nth-child(3) { transition-delay: 0.3s; }
.team-member:nth-child(4) { transition-delay: 0.4s; }
