/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css');

:root {
    --color-ivory: #F7F4EF;
    --color-beige: #D8C7AE;
    --color-charcoal: #2E2E2E;
    --color-gold: #B89B5E;
    --color-white: #FFFFFF;
    --color-light-gray: #E8E8E8;
    --color-text-muted: #666666;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --border-radius: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography Utilities */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--color-gold);
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-charcoal);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

/* Header */
.header-modern {
    background-color: transparent;
    padding: 2rem 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-modern nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-modern .logo {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111;
}

.header-modern .nav-links {
    display: flex;
    gap: 3.5rem;
    /* Equal gaps */
    align-items: center;
}

.header-modern .nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    opacity: 0.8;
}

.header-modern .nav-links a:hover {
    opacity: 1;
    color: #111;
}

.header-modern .nav-links a.active {
    opacity: 1;
    color: #111;
    font-weight: 600;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

/* Consolidated Nav Links */
.nav-links {
    display: flex;
    gap: 3.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a:hover {
    color: var(--color-gold);
}

/* Hero Section */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--color-white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-luxury {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(245, 240, 235, 0.9) 0%, rgba(245, 240, 235, 0.4) 50%, rgba(245, 240, 235, 0.1) 100%);
}

.hero-home::before {
    display: block;
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(184, 155, 94, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.hero-home::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 30%;
    height: 50%;
    background: radial-gradient(circle, rgba(184, 155, 94, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-side,
.hero-feature-side {
    min-width: 0;
}

.hero-subheadline {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2f2924;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.2rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #2e2a27;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title span {
    display: block;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #5a544f;
    max-width: 32rem;
    margin-bottom: 1.5rem;
}

.hero-assistance {
    font-size: 1rem;
    line-height: 1.6;
    color: #7a746e;
    max-width: 30rem;
    margin-bottom: 3rem;
}

.btn-pill-dark {
    background: #1a1817;
    color: #fff;
    padding: 1.25rem 3rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-pill-dark:hover {
    background: #3a3633;
    transform: scale(1.05);
}

/* Floating Card */
.floating-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 2rem;
    box-shadow: 0 40px 100px rgba(46, 42, 39, 0.12);
    position: relative;
    max-width: 440px;
    margin-left: auto;
    width: 100%;
}

.card-header {
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: #2e2a27;
}

.guide-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.guide-highlights li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: #4a443f;
}

.icon-wrap {
    width: 42px;
    height: 42px;
    background: #fcfbf8;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8c7b6c;
}

.card-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 140px;
}

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

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(140, 123, 108, 0.9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.visual-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #2e2a27;
}

.hero-home-visual {
    border-radius: 24px;
    overflow: hidden;
    height: 620px;
    box-shadow: none;
}

.hero-home-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Grid Sections */
.section-padding {
    padding: var(--spacing-lg) 0;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.app-card {
    background-color: var(--color-white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid var(--color-light-gray);
}

.app-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

.app-card i {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: block;
}

.app-card h3 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
}

/* Property Cards - Luxury Redesign */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 3rem;
}

#featured-properties-grid {
    margin-bottom: 4.75rem;
}

.featured-properties-cta {
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.property-card {
    position: relative;
    height: 400px;
    /* Reduced height for more compact feel */
    border-radius: 24px;
    /* Reduced corner radius */
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    background-color: #2b2a27;
}

.property-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

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

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.property-card:hover .property-img img {
    transform: scale(1.1);
}

.property-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.6) 40%,
            transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.property-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.75rem 1.75rem;
    /* Reduced bottom padding */
    z-index: 3;
    color: var(--color-white);
}

.property-info h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    /* Reduced font size */
    font-weight: 500;
    margin-bottom: 0.35rem;
    /* Reduced space between title and description */
    color: var(--color-white);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.property-info p {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    /* Reduced font size */
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 95%;
}

.btn-guide-pill {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.7rem 1.5rem;
    /* Reduced height */
    border-radius: 999px;
    /* Full rounded corners */
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    color: #1a1c1e;
    /* Dark text */
    background: #ffffff;
    /* Solid white */
}

.btn-guide-pill:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Property Guide Page */
.guide-header {
    background-color: var(--color-white);
    padding: 3rem 0;
    text-align: center;
}

.search-container {
    max-width: 600px;
    margin: 2rem auto;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-left: 3.5rem;
    border-radius: 50px;
    border: 1px solid var(--color-light-gray);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.search-container input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(184, 155, 94, 0.1);
}

.search-container i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gold);
    font-size: 1.2rem;
}

.category-group {
    margin-bottom: 4rem;
}

.group-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-beige);
    display: inline-block;
}

.property-guide-nav {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1160px; /* Increased slightly for better grid breathing */
    margin: 0 auto;
    justify-content: center;
}

