/* Variables CSS para accesibilidad y contraste */
:root {
    --primary-color: #0056b3;
    --primary-dark: #004494;
    --primary-darker: #003366;
    --secondary-color: #6c757d;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6c757d;
    --surface-elevated: #ffffff;
    --border-color: #d0d0d0;
    --border-focus: #0066cc;
    --shadow-color: rgba(0, 86, 179, 0.15);
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --focus-outline: 3px solid var(--border-focus);
    --focus-offset: 2px;
}

/* Prevención de CLS (Cumulative Layout Shift) */
body.loading {
    overflow-x: hidden;
}

body.loading .hero::before {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

body.loaded .hero::before {
    opacity: 1;
}

/* Optimizaciones de rendimiento para prevenir redistribución forzada */
.hero-content h1 {
    transform: translateZ(0); /* Forzar aceleración por hardware */
    will-change: auto; /* Optimización de renderizado */
}

.form-container,
.hero-content,
.form-row {
    transform: translateZ(0); /* Forzar aceleración por hardware */
}

/* Reservar espacio para elementos críticos */
.hero-content {
    min-height: 400px; /* Altura mínima para prevenir CLS */
}

/* Form Container */
@media (min-width: 768px) {
    .form-container {
        min-height: 500px; /* Altura mínima para el formulario en pantallas grandes */
    }
}

.form-row {
    min-height: 80px; /* Altura mínima para filas del formulario */
}

/* Optimización de fuentes para prevenir FOIT/FOUT */
@font-face {
    font-family: 'Playfair Display';
    font-display: swap; /* Intercambio rápido de fuentes */
}

/* Preload crítico para imágenes del hero */
.hero {
    background-image: url('assets/img/hero/paisajes/beautiful-sunset-seaside.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a; /* Mejorado contraste de #333 a #1a1a1a */
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

/* Utilidades de accesibilidad */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mejoras de contraste para elementos interactivos */
:focus {
    outline: 3px solid #0066cc;
    outline-offset: 2px;
}

/* Skip link para navegación por teclado */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Performance optimizations */
.hero, .location-hero {
    contain: layout style paint;
}

.service-card, .fleet-card, .route-card, .related-card, .experience-card {
    contain: layout style;
}

.header {
    contain: layout style;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    will-change: transform;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: #1a1a1a; /* Mejorado contraste */
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a:focus {
    color: #0056b3; /* Color más oscuro para mejor contraste */
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #007bff;
    transition: width 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 8px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95); /* Mejorado contraste */
    border: 2px solid rgba(0, 0, 0, 0.2); /* Borde más visible */
    border-radius: 25px;
    color: #1a1a1a; /* Mejorado contraste */
    text-decoration: none;
    font-size: 12px;
    font-weight: 600; /* Texto más bold */
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-btn.active {
    background: #0056b3; /* Color más oscuro para mejor contraste */
    border-color: #0056b3;
    color: white;
}

.lang-btn:hover,
.lang-btn:focus {
    background: rgba(0, 86, 179, 0.15); /* Mejorado contraste */
    border-color: #0056b3;
    color: #0056b3;
}

.lang-btn img {
    width: 16px;
    height: 12px;
    border-radius: 2px;
}

/* Hero Section */
.hero,
.location-hero {
    padding-top: 80px; /* Add padding to push content down */
    min-height: 70vh; /* Ajustado para que el corte coincida con la imagen */
    height: 70vh; /* Altura fija para prevenir CLS */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-image: url('assets/img/hero/paisajes/beautiful-sunset-seaside.webp'); /* Imagen por defecto */
    transition: background-image 1s ease-in-out;
    will-change: transform;
    contain: layout style paint; /* Optimización de renderizado */
    overflow: hidden; /* Para asegurar que no se vea contenido fuera del área */
}

.hero::before,
.location-hero::before {
    background: rgba(0, 0, 0, 0.4);
}

.hero::before,
.location-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
    max-width: 800px;
    width: 100%; /* Ancho completo para prevenir CLS */
    min-height: 300px; /* Reducido para ajustar al nuevo tamaño del hero */
    display: flex;
    flex-direction: column;
    justify-content: center;
    contain: layout style; /* Optimización de renderizado */
}

/* Sección del formulario fuera del hero */
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Container */
.form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10001;
}

/* Booking Tabs */
.booking-tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px; /* Reducido de 30px a 20px */
}

.booking-tabs button {
    background: none;
    border: none;
    color: #1a1a1a; /* Mejorado contraste */
    padding: 12px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600; /* Texto más bold */
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    flex: 1;
    min-height: 44px; /* Tamaño mínimo para accesibilidad táctil */
}

.booking-tabs button.active {
    color: #0056b3; /* Color más oscuro */
    border-bottom-color: #0056b3;
}

.booking-tabs button:hover,
.booking-tabs button:focus {
    color: #0056b3; /* Color más oscuro */
    background: rgba(0, 86, 179, 0.05); /* Fondo sutil en hover */
}

/* Form Groups */
.form-group {
    margin-bottom: 18px; /* Reducido de 25px a 18px */
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a1a; /* Mejorado contraste */
    font-weight: 600; /* Texto más bold */
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px; /* Reducido de 15px a 12px */
    border: 2px solid #d0d0d0; /* Borde más visible */
    border-radius: 10px; /* Reducido de 12px a 10px */
    background: #fff;
    color: #1a1a1a; /* Mejorado contraste */
    font-size: 15px; /* Reducido de 16px a 15px */
    transition: all 0.3s ease;
    font-family: inherit;
    min-height: 44px; /* Tamaño mínimo para accesibilidad táctil */
}

.form-group input:focus,
.form-group select:focus {
    outline: 3px solid #0066cc; /* Outline más visible */
    outline-offset: 2px;
    border-color: #0056b3; /* Color más oscuro */
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15); /* Sombra más visible */
}

