:root {
    --primary: #0A4D8C;
    --secondary: #00A8E8;
    --accent: #00BCD4;
    --success: #10b981;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #8b95a5;
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient-blue: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-cyan: linear-gradient(90deg, #00A8E8 0%, #00BCD4 100%);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header */

header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 150px;
    height: 80px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-circle img {
    width: 130px;
    height: 70px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--secondary);
}

.btn-cta {
    background: var(--gradient-cyan) !important;
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.2);
    font-size: 0.9rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 232, 0.3);
}

.btn-cta::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    margin: 3px 0;
    transition: 0.3s;
}


/* Hero Section */

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: fadeInUp 0.6s ease backwards;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge:nth-child(1) {
    animation-delay: 0.1s;
}

.badge:nth-child(2) {
    animation-delay: 0.2s;
}

.badge:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Contact Info Bar */

.contact-bar {
    background: var(--primary);
    color: white;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.contact-item svg {
    width: 18px;
    /* Reducido de 20px */
    height: 18px;
    /* Reducido de 20px */
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.contact-item strong {
    font-weight: 600;
}


/* Services Section */

.services {
    padding: 80px 0;
    background: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 4rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 168, 232, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cyan);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}


/* ICONOS MÁS PEQUEÑOS - ACTUALIZADO */

.service-icon {
    width: 50px;
    /* Reducido de 70px */
    height: 50px;
    /* Reducido de 70px */
    margin: 0 auto 1.2rem;
    /* Reducido el margen inferior */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    /* Reducido de 1.8rem */
    transition: var(--transition);
    color: white;
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 24px;
    /* Reducido de 28px */
    height: 24px;
    /* Reducido de 28px */
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    /* Ligeramente reducido */
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-top: 1.2rem;
    /* Reducido de 1.5rem */
}

.service-list li {
    padding: 0.5rem 0;
    /* Reducido de 0.6rem */
    color: var(--light-gray);
    position: relative;
    padding-left: 25px;
    /* Reducido de 30px */
    font-size: 0.88rem;
    /* Reducido de 0.9rem */
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    /* Reducido de 18px */
    height: 16px;
    /* Reducido de 18px */
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300A8E8' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: contain;
}


/* Packages Section */

.packages {
    padding: 80px 0;
    background: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary);
}

.package-card.featured {
    border-color: var(--secondary);
    background: linear-gradient(135deg, #f8fdff 0%, #f0faff 100%);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00A8E8, #00BCD4);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}


/* ICONOS DE PAQUETES MÁS PEQUEÑOS */

.package-icon {
    font-size: 2.2rem;
    /* Reducido de 2.8rem */
    margin-bottom: 0.8rem;
    /* Reducido de 1rem */
    color: var(--primary);
    opacity: 0.9;
}

.package-icon svg {
    width: 40px;
    /* Reducido */
    height: 40px;
    /* Reducido */
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.package-card h3 {
    font-size: 1.4rem;
    /* Reducido de 1.5rem */
    color: var(--primary);
    margin-bottom: 0.8rem;
    /* Reducido de 1rem */
    font-weight: 700;
}

.package-price {
    font-size: 2.8rem;
    /* Reducido de 3rem */
    font-weight: 800;
    color: #00A8E8;
    margin: 1.2rem 0 1.8rem 0;
    /* Ajustado */
    position: relative;
    display: inline-block;
}

.package-price::before {
    content: '$';
    font-size: 1.3rem;
    /* Reducido de 1.5rem */
    position: absolute;
    left: -18px;
    /* Ajustado */
    top: 0;
}

.package-includes {
    list-style: none;
    margin: 1.8rem 0 2.2rem 0;
    /* Ajustado */
}

.package-includes li {
    padding: 0.7rem 0;
    /* Reducido de 0.8rem */
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    /* Reducido de 12px */
    font-size: 0.92rem;
    /* Reducido de 0.95rem */
}

.package-includes li::before {
    content: '';
    width: 18px;
    /* Reducido de 20px */
    height: 18px;
    /* Reducido de 20px */
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2310b981' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: contain;
    flex-shrink: 0;
}


/* Botón Agendar de Paquetes */

.btn-package {
    display: block;
    width: 100%;
    padding: 0.9rem;
    /* Reducido de 1rem */
    background: var(--gradient-cyan);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    /* Reducido de 1rem */
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 232, 0.35);
}

.btn-package::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-package:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }
    20% {
        transform: scale(25, 25);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}


/* Booking Section */

.booking {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.booking-info {
    color: white;
}

.booking-info h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.booking-info p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Reducido de 18px */
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 1rem 1.2rem;
    /* Reducido */
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.feature-icon {
    width: 45px;
    /* Reducido de 50px */
    height: 45px;
    /* Reducido de 50px */
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    /* Reducido de 1.5rem */
    color: white;
}

.feature-icon svg {
    width: 22px;
    /* Reducido */
    height: 22px;
    /* Reducido */
    stroke: white;
    stroke-width: 2;
    fill: none;
}


/* Formulario */

.booking-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #e0e5eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    background: white;
    color: var(--dark);
}

.form-group input::placeholder {
    color: #a0aec0;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}


/* Estado de Horarios */

.horario-status {
    margin: 1.5rem 0;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.horario-status p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


/* Botón Submit */

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    background: linear-gradient(90deg, #9ca3af, #6b7280);
    cursor: not-allowed;
    box-shadow: none;
}

.btn-submit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-submit:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}


/* Services Slider */

.services-slider {
    padding: 80px 0;
    background: var(--white);
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 500px;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.slide:nth-child(1) .slide-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1582750433449-648ed127bb54?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
}

.slide:nth-child(2) .slide-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1559757175-0eb30cd8c063?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
}

.slide:nth-child(3) .slide-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1582719508461-905c673771fd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
}

