/* Google Fonts - Squarespace Style */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
/* Great Vibes Font */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

:root {
    --primary-color: #40E0D0;
    /* Turquoise */
    --primary-dark: #00CED1;
    /* Dark Turquoise */
    --primary-light: #7FFFD4;
    /* Aquamarine */
    --accent-color: #3473d1;
    /* Blue accent */
    --bg-color: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --text-color: #2C2C2C;
    --text-muted: #6C757D;
    --border-color: #E9ECEF;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Buttons */
.btn-magic {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-magic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

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

.btn-magic:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.3);
}

.small-btn {
    padding: 12px 28px;
    font-size: 12px;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
    transition: opacity 0.3s;
}

.logo img:hover {
    opacity: 0.8;
}

nav ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content h1.magic-text {
    /* Great Vibes font with multi-tone gradient including turquoise */
    font-family: 'Great Vibes', cursive;
    background: linear-gradient(135deg, #04f5dd, #7FFFD4, #02f9fd, #40E0D0, #7FFFD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
    font-size: 90px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    color: #fff;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Christmas Banner */
.christmas-message {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    padding: 15px 30px;
    background: rgba(64, 224, 208, 0.3);
    border-radius: 25px;
    /* Bordes redondeados */
    display: inline-block;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(64, 224, 208, 0.5);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    /* Sombra pronunciada */
}

/* Sections */
.section-padding {
    padding: 120px 0;
    background-color: var(--bg-color);
}

.section-padding:nth-child(even) {
    background-color: var(--bg-secondary);
}

.section-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-color);
}

