/* Global Variables & Reset */
:root {
    --primary-color: #2e4631;
    /* Forest Green */
    --secondary-color: #8d6e63;
    /* Earthy Brown */
    --accent-color: #d4a373;
    /* Sand/Beige Accent */
    --bg-light: #faf9f6;
    /* Off-white/Cream */
    --bg-white: #ffffff;
    --text-dark: #333333;
    --text-light: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --spacing-section: 100px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Softer, deeper shadow */
    --radius-standard: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.8;
    /* Increased line height for readability */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-standard);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--spacing-section) 0;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-color);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    /* Subtle dark fade */
    box-shadow: none;
    /* No shadow initially */
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 20px 0;
    /* More padding initially */
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    /* Override gradient with solid color */
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    /* Less padding on scroll */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* Removed fixed height to allow logo to dictate size */
}

/* Left side: Logo + Links */
.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
    /* Space between logo and menu */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 110px;
    /* Maximized initial logo */
    width: auto;
    min-width: 110px;
    /* PREVENT SQUASHING */
    object-fit: contain;
    transition: all 0.4s ease;
}

header.scrolled .logo img {
    height: 110px;
    /* Larger logo on scroll */
    min-width: 110px;
}

.nav-links {
    display: flex;
    gap: 30px;
    /* Slightly tighter to fit everything */
}

.nav-links a {
    font-size: 1rem;
    /* Increased size */
    font-weight: 700;
    /* Bolder */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    /* White by default */
    position: relative;
    transition: color 0.3s;
}