.form-group input::placeholder {
    color: #999;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-height: 80px; /* Altura mínima para prevenir CLS */
    align-items: start; /* Alineación para consistencia */
    contain: layout; /* Optimización de renderizado */
}

/* Buttons */
.btn-primary {
    width: 100%;
    padding: 14px; /* Reducido de 18px a 14px */
    border: 2px solid transparent; /* Borde para mejor definición */
    border-radius: 10px; /* Reducido de 12px a 10px */
    font-weight: 700; /* Texto más bold */
    font-size: 15px; /* Reducido de 16px a 15px */
    background: linear-gradient(135deg, #0056b3, #004494); /* Colores más oscuros */
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    min-height: 44px; /* Tamaño mínimo para accesibilidad táctil */
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.4); /* Sombra más visible */
    border-color: #ffffff;
    background: linear-gradient(135deg, #004494, #003366);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #0056b3; /* Color más oscuro */
    color: #0056b3; /* Color más oscuro */
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700; /* Texto más bold */
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    min-height: 44px; /* Tamaño mínimo para accesibilidad táctil */
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #0056b3;
    color: white;
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

/* General Sections */
.section {
    padding: 120px 0;
    position: relative;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Why Choose Us Section Specific */
#why-choose {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

#why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.03), transparent);
    transform: rotate(15deg);
    z-index: 1;
}

#why-choose .container {
    position: relative;
    z-index: 2;
}

#why-choose .text-center {
    margin-top: 80px;
}

#why-choose .btn {
    padding: 20px 50px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 35px;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.25);
}

#why-choose .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.8s ease;
}

#why-choose .btn::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

#why-choose .btn:hover::before {
    left: 100%;
}

#why-choose .btn:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3 0%, #004494 100%);
}

#why-choose .btn:hover::after {
    transform: translateX(5px);
}

#why-choose .btn:active {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

