:root {
    --primary-color: #005f73;
    --secondary-color: #94d2bd;
    --text-color: #333;
    --max-width: 1000px;
}

body {
    font-family: sans-serif;
    margin: 0;
    padding: 1rem;
}
header {
    position:relative;
    background: #F8F8F4;
    color: var(--text-color);
    padding: 1rem;
    text-align: center;
}
#title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.2rem auto 0.5rem;
    line-height: 1.25;
    max-width: 800px;
    color: var(--text-color);
}
@media (max-width: 768px) {
    #title {
        font-size: 1.4rem;
        padding: 0 12px;
        margin-top: 0.8rem;
    }
}

.lang-switcher {
    position: absolute;
    top: 2rem;
    right: 2rem;
}
    .lang-switcher .btn{
        padding:2px;
    }
    .audio-switcher {
        position: absolute;
        left: 2rem;
        top: 2rem;
    }


.label {
    font-weight: bold;
}

.row {
    td {
        padding: 5px;
    }
}

table {
    border-collapse: collapse;
    border: 1px solid #e1dada;
}

td, th, tr {
    .preferencial {
        color: red;
    }

    border: 1px solid #e1dada;
}
table.info{
    width:auto;
    max-width:100%;
}
/* The Modal (background) */

/* Modal Content/Box */
.modal-header {
  padding:5px;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;

    &:hover,
    &:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
}


th, .bold {
    font-weight: 700;
}
.logo{
    text-align: center;
    display: block;
    max-width: 200px;
    margin: auto;
}
.justified-gallery img 
{
    cursor: pointer;
    transition: transform 0.2s;
}

.justified-gallery img :hover {
        transform: scale(1.05);
 
}
#imageModal .modal-content {
    max-height: 96vh;
}

#imageModal .modal-body {
    overflow: hidden;
    padding: 0;
}

.image-container {
    width: 100%;
    min-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-container img {
    max-width: 100%;
    max-height: calc(96vh - 50px);
    object-fit: contain;
    transition: opacity 0.2s ease;
    display: block;
}

.photo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    font-size: 3rem;
    width: 52px;
    line-height: 1;
    padding: 6px 0;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
    transition: background 0.15s;
    user-select: none;
}
.photo-nav:hover  { background: rgba(0, 0, 0, 0.75); }
.photo-nav-prev   { left: 8px; }
.photo-nav-next   { right: 8px; }

#photoCounter {
    flex: 1;
    text-align: left;
}
    .promo {
        color: white;
        font-size: 16px;
        border-radius: 6px;
        padding: 8px 12px;
        margin-bottom: 8px;
    }
    .promo:has(.blinking) {
        background-color: darkred;
    }
    .promo:has(.promo-highlight) {
        background: linear-gradient(135deg, #1a6b3c, #2d9254);
    }
    .promo:has(.promo-static) {
        background-color: #2c5282;
    }
.blinking {
    animation: blink 1s infinite;
}
.promo-highlight {
    font-weight: 600;
}
.promo-static {
    /* no animation, just static text */
}
.price-notes {
    list-style: none;
    margin-top: 10px;
}
.price-notes ul {
    background: #f8f8f4;
    border: 1px solid #e1dada;
    border-radius: 4px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.45;
    margin: 0;
    padding: 10px 14px 10px 28px;
    text-align: left;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    25%,75% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
}

@media only screen and (max-width: 600px) {
    header{
        padding-bottom:2rem;
    }
    .lang-switcher, .audio-switcher {
       top:unset;
       bottom:5px;
    }
    .lang-switcher
    {
        right:1px;
    }
    .audio-switcher {
        left: 1px;
        max-width:260px;
        max-height: 45px;
    }
    .audio-switcher audio {
        max-width: 260px;
        max-height: 30px;
    }
    .table-responsive tbody td {
        white-space: nowrap;
    }
}


/* ============================================================
   Inquiry trigger button
   ============================================================ */
.inq-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 3px 12px rgba(0,95,115,.30);
    transition: background .2s, transform .15s, box-shadow .2s;
}
.inq-trigger-btn:hover  {
    background: #004e5f;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,95,115,.35);
}
.inq-trigger-btn:active { transform: scale(.97); }

/* ============================================================
   Modal overlay
   ============================================================ */