header.scrolled .nav-links a {
    color: var(--primary-color);
    /* Dark on scroll */
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Right side: Extras + Weather */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-extras {
    display: flex;
    gap: 20px;
    /* Separator styles */
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    padding-left: 20px;
    margin-left: 40px;
    /* Separates line from "CONTACTO" */
    margin-right: 10px;
}

header.scrolled .nav-extras {
    border-left-color: rgba(44, 62, 80, 0.2);
    /* Darker separator on scroll */
}

.nav-extras a {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    /* Larger text */
    font-weight: 600;
}

header.scrolled .nav-extras a {
    color: var(--primary-color);
}

.btn-reservar {
    background-color: #c5a059;
    /* Gold color from image */
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-reservar:hover {
    background-color: #b08d4a;
    transform: translateY(-2px);
}

/* Weather Widget - Floating */
.weather-widget.floating-widget {
    position: absolute;
    bottom: 30%;
    /* Positioned vertically */
    right: 5%;
    /* Positioned to the right */
    width: 220px;
    height: 100px;
    background: rgba(44, 62, 80, 0.4);
    /* Transparent glass */
    backdrop-filter: blur(8px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.weather-icon {
    font-size: 4rem;
    /* Much larger icon */
    color: #ffd700;
}

.weather-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.weather-info .temp {
    font-size: 2.5rem;
    /* Large temp */
    font-weight: 700;
    line-height: 1;
}

.weather-info .desc {
    font-size: 1rem;
    opacity: 1;
    text-transform: capitalize;
}

.weather-info .loc {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.9;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trust Widget - Floating Left */
.trust-widget.floating-widget-left {
    position: absolute;
    bottom: 30%;
    left: 5%;
    width: 250px;
    height: 100px;
    background: rgba(44, 62, 80, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
    /* Offset float animation */
}

.trust-icon {
    font-size: 3rem;
    color: #ffd700;
    /* Gold Star */
}

.trust-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.trust-info .rating {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.trust-info .desc {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-info .source {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Hide or adjust widget on mobile */
@media (max-width: 768px) {
    .weather-widget.floating-widget {
        display: none;
        /* Hide on small screens for clarity */
    }
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    background-color: var(--text-light);
    /* White bars by default */
    transition: all 0.3s ease;
}

header.scrolled .bar {
    background-color: var(--primary-color);
    /* Dark bars on scroll */
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    /* overflow: hidden; Removed to allow booking widget overlap */
}

/* Page Hero for Sub-pages */
.page-hero {
    position: relative;
    height: 50vh;
    /* Shorter than main hero */
    min-height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Stronger overlay for readability */
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    /* Explicitly White */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    /* Strong Shadow */

    /* Background for readability */
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    padding: 10px 30px;
    border-radius: 8px;
    display: inline-block;
}

.page-hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #f0f0f0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
    /* Slight zoom effect start */
    animation: zoomEffect 20s infinite alternate;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Dark overlay for text readability */
    z-index: -1;
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-content {
    z-index: 1;
    position: relative;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    color: var(--text-light);
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* Booking Widget */
.booking-widget {
    position: absolute;
    bottom: -50px;
    /* Overlap the bottom edge */
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 1000px;
    z-index: 20;
}

.booking-form {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    justify-content: space-between;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #333;
}

.btn-consultar {
    background-color: #2D5A27;
    /* Dark Green inspired by image */
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    transition: background 0.3s;
    height: 48px;
    /* Match input height roughly */
}

.btn-consultar:hover {
    background-color: #1e3d1a;
}

/* Adjust section padding for the overlap */
.section:first-of-type {
    padding-top: 100px;
}

/* Section Headings */
.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Service Icons */
ion-icon {
    transition: transform 0.3s ease;
}

.service-card:hover ion-icon {
    transform: scale(1.1);
}

/* New Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 Columns on desktop */
    gap: 20px;
    margin-top: 40px;
}

.service-card-new {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card-new:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
}

.service-card-new ion-icon {
    font-size: 3rem;
    color: #c5a059;
    /* Gold color from image */
    margin-bottom: 20px;
}

.service-card-new h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.service-card-new p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}


/* New Footer Design */
.footer-new {
    background-color: #1e3d1a;
    /* Dark Green from image */
    color: white;
    padding: 60px 0 20px;
    font-size: 0.95rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-logo img {
    margin-bottom: 20px;
}

.footer-desc {
    color: #ccc;
    line-height: 1.6;
}

.footer-col h3 {
    color: #c5a059;
    /* Gold Title */
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ddd;
}

.footer-contact ion-icon {
    font-size: 1.2rem;
    color: #c5a059;
}

.map-container iframe {
    border-radius: 8px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.map-container iframe:hover {
    opacity: 1;
}

/* Footer Buttons */
.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    /* Pill shape */
    transition: background 0.3s, transform 0.2s;
    font-weight: 600;
}

.footer-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.6s;
    transition: transform 0.2s ease;
    /* Smooth zoom transition */
    cursor: zoom-in;
    /* Default cursor to indicate zoomable */
}

/* Zoomed state class */
.lightbox-content.zoomed {
    transform: scale(2);
    /* Zoom level */
    cursor: zoom-out;
    /* Cursor to indicate zoom out */
    max-width: none;
    /* Allow full expansion */
    max-height: none;
    width: auto;
    height: auto;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 1001;
    /* Above image */
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    z-index: 1001;
    /* Above image */
    background-color: rgba(0, 0, 0, 0.3);
    /* Slight background for visibility */
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Detailed Room Cards */
.room-detail-card {
    display: flex;
    flex-direction: column;
    /* Mobile First */
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.room-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.room-img-container {
    height: 250px;
    width: 100%;
}

.room-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.room-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
}

.room-price {
    background-color: #f9f9f9;
    padding: 8px 15px;
    border-radius: 8px;
    text-align: right;
}

.price-amount {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #c5a059;
}

.price-period {
    font-size: 0.8rem;
    color: #888;
}

.room-desc {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.room-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
}

.amenity-item ion-icon {
    color: #c5a059;
    font-size: 1.2rem;
}

/* Desktop Layout for Room Card */
@media (min-width: 900px) {
    .room-detail-card {
        flex-direction: row;
        height: 400px;
    }

    .room-img-container {
        width: 45%;
        height: 100%;
    }

    .room-info {
        width: 55%;
        padding: 40px;
    }
}

/* Simple Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    /* Reducir gap en móvil para hamburguesa y logo juntos */
    .nav-left {
        gap: 15px;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        /* Cover full height */
        padding-top: 150px;
        /* Space for the header */
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        height: 100vh;
        /* Full screen menu */
        text-align: center;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 998;
        /* Below hamburger */
    }

    .nav-links a {
        color: var(--primary-color);
        /* Force Dark Color */
        font-size: 1.5rem;
        /* Larger for mobile */
        margin: 15px 0;
        display: block;
    }

    /* Hide extras on mobile to save space */
    .nav-extras {
        display: none;
    }

    .btn-reservar {
        padding: 8px 15px;
        /* Smaller button */
        font-size: 0.8rem;
    }

    .nav-links.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 25px;
        /* Increased from 15px */
    }

    /* Reduce gap in nav-right for mobile to prevent crowding */
    .nav-right {
        gap: 15px;
    }

    /* Resize Logo for Mobile */
    .logo img {
        height: 70px;
        /* Reduced from 100px */
        min-width: 70px;
    }

    header.scrolled .logo img {
        height: 60px;
        min-width: 60px;
    }

    /* Hero Mobile Fixes */
    .hero {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        padding-top: 130px;
        /* Space for fixed header */
        padding-bottom: 50px;
        justify-content: flex-start;
        /* Start from top */
    }

    .hero-content {
        margin-bottom: 40px;
        /* Space between text and form */
        margin-top: 40px;
    }

    /* Booking Widget Mobile */
    .booking-widget {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        margin-top: 0;
        /* Connect to hero */
        box-shadow: none;
        border-bottom: 1px solid #eee;
        background: rgba(255, 255, 255, 0.95);
        /* Slight transparency */
    }

    .booking-form {
        flex-direction: column;
        gap: 15px;
    }

    .input-group,
    .btn-consultar {
        width: 100%;
    }
}

/* --- Booking Wizard --- */
.booking-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.wizard-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
    transform: translateY(-50%);
}

.step-item {
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #999;
}

.step-circle {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.step-item.active .step-circle {
    background: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.2);
}

.step-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.booking-form-step {
    display: none;
    animation: fadeIn 0.5s;
}

.booking-form-step.active {
    display: block;
}

.booking-form-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    /* Significantly larger */
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    /* Generally looks better centered in wizard */
    font-weight: 700;
}

.payment-methods {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.payment-option {
    flex: 1;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}

.payment-option.selected {
    border-color: var(--primary-color);
    background: rgba(16, 185, 129, 0.05);
}

.payment-option img {
    height: 40px;
    margin-bottom: 10px;
    object-fit: contain;
}

.summary-card {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.summary-row.total {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--primary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-warning {
    display: none;
    /* Hidden by default */
    background-color: #fef2f2;
    border: 1px solid #fee2e2;
    border-left: 5px solid #ef4444;
    /* Accent */
    color: #991b1b;
    padding: 16px 20px;
    border-radius: 6px;
    margin-top: 25px;
    margin-bottom: 30px;
    /* Added spacing */
    font-size: 0.95rem;
    line-height: 1.5;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.4s ease-out;
}

.payment-warning ion-icon {
    font-size: 1.5rem;
    color: #ef4444;
    min-width: 24px;
    margin-top: 2px;
}

/* --- Global Form Styles --- */
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    /* Softer rounded corners */
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    /* Focus ring */
    outline: none;
}

label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    /* Match Header Font */
    font-weight: 700;
    font-size: 1.15rem;
    /* Larger size */
    color: #2c3e50;
    letter-spacing: 0px;
}

/* --- Centered Header (Booking Page) --- */
/* --- Centered Header (Booking Page) --- */
.header-centered .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    transition: all 0.4s ease;
}

/* On Scroll: Revert to standard row layout */
header.scrolled.header-centered .container {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 5px;
    /* Minimal padding on scroll */
}

.header-centered .logo {
    width: auto;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

header.scrolled.header-centered .logo {
    margin-bottom: 0;
}

.header-centered .logo img {
    height: 120px;
    width: auto;
    transition: all 0.4s ease;
}

header.scrolled.header-centered .logo img {
    height: 50px;
    /* Shrink on scroll */
}

/* Reset Nav defaults */
.header-centered .nav {
    display: block;
    width: auto;
}

.header-centered .nav-links {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.header-centered .nav-links a {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid transparent;
}

/* Ensure link color changes on scroll if needed */
header.scrolled.header-centered .nav-links a {
    color: var(--primary-color);
    text-shadow: none;
    font-size: 0.9rem;
    /* Smaller text on scroll */
}

/* Social Buttons */
.btn-whatsapp {
    background-color: #25D366;
    /* Official WhatsApp Green */
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-facebook {
    background-color: #1877F2;
    /* Official Facebook Blue */
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-facebook:hover {
    background-color: #166fe5;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.6s;
    transition: transform 0.2s ease;
    /* Smooth zoom transition */
    cursor: zoom-in;
    /* Default cursor to indicate zoomable */
}

/* Zoomed state class */
.lightbox-content.zoomed {
    transform: scale(2);
    /* Zoom level */
    cursor: zoom-out;
    /* Cursor to indicate zoom out */
    max-width: none;
    /* Allow full expansion */
    max-height: none;
    width: auto;
    height: auto;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 1001;
    /* Above image */
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    z-index: 1001;
    /* Above image */
    background-color: rgba(0, 0, 0, 0.3);
    /* Slight background for visibility */
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}