.property-nav-tile {
    background: linear-gradient(180deg, #fcfbf8 0%, #f3eee7 100%);
    border: 1px solid rgba(184, 155, 94, 0.18);
    border-radius: 24px;
    min-height: 140px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(46, 46, 46, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.property-nav-tile:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold);
    box-shadow: 0 18px 34px rgba(46, 46, 46, 0.1);
}

.property-nav-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(46, 46, 46, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-nav-icon i {
    font-size: 1.7rem;
    color: var(--color-gold);
}

.property-nav-label {
    font-size: 0.85rem;
    line-height: 1.35;
    font-weight: 600;
    color: var(--color-charcoal);
    max-width: 7rem;
}

/* Luxury Content Styling */
.content-section {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1c1e;
    letter-spacing: -0.02em;
}

.content-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

/* Redefined Info Box */
.info-box {
    background: #ffffff;
    border: 1px solid rgba(184, 155, 94, 0.12);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.info-box:hover {
    box-shadow: 0 15px 35px rgba(184, 155, 94, 0.08);
    border-color: rgba(184, 155, 94, 0.3);
}

.info-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 4px;
    background: #b89b5e;
    border-radius: 0 4px 4px 0;
}

.info-box p {
    margin-bottom: 1rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.info-box strong {
    color: #1a1c1e;
    font-weight: 700;
    margin-right: 5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* Premium Wifi Card */
.wifi-card {
    background: #1a1c1e;
    color: #ffffff;
    padding: 3rem;
    border-radius: 32px;
    margin: 2.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.wifi-card::after {
    content: '\f107'; /* Remixicon Wifi icon if available via pseudo */
    font-family: 'remixicon';
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 10rem;
    opacity: 0.05;
    transform: rotate(-15deg);
}

.wifi-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.wifi-card strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #b89b5e;
    margin-bottom: 0.5rem;
}

/* Luxury Lists */
.content-body ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem 3rem;
    margin: 2rem 0;
}

.content-body li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
}

.content-body li::before {
    content: '\eb7a'; /* ri-checkbox-circle-line */
    font-family: 'remixicon';
    position: absolute;
    left: 0;
    top: 0;
    color: #b89b5e;
    font-size: 1.2rem;
}

.content-body li.has-custom-icon::before {
    display: none;
}

/* Luxury Accordion (FAQ) */
.faq-accordion {
    border-top: 1px solid rgba(184, 155, 94, 0.1);
    margin-top: 2rem;
}

.accordion-item {
    border-bottom: 1px solid rgba(184, 155, 94, 0.1);
}

.accordion-header {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header span {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1c1e;
    font-family: var(--font-heading);
    padding-right: 2rem;
}

.accordion-header i {
    font-size: 1.4rem;
    color: #b89b5e;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header.active i {
    transform: rotate(45deg);
    color: #1a1c1e;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.accordion-header.active + .accordion-content {
    max-height: 500px; /* Large enough for any answer */
    opacity: 1;
    padding-bottom: 2rem;
}

.accordion-content p {
    color: #5a5a5a;
    font-size: 1rem;
    line-height: 1.8;
}

/* Remove old faq-item styles if they conflict */
.faq-item {
    display: none; /* We will transform them into accordions in JS */
}

/* Links in content */
.content-body a {
    color: #b89b5e;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(184, 155, 94, 0.2);
    transition: all 0.2s ease;
}

.content-body a:hover {
    border-bottom-color: #b89b5e;
    color: #1a1c1e;
}

/* Sticky Bottom Nav (Mobile) */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    padding: 0.8rem 0;
}

.mobile-nav-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.mobile-nav-item i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.mobile-nav-item.active {
    color: var(--color-gold);
}

/* Footer */
footer {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding: 4rem 0 6rem 0;
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .section-subtitle {
        font-size: 0.98rem;
        margin-bottom: 2rem;
    }

    .nav-links {
        display: none;
    }

    .header-modern {
        display: block;
        position: absolute;
        background: transparent;
        box-shadow: none;
        padding: 1.1rem 0;
    }

    .header-modern nav {
        justify-content: center;
    }

    .header-modern .logo {
        font-size: 1.4rem;
        letter-spacing: -0.03em;
    }

    .header-modern .nav-links,
    .header-modern .header-cta {
        display: none;
    }

    .properties-page .header-modern,
    .property-page .header-modern,
    .contact-page .header-modern {
        position: sticky;
        top: 0;
        background: rgba(247, 244, 239, 0.94);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 10px 28px rgba(46, 46, 46, 0.08);
        padding: 0.95rem 0;
    }

    .properties-page .header-modern nav,
    .property-page .header-modern nav,
    .contact-page .header-modern nav {
        justify-content: flex-start;
    }

    .mobile-nav {
        display: block;
    }

    .hero-luxury {
        min-height: auto;
        padding: 5.5rem 0 4.5rem;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(245, 240, 235, 0.96) 0%, rgba(245, 240, 235, 0.85) 45%, rgba(245, 240, 235, 0.4) 100%);
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        align-items: stretch;
    }

    .hero-text-side {
        order: 1;
        padding-top: 2.6rem;
        text-align: center;
    }

    .hero-feature-side,
    .floating-card {
        display: none;
    }

    .hero-title {
        font-size: clamp(3.2rem, 13vw, 4.6rem);
        margin-bottom: 0.85rem;
        line-height: 0.98;
        letter-spacing: -0.04em;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subheadline {
        color: #2b2622;
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        opacity: 0.8;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.75;
        max-width: 100%;
        margin: 0 auto 1.75rem;
    }

    .hero-actions {
        width: 100%;
        max-width: 22rem;
        margin: 0 auto;
    }

    .hero-actions .btn,
    .btn-pill-dark {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 0.92rem;
        letter-spacing: 0.12em;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .quick-access-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem;
    }

    .app-card {
        padding: 1.3rem 0.9rem;
        border-radius: 18px;
    }

    .app-card i {
        font-size: 1.7rem;
        margin-bottom: 0.7rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .experience-card {
        padding: 1.75rem;
        border-radius: 20px;
    }

    .experience-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .property-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 0;
        margin: 0;
        overflow-x: visible;
    }

    #featured-properties-grid {
        margin-bottom: 3.25rem;
    }

    .featured-properties-cta {
        margin-top: 0.75rem;
    }

    .property-card {
        width: 100%;
        max-width: 100%;
        height: 420px;
        border-radius: 24px;
    }

    .property-info {
        padding: 1.5rem 1.25rem 1.25rem;
        /* Reduced bottom padding */
    }

    .property-info h3 {
        font-size: 1.35rem;
        /* Reduced font size */
    }

    .property-info p {
        font-size: 0.88rem;
        /* Reduced font size */
        margin-bottom: 1.25rem;
    }

    .btn-guide-pill {
        padding: 0.65rem 1.5rem;
        font-size: 0.8rem;
    }

    .hero-home {
        padding: 1.25rem 0 2.5rem;
    }

    .hero-home-shell {
        grid-template-columns: 1fr;
        padding: 0.8rem;
    }

    .hero-home-copy {
        order: 2;
        padding: 1.5rem;
    }

    .hero-home-visual {
        order: 1;
        min-height: 320px;
    }

    .hero-home-copy h1 {
        font-size: 2.9rem;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .property-guide-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .property-nav-tile {
        min-height: 108px;
        padding: 0.25rem 0.35rem;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        justify-content: flex-start;
        gap: 0.7rem;
    }

    .property-nav-icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        flex-shrink: 0;
    }

    .property-nav-label {
        font-size: 0.78rem;
        min-height: 2.7em;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 420px) {
    .property-guide-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.9rem 0.75rem;
    }

    .property-nav-tile {
        min-height: 100px;
    }

    .property-nav-label {
        font-size: 0.75rem;
        max-width: 5.5rem;
    }
}

@media (max-width: 360px) {
    .property-guide-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.95rem 0.8rem;
    }
}