.inq-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(3px);
    align-items: flex-end;       /* mobile: sheet from bottom */
    justify-content: center;
    padding: 0;
}
.inq-overlay.open {
    display: flex;
    animation: inq-fade-in .2s ease;
}
@keyframes inq-fade-in { from { opacity:0 } to { opacity:1 } }

/* Modal box */
.inq-modal {
    background: #fff;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 20px 20px 0 0;        /* sheet corners on mobile */
    box-shadow: 0 -8px 40px rgba(0,0,0,.2);
    animation: inq-slide-up .28s cubic-bezier(.32,1,.46,1);
    display: flex;
    flex-direction: column;
}
@keyframes inq-slide-up {
    from { transform: translateY(40px); opacity:.6 }
    to   { transform: translateY(0);    opacity:1  }
}

/* Desktop: centred dialog */
@media (min-width: 640px) {
    .inq-overlay {
        align-items: center;
        padding: 20px;
    }
    .inq-modal {
        max-width: 540px;
        border-radius: 16px;
        animation: inq-pop-in .22s cubic-bezier(.32,1,.46,1);
    }
    @keyframes inq-pop-in {
        from { transform: scale(.94) translateY(10px); opacity:.5 }
        to   { transform: scale(1)   translateY(0);    opacity:1  }
    }
}

/* Header */
.inq-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 1px solid #e8edf0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
    border-radius: 20px 20px 0 0;
}
@media (min-width: 640px) {
    .inq-modal-header { border-radius: 16px 16px 0 0; }
}
.inq-modal-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}
.inq-close {
    background: #f1f5f7;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: background .15s;
}
.inq-close:hover { background: #dde3e7; }

/* Body */
.inq-modal-body { padding: 18px 20px 24px; }

/* Form grid */
.inq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.inq-full { grid-column: 1 / -1; }

.inq-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.inq-group label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.inq-group input,
.inq-group select,
.inq-group textarea {
    border: 1.5px solid #d0dae0;
    border-radius: 8px;
    padding: 9px 11px;
    font-size: 15px;
    font-family: inherit;
    background: #f8fafb;
    transition: border-color .18s, box-shadow .18s;
}
.inq-group input:focus,
.inq-group select:focus,
.inq-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,95,115,.12);
}
.inq-group.has-error input,
.inq-group.has-error select {
    border-color: #d93025;
    background: #fff8f7;
}
.inq-err { font-size: 11px; color: #d93025; min-height: 14px; }
.inq-note { font-size: 12px; color: #888; }
.req { color: #d93025; }
.wa-icon { width: 15px; height: 15px; flex-shrink: 0; }
.wa-label { font-size: 11px; color: #25D366; font-weight: 700; }

/* Submit */
.inq-btn {
    width: 100%;
    padding: 13px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background .18s;
    margin-top: 4px;
}
.inq-btn:hover    { background: #004e5f; }
.inq-btn:disabled { opacity: .55; cursor: not-allowed; }

/* Success state */
.inquiry-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #15803d;
    font-size: 15px;
}
.inquiry-success p   { margin: 0 0 10px; }
.wa-redirect-note    { color: #555; font-size: 13px; }
.wa-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 12px 22px;
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: background .18s;
}
.wa-open-btn:hover { background: #1da851; }

/* Mobile: single column form */
@media (max-width: 480px) {
    .inq-grid { grid-template-columns: 1fr; }
}

/* Floating WhatsApp button */
.floating-wa-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    cursor: pointer;
    transition: transform .2s ease-in-out, background-color .2s;
    text-decoration: none;
}
.floating-wa-btn:hover {
    transform: scale(1.1);
    background-color: #1da851;
}
.floating-wa-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.7;
    z-index: -1;
    animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}
@media (max-width: 480px) {
    .floating-wa-btn {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
    .floating-wa-btn svg {
        width: 30px;
        height: 30px;
    }
}

/* Card & Grid Layout Style Enhancements */
.elasa-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid #edf2f7;
    padding: 24px;
    margin-bottom: 24px;
    text-align: left;
}
.elasa-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #f7fafc;
    padding-bottom: 10px;
}
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}
.detail-card {
    background: #fdfdfb;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.01);
    transition: transform 0.2s, box-shadow 0.2s;
}
.detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.detail-card-icon {
    font-size: 24px;
    margin-bottom: 6px;
    display: block;
}
.detail-card-label {
    font-size: 11px;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}
.detail-card-value {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-color);
}
.amenity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.amenity-tag {
    background: #eef5f6;
    color: var(--primary-color);
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #dcebec;
}
.distance-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.distance-item {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4a5568;
}
.distance-item::before {
    content: '📍';
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 12px;
}
.location-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.location-card-body {
    padding: 16px;
}
.location-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.location-card:hover img {
    transform: scale(1.02);
}
.promo-banner {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #fff;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 600;
}
.promo-banner.blinking {
    background-color: #9b2c2c;
    animation: blink 1.5s infinite;
}
.promo-banner.promo-highlight {
    background: linear-gradient(135deg, #2f855a, #48bb78);
}
.promo-banner.promo-static {
    background-color: #2b6cb0;
}
.price-option-card {
    background: #fdfdfd;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    padding: 16px;
}
.price-option-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #2d3748;
}
.social-icon-link {
    transition: transform 0.18s;
}
.social-icon-link:hover {
    transform: scale(1.1);
}
.video-container {
    background: #000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .elasa-card {
        padding: 16px;
        margin-bottom: 16px;
    }
    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .price-option-card {
        padding: 12px 8px;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Inter:wght@300;400;500&display=swap');

/* --- LUXURY HOTEL DETAILS SECTION --- */
.luxury-card {
    background: #ffffff;
    padding: 48px;
    margin-bottom: 40px;
    border: 1px solid #eae5de;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.03);
}

.luxury-header {
    text-align: center;
    margin-bottom: 48px;
}

.luxury-header h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.luxury-header p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666;
    max-width: 85%;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.luxury-divider-icon {
    margin: 24px auto;
    color: #c5a880; /* Gold */
}

.luxury-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    padding: 32px 20px;
    background: #faf9f7; /* Very warm light beige */
    border-top: 1px solid #eae5de;
    border-bottom: 1px solid #eae5de;
}