.magic-text {
    color: var(--primary-color);
    position: relative;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-card,
.about-text {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    /* Borde redondeado */
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    /* Sombra acentuada */
}

.about-card:hover,
.about-text:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.icon-box {
    margin-bottom: 30px;
}

.icon-box ion-icon {
    font-size: 56px;
    color: var(--primary-color);
}

.about-card h3,
.about-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-card p,
.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Services Section */
.services-grid {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 30px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    /* Firefox */
    -webkit-overflow-scrolling: touch;
}

.services-grid::-webkit-scrollbar {
    height: 8px;
}

.services-grid::-webkit-scrollbar-track {
    background: transparent;
}

.services-grid::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.service-card {
    min-width: 320px;
    flex: 0 0 320px;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 20px;
    /* Borde redondeado */
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    /* Sombreado acentuado */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

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

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

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

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

.service-info {
    padding: 40px 30px;
    text-align: center;
}

.service-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.service-info p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

/* Locations Section */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.location-card {
    height: 500px;
    border-radius: 20px;
    /* Borde redondeado */
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    /* Sombra acentuada */
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: var(--transition);
}

.location-card:hover::before {
    background: rgba(0, 0, 0, 0.3);
}

.location-card>* {
    position: relative;
    z-index: 2;
}

.location-icon ion-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.location-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.location-card p {
    font-size: 16px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

/* Careers Section */
.careers-content {
    background: var(--bg-secondary);
    padding: 80px 60px;
    border-radius: 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.careers-content p {
    font-size: 22px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-highlight {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px 40px;
    border-radius: 2px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.contact-highlight:hover {
    background: var(--primary-color);
    color: #fff;
}

.contact-highlight ion-icon {
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-highlight:hover ion-icon {
    color: #fff;
}

.contact-highlight p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

/* Christmas Gallery */
.christmas-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.video-card {
    background: #fff;
    border-radius: 20px;
    /* Borde redondeado */
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    /* Sombreado acentuado */
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-title {
    padding: 30px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: var(--text-color);
}

/* Footer */
footer {
    background-color: var(--text-color);
    padding: 80px 0 40px;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links h4,
.footer-social h4,
.footer-qr h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer QR Section */
.footer-qr {
    text-align: center;
}

.footer-qr img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    padding: 8px;
    background: #fff;
    transition: var(--transition);
    margin-bottom: 10px;
}

.footer-qr img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(64, 224, 208, 0.4);
}

.footer-qr p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Snowflakes - Subtle */
.snowflake {
    color: #40E0D0;
    /* Turquoise */
    opacity: 0.15;
    font-size: 1.2em;
    position: fixed;
    top: -10%;
    z-index: 50;
    user-select: none;
    cursor: default;
    animation-name: snowflakes-fall, snowflakes-shake;
    animation-duration: 12s, 4s;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite, infinite;
}

@keyframes snowflakes-fall {
    0% {
        top: -10%;
    }

    100% {
        top: 100%;
    }
}

@keyframes snowflakes-shake {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(80px);
    }
}

.snowflake:nth-of-type(0) {
    left: 1%;
    animation-delay: 0s, 0s;
}

.snowflake:nth-of-type(1) {
    left: 10%;
    animation-delay: 1s, 1s;
}

.snowflake:nth-of-type(2) {
    left: 20%;
    animation-delay: 6s, 0.5s;
}

.snowflake:nth-of-type(3) {
    left: 30%;
    animation-delay: 4s, 2s;
}

.snowflake:nth-of-type(4) {
    left: 40%;
    animation-delay: 2s, 2s;
}

.snowflake:nth-of-type(5) {
    left: 50%;
    animation-delay: 8s, 3s;
}

.snowflake:nth-of-type(6) {
    left: 60%;
    animation-delay: 6s, 2s;
}

.snowflake:nth-of-type(7) {
    left: 70%;
    animation-delay: 2.5s, 1s;
}

.snowflake:nth-of-type(8) {
    left: 80%;
    animation-delay: 1s, 0s;
}

.snowflake:nth-of-type(9) {
    left: 90%;
    animation-delay: 3s, 1.5s;
}

.snowflake:nth-of-type(10) {
    left: 25%;
    animation-delay: 2s, 0s;
}

.snowflake:nth-of-type(11) {
    left: 65%;
    animation-delay: 4s, 2.5s;
}

/* ==================== BOOKING SECTION ==================== */

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-info {
    background: var(--bg-secondary);
    padding: 50px 40px;
    border-radius: 0;
    border: 1px solid var(--border-color);
    height: fit-content;
}

.booking-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.booking-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-muted);
}

.booking-benefits ion-icon {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.booking-contact {
    background: #fff;
    padding: 25px;
    border-radius: 0;
    border: 1px solid var(--border-color);
    margin-top: 30px;
}

.booking-contact p {
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-muted);
}

.booking-contact a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.booking-contact a:hover {
    color: var(--primary-dark);
}

.booking-form-wrapper {
    background: #fff;
    padding: 50px 40px;
    border-radius: 0;
    border: 1px solid var(--border-color);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group label ion-icon {
    font-size: 18px;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    transition: var(--transition);
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group select {
    cursor: pointer;
}

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

.form-actions {
    margin-top: 10px;
}

.form-actions .btn-magic {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    padding: 18px 40px;
}

.form-actions .btn-magic ion-icon {
    font-size: 20px;
}

/* Booking Messages */
.booking-message {
    margin-top: 30px;
    padding: 20px 25px;
    border-radius: 0;
    font-size: 15px;
    line-height: 1.6;
    white-space: pre-line;
    border: 2px solid;
    animation: slideIn 0.3s ease;
}

.booking-message.success {
    background: rgba(64, 224, 208, 0.1);
    border-color: var(--primary-color);
    color: var(--text-color);
}

.booking-message.error {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #991b1b;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Validation States */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
    border-color: #fbbf24;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid {
    border-color: var(--primary-color);
}

/* Admin Access Link */
.admin-access {
    transition: opacity 0.3s ease;
}

.admin-access:hover {
    opacity: 1 !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 56px;
    }

    .hero-content h1.magic-text {
        font-size: 70px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .christmas-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    header {
        height: auto;
        padding: 20px 0;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content h1.magic-text {
        font-size: 52px;
    }

    .about-grid,
    .christmas-gallery,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .booking-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .booking-info {
        padding: 30px 20px;
        text-align: center;
    }

    .booking-info h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .booking-benefits li {
        justify-content: center;
    }

    .booking-contact {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Fix for Booking Inputs on Mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        font-size: 16px;
    }

    .booking-form-wrapper {
        padding: 30px 20px;
        box-sizing: border-box;
    }
}

/* Services Slider Styles */
.services-slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    /* Ancho máximo para que los botones no queden muy lejos */
    margin: 0 auto;
    padding: 0 40px;
    /* Espacio para los botones */
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.scroll-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 16px rgba(64, 224, 208, 0.3);
    border-color: var(--primary-color);
}

.scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Adjust services-grid for the new wrapper */
.services-grid {
    padding: 30px 5px !important;
    /* Ajustar padding para que no se corte el shadow */
}

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

    .scroll-btn {
        display: none;
        /* Ocultar botones en móvil, usar swipe nativo */
    }
}