/* Reset and Base Styles - Charlie MUA Force Mobile v1754496700 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 300;
    background-color: #000000;
    color: #000000;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Iowan Old Style', 'Times New Roman', Georgia, serif;
    font-weight: 400;
    font-style: italic;
    color: #000000;
    letter-spacing: 2px;
}

/* Navigation - Updated colors */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #d5c6c1 !important;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    width: 100%;
    margin: 0;
    padding: 0 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.nav-logo h1 {
    font-size: 1.8rem;
    color: #000000;
}

.nav-favicon {
    height: 40px;
    width: 40px;
    display: block;
    object-fit: contain;
}

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

.nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'Iowan Old Style', 'Times New Roman', Georgia, serif;
    font-style: italic;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #000000;
}

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

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

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

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #f5efef;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: translateY(0) scale(0.9);
    will-change: transform;
}

/* Specific styles for video background */
.hero-bg video,
video.hero-bg {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    background-size: cover;
    object-fit: cover;
}

/* Desktop/Tablet video - show by default, hide on mobile */
.hero-bg-mobile {
    display: none;
}

.hero-bg-desktop {
    display: block;
}

/* Hero Logo Centered */
.hero-logo-centered {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
    transform: none;
    width: clamp(180px, 28vw, 360px);
    height: auto;
    z-index: 100 !important;
    pointer-events: none;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    z-index: 2;
    text-align: right;
}

.hero-title {
    font-size: 6rem !important;
    font-weight: bold;
    color: #000000;
    white-space: nowrap;
    margin-bottom: 0;
    text-shadow: none;
    opacity: 1;
    border-right: 2px solid black;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: #000000;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff3dec, #ff6b9d);
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 61, 236, 0.3);
}

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

/* Services Section */
.services {
    padding: 6rem 0;
    background: #d5c6c1;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    color: #000000;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 4rem;
    color: #000000;
    width: 100%;
    display: block;
}

.section-title.typewriter-section {
    font-size: 4rem !important;
    font-weight: bold;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid black;
    width: 0;
    display: inline-block;
    margin: 0 auto 4rem auto;
    animation: none;
}

.typewriter-container {
    text-align: center;
    width: 100%;
    margin-bottom: 4rem;
}

.section-title.typewriter-section.animate {
    animation: 
        typing-section 3s steps(9) 0.5s forwards,
        blink 1s infinite;
}