@media (min-width: 769px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .hero-luxury {
        min-height: auto;
        padding: 7rem 0 4rem;
    }

    .hero-content-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
        gap: 2rem;
    }

    .hero-title {
        font-size: clamp(3rem, 5vw, 3.8rem);
    }

    .hero-description,
    .hero-assistance {
        max-width: 100%;
    }

    .floating-card {
        border-radius: 32px;
        padding: 1.5rem;
    }
}

@media (max-width: 420px) {
    .hero-luxury {
        padding-top: 5rem;
    }

    .hero-subheadline {
        font-size: 0.66rem;
        margin-bottom: 0.9rem;
    }

    .hero-title {
        font-size: clamp(2.9rem, 14vw, 3.7rem);
    }

    .hero-description {
        font-size: 0.96rem;
    }

    .quick-access-grid {
        gap: 0.75rem;
    }

    .app-card {
        padding: 1.15rem 0.75rem;
    }

    .floating-card {
        border-radius: 24px;
        padding: 1rem;
    }

    .icon-wrap {
        width: 38px;
        height: 38px;
    }
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: var(--color-gold);
    color: var(--color-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1500;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* HuboMoto Experience Section */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.experience-card {
    padding: 2rem;
    border-radius: 24px;
    background: #fcfcfb;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: rgba(212, 196, 176, 0.3);
}

.experience-icon {
    width: 60px;
    height: 60px;
    background: #f5f0eb;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    color: #b5a48b;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.experience-card:hover .experience-icon {
    background: #b5a48b;
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
}

.experience-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1c1e;
}

.experience-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #666;
}

.btn-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #1a1c1e;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

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

/* CTA Support Section */
.cta-support {
    position: relative;
    padding: 10rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../img/luxury_airbnb_room_cta_1777370943446.png');
    /* Using the generated image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* Properties Page Hero - Light Luxury Aligned */
.properties-hero {
    position: relative;
    height: auto;
    min-height: clamp(500px, 64vh, 580px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../img/properties_hero_no_people_1777371807272.png');
    display: flex;
    align-items: flex-start;
    color: #1a1c1e;
    /* Dark charcoal for light background */
    padding-top: 9.5rem;
    padding-bottom: 3.75rem;
}

.properties-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(245, 240, 235, 0.95) 0%,
            rgba(245, 240, 235, 0.7) 45%,
            rgba(245, 240, 235, 0.4) 100%);
    z-index: 1;
}

.properties-hero .hero-container {
    position: relative;
    z-index: 2;
}

.properties-hero .hero-content {
    max-width: 650px;
}

#prop-hero {
    height: auto;
    min-height: clamp(500px, 64vh, 580px);
    padding-top: 9.5rem;
    padding-bottom: 3.75rem;
}

#prop-hero .hero-container {
    width: 100%;
}

#prop-hero .hero-content {
    display: flex;
    flex-direction: column;
    max-width: 700px;
}

#prop-hero .search-container {
    max-width: 540px;
    width: min(100%, 540px);
    margin-top: 2rem;
    margin-bottom: 0;
}

#prop-hero .hero-description {
    max-width: 560px;
}

.search-container {
    margin-top: 2.5rem;
    max-width: 540px;
    margin-left: 0;
    /* Strict left alignment */
}

.search-box {
    display: flex;
    align-items: center;
    height: 62px; /* Premium comfortable height */
    background: #ffffff;
    border-radius: 999px; /* Full pill shape */
    padding: 0 1.75rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04); /* Ultra soft floating shadow */
    border: 1px solid rgba(0, 0, 0, 0.03); /* Barely visible border */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: text;
}

.search-box:hover {
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.06);
}

.search-box:focus-within {
    background: #ffffff;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: rgba(181, 164, 139, 0.25); /* Subtle gold highlight */
}

.search-separator {
    width: 1px;
    height: 24px;
    background: #f0f0f0;
    margin-left: 1.25rem; /* Keep space from icon */
    margin-right: 0.6rem; /* Reduced space to input */
    flex-shrink: 0;
}

.search-box i {
    color: #a0a0a0; /* Muted gray icon */
    font-size: 1.25rem;
    flex-shrink: 0;
    font-weight: 300;
}

.search-box input {
    border: none;
    background: transparent;
    padding: 0; /* Ensure no internal padding adds to the gap */
    height: 100%;
    flex: 1;
    min-width: 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    color: #1a1c1e;
    outline: none;
}

.search-box input::placeholder {
    color: #b0b0b0; /* Soft neutral gray */
    opacity: 1;
}

.properties-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1a1c1e;
}

.properties-hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    opacity: 0.85;
    max-width: 500px;
}

@media (max-width: 768px) {
    .properties-hero {
        height: auto;
        min-height: 430px;
        text-align: left;
        /* Changed from center to align with text */
        padding-top: 7.5rem;
        padding-bottom: 2.5rem;
    }

    .properties-hero .hero-content {
        margin: 0;
        /* Removed margin: 0 auto */
    }

    .properties-hero h1 {
        font-size: 2.8rem;
    }

    .search-container {
        margin-top: 1.75rem;
        max-width: 100%;
    }

    .search-box {
        padding: 0.4rem 1.2rem;
    }

    #prop-hero {
        height: auto;
        min-height: 430px;
        padding-top: 7.5rem;
        padding-bottom: 2.5rem;
    }

    .properties-page .properties-hero,
    .contact-page .contact-hero {
        padding-top: 4rem;
    }

    .property-page #prop-hero {
        padding-top: 4.5rem;
    }
}

.text-white {
    color: #ffffff !important;
}

.py-2 {
    padding: 2rem 0;
}
/* Contact Page Modern Styles */
.contact-hero {
    position: relative;
    height: auto;
    min-height: clamp(500px, 64vh, 580px);
    background: url("../img/contact_hero_luxury.png") center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    color: #1a1c1e;
    padding-top: 9.5rem;
    padding-bottom: 3.75rem;
}

