/* =========================================
   VARIABLES & DESIGN TOKENS
   ========================================= */
:root {
    /* Color Palette based on Instagram Analysis */
    --color-primary: #FFD1DC; /* Pastel Pink / Blush */
    --color-primary-dark: #FFB6C1;
    --color-secondary: #FFF; /* White */
    --color-text: #1a1a1a; /* Soft Black for elegant text */
    --color-text-light: #555;
    --color-accent: #D4AF37; /* Gold accent */
    --color-bg-light: #FFF8F9; /* Very subtle pink tint for backgrounds */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;

    /* Shadows & Radii */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --radius-md: 12px;
    --radius-round: 50%;
}

/* =========================================
   RESET & GLOBAL STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-lg) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--color-primary-dark);
}

.section-title p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-text);
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.6);
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.logo span {
    font-weight: 400;
    font-style: italic;
    color: var(--color-primary-dark);
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('assets/images/hero_bg.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 248, 249, 0.78) 55%, rgba(255, 255, 255, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services {
    background-color: var(--color-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.service-card {
    grid-column: span 2;
    background-color: var(--color-bg-light);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 209, 220, 0.3);
}

/* Centrado elegante de las 2 tarjetas inferiores en pantallas grandes */
.service-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.service-card:nth-child(5) {
    grid-column: 4 / span 2;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    .service-card,
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: auto;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
    border-color: var(--color-primary-dark);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-primary);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.8rem;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--color-primary-dark);
    color: #FFF;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
    background-color: var(--color-bg-light);
}

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

.about-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--color-text);
    color: var(--color-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-round);
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.experience-badge span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.about-features {
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-features i {
    color: var(--color-primary-dark);
    font-size: 1.2rem;
}

/* =========================================
   STAFF SECTION
   ========================================= */
.staff {
    background-color: var(--color-secondary);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    justify-content: center;
}

/* Yanina Canceco centered on 2nd row directly under Adriana (column 2) */
.staff-card:nth-child(4) {
    grid-column: 2;
}

@media (max-width: 992px) {
    .staff-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .staff-card:nth-child(4) {
        grid-column: auto;
    }
}

.staff-card {
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 209, 220, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.staff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 182, 193, 0.3);
    border-color: var(--color-primary-dark);
}

.staff-img-container {
    width: 130px;
    height: 130px;
    margin: 2rem auto 1rem auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.staff-card:hover .staff-img-container {
    transform: scale(1.05);
    border-color: var(--color-accent);
}

.staff-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-info {
    padding: 0 1.5rem 2rem 1.5rem;
}

.staff-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 0.3rem;
}

.staff-role {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.staff-info p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials {
    background-color: var(--color-secondary);
}

.testimonials-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--color-bg-light);
    border: 1px solid rgba(255, 209, 220, 0.5);
    border-radius: var(--radius-md);
    padding: 2rem;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(255, 182, 193, 0.25);
}

.testimonial-card .stars {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary-dark);
}

.testimonial-author {
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--color-text);
    font-size: 1rem;
}

.testimonial-role {
    font-size: 0.75rem;
    color: #888;
    display: block;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--color-text);
    color: var(--color-secondary);
    padding-bottom: 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary-dark);
}

.footer-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-info span {
    color: var(--color-primary);
    font-style: italic;
    font-weight: 400;
}

.footer-info p {
    color: #CCC;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    margin-right: 10px;
    transition: all 0.3s ease;
}

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

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.footer-contact li,
.footer-links li {
    margin-bottom: 1rem;
    color: #CCC;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--color-primary);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        bottom: 20px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--color-secondary);
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info p {
        margin: 0 auto 1.5rem auto;
    }
    
    .footer-contact li,
    .footer-links li {
        justify-content: center;
    }
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.25);
}

/* Pulse animation for the button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse 4s infinite;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* =========================================
   MAP POPUP (ADDRESS TOOLTIP)
   ========================================= */
.address-container {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.address-text {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.address-container:hover .address-text {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.map-popup {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 270px;
    background: #FFF;
    padding: 10px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: default;
}

/* Arrow for the popup */
.map-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #FFF transparent transparent transparent;
}

.address-container:hover .map-popup,
.address-container.touch-active .map-popup,
.map-popup:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.map-link-btn {
    display: block;
    text-align: center;
    background-color: var(--color-primary);
    color: var(--color-text) !important;
    padding: 8px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.map-link-btn:hover {
    background-color: var(--color-primary-dark);
    color: #FFF !important;
}

/* =========================================
   ACCESSIBILITY & REDUCED MOTION
   ========================================= */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================
   BOOKING MODAL STYLES
   ========================================= */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.booking-modal-container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 650px;
    background: #FFF;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    transform: translateY(30px) scale(0.95);
    transition: all 0.3s ease;
}

.booking-modal.active .booking-modal-container {
    transform: translateY(0) scale(1);
}

.booking-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-light);
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.2s;
}

.booking-modal-close:hover {
    color: var(--color-text);
}

.booking-header {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, #FFF 100%);
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 209, 220, 0.5);
}

.booking-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 0.3rem;
}

.booking-header p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

/* Steps Indicator */
.booking-steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
}

.step-indicator span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #EEE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.step-indicator.active {
    color: var(--color-text);
}

.step-indicator.active span {
    background: var(--color-primary-dark);
    color: #FFF;
}

.step-line {
    width: 30px;
    height: 2px;
    background: #EEE;
}

/* Modal Body & Steps */
.booking-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.booking-step h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
    color: var(--color-text);
}

/* Options Grid (Cards for Services & Specialists) */
.booking-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.booking-option-card {
    position: relative;
    cursor: pointer;
}

.booking-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.option-content {
    border: 2px solid #EEE;
    border-radius: 12px;
    padding: 1.2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--color-bg-light);
    height: 100%;
}

.option-content i {
    font-size: 1.8rem;
    color: var(--color-primary-dark);
    margin-bottom: 4px;
}

.option-content span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}

.option-content small {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.booking-option-card input[type="radio"]:checked + .option-content {
    border-color: var(--color-primary-dark);
    background: #FFF;
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
    transform: translateY(-3px);
}

/* Specialist Card Style in Option Grid */
.specialist-avatar-mini {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary-dark);
    margin-bottom: 6px;
}

/* Booking Form Inputs */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group select {
    padding: 10px 14px;
    border: 1px solid #DDD;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-primary-dark);
}

/* Modal Footer & Buttons */
.booking-footer {
    padding: 1.2rem 2rem;
    background: var(--color-bg-light);
    border-top: 1px solid rgba(255, 209, 220, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-secondary {
    background: #E5E5E5;
    color: var(--color-text);
}

.btn-secondary:hover {
    background: #DDD;
}

.btn-whatsapp {
    background: #25D366;
    color: #FFF;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #1EBE57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