/* Services Section */
.services {
    padding-top: 120px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translate3d(0, -10px, 0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.service-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.service-card-small {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card-small:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.service-card-small i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.service-card-small h3 {
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card-small p {
    color: #666;
    font-size: 14px;
    padding: 0;
}

/* Fleet Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.fleet-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.fleet-card:hover {
    transform: translate3d(0, -10px, 0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.fleet-image {
    height: 250px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-info {
    padding: 30px;
}

.fleet-info h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.fleet-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.fleet-features {
    list-style: none;
}

.fleet-features li {
    color: #333;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
}

.fleet-features li:before {
    content: "✓";
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Location Pages */
.location-hero {
    min-height: 60vh;
    padding: 120px 0 80px;
}

.location-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.location-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.hero-features i {
    color: #007bff;
}

/* Location Info */
.location-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.location-text h3 {
    color: #333;
    margin: 30px 0 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.location-text ul {
    margin-bottom: 25px;
}

.location-text li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.location-text li:before {
    content: "→";
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.location-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    width: 300px;
    height: 300px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #007bff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-placeholder i {
    font-size: 4rem;
    color: #007bff;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.image-placeholder small {
    color: #666;
    font-size: 14px;
}

/* Routes */
.route-info {
    padding: 80px 0;
    background: white;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.route-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.route-card:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.route-card h3 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.route-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.route-details span {
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.route-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    display: inline-block;
    transition: color 0.3s ease;
}

.route-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Airport Info */
.airport-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.airport-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.airport-feature {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.airport-feature h3 {
    color: #007bff;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 600;
}

.airport-feature ul li {
    color: #666;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.airport-feature ul li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Related Locations */
.related-locations {
    padding: 80px 0;
    background: white;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.related-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.related-card:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
    color: #333;
    text-decoration: none;
}

.related-card h3 {
    color: #007bff;
    margin-bottom: 15px;
    font-weight: 600;
}

.related-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Section */
.location-cta {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.location-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    opacity: 1;
}

.location-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="luxury-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(212,175,55,0.15)"/><circle cx="0" cy="0" r="1" fill="rgba(212,175,55,0.1)"/><circle cx="60" cy="60" r="1" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="60" height="60" fill="url(%23luxury-pattern)"/></svg>');
    opacity: 0.6;
}

.location-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.location-cta p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 3;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.cta-buttons .btn {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #2c3e50;
    border-color: #d4af37;
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #d4af37;
    color: #d4af37;
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-brand {
    margin-bottom: 35px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    color: #007bff;
    font-size: 1.8rem;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.footer-brand p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 400px;
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contact p {
    color: #eee;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-contact a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #0056b3;
}

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

.footer-column h4 {
    color: white;
    margin-bottom: 18px;
    font-size: 1rem;
    font-weight: 600;
}

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 13px;
    line-height: 1.4;
}

.footer-column a:hover,
.footer-column a.active {
    color: #007bff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0 15px;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #007bff;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #ccc;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #ccc;
}

.footer-social a:hover {
    color: white;
    background: #007bff;
    border-color: #007bff;
    transform: translate3d(0, -2px, 0);
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-copyright p {
    color: #999;
    font-size: 13px;
    margin-bottom: 4px;
    line-height: 1.4;
}

/* Process Section */
.process {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafe 0%, #e8f4fd 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23007bff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

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

.process h2 {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.process h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-top: 80px;
    position: relative;
}

/* Medium screens - 2x2 grid */
@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-steps::before {
        display: none;
    }
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #007bff 20%, #007bff 80%, transparent 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.step {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.08);
    z-index: 2;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.03), rgba(0, 86, 179, 0.03));
    transition: left 0.6s ease;
    z-index: -1;
}

.step:hover::before {
    left: 0;
}

.step:hover {
    transform: translate3d(0, -20px, 0) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.3);
}

.step-number {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 35px;
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.4);
    position: relative;
    transition: all 0.5s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.step:hover .step-number {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 20px 45px rgba(0, 123, 255, 0.5);
}

.step:hover .step-number::before {
    opacity: 0.3;
}

.step-content h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.step:hover .step-content h3 {
    color: #007bff;
    transform: translateY(-2px);
}

.step-content p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
    transition: color 0.3s ease;
}

.step:hover .step-content p {
    color: #555;
}

/* Why Choose Us Section */
.value-proposition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-proposition-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.value-proposition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3, #007bff);
    transition: left 0.6s ease;
}

.value-proposition-card:hover::before {
    left: 0;
}

.value-proposition-card:hover {
    transform: translate3d(0, -15px, 0);
    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.2);
}

.value-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.3);
    transition: all 0.4s ease;
}

.value-proposition-card:hover .value-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.4);
}

