:root {
    /* Brand Colors */
    --color-primary: #1a3c40;
    /* Deep Blue representing luxury and depth */
    --color-secondary: #cba36f;
    /* Gold for elegance and highlights */
    --color-accent: #8892b0;
    /* Slate Grey for secondary text */
    --color-background: #ffffff;
    --color-background-alt: #f8f9fa;
    --color-text-main: #1f2937;
    --color-text-light: #ffffff;
    --color-overlay: rgba(26, 60, 64, 0.5);
    /* Reduced opacity from 0.85 to 0.5 */

    /* Typography */
    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 8px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15);
    --color-footer: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}

.hotel-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.modal-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 70px;
}

.logo {
    display: block;
    width: 150px;
    /* Adjust based on preference */
    height: auto;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}



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

.nav-link {
    color: var(--color-text-light);
    font-weight: 700;
    font-size: 0.8rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.header.scrolled .nav-link {
    color: var(--color-primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lang-selector {
    color: var(--color-text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

.lang-selector span {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lang-selector span:hover,
.lang-selector span.active {
    opacity: 1;
    color: var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
}

.header.scrolled .lang-selector {
    color: var(--color-primary);
}

.btn-nav {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: var(--color-secondary);
    color: #fff;
    border-radius: 4px;
    /* Matching rectangular style */
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.3s;
}

.btn-nav:hover {
    background-color: #bfa04d;
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
    height: 850px;
    /* Fixed height as requested */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-light);
    padding: 0 1rem;
    z-index: 1;
}

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

/* Static Overlay on top of slider but behind content */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(var(--color-overlay), var(--color-overlay));
    z-index: 2;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    /* Start at normal scale */
    transition: opacity 2s ease-in-out;
    /* Only transition opacity */
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    animation: zoomEffect 8s infinite linear;
    /* Smooth linear zoom */
}

/* Keyframes for Zoom Effect */
@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
        /* Subtle zoom */
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    /* Ensure content is above slider */
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    animation: fadeInUp 1.2s ease forwards;
}

.btn-cta {
    padding: 1rem 2.5rem;
    background-color: var(--color-secondary);
    color: #ffffff;
    /* White text as per image */
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
    /* Less rounded corners */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    animation: fadeInUp 1.4s ease forwards;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(207, 181, 59, 0.4);
}

/* --- Why Choose Us Section --- */
.why-us-section {
    padding: 4rem 1rem;
    background-color: #fff;
    text-align: center;
}

.why-us-section .section-title {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.section-subtitle {
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #fff;
    /* White icon */
    background: var(--color-secondary);
    /* Gold circle background */
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(207, 181, 59, 0.3);
    /* Soft gold shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 15px rgba(207, 181, 59, 0.5);
}

.feature-icon svg,
.feature-icon img {
    width: 32px;
    /* Smaller to fit nicely inside circle */
    height: 32px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon svg,
.feature-card:hover .feature-icon img {
    transform: scale(1.1);
}



.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Animation Classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grid items */
.feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
    transition-delay: 0.3s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.5s;
}

.feature-card:nth-child(4) {
    transition-delay: 0.7s;
}

/* --- Live It Your Way Section --- */
.live-it-section {
    width: 100%;
}

.live-intro {
    background-color: var(--color-primary);
    /* Dark Green #1a3c40 */
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
}

.live-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    /* Explicitly set to white */
}

.live-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
    color: #ffffff;
    /* Explicitly set to white */
}

.live-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    /* No matching specific height, depends on content/image ratio */
}

@media (max-width: 768px) {
    .live-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

.live-card {
    position: relative;
    height: 400px;
    /* Fixed height for consistency */
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Center content vertically */
    justify-content: center;
}

.live-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.live-card:hover .live-bg {
    transform: scale(1.05);
}

.live-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    /* Subtle backdrop for readability */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.live-card:hover .live-content {
    background: rgba(0, 0, 0, 0.4);
}

.live-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.live-card-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 400px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.btn-live {
    background-color: var(--color-secondary);
    /* Gold */
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.2s, background 0.2s;
}

.btn-live:hover {
    background-color: #b8905a;
    /* Slightly darker gold */
    transform: translateY(-2px);
}

/* --- Map Section --- */
.map-section {
    position: relative;
    /* Essential for absolute positioning of airplane */
    padding: 3rem 0 1rem 0;
    /* Increased top padding to lower the title */
    background-color: var(--color-background);
    min-height: auto;
    /* Removed large min-height to fit content */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-container {
    width: 100%;
    max-width: 100%;
    position: relative;
    /* Temporary border/background for visualization if SVG is missing */
    /* border: 1px dashed #ddd; */
    min-height: auto;
    /* Removed fixed height to eliminate whitespace */
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-plane {
    position: absolute;
    width: 60px;
    /* Adjust size of the image container */
    height: 60px;
    z-index: 5;
    /* Use offset-path for a curved flight path */
    /* Path: Start low-left, curve up over the map, end low-right */
    offset-path: path('M -50 450 C 200 50, 1000 50, 1250 450');
    opacity: 0.9;
    animation: flyPath 20s linear infinite;
    pointer-events: none;
}

.map-plane img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Rotate image if needed to align with path direction */
    transform: rotate(0deg);
    /* Resetting to natural orientation to find correct forward */
}

@keyframes flyPath {
    0% {
        offset-distance: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        offset-distance: 100%;
        opacity: 0;
    }
}

/* Generic styling for SVGs to ensure they scale */
.map-container svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

/* Force override for Custom SVG classes */
.map-container svg path,
.map-container svg circle,
.map-container svg polygon,
.st0,
.st1,
.st2,
.st3 {
    transition: filter 0.3s ease, opacity 0.3s ease, fill 0.3s ease;
    cursor: pointer;
    fill: #e8dccb;
    /* Cafe más clarito */
}

.map-region-part:hover,
.map-region-part.hovered {
    fill: var(--color-secondary) !important;
}

.map-region-part.active {
    fill: #bfa04d !important;
}

.map-tooltip {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-primary);
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: var(--shadow-hover);
    z-index: 10;
}

.map-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.map-tooltip h4 {
    margin-bottom: 0.3rem;
    color: var(--color-secondary);
}

/* --- Region Actions Section --- */
.region-actions-section {
    padding: 2rem 5%;
    background-color: var(--color-background);
    text-align: center;
    transition: opacity 0.5s ease, height 0.5s ease;
}

.region-actions-section.hidden {
    display: none;
    opacity: 0;
}

.region-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-region-action {
    padding: 0.8rem 2.5rem;
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-secondary);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-region-action:hover,
.btn-region-action.active {
    background-color: var(--color-secondary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(207, 181, 59, 0.3);
}

/* --- Results Section --- */
.results-section {
    padding: 6rem 5%;
    background-color: var(--color-background-alt);
    min-height: 60vh;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hotel-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.hotel-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.hotel-stars {
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.btn-card {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.btn-card:hover {
    background-color: #1a2f4d;
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: var(--border-radius);
    position: relative;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: grid;
    grid-template-columns: 40% 60%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #fff;
    /* Depends on image overlay or bg */
    cursor: pointer;
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.5);
}

.modal-gallery {
    height: 100%;
    min-height: 400px;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
    /* Ensure image doesn't overflow rounded corners if any */
}

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

.modal-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.modal-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-subtitle {
    color: var(--color-secondary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.modal-desc {
    color: var(--color-accent);
    margin-bottom: 2rem;
    line-height: 1.8;
    white-space: pre-line;
}

.modal-services {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
}

.service-tag {
    background: var(--color-background-alt);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 500;
}

.modal-section-title {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.experiences-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.modal-experiences-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    width: 100%;
}

.modal-experiences-grid::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.slider-arrow {
    background: rgba(26, 60, 64, 0.8);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s;
    font-size: 1rem;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: var(--color-secondary);
}

.slider-arrow.prev {
    margin-right: 5px;
}

.slider-arrow.next {
    margin-left: 5px;
}

.experience-item {
    flex: 0 0 120px;
    /* Fixed width for slider effect */
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.experience-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.experience-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.7rem;
    padding: 0.3rem;
    text-align: center;
    font-weight: 600;
}

/* --- Call to Action Section --- */
.cta-section {
    position: relative;
    background: linear-gradient(rgba(26, 60, 64, 0.9), rgba(26, 60, 64, 0.9)), url('images/torres del paine.jpeg');
    background-size: cover;
    background-position: center;
    padding: 5rem 1rem;
    color: #fff;
    border-bottom: 4px solid var(--color-secondary);
}

.cta-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: left;
    /* Override global center alignment */
}

.cta-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 600px;
    opacity: 0.9;
}

.cta-contact {
    margin-top: 2rem;
}

.cta-contact p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 450px;
    flex: 1;
    min-width: 300px;
}

.cta-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-card-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta-gold {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #cba36f;
    /* Gold color */
    color: #fff;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    transition: background 0.3s, transform 0.3s;
    letter-spacing: 1px;
}

.btn-cta-gold:hover {
    background-color: #bfa04d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* --- Footer --- */
.footer {
    background-color: #0a1819;
    /* Updated to brand dark green */
    color: #ffffff;
    padding: 4rem 1rem 1rem 1rem;
    font-size: 0.9rem;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #333;
    /* Subtle separator */
}

/* Footer Brand (Left) */
.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-main-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #888;
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.footer-partners {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-partners img {
    height: 50px;
    /* Increased from 30px */
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-partners img:hover {
    opacity: 1;
}

/* Footer Nav (Right) */
.footer-nav {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #fff;
    position: relative;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #aaa;
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #fff;
    transition: color 0.3s, transform 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    color: #555;
    font-size: 0.8rem;
}

/* --- WhatsApp Button --- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-nav {
        width: 100%;
        justify-content: flex-start;
        gap: 3rem;
    }
}

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

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

/* --- Responsive --- */
@media (max-width: 768px) {
    .header {
        padding: 0 1.5rem;
    }

    .nav-menu {
        display: none;
        /* For MVP we'll hide. Ideal: Hamburger menu */
    }

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

    .modal-content {
        grid-template-columns: 1fr;
        max-height: 85vh;
    }

    .modal-gallery {
        height: 250px;
        min-height: auto;
    }

    .modal-details {
        padding: 1.5rem;
    }

    .modal-close {
        color: #333;
        top: 0.5rem;
        right: 0.5rem;
        background: rgba(255, 255, 255, 0.8);
    }
}