.contact-hero .hero-overlay {
    background: linear-gradient(90deg, 
        rgba(245, 240, 235, 0.95) 0%, 
        rgba(245, 240, 235, 0.8) 40%, 
        rgba(245, 240, 235, 0.2) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-hero .hero-container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1a1c1e;
}

.contact-hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    opacity: 0.85;
    max-width: 500px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: -8rem; /* Increased overlap for more drama */
    position: relative;
    z-index: 5;
    padding-bottom: 5rem;
}

.contact-card {
    background: #ffffff;
    padding: 3.5rem 2.5rem;
    border-radius: 32px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(184, 155, 94, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    border-color: rgba(184, 155, 94, 0.3);
}

.contact-card i {
    font-size: 2.8rem;
    color: #b89b5e;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1c1e;
}

.contact-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.contact-card .contact-link {
    font-weight: 700;
    color: #1a1c1e;
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.3s ease;
    margin-bottom: 0.5rem;
}

.contact-card .contact-link:hover {
    color: #b89b5e;
}

.contact-card strong {
    color: #b89b5e;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* Support Methods Grid */
.support-methods-section {
    padding-top: 5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.support-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3.5rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.method-item:hover {
    background: #ffffff;
    border-color: rgba(184, 155, 94, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.method-icon {
    width: 54px;
    height: 54px;
    background: #fcfbf8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b89b5e;
    font-size: 1.5rem;
    border: 1px solid rgba(184, 155, 94, 0.1);
}

.method-info {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #b89b5e;
    margin-bottom: 0.25rem;
}

.method-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1c1e;
    text-decoration: none;
}

@media (max-width: 768px) {
    .contact-hero {
        height: auto;
        min-height: 430px;
        padding-top: 7.5rem;
        padding-bottom: 2.5rem;
        text-align: left;
    }
    
    .contact-hero h1 {
        font-size: 2.8rem;
    }
    
    .contact-grid {
        margin-top: 2rem;
        gap: 2rem;
        padding-bottom: 3rem;
    }

    .support-methods-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .support-methods-section {
        padding-top: 3rem;
    }
}
/* Animations */
.animate-fade-in {
    animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Property Introduction Luxury Styling */
.property-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.intro-content {
    text-align: left;
}

.highlight-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(184, 155, 94, 0.08);
    color: #b89b5e;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.intro-title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1c1e;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.property-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.highlight-item {
    padding: 1.5rem;
    background: #fcfbf8;
    border: 1px solid rgba(184, 155, 94, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: #b89b5e;
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #b89b5e;
    margin-bottom: 1rem;
    display: block;
}

.highlight-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1c1e;
}

.intro-visual {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

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

@media (max-width: 992px) {
    .property-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .intro-title {
        font-size: 2.2rem;
    }
    
    .intro-visual {
        aspect-ratio: 16/9;
    }
}
/* Architectural Offset Design (Solo Edition) */
.troubleshoot-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem; /* Large gap to allow for the offset floating images */
    margin-top: 5rem;
    padding-bottom: 4rem;
}

.fix-card {
    background: #f3eee7; /* Stronger Sandstone color to prevent blending */
    border-radius: 40px;
    display: flex;
    align-items: center;
    padding: 3rem;
    gap: 4rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    box-shadow: 0 15px 50px rgba(184, 155, 94, 0.08);
    border: 1px solid rgba(184, 155, 94, 0.2);
}

.fix-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(184, 155, 94, 0.12);
    background: #ffffff;
    border-color: rgba(184, 155, 94, 0.2);
}

.fix-image {
    flex: 0 0 300px;
    height: 300px;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transform: rotate(-3deg) translateX(-1rem); /* Artistic floating offset */
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.fix-card:hover .fix-image {
    transform: rotate(0deg) scale(1.05) translateX(0);
}

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

.fix-body {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 1;
}

.fix-number {
    position: absolute;
    top: -2rem;
    right: 3rem;
    font-size: 9rem;
    font-weight: 900;
    color: rgba(184, 155, 94, 0.05); /* Ghost numbering */
    font-family: var(--font-heading);
    pointer-events: none;
    z-index: -1;
}

.fix-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: #1a1c1e;
    color: #fff;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.fix-body h3 {
    font-size: 2.2rem;
    color: #1a1c1e;
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.fix-body p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5a5a5a;
    max-width: 600px;
}

@media (max-width: 992px) {
    .fix-card {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 3rem;
        text-align: center;
    }
    .fix-image {
        flex: 0 0 260px;
        width: 100%;
        max-width: 340px;
        transform: rotate(0deg) translateX(0);
        height: 260px;
    }
    .fix-body h3 {
        font-size: 1.8rem;
    }
    .fix-number {
        font-size: 6rem;
        top: -1rem;
        right: 1rem;
    }
    .fix-body p {
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .fix-card {
        grid-template-columns: 1fr;
    }
    .fix-image {
        height: 220px;
    }
    .fix-body {
        padding: 2rem;
    }
    .fix-number {
        font-size: 4rem;
        bottom: 0.5rem;
        right: 1rem;
    }
}

@media (max-width: 992px) {
    .fix-card {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
        gap: 2.5rem;
        text-align: center;
    }
    .fix-image {
        flex: 0 0 240px;
        width: 100%;
        max-width: 320px;
        transform: rotate(0deg);
        height: 240px;
    }
    .fix-body h3 {
        font-size: 1.6rem;
    }
    .fix-number {
        font-size: 5rem;
        top: -1rem;
        right: 1rem;
    }
    .fix-body p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .fix-card {
        grid-template-columns: 1fr;
    }
    .fix-image {
        height: 180px;
    }
    .fix-body {
        padding: 1.5rem;
    }
    .fix-tag {
        top: 1rem;
        right: 1rem;
    }
}
/* Boutique Extra Services Redesign */
.services-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-section-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-section-header h3 {
    font-size: 1.8rem;
    color: #1a1c1e;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.service-section-header p {
    color: #b89b5e;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.breakfast-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.breakfast-card {
    background: #f3eee7;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(184, 155, 94, 0.1);
    display: flex;
    flex-direction: column;
}

.breakfast-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(184, 155, 94, 0.12);
    background: #ffffff;
}

.breakfast-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.breakfast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.breakfast-card:hover .breakfast-image img {
    transform: scale(1.1);
}

.breakfast-info {
    padding: 1.2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.breakfast-info h4 {
    font-size: 1.1rem;
    color: #1a1c1e;
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
}

.breakfast-desc {
    font-size: 0.8rem;
    color: #7a7a7a;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    padding: 0 0.5rem;
}

.breakfast-info .price {
    font-size: 0.9rem;
    color: #b89b5e;
    font-weight: 700;
}

.breakfast-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #b89b5e;
    color: #1a1c1e !important;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin-top: auto;
    width: 100%;
}

.breakfast-order-btn:hover {
    background: #1a1c1e;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.breakfast-order-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .breakfast-menu-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1.2rem !important;
        padding: 1rem 0 2rem !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: calc(100% + 2rem);
        margin-left: -1rem;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .breakfast-menu-grid::-webkit-scrollbar {
        display: none;
    }

    .breakfast-card {
        flex: 0 0 280px !important;
        scroll-snap-align: center;
        transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease !important;
    }

    /* Wellness-style Animation */
    .breakfast-card:hover,
    .breakfast-card:active {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
    }
}

@media (max-width: 500px) {
    .breakfast-card {
        flex: 0 0 85% !important;
    }
}

/* Cinematic Wellness Journey (Massage Advanced Redesign) */
.wellness-journey {
    display: flex;
    flex-direction: column;
    gap: 2.5rem; /* Tighter vertical rhythm */
}

/* Phase 1: Hero Block */
.wellness-hero-block {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 320px; /* Reduced from 450px */
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.wellness-hero-block .hero-visual {
    width: 100%;
    height: 100%;
    position: relative;
}

.wellness-hero-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wellness-hero-block .hero-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,28,30,0.9) 30%, transparent 80%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    color: #fff;
}

.wellness-hero-block .label {
    color: #b89b5e;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 800;
    margin-bottom: 1rem;
}

.wellness-hero-block h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    max-width: 500px;
}

.wellness-hero-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
}