/* Services Carousel Styles - DESKTOP ONLY */
@media (min-width: 769px) {
    .services-carousel-container {
        position: relative;
        width: 100%;
        margin-top: 3rem;
        padding: 0 4rem;
    }

    .services-carousel {
        overflow: hidden;
        width: 100%;
        border-radius: 15px;
    }

    .services-track {
        display: flex;
        transition: transform 0.4s ease;
        gap: 2rem;
        width: 100%;
    }
    
    .service-card {
        flex: 0 0 350px;
        min-width: 350px;
    }
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f5efef;
    border: 2px solid rgba(0, 0, 0, 0.2);
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: #f5efef;
    border-color: #000000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.service-card {
    background: #a094aa;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(255, 255, 255, 0.2),
        0 0 20px rgba(255, 255, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}



.card-image-container {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    opacity: 1;
    visibility: visible;
}

/* Specific adjustment for eventos image - larger scale */
.service-card[data-service="eventos"] .service-image {
    object-fit: cover;
    object-position: center;
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.service-card[data-service="eventos"]:hover .service-image {
    transform: scale(1.25);
}

.service-title {
    padding: 1.5rem;
    font-size: 1.2rem;
    text-align: center;
    color: #000000;
    font-weight: bold;
}

/* Services Two Cards Layout */
.services-two-cards {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

.service-card-v2 {
    flex: 1;
    max-width: 420px;
    background: #000000;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.service-card-v2 .card-image-container {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.service-card-v2 .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-card-v2 .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    padding: 1.2rem 1.5rem;
    text-align: center;
}

.card-image-contain {
    background-color: #000000;
}

.service-image-contain {
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
}

.service-title-v2 {
    font-size: 1.3rem;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    display: block;
}

@media (max-width: 768px) {
    .services-two-cards {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .service-card-v2 {
        max-width: 100%;
        width: 100%;
    }
    
    .service-card-v2 .card-image-container {
        height: 300px;
    }
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.service-modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 2px solid #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2);
}

/* ULTRA SPECIFIC MODAL TEXT STYLES */
#serviceModal #modalTitle {
    color: #a094aa !important;
    font-size: 1.8rem !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
    visibility: visible !important;
}

#serviceModal #modalDescription {
    color: #ffffff !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* All modals now use white styling */

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.modal-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    display: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-image.show {
    display: block !important;
}

.service-modal .modal-content .modal-title,
#modalTitle {
    font-size: 1.8rem !important;
    margin-bottom: 1.5rem;
    color: #a094aa !important;
    text-align: center;
}

.service-modal .modal-content .modal-description,
#modalDescription {
    font-size: 1rem !important;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ffffff !important;
    opacity: 1 !important;
}

.modal-cta {
    width: 100%;
    padding: 1rem;
    background: #f5efef;
    color: #000000;
    border: 2px solid #f5efef;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4);
}

.modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 20px rgba(245, 239, 239, 0.5),
        0 0 25px rgba(245, 239, 239, 0.8),
        0 0 50px rgba(245, 239, 239, 0.6);
}

/* Removed specific iniciacion button styles - all buttons now use white styling */

/* Testimonials Section - New Design */
.testimonials {
    padding: 6rem 0;
    background: #000000;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: #d5c6c1;
    z-index: 1;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 80px;
    background: repeating-linear-gradient(
        45deg,
        #d5c6c1 0px,
        #d5c6c1 10px,
        #000000 10px,
        #000000 20px
    );
    z-index: 2;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.testimonials-content {
    padding: 0;
    color: #000000;
    width: 100%;
}

.testimonials-content .section-title {
    font-family: 'Iowan Old Style', 'Times New Roman', Georgia, serif;
    font-size: 4rem;
    color: #000000;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 0.9;
    font-style: italic;
}

/* testimonials-subtitle moved to inline HTML for better control */

.testimonials-list {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial.active {
    display: block;
}

.testimonial-content-wrapper {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #000000;
    border-radius: 15px;
    padding: 2rem;
    border: 3px solid #ffffff;
    min-height: 200px;
}

.testimonial-image-box {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #000000;
    background: #ffffff;
    position: relative;
}

.testimonial-mini-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    transform: none !important;
}

.testimonial-image-box:hover .testimonial-mini-image {
    transform: scale(1.1);
}

.testimonial-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}

.testimonial-author {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: bold;
    text-align: right;
    margin: 0;
    margin-top: auto;
}

.testimonial-service {
    display: block;
    font-size: 0.82rem;
    color: #ffffff;
    font-weight: normal;
    text-align: center;
    margin-top: 2px;
    letter-spacing: 0.02em;
}

.testimonial-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.nav-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 3px solid #000000;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active,
.nav-dot:hover {
    background: #000000;
    transform: scale(1.2);
    border-color: #ffffff;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: #d5c6c1;
    color: #000000;
}

/* ULTRA SPECIFIC GALLERY TITLE - FORCE BLACK COLOR */
#gallery-title {
    color: #000000 !important;
    text-align: center !important;
    margin-bottom: 4rem !important;
    font-family: 'Iowan Old Style', 'Times New Roman', Georgia, serif !important;
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    font-weight: bold !important;
    text-shadow: none !important;
    background: transparent !important;
    letter-spacing: 2px !important;
    width: 100% !important;
    display: block !important;
}