.slide:nth-child(4) .slide-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1551601651-2a8555f1a136?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
}

.slide-content {
    color: white;
    max-width: 700px;
    z-index: 2;
    position: relative;
}

.slide-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.slide-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.slide-content {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards 0.3s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Sección de Ubicación */

.location-section {
    padding: 80px 0;
    background: var(--light);
    position: relative;
}

.location-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 450px;
    position: relative;
}

.map-frame {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border-left: 4px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 168, 232, 0.15);
}

.location-icon {
    width: 55px;
    /* Reducido de 60px */
    height: 55px;
    /* Reducido de 60px */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    /* Reducido de 1.2rem */
    color: white;
    position: relative;
}

.location-icon svg {
    width: 25px;
    /* Reducido de 28px */
    height: 25px;
    /* Reducido de 28px */
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.location-card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    /* Reducido de 1.3rem */
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.location-card p {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
    /* Reducido de 0.95rem */
    line-height: 1.6;
}

.location-detail {
    color: var(--gray) !important;
    font-size: 0.85rem !important;
    font-style: italic;
    margin-top: 0.5rem;
}

.location-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Reducido de 12px */
    background: var(--gradient-cyan);
    color: white;
    padding: 0.9rem 1.5rem;
    /* Reducido */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 1.2rem;
    /* Reducido de 1.5rem */
    font-size: 0.95rem;
    /* Reducido de 1rem */
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.25);
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 232, 0.35);
}

.location-btn svg {
    width: 18px;
    /* Reducido de 20px */
    height: 18px;
    /* Reducido de 20px */
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.directions-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.directions-section h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.directions-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--secondary);
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.direction-item {
    display: flex;
    gap: 1.2rem;
    /* Reducido de 1.5rem */
    align-items: flex-start;
}

.direction-number {
    width: 40px;
    /* Reducido de 45px */
    height: 40px;
    /* Reducido de 45px */
    background: var(--gradient-cyan);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    font-size: 1.1rem;
    /* Reducido de 1.2rem */
    position: relative;
    z-index: 1;
}