.value-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.4s ease;
}

.value-proposition-card h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.value-proposition-card:hover h3 {
    color: #007bff;
}

.value-proposition-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
    transition: color 0.3s ease;
}

.value-proposition-card:hover p {
    color: #555;
}

/* Service Highlights */
.service-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.highlight-item i {
    font-size: 16px;
    color: #007bff;
}

/* Service Pricing */
.service-price {
    text-align: center;
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-price .from {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.service-price .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.testimonial-card p {
    color: #666;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 15px;
}

.testimonial-author strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-author span {
    color: #999;
    font-size: 14px;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-info {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.08);
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.02), rgba(0, 86, 179, 0.02));
    transition: left 0.6s ease;
    z-index: -1;
}

.contact-info:hover::before {
    left: 0;
}

.contact-info:hover {
    transform: translate3d(0, -15px, 0) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.3);
}

.contact-info i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 25px;
    display: block;
    transition: all 0.5s ease;
    position: relative;
}

.contact-info:hover i {
    transform: scale(1.2) rotateY(360deg);
    color: #0056b3;
}

.contact-info i::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 86, 179, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-info:hover i::before {
    opacity: 1;
}

.contact-info h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-info:hover h3 {
    color: #007bff;
    transform: translateY(-2px);
}

.contact-info p {
    margin: 0;
    line-height: 1.6;
}

.contact-info p:first-of-type {
    margin-bottom: 10px;
}

.contact-info p:first-of-type a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-info:hover p:first-of-type a {
    color: #0056b3;
    transform: translateY(-1px);
}