/* MAXIMUM PRIORITY - OVERRIDE EVERYTHING */
h2[id="gallery-title"] {
    color: #000000 !important;
}

#gallery h2,
#gallery .section-title,
.gallery h2,
.gallery .section-title,
section.gallery h2,
section.gallery .section-title {
    color: #000000 !important;
    text-align: center !important;
    margin-bottom: 4rem !important;
    font-family: 'Iowan Old Style', 'Times New Roman', Georgia, serif !important;
    font-size: 4rem !important;
    font-weight: 800 !important;
    text-shadow: none !important;
    background: transparent !important;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    transition: all 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.gallery-image:hover {
    transform: translateY(-5px);
}


.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Gallery Caption */
.gallery-caption {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    color: #000000;
    text-align: left;
    margin-top: 0.5rem;
    padding: 0;
    line-height: 1.5;
    font-weight: normal;
    position: relative;
    z-index: 10;
    background: transparent;
    width: 100%;
}

/* Gallery Parallax Containers - Uniform Size */
.gallery-item-parallax {
    position: relative;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
    transition: box-shadow 0.3s ease;
    height: 350px;
}

.gallery-parallax-bg {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translateY(0);
    will-change: transform;
    border-radius: 0;
    transition: none;
}

.gallery-parallax-bg.gallery-image {
    min-height: unset;
    border-radius: 0;
    position: relative;
    z-index: 1;
    height: 100%;
    object-fit: cover;
}

.gallery-parallax-bg.gallery-image:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #d5c6c1;
}

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