.luxury-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 90px;
}

.luxury-feature-icon {
    color: #c5a880; /* Gold */
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-feature-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.2;
}

.luxury-feature-text {
    display: flex;
    flex-direction: column;
}

.luxury-feature-val {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.luxury-feature-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    font-weight: 500;
}

.luxury-section {
    margin-bottom: 48px;
}

.luxury-section:last-child {
    margin-bottom: 0;
}

.luxury-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.luxury-section-title::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: #eae5de;
}

.luxury-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.luxury-amenity {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #444;
    font-weight: 300;
}

.luxury-amenity svg {
    color: #c5a880;
}

.luxury-location {
    display: flex;
    gap: 32px;
    align-items: stretch;
}

.luxury-map {
    flex: 1.5;
    position: relative;
    overflow: hidden;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.luxury-map img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    transition: transform 0.8s ease;
    display: block;
}

.luxury-map:hover img {
    transform: scale(1.05);
}

.luxury-map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.luxury-map-overlay span {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.luxury-map-overlay button {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    transition: all 0.3s;
}

.luxury-map-overlay button:hover {
    background: #fff;
    color: #111;
}

.luxury-distances {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.luxury-distance-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #444;
    font-weight: 300;
    padding: 16px 0;
    border-bottom: 1px solid #eae5de;
}

.luxury-distance-item:last-child {
    border-bottom: none;
}

.luxury-distance-item svg {
    color: #c5a880;
}

@media (max-width: 768px) {
    .luxury-card { padding: 32px 20px; }
    .luxury-features { gap: 24px; }
    .luxury-location { flex-direction: column; }
    .luxury-map img { min-height: 200px; }
}

/* Luxury Table Styling for Pricing */
.table-responsive .table {
    border-collapse: separate;
    border-spacing: 0;
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

.table-responsive .table thead.table-light th {
    background-color: #faf9f7;
    border: none;
    border-bottom: 2px solid #eae5de;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 16px 12px;
}

.table-responsive .table tbody td {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 15px;
    border: none;
    border-bottom: 1px solid #f6f4f0;
    padding: 16px 12px;
    color: #444;
}

.table-responsive .table tbody tr:hover td {
    background-color: #fdfdfc;
}

.table-responsive .table tbody tr:last-child td {
    border-bottom: none;
}

.table-responsive .table tbody tr.luxury-highlight td {
    background-color: #faf9f7;
    color: #1a1a1a;
    font-weight: 500;
    border-top: 1px solid #eae5de;
    border-bottom: 1px solid #eae5de;
}

.price-option-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    color: #1a1a1a;
}