/* Phase 2 & 3: Wings */
.wellness-wing {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Symmetrical 1:1 balance */
    gap: 3rem;
    align-items: center; /* Center both sides vertically */
    background: #fcfbf8;
    border-radius: 32px;
    padding: 2rem; /* Balanced padding */
    border: 1px solid rgba(184, 155, 94, 0.08);
}

.wellness-wing.reverse {
    grid-template-columns: 1fr 1fr; /* Symmetrical 1:1 balance */
}

.wellness-wing.reverse .wing-visual {
    order: 2;
}

.wing-visual {
    width: 100%;
    height: 420px; /* High-impact vertical presence for Classic */
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.healing-wing .wing-visual {
    height: 300px; /* Compact height for Healing items */
    aspect-ratio: 1 / 1;
}

.wing-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.wellness-wing:hover .wing-visual img {
    transform: scale(1.08);
}

.wing-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(26, 28, 30, 0.85);
    backdrop-filter: blur(15px);
    padding: 1.2rem 1.5rem; /* More compact label */
    border-radius: 16px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.wing-label.healing {
    background: rgba(184, 155, 94, 0.8);
}

.wing-label h4 {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.wing-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.wing-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    opacity: 0.8;
}

.modern-check-grid-balanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2.5rem; /* Balanced spacing */
    align-content: center;
}

.modern-check-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem; /* Increased gap to balance vertical image height */
    align-content: center;
}

.spa-item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    padding: 0.6rem 1rem; /* Compact list items */
    border-radius: 16px;
    transition: all 0.3s ease;
}

.spa-item:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(184, 155, 94, 0.05);
    transform: translateX(10px);
}

.spa-item i {
    color: #10b981;
    font-size: 1.6rem;
    margin-top: 2px;
}

.spa-item-info h5 {
    font-size: 1.15rem;
    color: #1a1c1e;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.spa-item-info p {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.5;
    margin: 0;
}

/* Phase 4: Booking Lounge */
.wellness-booking-lounge {
    margin-top: 2rem;
}

.lounge-card {
    background: #1a1c1e;
    border-radius: 32px;
    padding: 3rem; /* Reduced from 4rem */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.lounge-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 155, 94, 0.1) 0%, transparent 70%);
}

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

.lounge-info p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}