.contact-content-simple {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-info-centered {
    text-align: center;
    max-width: 600px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #000000;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-item i {
    color: #000000;
    width: 20px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff3dec, #ff6b9d);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 61, 236, 0.3);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 61, 236, 0.2);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #d5c6c1;
    border: 1px solid rgba(245, 239, 239, 0.3);
    border-radius: 8px;
    color: #000000;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f5efef;
    box-shadow: 0 0 0 3px rgba(245, 239, 239, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #ff3dec, #ff6b9d);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 61, 236, 0.3);
}

/* Booking CTA Section */
.booking-cta-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.booking-cta-section h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.booking-cta-section p {
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.booking-cta-button {
    background: #f5efef !important;
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: #f5efef !important;
}

.booking-cta-button i {
    font-size: 1.2rem;
    color: #000000;
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    background: #d5c6c1;
    color: #000000;
    text-align: center;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: stretch;
}

.newsletter-input-group input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.3);
    color: #000000;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input-group input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.newsletter-input-group input[type="email"]:focus {
    border-color: #000000;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.newsletter-submit-btn {
    padding: 1rem 2rem;
    background: #f5efef;
    color: #000000;
    border: none;
    border-radius: 50px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: #f5efef;
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 1rem;
    text-align: center;
}

.newsletter-message {
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.newsletter-message.success {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.newsletter-message.error {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.newsletter-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.newsletter-input-group input[type="email"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Footer */
.footer {
    padding: 3rem 0 1rem;
    background: #f5efef;
    color: #000000;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.footer-section h3 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #000000;
    text-transform: uppercase;
}

.footer-section:last-child h3 {
    text-align: center;
}

.footer-section:last-child .footer-social-links {
    align-items: flex-start;
}

.footer-section p {
    color: #000000;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #000000;
}

.footer-contact-item i {
    width: 20px;
    color: #000000;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: #000000;
    opacity: 0.7;
}

.footer-social-link i {
    width: 20px;
    font-size: 1.2rem;
}

.footer-services-list {
    list-style: none;
    padding: 0;
}

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

.footer-services-list a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-services-list a:hover {
    color: #000000;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.footer-bottom-link {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #000000;
}

.footer-powered {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.footer-powered p {
    color: #000000;
    font-size: 0.8rem;
    opacity: 0.6;
    margin: 0;
}

.powered-link {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.powered-link:hover {
    color: #000000;
    text-decoration: underline;
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Typewriter animations handled by JavaScript */

@keyframes blink {
    0%, 50% { border-color: white; }
    51%, 100% { border-color: transparent; }
}

@keyframes typing-section {
    0% { width: 0; }
    100% { width: 9ch; }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    animation: slideUp 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.slide-up-delay {
    opacity: 0;
    animation: slideUp 1s ease forwards;
}

/* Force carousel display on mobile - Override any conflicting styles */
@media (max-width: 768px) {
    /* Ensure NO grid layout for services on mobile */
    .services-grid {
        display: none !important;
    }

    /* FORCE HORIZONTAL CAROUSEL ON MOBILE - DEBUG */
    .services {
        overflow-x: hidden !important;
        position: relative !important;
    }
    
    .services .container {
        width: 100% !important;
        max-width: none !important;
        overflow: visible !important;
    }
    
    /* Debug: Make sure no elements are hidden */
    .services-carousel-container,
    .services-carousel,
    .services-track,
    .service-card {
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    /* Force track to be flex row */
    .services-track {
        display: flex !important;
    }

    /* Responsive Design */
    /* Mobile adjustments */
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-bg {
        object-fit: cover !important;
        object-position: center center !important;
        position: absolute !important;
        height: 100vh !important;
        width: 100vw !important;
        min-height: 100% !important;
        min-width: 100% !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 0 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero {
        background-color: #d5c6c1 !important;
    }
    
    .hero-parallax {
        z-index: 0 !important;
    }
    
    .hero-content {
        z-index: 10 !important;
        position: relative !important;
    }
    
    .hero-logo-centered {
        width: clamp(220px, 60vw, 350px);
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #d5c6c1;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

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

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

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* MOBILE CAROUSEL - ONLY FOR TABLET AND UP */
    .services-carousel-container {
        position: relative !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        padding: 0 !important;
        display: block !important;
        overflow: hidden !important;
        z-index: 1 !important;
        height: auto !important;
    }
    
    .services-carousel {
        overflow: hidden !important;
        width: 100% !important;
        display: block !important;
        position: relative !important;
        margin: 0 !important;
        padding: 0 50px !important;
    }
    
    .services-track {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 20px !important;
        transition: transform 0.5s ease !important;
        width: fit-content !important;
        align-items: stretch !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .service-card {
        flex: none !important;
        width: calc(100vw - 100px) !important;
        min-width: calc(100vw - 100px) !important;
        max-width: calc(100vw - 100px) !important;
        display: block !important;
        height: auto !important;
        margin: 0 !important;
        position: relative !important;
    }
    
    .carousel-nav {
        width: 45px !important;
        height: 45px !important;
        display: flex !important;
        background: #f5efef !important;
        color: #000000 !important;
        border: 2px solid rgba(0, 0, 0, 0.1) !important;
        z-index: 100 !important;
        font-size: 1.1rem !important;
    }
    
    .carousel-nav:hover {
        background: #f5efef !important;
        color: #000000 !important;
        border-color: #000000 !important;
        transform: translateY(-50%) scale(1.05) !important;
    }
    
    .carousel-prev {
        left: 0.5rem !important;
    }
    
    .carousel-next {
        right: 0.5rem !important;
    }

    .testimonials-container {
        padding: 0 1rem;
    }

    .testimonial-content-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        text-align: center;
    }

    .testimonial-image-box {
        width: 60px;
        height: 60px;
        align-self: center;
        margin-bottom: 0.5rem;
    }

    .testimonial-text-content {
        text-align: center;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .testimonial-author {
        text-align: center;
        font-size: 1rem;
    }

    /* testimonials-subtitle now handled in HTML */

    /* Make ELLAS title bigger on mobile */
    .testimonials h2 {
        font-size: clamp(4rem, 13vw, 7rem) !important;
        margin-bottom: 1rem !important;
        padding: 0 0.5rem !important;
        line-height: 0.85 !important;
    }

    .testimonials-container {
        padding: 0 0.5rem;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        grid-template-areas: none;
    }
    
    .gallery-item:nth-child(n) {
        grid-area: auto;
    }

    .gallery-item-parallax {
        min-height: auto;
    }
    
    .gallery-caption {
        font-size: 0.85rem;
        margin-top: 0.75rem;
    }

    .hero-title {
        font-size: 3rem;
    }



    .section-title.typewriter-section {
        font-size: 3rem !important;
    }

    @keyframes typing-section {
        0% { width: 0; }
        100% { width: 9ch; }
    }

    .hero-content {
        bottom: 2rem;
        right: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }

    /* Newsletter Mobile */
    .newsletter {
        padding: 3rem 0;
    }

    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-submit-btn {
        justify-content: center;
        padding: 1rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section:last-child h3 {
        text-align: center;
    }
    
    .footer-section:last-child .footer-social-links {
        align-items: flex-start;
    }

    .footer-social-links {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    /* Force Charlie MUA display in small mobile */
    .hero-title.typewriter {
        font-size: 2.5rem !important;
        animation: 
            typing-small-mobile 3s steps(11) 1s forwards !important,
            blink 1s infinite !important;
        width: 0 !important;
        letter-spacing: 0.05em !important;
    }

    .gallery-item-parallax {
        min-height: auto;
    }
    
    .gallery-caption {
        font-size: 0.8rem;
        margin-top: 0.5rem;
        padding: 0;
    }

    /* Extra mobile optimization for testimonials */
    .testimonials h2 {
        font-size: clamp(3.5rem, 12vw, 6rem) !important;
        margin-bottom: 0.5rem !important;
        padding: 0 0.5rem !important;
    }

    /* testimonials-subtitle now handled in HTML */

    @keyframes typing-small-mobile {
        0% { width: 0 !important; }
        100% { width: 11.2ch !important; }
    }

    .container {
        padding: 0 1rem;
    }

    .services {
        padding: 4rem 0;
    }

    .testimonials {
        padding: 4rem 0;
    }

    .contact {
        padding: 3rem 0 4rem 0;
    }
    
    .contact h2 {
        margin-bottom: 1.5rem;
    }

    .gallery {
        padding: 4rem 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .gallery-item-parallax {
        height: 300px;
    }

    .gallery-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .gallery-parallax-bg {
        height: 100%;
        object-fit: cover;
    }

    .hero-content {
        bottom: 1.5rem;
        right: 1.5rem;
    }

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

    .hero-title.typewriter {
        font-size: 2.5rem !important;
        animation: 
            typing 3s steps(11) 1s forwards,
            blink 1s infinite;
        letter-spacing: 0.1em;
    }

    @keyframes typing {
        0% { width: 0; }
        100% { width: 11.5ch; }
    }

    .section-title.typewriter-section {
        font-size: 2.5rem !important;
    }

    @keyframes typing-section {
        0% { width: 0; }
        100% { width: 10ch; }
    }

    /* ULTRA DRASTIC MOBILE CAROUSEL - COMPLETE OVERRIDE */
    .services-carousel-container {
        position: relative !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        padding: 0 !important;
        display: block !important;
        overflow: hidden !important;
        z-index: 1 !important;
        height: auto !important;
    }
    
    .services-carousel {
        overflow: hidden !important;
        width: 100% !important;
        display: block !important;
        position: relative !important;
        margin: 0 !important;
        padding: 0 40px !important;
    }
    
    .services-track {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 15px !important;
        transition: transform 0.5s ease !important;
        width: fit-content !important;
        align-items: stretch !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .service-card {
        flex: none !important;
        width: calc(100vw - 80px) !important;
        min-width: calc(100vw - 80px) !important;
        max-width: calc(100vw - 80px) !important;
        display: block !important;
        height: auto !important;
        margin: 0 !important;
        position: relative !important;
    }
    
    .carousel-nav {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
        display: flex !important;
        background: #f5efef !important;
        color: #000000 !important;
        border: 2px solid rgba(0, 0, 0, 0.1) !important;
        z-index: 100 !important;
    }
    
    .carousel-nav:hover {
        background: #f5efef !important;
        color: #000000 !important;
        border-color: #000000 !important;
        transform: translateY(-50%) scale(1.05) !important;
    }
    
    .carousel-prev {
        left: 0.25rem !important;
    }
    
    .carousel-next {
        right: 0.25rem !important;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Parallax Elements */
.parallax-element {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Smooth Transitions */
* {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Booking Modal Styles */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal-content {
    background: #2d2d2d;
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #f5efef;
    animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2.5rem;
}

.modal-header {
    padding: 0 0 1.5rem 0;
    border-bottom: 1px solid rgba(245, 239, 239, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #f5efef;
    font-weight: 400;
    font-style: italic;
    font-size: 1.5rem;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: #f5efef;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background: rgba(245, 239, 239, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 1.5rem 0 0 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #f5efef;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: #d5c6c1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #000000;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #f5efef;
    background: #d5c6c1;
    box-shadow: 0 0 0 3px rgba(245, 239, 239, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.available-slots {
    margin-top: 1rem;
}

.available-slots h4 {
    color: #f5efef;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
}

.time-slot {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.time-slot:hover {
    background: rgba(245, 239, 239, 0.2);
    border-color: #f5efef;
}

.time-slot.active,
.time-slot-btn.active {
    background: #f5efef;
    border-color: #f5efef;
    color: #000000;
}

/* New time slot button styles */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.time-slot-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.time-slot-btn:hover {
    background: rgba(245, 239, 239, 0.2);
    border-color: #f5efef;
}

/* Status messages */
.loading-slots,
.no-slots,
.error-message {
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.loading-slots {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.no-slots {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.error-message {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Booking status messages */
.booking-status {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.booking-status.loading {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.booking-status.success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.booking-status.error {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
}

.btn-primary {
    background: #f5efef;
    color: #000000;
}

.btn-primary:hover {
    background: #f5efef;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:disabled {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: #f5efef;
    color: #000000;
    border: 1px solid #f5efef;
}

.btn-secondary:hover {
    background: #f5efef;
    border-color: #f5efef;
}

.error-message {
    color: #ff4757;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    color: #ff4757;
    margin-bottom: 1rem;
}

.loading {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem;
}

.no-slots {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* Calendar Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.booking-modal-content {
    background: #2d2d2d;
    padding: 2.5rem;
    border: 2px solid #f5efef;
    border-radius: 20px;
    width: 90%;
    max-width: 540px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.booking-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #f5efef;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.booking-modal-close:hover {
    background: rgba(245, 239, 239, 0.1);
    transform: rotate(90deg);
}

.booking-modal h2 {
    color: #f5efef;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
    text-shadow: none;
    font-weight: 400;
    font-style: italic;
}

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

.booking-form label {
    display: block;
    color: #f5efef;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.booking-form select option {
    background: #f5efef;
    color: #000000;
    padding: 0.5rem;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #f5efef;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 0 3px rgba(245, 239, 239, 0.2);
}

.booking-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-cancel,
.btn-book {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cancel {
    background: transparent;
    color: #f5efef;
    border: 2px solid #f5efef;
}

.btn-book {
    background: #f5efef;
    color: #000000;
    border: 2px solid #f5efef;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(245, 239, 239, 0.4);
}

.booking-status {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
}

.booking-status.success {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4caf50;
    color: #4caf50;
}

.booking-status.error {
    background: rgba(244, 67, 54, 0.2);
    border: 2px solid #f44336;
    color: #f44336;
}

/* Mobile Optimizations for Contact and Modal */
@media (max-width: 768px) {
    .contact-content-simple {
        margin-top: 1rem;
    }
    
    .contact-info-centered {
        padding: 0 1rem;
    }
    
    .contact-info-item {
        margin-bottom: 1rem;
    }
    
    .booking-cta-section {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .booking-cta-section h3 {
        font-size: 1.5rem;
    }
    
    .booking-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .booking-modal {
        padding: 1rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .booking-modal-content {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 95%;
        max-height: 88vh;
        border-radius: 15px;
    }
    
    .booking-modal h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .booking-modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.8rem;
    }
    
    .booking-actions {
        flex-direction: column;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 1rem;
    }
    
    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.3rem;
    }
    
    .time-slot {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* CRITICAL: Force booking button color override - must be last */
a.booking-cta-button,
button.booking-cta-button,
.booking-cta-button,
.booking-cta-button:link,
.booking-cta-button:visited,
.booking-cta-button:hover,
.booking-cta-button:active,
.booking-cta-button:focus {
    background: #f5efef !important;
    background-image: none !important;
    background-color: #f5efef !important;
}

.booking-cta-button::before,
.booking-cta-button::after {
    content: none !important;
    background: none !important;
} 

/* Optimizaciones adicionales para móvil */
@media (max-width: 768px) {
    /* Testimonios móvil */
    .testimonial-content-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .instagram-story-ring {
        width: 90px;
        height: 90px;
        margin: 0 auto;
    }
    
    .testimonial-image-box {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .testimonial-mini-image {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .testimonial-author {
        font-size: 1.1rem;
    }
    
    /* Navegación móvil */
    .nav {
        padding: 0.75rem 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Optimizaciones para móviles pequeños */
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .testimonial-image-box {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-mini-image {
        width: 70px;
        height: 70px;
    }
    
    .nav-links {
        gap: 0.5rem;
        font-size: 0.85rem;
    }
}

/* Optimizaciones para pantallas muy pequeñas */
@media (max-width: 375px) {
    .gallery-grid {
        padding: 0 0.75rem;
        gap: 1.5rem;
    }
    
    .gallery-caption {
        font-size: 0.75rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* Auto-ajuste para dispositivos con diferentes aspect ratios */
@media (orientation: landscape) and (max-width: 768px) {
    .gallery-item-parallax {
        height: 250px;
    }
    
    .testimonials {
        padding: 4rem 0;
    }
}

/* Instagram Story Ring Effect */
.instagram-story-ring {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888, #833ab4, #5851db, #405de6);
    background-size: 200% 200%;
    padding: 3px;
    cursor: pointer;
    position: relative;
    animation: igStoryRotate 3s linear infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-story-ring:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.5), 0 0 40px rgba(131, 58, 180, 0.3);
}

.instagram-story-ring .testimonial-image-box {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #000000;
    background: #000000;
    position: relative;
}

.instagram-story-ring .testimonial-mini-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

@keyframes igStoryRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Video Testimonial Styles */
.testimonial-video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 50%;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-video-thumbnail:hover {
    opacity: 0.8;
}

.testimonial-video-thumbnail video {
    object-fit: cover;
    pointer-events: none;
}

.testimonial-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 1.6rem;
    opacity: 0.9;
    pointer-events: none;
    text-shadow: 0 0 8px rgba(0,0,0,0.8);
    z-index: 2;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.video-modal-content {
    position: relative;
    width: 85%;
    max-width: 550px;
    margin: auto;
    animation: slideIn 0.4s ease;
}

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

.video-modal-content video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 1;
}

.video-modal-close:hover {
    color: #ff3dec;
    transform: scale(1.2);
}

/* Mobile adjustments for video modal */
@media (max-width: 768px) {
    .video-modal-content {
        width: 90%;
        max-width: 450px;
    }
    
    .video-modal-close {
        top: -35px;
        font-size: 35px;
    }
}