.contact-info p:last-of-type {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info:hover p:last-of-type {
    color: #555;
}

/* Contact Form */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #1a1a1a;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-benefits {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

.contact-benefits h3 {
    color: #1a1a1a;
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-weight: 600;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.benefit-item i {
    color: #007bff;
    font-size: 1.5rem;
    min-width: 24px;
    margin-top: 5px;
}

.benefit-item h4 {
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Hero Price Display */
.hero-price {
    text-align: center;
    margin: 30px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-price .from {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.hero-price .price {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    display: block;
    margin-bottom: 10px;
}

.hero-price .route {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Route Header */
.route-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 20px 20px 0 0;
}

.route-header h3 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.route-header h3 i {
    color: #007bff;
}

.route-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.route-price .price {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
}

.route-price .duration {
    color: #666;
    font-size: 14px;
    background: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.route-details {
    padding: 30px;
}

.route-details p {
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.route-features {
    list-style: none;
    margin-bottom: 25px;
}

.route-features li {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.route-features li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Experiences Grid */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.experience-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.experience-card:hover {
    transform: translate3d(0, -10px, 0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.experience-image {
    height: 200px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.05);
}

.experience-content {
    padding: 30px;
}

.experience-content h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.experience-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.experience-price {
    color: #007bff;
    font-size: 1.2rem;
    font-weight: bold;
}

.btn-outline {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.btn-outline:hover {
    background: #007bff;
    color: white;
    transform: translate3d(0, -2px, 0);
}

/* Mobile CTA */
.mobile-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: none;
}

.mobile-cta .btn-primary {
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    width: auto;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 50%, #1a1a1a 100%);
    z-index: 9999;
    transition: right 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 1;
}

.mobile-menu-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    padding: 0 40px;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 60px 0;
}

.mobile-nav-links li {
    margin: 0 0 30px 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-links li:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    padding: 15px 0;
}

.mobile-nav-links a:hover {
    color: #d4af37;
    transform: scale(1.05);
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.mobile-nav-links a:hover::after {
    width: 60px;
}

.mobile-menu-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.6s;
}

.mobile-menu-overlay.active .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
}

.mobile-cta-title {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.mobile-cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.mobile-cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.mobile-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Ajustar selector de idioma en móvil */
    .language-selector {
        top: 15px;
        right: 15px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 10000;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        padding: 18px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(15px);
        transition: all 0.3s ease;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }
    
    .mobile-menu-btn span {
        background: #333;
        width: 25px;
        height: 3px;
    }
    
    .mobile-menu-btn:hover {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .form-container {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Asegurar que todos los campos del formulario sean visibles en móvil */
    .form-group {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .form-group input,
    .form-group select {
        display: block !important;
        width: 100% !important;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Why Choose Us Responsive */
    .value-proposition-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .value-proposition-card {
        padding: 40px 30px;
        margin: 0 10px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .value-icon i {
        font-size: 1.8rem;
    }
    
    .value-proposition-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .value-proposition-card p {
        font-size: 14px;
    }
    
    #why-choose {
        padding: 80px 0;
    }
    
    #why-choose .section h2 {
        font-size: 2.2rem;
    }
    
    #why-choose .section-subtitle {
        font-size: 1rem;
        margin-bottom: 50px;
    }
    
    #why-choose .text-center {
        margin-top: 50px;
    }
    
    #why-choose .btn {
        padding: 18px 40px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 320px;
        min-width: auto;
        gap: 8px;
    }

    #why-choose .btn::after {
        font-size: 1.1rem;
    }
    
    /* Process Section Responsive */
    .process {
        padding: 80px 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 60px;
    }
    
    .step {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .step-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Contact Section - Small Mobile */
    .contact-grid {
        gap: 25px;
        margin-top: 30px;
    }
    
    /* Botón de reserva móvil */
    .btn-primary {
        width: 100% !important;
        padding: 16px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        min-height: 50px !important;
        border-radius: 12px !important;
        margin-top: 20px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 999 !important;
        background: linear-gradient(135deg, #0056b3, #004494) !important;
        color: white !important;
        border: none !important;
        cursor: pointer !important;
        text-align: center !important;
        line-height: 1.2 !important;
    }
}

/* Media query específica para iPad */
@media (max-width: 1024px) and (min-width: 769px) {
    .btn-primary {
        width: 100% !important;
        padding: 18px !important;
        font-size: 17px !important;
        font-weight: 700 !important;
        min-height: 52px !important;
        border-radius: 12px !important;
        margin-top: 20px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 999 !important;
        background: linear-gradient(135deg, #0056b3, #004494) !important;
        color: white !important;
        border: none !important;
        cursor: pointer !important;
        text-align: center !important;
        line-height: 1.2 !important;
    }
    
    .form-container {
        padding: 35px !important;
        margin: 20px !important;
    }
}

.contact-info {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .contact-info i {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .contact-info h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .contact-info p:first-of-type a {
        font-size: 0.95rem;
    }

    .contact-info p:last-of-type {
        font-size: 0.85rem;
    }

    /* Contact Section - Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .contact-info {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .contact-info i {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .contact-info p:first-of-type a {
        font-size: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .mobile-cta {
        display: block;
    }
    
    .language-selector {
        top: 15px;
        right: 15px;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .hero-features span {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .service-card,
    .fleet-card {
        margin: 0 10px;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    /* Why Choose Us Mobile */
    .value-proposition-card {
        padding: 30px 20px;
        margin: 0 5px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    #why-choose .section h2 {
        font-size: 1.8rem;
    }
    
    .value-proposition-card h3 {
        font-size: 1.1rem;
    }
    
    /* Process Section Small Mobile */
    .process {
        padding: 60px 0;
    }
    
    .process-steps {
        gap: 30px;
        margin-top: 50px;
    }
    
    .step {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .step-content p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-brand {
        margin-bottom: 25px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .footer-column h4 {
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        padding: 20px 0 10px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-copyright {
        padding-top: 15px;
    }
}

/* ===== BLOG STYLES ===== */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.blog-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Categories Filter */
.blog-categories {
    padding: 60px 0;
    background: #f8f9fa;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.category-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #6c757d;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

.category-btn:hover,
.category-btn.active {
    background: #d4af37;
    border-color: #d4af37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Featured Posts */
.featured-posts {
    padding: 80px 0;
}

.featured-posts h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.featured-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.featured-post .post-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #d4af37;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-post .post-content {
    padding: 30px;
}

.featured-post h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-post h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-post h3 a:hover {
    color: #d4af37;
}

.featured-post p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #adb5bd;
}

.post-meta .date {
    font-weight: 500;
}

.post-meta .tags {
    color: #d4af37;
    font-weight: 500;
}

/* Blog Posts Grid */
.blog-posts {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-posts h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.blog-post .post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.blog-post .post-content {
    padding: 25px;
}

.blog-post h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-post h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post h3 a:hover {
    color: #d4af37;
}

.blog-post p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    background: #d4af37;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

/* Article Styles */
.article-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 120px 0 80px;
    color: white;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.breadcrumb a {
    color: #d4af37;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.article-meta .category {
    background: #d4af37;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.article-meta .date,
.article-meta .reading-time {
    opacity: 0.8;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Article Content */
.article-content {
    padding: 80px 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.featured-image {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-text {
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e50;
}

.article-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #d4af37;
    border-radius: 0 10px 10px 0;
}

.article-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.article-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #34495e;
}

.article-text h4 {
    font-size: 1.2rem;
    margin: 25px 0 12px;
    color: #34495e;
    font-weight: 600;
}

.article-text ul,
.article-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-text li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.hotel-details,
.tips-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
}

.blog-services-grid {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px;
}

.service-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-item h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
    color: white;
}

.cta-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-benefits {
    margin: 25px 0;
}

.cta-benefits ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    text-align: left;
}

.cta-benefits li {
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
}

.cta-button {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.cta-button:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Related Articles */
.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

.related-articles h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.related-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.related-post .post-image {
    height: 150px;
    overflow: hidden;
}

.related-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post:hover .post-image img {
    transform: scale(1.05);
}

.related-post h4 {
    padding: 20px;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.3;
}

.related-post h4 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post h4 a:hover {
    color: #d4af37;
}

/* Blog Mobile Responsive */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.2rem;
    }
    
    .blog-hero p {
        font-size: 1.1rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .article-header h1 {
        font-size: 2.2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .featured-image img {
        height: 250px;
    }
    
    .cta-benefits ul {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 100px 0 60px;
    }
    
    .blog-hero h1 {
        font-size: 1.8rem;
    }
    
    .featured-posts,
    .blog-posts {
        padding: 60px 0;
    }
    
    .featured-posts h2,
    .blog-posts h2 {
        font-size: 2rem;
    }
    
    .article-header {
        padding: 100px 0 60px;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-content {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
}

/* Blog Footer Styles */
.blog-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.blog-footer .footer-section h4 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-footer .footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

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

.blog-footer .footer-section ul li a:hover {
    color: #d4af37;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #d4af37;
    border-radius: 50%;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #d4af37;
    width: 16px;
}

.cta-button-footer {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Blog Header Styles - Matching Main Site */
.blog-page .header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.blog-page .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.blog-page .nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.blog-page .nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.blog-page .nav-links a:hover,
.blog-page .nav-links a:focus {
    color: #0056b3;
}

.blog-page .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #007bff;
    transition: width 0.3s ease;
}

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

.blog-page .mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.blog-page .mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

/* Blog Language Selector */
.blog-page .language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 8px;
}

.blog-page .lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.blog-page .lang-btn.active {
    background: #0056b3;
    border-color: #0056b3;
    color: white;
}

.blog-page .lang-btn:hover,
.blog-page .lang-btn:focus {
    background: rgba(0, 86, 179, 0.15);
    border-color: #0056b3;
    color: #0056b3;
}

.blog-page .lang-btn img {
    width: 16px;
    height: 12px;
    border-radius: 2px;
}

/* Blog Content Spacing */
.blog-page .blog-hero {
    padding-top: 80px;
}

.blog-page main {
    padding-top: 80px;
}

/* Blog Mobile Menu Responsive */
@media (max-width: 768px) {
    .blog-page .nav {
        padding: 15px 20px;
    }
    
    .blog-page .nav-links {
        display: none;
    }
    
    .blog-page .mobile-menu-btn {
        display: flex;
    }
    
    .blog-page .language-selector {
        top: 15px;
        right: 15px;
    }
    
    .blog-page .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
}

/* Blog Footer Responsive */
@media (max-width: 768px) {
    .blog-footer .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Contact Page Styles */
.quick-actions {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.quick-actions h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.quick-actions h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 2px;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.action-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.action-buttons .btn-secondary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
}

.action-buttons .btn-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
}

.action-buttons .btn-outline {
    background: white;
    color: #007bff;
    border: 2px solid #007bff;
}

.action-buttons .btn-outline:hover {
    background: #007bff;
    color: white;
}

.service-areas {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-areas h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.service-areas > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.area-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.area-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.area-item h4 {
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.area-item h4::before {
    content: '📍';
    font-size: 1.2rem;
}

.area-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-item ul li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.5rem;
}

.area-item ul li:last-child {
    border-bottom: none;
}

.area-item ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
    transition: all 0.3s ease;
}

.area-item ul li:hover {
    color: #007bff;
    padding-left: 2rem;
}

.area-item ul li:hover::before {
    transform: translateX(5px);
}

/* Responsive Design for Contact Sections */
@media (max-width: 768px) {
    .quick-actions,
    .service-areas {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .action-buttons .btn {
        min-width: 100%;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .area-item {
        padding: 1.5rem;
    }
    
    .service-areas h3 {
        font-size: 1.5rem;
    }
    
    .quick-actions h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .quick-actions,
    .service-areas {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .area-item {
        padding: 1rem;
    }
    
    .area-item h4 {
        font-size: 1.1rem;
    }
    
    .area-item ul li {
        font-size: 0.9rem;
    }
}

/* Services Section - New Design */
.services-new {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
}

.services-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.services-header h2 {
    color: #1a1a1a;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    color: #6c757d;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.services-cluster {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.service-card-new {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-new:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-new:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
    transition: all 0.3s ease;
}

.service-card-new:hover .service-overlay {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(44, 62, 80, 0.4);
}

.service-content {
    padding: 35px 30px;
}

.service-content h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-content p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 400;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
}

.service-cta:hover {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
    color: white;
    text-decoration: none;
}

.service-cta::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-cta:hover::after {
    transform: translateX(3px);
}

.services-footer {
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.services-note {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-style: italic;
}

.services-footer .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary {
    border: 2px solid #2c3e50;
    color: #2c3e50;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.2);
}

/* Responsive Design for New Services */
@media (max-width: 768px) {
    .services-cluster {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .service-card-new {
        margin: 0 10px;
    }
    
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
    }
    
    .service-content p {
        font-size: 0.95rem;
    }
    
    .services-new {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .services-cluster {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card-new {
        margin: 0 5px;
    }
    
    .services-header h2 {
        font-size: 1.8rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-overlay {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        top: 15px;
        right: 15px;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .service-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .services-footer .btn {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
}