.lounge-meta {
    display: flex;
    gap: 3rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.meta-item i {
    color: #b89b5e;
    font-size: 1.2rem;
}

.lounge-btn {
    background: #b89b5e !important;
    color: #1a1c1e !important;
    padding: 1.2rem 3rem !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    font-size: 0.85rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.2rem !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
    z-index: 5 !important;
    flex-shrink: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-decoration: none !important;
    min-width: 280px !important;
}

.lounge-btn span, 
.lounge-btn i {
    color: #1a1c1e !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.lounge-btn:hover {
    background: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Advanced Responsiveness */
@media (max-width: 1100px) {
    .wellness-hero-block {
        height: auto;
    }
    .wellness-hero-block .hero-content {
        position: relative;
        background: #1a1c1e;
        padding: 3rem 2rem;
    }
    .wellness-wing {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    .wellness-wing.reverse {
        grid-template-columns: 1fr;
    }
    .wellness-wing.reverse .wing-visual {
        order: 0;
    }
    .modern-check-grid-balanced {
        grid-template-columns: 1fr;
    }
    .wing-visual {
        height: 300px;
    }
    .lounge-card {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 3rem 2rem;
    }
    .lounge-meta {
        flex-direction: column;
        gap: 1.5rem;
    }

    .lounge-btn {
        width: 100% !important;
        min-width: unset !important;
        padding: 1rem 2rem !important;
        flex-direction: row !important;
        justify-content: center !important;
        white-space: nowrap !important;
        font-size: 0.8rem !important;
        gap: 0.8rem !important;
    }

    .lounge-btn span {
        white-space: nowrap !important;
    }
}
/* Architectural Wide Layout Override */
.content-section.wide-content {
    max-width: 1160px !important; /* Perfectly sync with property-guide-nav */
    width: 100% !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.content-section.wide-content h2 {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.content-section.wide-content .breakfast-menu-grid,
.content-section.wide-content .service-product-grid {
    width: 100%;
    margin: 0 auto;
}

.services-container {
    width: 100% !important;
}

/* Emergency Help */
.emergency-guide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.emergency-guide-banner {
    background: linear-gradient(135deg, #1a1c1e 0%, #2b2d31 100%);
    color: #fff;
    border-radius: 32px;
    padding: 3rem 2.5rem;
    box-shadow: 0 24px 50px rgba(26, 28, 30, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184, 155, 94, 0.2);
}

.emergency-guide-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.05;
    pointer-events: none;
}

.emergency-guide-banner::after {
    content: '';
    position: absolute;
    inset: auto -8% -55% auto;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 155, 94, 0.25) 0%, transparent 70%);
}

.emergency-status-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: emergencyPulse 2s infinite;
}

@keyframes emergencyPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.emergency-guide-banner h3 {
    margin: 0 0 1rem;
    font-size: 2.2rem;
    color: #fff;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.emergency-guide-banner h3 i {
    color: #b89b5e;
    margin-right: 0.8rem;
    font-size: 1.8rem;
}

.emergency-guide-banner p {
    margin: 0;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.emergency-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.emergency-contact-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.emergency-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Category Accents */
.emergency-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #b89b5e;
}

.emergency-contact-card[data-type="emergency"]::before { background: #ef4444; }
.emergency-contact-card[data-type="fire"]::before { background: #f97316; }
.emergency-contact-card[data-type="police"]::before { background: #3b82f6; }
.emergency-contact-card[data-type="medical"]::before { background: #10b981; }

.emergency-card-head {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.emergency-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #1a1c1e;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.emergency-card-icon i {
    display: block;
    font-size: 1.55rem;
    line-height: 1;
    color: inherit !important;
}

.emergency-contact-card:hover .emergency-card-icon {
    background: #1a1c1e;
    color: #fff;
}

.emergency-card-kicker {
    margin: 0 0 0.2rem;
    color: #b89b5e;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    font-weight: 800;
}

.emergency-card-head h4 {
    margin: 0;
    font-size: 1.4rem;
    color: #1a1c1e;
    font-family: var(--font-heading);
}

.emergency-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.emergency-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.emergency-contact-item strong {
    color: #444;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-dial-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    background: #fdfaf5;
    border-radius: 18px;
    text-decoration: none;
    color: #1a1c1e;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(184, 155, 94, 0.1);
}

.quick-dial-btn:hover {
    background: #fdfaf5;
    color: #1a1c1e;
    border-color: rgba(184, 155, 94, 0.1);
}

.quick-dial-btn i {
    font-size: 1.2rem;
    opacity: 0.5;
}

/* Cinematic Travel Guide (Explore Iloilo) */
.travel-guide-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    width: 100% !important;
}

/* Phase 1: Travel Hero */
.travel-hero {
    background: #1a1c1e;
    border-radius: 40px;
    padding: 5rem 4rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.travel-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 155, 94, 0.15) 0%, transparent 70%);
}

.travel-hero .label {
    color: #b89b5e;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.travel-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.travel-hero .sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    line-height: 1.8;
}

/* Section Headings */
.guide-section .section-heading {
    margin-bottom: 3rem;
}

.guide-section .section-heading h3 {
    font-size: 1.8rem;
    color: #1a1c1e;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.guide-section .section-heading p {
    color: #7a7a7a;
    font-size: 0.95rem;
}

/* Heritage Spotlight Grid */
.heritage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.heritage-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.heritage-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.heritage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.heritage-card:hover .heritage-img img {
    transform: scale(1.1);
}

.heritage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,28,30,0.9) 10%, transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.overlay-content h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.overlay-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Map Explorer UI */
.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

.btn-map-explorer {
    background: #1a1c1e;
    color: #fff;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.btn-map-explorer i {
    color: #b89b5e;
    font-size: 1.1rem;
}

.btn-map-explorer:hover {
    background: #b89b5e;
    color: #1a1c1e;
    transform: translateY(-3px);
}

.btn-map-explorer:hover i {
    color: #1a1c1e;
}

.map-explorer-container {
    width: 100%;
    height: 600px;
    background: #f7f4ef;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184, 155, 94, 0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

#map-canvas {
    z-index: 1;
}

.leaflet-container {
    background: #f7f4ef;
    font-family: 'Inter', sans-serif;
}

.map-pin-avatar-wrapper {
    background: transparent;
    border: none;
}

.map-pin-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 24px rgba(32, 32, 32, 0.2);
    background: #fff;
}

.map-pin-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Custom Leaflet Popup Styling */
.custom-leaflet-popup .leaflet-popup-content-wrapper {
    background: rgba(255, 255, 255, 0.98);
    padding: 0;
    box-shadow: 0 24px 60px rgba(46, 46, 46, 0.18);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(184, 155, 94, 0.12);
}

.custom-leaflet-popup .leaflet-popup-content {
    margin: 0;
    width: 240px !important;
}

.custom-leaflet-popup .leaflet-popup-tip {
    display: none;
}

.custom-leaflet-popup a.leaflet-popup-close-button {
    color: #1a1c1e !important;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.96) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    z-index: 30;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: 400;
    opacity: 1 !important;
    box-shadow: 0 8px 18px rgba(26, 28, 30, 0.18) !important;
    border: 1px solid rgba(184, 155, 94, 0.16) !important;
}

.custom-leaflet-popup a.leaflet-popup-close-button:hover {
    color: #1a1c1e !important;
    background-color: #ffffff !important;
}

.map-popup-card {
    background: transparent;
}

.map-popup-image-wrap {
    height: 120px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(216, 199, 174, 0.34), rgba(247, 244, 239, 0.9));
}

.map-popup-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-popup-body {
    padding: 0.8rem 0.8rem 0.9rem;
}

.map-popup-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.26rem 0.56rem;
    border-radius: 999px;
    background: rgba(184, 155, 94, 0.12);
    color: #8b6d35;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.55rem;
}

.map-popup-body h4 {
    margin: 0 0 0.3rem;
    font-size: 0.9rem;
    color: #1f1f1f;
}

.map-popup-body p {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: rgba(46, 46, 46, 0.72);
}

.map-popup-link {
    margin-top: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1f1f1f;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.78rem;
}

.map-popup-link i {
    color: #b89b5e;
    font-size: 1rem;
}

.map-instructions {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(26, 28, 30, 0.85);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.9);
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1000; /* Over Leaflet */
    border: 1px solid rgba(184, 155, 94, 0.2);
}

.map-fallback-state {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding: 2rem;
    text-align: center;
    color: rgba(46, 46, 46, 0.7);
}

.map-fallback-state i {
    font-size: 2rem;
    color: #b89b5e;
}