.direction-number::before {
    content: '';
    position: absolute;
    width: 48px;
    /* Reducido de 55px */
    height: 48px;
    /* Reducido de 55px */
    background: rgba(0, 168, 232, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.direction-text {
    color: var(--dark);
    line-height: 1.7;
    font-size: 0.92rem;
    /* Reducido de 0.95rem */
    padding-top: 0.3rem;
    /* Reducido de 0.5rem */
}

.direction-text strong {
    color: var(--primary);
    font-weight: 700;
}


/* Footer */

footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1.5rem;
    border-top: 4px solid var(--secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--secondary);
    margin-bottom: 1.2rem;
    /* Reducido de 1.5rem */
    font-size: 1.2rem;
    /* Reducido de 1.3rem */
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-section p {
    font-size: 0.92rem;
    /* Reducido de 0.95rem */
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section strong {
    color: white;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}


/* Responsive */

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .location-wrapper {
        grid-template-columns: 1fr;
    }
    .booking-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 100px 0;
        z-index: 999;
        justify-content: flex-start;
        gap: 2rem;
    }
    .nav-links.active {
        left: 0;
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .slider-track {
        height: 400px;
    }
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    .service-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        margin-top: 70px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    .services,
    .packages,
    .services-slider,
    .location-section,
    .booking {
        padding: 60px 0;
    }
    .booking-form {
        padding: 2rem;
    }
    .booking-info h2 {
        font-size: 2.2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .slider-track {
        height: 350px;
    }
    .slide-content h3 {
        font-size: 1.8rem;
    }
    .packages-grid {
        gap: 1.5rem;
    }
    .package-card {
        padding: 2rem;
    }
    .package-price {
        font-size: 2.5rem;
    }
    .slider-container {
        padding: 0 20px;
    }
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    .service-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.7rem;
    }
    .badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    .hero-badges {
        gap: 1rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .service-card {
        padding: 2rem 1.5rem;
    }
    .service-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .service-icon svg {
        width: 18px;
        height: 18px;
    }
    .package-card {
        padding: 1.8rem 1.5rem;
    }
    .package-price {
        font-size: 2.2rem;
    }
    .slider-track {
        height: 300px;
    }
    .slide-image {
        padding: 2rem;
    }
    .slide-content h3 {
        font-size: 1.5rem;
    }
    .booking-form {
        padding: 1.8rem 1.5rem;
    }
    .booking-info h2 {
        font-size: 1.8rem;
    }
    .feature-item {
        padding: 1rem 1.2rem;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .contact-item {
        width: 100%;
        justify-content: flex-start;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .location-icon {
        width: 50px;
        height: 50px;
    }
    .location-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .slider-track {
        height: 280px;
    }
    .slide-content h3 {
        font-size: 1.3rem;
    }
    .slide-content p {
        font-size: 0.95rem;
    }
    .location-card {
        padding: 1.5rem;
    }
    .directions-section {
        padding: 1.8rem 1.5rem;
    }
    .direction-item {
        gap: 1rem;
    }
    .direction-number {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .direction-number::before {
        width: 45px;
        height: 45px;
    }
    .service-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    .service-icon svg {
        width: 16px;
        height: 16px;
    }
}


/* ================================================== */


/* CLINICAL STUDIES SECTION STYLES                    */


/* ================================================== */

.studies-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}


/* Search Bar */

.studies-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
}

.studies-search svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #6c757d;
    pointer-events: none;
}

.studies-search input {
    width: 100%;
    padding: 15px 20px 15px 55px;
    border: 2px solid #dee2e6;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.studies-search input:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}


/* Categories */

.studies-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 24px;
    border: 2px solid #dee2e6;
    background: white;
    color: #495057;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: #0056b3;
    color: #0056b3;
    transform: translateY(-2px);
}

.category-btn.active {
    background: #0056b3;
    color: white;
    border-color: #0056b3;
}


/* Studies Grid */

.studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.study-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.study-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #0056b3;
}

.study-name {
    font-size: 15px;
    font-weight: 600;
    color: #212529;
    flex: 1;
}

.study-tag {
    font-size: 12px;
    padding: 6px 12px;
    background: #e7f3ff;
    color: #0056b3;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 12px;
}


/* No Results */

.no-results {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.no-results svg {
    width: 64px;
    height: 64px;
    color: #adb5bd;
    margin-bottom: 20px;
}

.no-results p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 20px;
}


/* Studies CTA */

.studies-cta {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.studies-cta p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 20px;
    font-weight: 600;
}

.studies-cta .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #0056b3;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.studies-cta .btn-primary:hover {
    background: #004494;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}


/* Responsive Design */

@media (max-width: 768px) {
    .studies-section {
        padding: 60px 0;
    }
    .studies-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .studies-categories {
        gap: 8px;
    }
    .category-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    .study-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .study-tag {
        margin-left: 0;
    }
    .studies-search input {
        font-size: 14px;
        padding: 12px 16px 12px 50px;
    }
}

@media (max-width: 480px) {
    .studies-search input {
        padding: 10px 12px 10px 45px;
    }
    .studies-search svg {
        width: 18px;
        height: 18px;
        left: 15px;
    }
    .section-title {
        font-size: 28px;
    }
    .section-subtitle {
        font-size: 16px;
    }
}