.map-fallback-state h4 {
    margin: 0;
    color: #1a1c1e;
}

.map-fallback-state p {
    margin: 0;
    max-width: 320px;
    line-height: 1.6;
}

/* Iloilo Culinary Gems */
.food-guide-container {
    padding: 0;
}

.food-hero {
    background: linear-gradient(135deg, #1a1c1e 0%, #2c3035 100%);
    padding: 4rem 3rem;
    border-radius: 40px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.food-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/pinstriped-suit.png');
    opacity: 0.1;
}

.food-hero .hero-text {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.food-hero .label {
    color: #b89b5e;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.food-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.food-hero .sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
}

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

/* Make every 3rd card span full width for visual rhythm */
.food-card:nth-child(3n) {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.food-card {
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    border: 1px solid rgba(184, 155, 94, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.food-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(184, 155, 94, 0.12);
}

.food-visual {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.food-card:nth-child(3n) .food-visual {
    height: 100%;
}

.food-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.food-card:hover .food-visual img {
    transform: scale(1.1);
}

.food-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(184, 155, 94, 0.95);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.food-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.food-header {
    margin-bottom: 1.5rem;
}

.food-header h3 {
    font-size: 1.6rem;
    color: #1a1c1e;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.food-spot {
    color: #b89b5e;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.food-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.food-tip {
    margin-top: auto;
    background: #fdfaf5;
    padding: 1.2rem;
    border-radius: 20px;
    display: flex;
    gap: 1rem;
    border: 1px solid rgba(184, 155, 94, 0.1);
}

.food-tip i {
    color: #b89b5e;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.food-tip span {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.4;
}

/* Food Slideshow Effect */
.food-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.food-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: foodCrossFade 12s infinite ease-in-out;
}

.food-slideshow img:nth-child(1) {
    animation-delay: 0s;
}

.food-slideshow img:nth-child(2) {
    animation-delay: -6s; /* Offset by half duration */
}

@keyframes foodCrossFade {
    0%, 15%, 85%, 100% { opacity: 0; }
    35%, 65% { opacity: 1; }
}

@media (max-width: 768px) {
    .emergency-guide-banner {
        padding: 2rem 1.4rem;
        border-radius: 24px;
    }
    .emergency-guide-banner h3 {
        font-size: 1.6rem;
    }
    .emergency-card-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .emergency-contact-card {
        border-radius: 22px;
        padding: 1.25rem;
    }
    .emergency-card-head h4 {
        font-size: 1.1rem;
    }
    .section-heading-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .heritage-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.2rem;
        scroll-snap-type: x mandatory;
        padding: 0 1.5rem 1.5rem;
        margin: 0 -1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .heritage-grid::-webkit-scrollbar {
        display: none;
    }
    .heritage-card {
        flex: 0 0 280px;
        height: 340px;
        scroll-snap-align: center;
    }
    .map-explorer-container {
        height: 450px;
    }
    .map-instructions {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        border-radius: 18px;
        white-space: normal;
    }
    .custom-leaflet-popup .leaflet-popup-content {
        width: min(220px, calc(100vw - 3rem)) !important;
    }
    .map-popup-image-wrap {
        height: 110px;
    }

    /* Food Guide Mobile */
    .food-hero {
        padding: 3rem 1.5rem;
        border-radius: 30px;
    }
    .food-hero h1 {
        font-size: 2.2rem;
    }
    .food-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .food-card:nth-child(3n) {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    .food-content {
        padding: 1.5rem;
    }
    .food-visual {
        height: 220px;
    }
}

/* Transport Guide */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.transport-card {
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(184, 155, 94, 0.08);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
}

.transport-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(184, 155, 94, 0.1);
    border-color: rgba(184, 155, 94, 0.2);
}

.transport-visual {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.transport-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(26, 28, 30, 0.85);
    backdrop-filter: blur(8px);
    color: #b89b5e;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    border: 1px solid rgba(184, 155, 94, 0.3);
}

.transport-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.transport-card:hover .transport-visual img {
    transform: scale(1.08);
}

.transport-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allow body to grow */
    justify-content: space-between; /* Push footer to bottom */
}

.transport-meta h4 {
    font-size: 1.25rem;
    color: #1a1c1e;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.transport-meta p {
    color: #5a5a5a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.transport-footer {
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(184, 155, 94, 0.15);
}

.footer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #b89b5e;
    font-weight: 700;
    margin-bottom: 1rem;
}

.fare-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.fare-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding-bottom: 0.2rem;
}

.fare-list li span { color: #8a8a8a; }
.fare-list li strong { color: #1a1c1e; font-weight: 700; }

/* Local Insights */
.local-insights {
    background: #fcfbf8;
    border-radius: 40px;
    padding: 3.5rem;
    border: 1px solid rgba(184, 155, 94, 0.12);
}

.insights-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    color: #1a1c1e;
}

.insights-header i {
    font-size: 2.2rem;
    color: #b89b5e;
}

.insights-header h3 {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin: 0;
}

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

.tip-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.tip-item i {
    font-size: 1.6rem;
    color: #b89b5e;
    margin-top: 4px;
}

.tip-item h5 {
    font-size: 1rem;
    color: #1a1c1e;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.tip-item p {
    color: #5a5a5a;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* Travel Guide Responsiveness */
@media (max-width: 1100px) {
    .heritage-grid { grid-template-columns: repeat(2, 1fr); }
    .transport-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .travel-hero { padding: 3rem 2rem; border-radius: 30px; }
    .travel-hero h1 { font-size: 2.2rem; }
    .heritage-grid { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr; gap: 2rem; }
    .local-insights { padding: 2.5rem 1.5rem; }
}

/* ======================================================
   NEED HELP? — Premium Guest Support Command Center
   ====================================================== */

.support-center-container {
    padding: 0;
}

/* Hero Banner */
.support-hero-banner {
    background: radial-gradient(circle at bottom right, rgba(184, 155, 94, 0.05) 0%, transparent 50%),
                linear-gradient(135deg, #141618 0%, #1e2124 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 40px;
    padding: 2.8rem 3.2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4);
}

.support-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3C%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
}

.support-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #064e3b;
    border-radius: 999px;
    padding: 0.4rem 1.1rem 0.4rem 0.75rem;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #10b981;
    margin-bottom: 0.25rem;
}

.support-hero-badge .support-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
    display: inline-block;
}

.support-hero-title-row {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-top: 0.2rem;
}

.support-hero-title-row i {
    font-size: 1.75rem;
    color: #b89b5e;
    line-height: 1.2;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.support-hero-title-row h2 {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.support-hero-banner p {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 720px;
    margin: 0;
}

/* Service Cards Grid */
.support-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.support-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(184, 155, 94, 0.1);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                border-color 0.35s ease;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(184, 155, 94, 0.12);
    border-color: rgba(184, 155, 94, 0.25);
}

/* Card Header */
.support-card-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(184, 155, 94, 0.08);
    position: relative;
}

.support-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.support-card[data-service="guest"] .support-card-icon {
    background: linear-gradient(135deg, rgba(184, 155, 94, 0.15) 0%, rgba(184, 155, 94, 0.06) 100%);
    color: #b89b5e;
    border: 1px solid rgba(184, 155, 94, 0.2);
}

.support-card[data-service="housekeeping"] .support-card-icon {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.12) 0%, rgba(96, 165, 250, 0.04) 100%);
    color: #4a90d9;
    border: 1px solid rgba(96, 165, 250, 0.15);
}

.support-card[data-service="maintenance"] .support-card-icon {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.12) 0%, rgba(52, 211, 153, 0.04) 100%);
    color: #34c47a;
    border: 1px solid rgba(52, 211, 153, 0.15);
}

.support-card-kicker {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}

.support-card[data-service="guest"] .support-card-kicker { color: #b89b5e; }
.support-card[data-service="housekeeping"] .support-card-kicker { color: #4a90d9; }
.support-card[data-service="maintenance"] .support-card-kicker { color: #34c47a; }

.support-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1c1e;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.support-card-desc {
    font-size: 0.83rem;
    color: #7a7a7a;
    line-height: 1.55;
    margin: 0;
}

/* Card Body — Action Buttons */
.support-card-body {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.support-action-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.1rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid transparent;
}

/* Phone/Call button */
.support-action-btn[data-channel="phone"] {
    background: #f8fffe;
    border-color: rgba(52, 211, 153, 0.15);
}
.support-action-btn[data-channel="phone"]:hover {
    background: rgba(52, 211, 153, 0.08);
    border-color: rgba(52, 211, 153, 0.3);
    transform: translateX(4px);
}
.support-action-btn[data-channel="phone"] .support-action-icon {
    background: rgba(52, 211, 153, 0.12);
    color: #34c47a;
    border-color: rgba(52, 211, 153, 0.2);
}

/* WhatsApp/Viber button */
.support-action-btn[data-channel="whatsapp"] {
    background: #f8fffe;
    border-color: rgba(37, 211, 102, 0.12);
}
.support-action-btn[data-channel="whatsapp"]:hover {
    background: rgba(37, 211, 102, 0.07);
    border-color: rgba(37, 211, 102, 0.28);
    transform: translateX(4px);
}
.support-action-btn[data-channel="whatsapp"] .support-action-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.18);
}

/* Facebook button */
.support-action-btn[data-channel="facebook"] {
    background: #f5f8ff;
    border-color: rgba(66, 103, 178, 0.1);
}
.support-action-btn[data-channel="facebook"]:hover {
    background: rgba(66, 103, 178, 0.07);
    border-color: rgba(66, 103, 178, 0.25);
    transform: translateX(4px);
}
.support-action-btn[data-channel="facebook"] .support-action-icon {
    background: rgba(66, 103, 178, 0.1);
    color: #4267B2;
    border-color: rgba(66, 103, 178, 0.15);
}

/* Email button */
.support-action-btn[data-channel="email"] {
    background: #fdf8f0;
    border-color: rgba(184, 155, 94, 0.12);
}
.support-action-btn[data-channel="email"]:hover {
    background: rgba(184, 155, 94, 0.08);
    border-color: rgba(184, 155, 94, 0.28);
    transform: translateX(4px);
}
.support-action-btn[data-channel="email"] .support-action-icon {
    background: rgba(184, 155, 94, 0.12);
    color: #b89b5e;
    border-color: rgba(184, 155, 94, 0.2);
}

.support-action-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.support-action-btn:hover .support-action-icon {
    transform: scale(1.1);
}

.support-action-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.support-action-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
    color: #9a9a9a;
}

.support-action-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1c1e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.support-action-arrow {
    margin-left: auto;
    font-size: 1rem;
    color: #ccc;
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
}

.support-action-btn:hover .support-action-arrow {
    color: #999;
    transform: translateX(3px);
}

/* Card Footer — Hours Badge */
.support-card-footer {
    padding: 1rem 2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.78rem;
    color: #7a7a7a;
    border-top: 1px dashed rgba(184, 155, 94, 0.12);
}

.support-card-footer i {
    color: #b89b5e;
    font-size: 1rem;
}

/* Hours badge only on Guest Services card */
.support-hours-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: #22c55e;
    letter-spacing: 0.04em;
}

.support-hours-pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
}

/* Responsive */
@media (max-width: 1100px) {
    .support-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .support-hero-banner {
        grid-template-columns: 1fr;
        row-gap: 1.4rem;
        padding: 2.4rem 1.75rem;
        border-radius: 24px;
        text-align: left;
        min-height: auto;
    }
    .support-hero-icon-wrap {
        width: 78px;
        height: 78px;
        border-radius: 24px;
        justify-self: start;
    }
    .support-hero-text h2 {
        font-size: 2.1rem;
    }
    .support-hero-text {
        max-width: none;
        padding-right: 0;
    }
    .support-hero-text p {
        max-width: none;
        font-size: 0.95rem;
    }
    .support-cards-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.25rem;
        padding: 0 1.5rem 1.5rem;
        margin: 0 -1.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .support-cards-grid::-webkit-scrollbar {
        display: none;
    }
    .support-card {
        flex: 0 0 300px;
        scroll-snap-align: center;
        border-radius: 24px;
    }
    .support-card-header {
        padding: 1.5rem 1.5rem 1.2rem;
    }
    .support-card-body {
        padding: 1.2rem 1.5rem 1.5rem;
    }
    .support-card-footer {
        padding: 0.9rem 1.5rem 1.25rem;
    }
}
