/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fcfcfc;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #104a21; /* Deep Green */
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}


/* Navbar */
.navbar {
    border-bottom: 2px solid #c5a059; /* Gold */
    background-color: #ffffff;
}
.navbar-brand h2 {
    color: #104a21;
    font-weight: 700;
    margin: 0;
    font-size: 24px;
}
.navbar-brand span {
    color: #c5a059;
}
.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #333 !important;
}
.nav-link:hover {
    color: #c5a059 !important;
}

/* Buttons */
.btn-primary-custom {
    background-color: #104a21;
    color: #fff;
    border: 2px solid #104a21;
    transition: 0.3s;
}
.btn-primary-custom:hover {
    background-color: #c5a059;
    border-color: #c5a059;
    color: #fff;
}

/* Animations & Effects */
.pulse-btn {
    animation: pulse 2s infinite;
    margin-left:20px;
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}
.hover-zoom {
    transition: transform 0.5s ease;
}
.hover-zoom:hover {
    transform: scale(1.03);
}
.image-border-bg {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    background-color: #c5a059;
    border-radius: 1rem;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    height: 90vh;
    min-height: 500px;
}
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(16, 74, 33, 0.8), rgba(0, 0, 0, 0.7));
}
.ken-burns-left {
    animation: kenBurnsLeft 15s ease-out forwards;
}
@keyframes kenBurnsLeft {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, 0); }
}

/* Titles */
.title-underline {
    height: 4px;
    width: 80px;
    background-color: #c5a059;
    border-radius: 2px;
    margin: 0 auto;
}
.title-underline-left {
    height: 4px;
    width: 80px;
    background-color: #c5a059;
    border-radius: 2px;
}

/* Highlights Grid */
.group-hover {
    transition: all 0.3s ease;
}
.group-hover:hover {
    transform: translateY(-5px);
}
.text-primary-custom {
    color: #104a21 !important;
}

/* Feature Slider */
.feature-card {
    height: 350px;
}
.feature-card .card-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.feature-card:hover .card-img {
    transform: scale(1.08);
}
.bg-gradient-dark {
    background: linear-gradient(to top, rgba(16, 74, 33, 0.9) 0%, rgba(0,0,0,0) 100%);
}

/* Amenities */
.amenity-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 12px;
}
.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}
.amenity-icon {
    color: #c5a059;
}
.strongest-amenity {
    background-color: #104a21;
    color: #fff;
    border: none;
}
.strongest-amenity .amenity-icon {
    color: #fff;
}
.ribbon {
    position: absolute;
    top: 50px;
    right: -50px;
    background: #c5a059;
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Inventory / Floor Plans */
.blur-img {
    filter: blur(8px);
    transition: filter 0.3s ease;
}
.blur-img:hover {
    filter: blur(4px);
}
.inventory-card {
    transition: transform 0.4s ease;
}
.inventory-card:hover {
    transform: scale(1.02);
}

/* Gallery Section */
.gallery-card {
    position: relative;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.gallery-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 74, 33, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.gallery-card:hover .gallery-caption {
    opacity: 1;
}

.gallery-hidden {
    display: none;
}

.gallery-hidden.show {
    display: block;
}

/* Contact Section */
.contact-form-wrapper {
    border: 2px solid #c5a059;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    border-color: #ddd !important;
    color: #333;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: #bbb;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    border-color: #104a21 !important;
    box-shadow: 0 0 0 0.2rem rgba(16, 74, 33, 0.15);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Pricing Table (From Source) */
.pricing-section {
    background: #f6f6f6;
    font-family: 'Poppins', sans-serif;
}
.pricing-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.table-header {
    background: #104a21;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 22px 30px;
    font-weight: 600;
    font-size: 18px;
}
.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
}
.table-row:last-child {
    border-bottom: none;
}
.offer-btn {
    background: #104a21;
    color: white;
    border: 2px solid #c5a059;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    width: 100%;
}
.offer-btn:hover {
    background: #c5a059;
    color: white;
}
@media(max-width:768px){
    .table-header { display: none; }
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 25px;
        text-align: center;
    }
}

/* Location Tabs */
.nav-pills .nav-link {
    background: #e9e9e9;
    color: #555;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 500;
    margin: 5px;
    transition: all 0.3s ease;
}
.nav-pills .nav-link:hover {
    background: #dcdcdc;
}
.nav-pills .nav-link.active {
    background: #104a21;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(16, 74, 33, 0.3);
}
.footer-input::placeholder {
    color: #fff !important;
    opacity: 1;
}
.location-item {
    transition: all 0.3s ease;
}
.location-item:hover {
    background: #f8fbf9;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
}
.address-card {
    background: linear-gradient(135deg, #104a21 0%, #1a7433 100%);
}
.address-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 200px;
    color: rgba(255,255,255,0.05);
    z-index: 1;
}

/* Testimonials Section */
.testimonial-panel {
    border: 3px solid #c5a059;
    transition: all 0.3s ease;
}

.testimonial-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(16, 74, 33, 0.2) !important;
}

.testimonial-text {
    font-style: italic;
    font-weight: 500;
    color: #555;
    letter-spacing: 0.3px;
}

.testimonial-stars {
    font-size: 18px;
    letter-spacing: 5px;
}

.btn-outline-primary-custom {
    color: #104a21;
    border: 2px solid #104a21;
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
    background-color: #104a21;
    color: white;
    border-color: #104a21;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #c5a059;
    transform: scale(1.2);
}

.dot:hover {
    background-color: #c5a059;
}

/* Footer */
footer {
    background-color: #104a21;
    color: #fff;
    border-top: 5px solid #c5a059;
}

/* Burgundy reference theme overrides */
:root {
    --primary-burgundy: #6f1d2f;
    --deep-burgundy: #3d0f1f;
    --soft-burgundy: #8f2f45;
    --heritage-gold: #d8b26d;
    --warm-cream: #fbf7f1;
}

body {
    background-color: var(--warm-cream);
}

h1, h2, h3, h4, h5, h6,
.text-primary-custom {
    color: var(--primary-burgundy) !important;
}

.navbar {
    border-bottom-color: rgba(216, 178, 109, 0.45);
}

.navbar .nav-link:hover,
.navbar-brand span,
.amenity-icon {
    color: var(--heritage-gold) !important;
}

.btn-primary-custom,
.offer-btn,
.nav-pills .nav-link.active {
    background-color: var(--primary-burgundy);
    border-color: var(--primary-burgundy);
    color: #fff !important;
}

.btn-primary-custom:hover,
.offer-btn:hover,
.btn-outline-primary-custom:hover {
    background-color: var(--heritage-gold);
    border-color: var(--heritage-gold);
    color: var(--deep-burgundy) !important;
}

.title-underline,
.title-underline-left,
.ribbon,
.dot.active,
.dot:hover {
    background-color: var(--heritage-gold);
}

.overlay {
    background: linear-gradient(120deg, rgba(61, 15, 31, 0.86), rgba(0, 0, 0, 0.56));
}

.hero-section h1,
.hero-section h3,
.hero-section .h3 {
    color: #fff !important;
}

.hero-section h4,
.hero-section .text-warning,
.strongest-amenity h4 {
    color: var(--heritage-gold) !important;
}

.image-border-bg,
.strongest-amenity,
.table-header,
.address-card,
footer,
#testimonials {
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--primary-burgundy) 100%) !important;
}

.highlight-item,
.amenity-item,
.spec-card {
    border: 2px solid rgba(216, 178, 109, 0.75);
    box-shadow: 0 12px 28px rgba(61, 15, 31, 0.08);
}

.highlight-item {
    position: relative;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 8px;
    padding: 24px;
}

.highlight-item::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    color: var(--heritage-gold);
    opacity: 0.9;
    transform: translateY(-50%);
}

.text-lg-end .highlight-item::after {
    right: -28px;
}

.text-lg-start .highlight-item::after {
    left: -28px;
    transform: translateY(-50%) rotate(180deg);
}

.center-img-wrapper {
    border: 8px solid #fff;
    outline: 3px solid var(--heritage-gold);
}

.spec-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    min-height: 230px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(61, 15, 31, 0.14);
}

.spec-card i {
    color: var(--heritage-gold);
    font-size: 34px;
    margin-bottom: 18px;
}

.spec-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.spec-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.7;
}

.testimonial-panel {
    border-color: var(--heritage-gold);
}

.testimonial-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--heritage-gold);
    box-shadow: 0 10px 28px rgba(61, 15, 31, 0.25);
}

.btn-outline-primary-custom {
    color: var(--primary-burgundy);
    border-color: var(--primary-burgundy);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(61, 15, 31, 0.96) !important;
        border: 1px solid rgba(216, 178, 109, 0.35);
    }

    .highlight-item::after {
        display: none;
    }
}

/* Premium pricing section refinement */
#pricing {
    position: relative;
    padding: 72px 0 82px !important;
    overflow: hidden;
}

#pricing::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 28%, rgba(255,255,255,0.38), transparent 24%),
        linear-gradient(90deg, rgba(74,45,34,0.045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(74,45,34,0.035) 1px, transparent 1px);
    background-size: auto, 76px 76px, 76px 76px;
    opacity: 0.42;
}

#pricing .pricing-container {
    position: relative;
    z-index: 2;
}

.pricing-title {
    text-align: center;
    margin-bottom: 22px;
    letter-spacing: 0.04em;
}

#pricing .title-underline {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 42px !important;
}

.pricing-table {
    width: min(100%, 1120px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px !important;
    background:
        linear-gradient(#FFF6E8, #FFF6E8) padding-box,
        linear-gradient(135deg, rgba(201,154,69,0.78), rgba(255,244,207,0.7), rgba(74,45,34,0.44)) border-box !important;
    border: 1px solid transparent !important;
    box-shadow: 0 28px 80px rgba(74, 45, 34, 0.18) !important;
}

.table-header {
    min-height: 86px;
    align-items: center;
    background:
        linear-gradient(135deg, #3C241C, #5D3C2A 58%, #7A5538) !important;
    color: #FFF6E8 !important;
    letter-spacing: 0.02em;
}

.table-header span {
    color: #FFF6E8;
    font-weight: 700;
}

.table-row {
    min-height: 132px;
    align-items: center;
    background:
        radial-gradient(circle at 88% 12%, rgba(201, 154, 69, 0.16), transparent 28%),
        rgba(255, 246, 232, 0.98) !important;
}

.table-row .type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 112px;
    margin: 0 auto;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(74, 45, 34, 0.08);
    border: 1px solid rgba(201, 154, 69, 0.44);
    color: #4A2D22 !important;
}

.table-row .fw-medium {
    color: #635044 !important;
    font-size: 18px;
}

.table-row .price {
    color: #3C241C !important;
    font-size: clamp(22px, 2vw, 30px) !important;
}

.table-row .price del {
    color: rgba(74, 45, 34, 0.54) !important;
    font-size: 0.82em;
}

.offer-btn {
    max-width: 260px;
    min-height: 58px;
    border-radius: 999px;
    font-size: 16px;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 44px rgba(74, 45, 34, 0.16);
}

@media (max-width: 768px) {
    #pricing {
        padding: 54px 0 62px !important;
    }

    .pricing-table {
        width: min(100%, 520px);
    }

    .table-row {
        min-height: 0;
        padding: 28px 18px;
    }

    .table-row .type,
    .table-row .fw-medium,
    .table-row .price,
    .table-row span {
        width: 100%;
    }

    .offer-btn {
        margin-top: 6px;
        max-width: 100%;
    }
}

/* Premium enquiry modal theme only */
#enquireModal .modal-dialog {
    max-width: min(94vw, 560px);
}

#enquireModal .modal-content {
    border-radius: 12px !important;
    overflow: hidden;
    background:
        linear-gradient(#FFF6E8, #FFF6E8) padding-box,
        linear-gradient(135deg, rgba(201,154,69,0.78), rgba(255,244,207,0.7), rgba(74,45,34,0.42)) border-box !important;
    border: 1px solid transparent !important;
    box-shadow: 0 32px 90px rgba(74, 45, 34, 0.24) !important;
}

#enquireModal .modal-header {
    padding: 28px 34px 0 !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(201,154,69,0.18), transparent 44%),
        transparent;
}

#enquireModal .btn-close {
    background-color: rgba(74, 45, 34, 0.08) !important;
    border: 1px solid rgba(201,154,69,0.36);
    opacity: 1;
}

#enquireModal .modal-header .rounded-circle {
    width: 64px !important;
    height: 64px !important;
    color: #FFF6E8 !important;
    background: linear-gradient(135deg, #4A2D22, #6A4632) !important;
    box-shadow: 0 16px 38px rgba(74,45,34,0.18) !important;
}

#enquireModal .modal-title {
    color: #4A2D22 !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 34px;
    letter-spacing: 0.03em;
}

#enquireModal .modal-header p {
    color: #6A5144 !important;
}

#enquireModal .modal-body {
    padding: 22px 38px 38px !important;
}

#enquireModal .form-floating {
    margin-bottom: 16px !important;
}

#enquireModal .form-control {
    min-height: 58px;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.72) !important;
    border: 1px solid rgba(201,154,69,0.32) !important;
    color: #261B16;
    box-shadow: none !important;
}

#enquireModal .form-control:focus {
    background: #fff !important;
    border-color: #C99A45 !important;
    box-shadow: 0 0 0 0.2rem rgba(201,154,69,0.16) !important;
}

#enquireModal label {
    color: #6A5144 !important;
}

#enquireModal button[type="submit"] {
    height: 58px !important;
    border: 0 !important;
    border-radius: 999px !important;
    color: #FFF6E8 !important;
    background: linear-gradient(135deg, #4A2D22, #6A4632) !important;
    box-shadow: 0 18px 44px rgba(74,45,34,0.18) !important;
}

#enquireModal button[type="submit"]:hover {
    color: #4A2D22 !important;
    background: linear-gradient(135deg, #D8B26D, #F0C96D) !important;
}

#enquireModal small {
    color: #6A5144 !important;
}

#enquireModal small i {
    color: #C99A45;
}

@media (max-width: 575.98px) {
    #enquireModal .modal-dialog {
        margin: 12px;
    }

    #enquireModal .modal-header {
        padding: 24px 22px 0 !important;
    }

    #enquireModal .modal-body {
        padding: 18px 22px 28px !important;
    }

    #enquireModal .modal-title {
        font-size: 29px;
    }
}

/* Final modal polish: clearer close, premium text contrast */
#enquireModal .modal-dialog {
    max-width: min(92vw, 620px);
}

#enquireModal .modal-content {
    background:
        radial-gradient(circle at 78% 16%, rgba(201,154,69,0.2), transparent 24%),
        linear-gradient(145deg, #FFF8ED 0%, #F6ECDA 54%, #E9D5AD 100%) !important;
    box-shadow: 0 36px 100px rgba(26, 18, 14, 0.34) !important;
}

#enquireModal .modal-content::before {
    inset: 14px;
}

#enquireModal .btn-close {
    width: 42px !important;
    height: 42px !important;
    top: 16px !important;
    right: 16px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: #4A2D22 !important;
    opacity: 1 !important;
    box-shadow: 0 14px 32px rgba(74,45,34,0.22) !important;
    position: absolute;
}

#enquireModal .btn-close::before {
    content: "×";
    display: block;
    color: #FFF6E8;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    font-weight: 300;
}

#enquireModal .modal-header .rounded-circle {
    color: #FFF6E8 !important;
    border: 1px solid rgba(255,246,232,0.32);
}

#enquireModal .modal-title {
    color: #3C241C !important;
    text-shadow: 0 10px 28px rgba(74,45,34,0.08);
}

#enquireModal .modal-header p {
    color: #6A5144 !important;
    font-weight: 500;
}

#enquireModal .form-control {
    color: #3C241C !important;
    font-weight: 600;
}

#enquireModal .form-control::placeholder {
    color: transparent;
}

#enquireModal .form-floating > label {
    color: #765848 !important;
    font-weight: 700;
}

#enquireModal .form-floating > label i {
    color: #9B6A25 !important;
}

#enquireModal .form-control:focus ~ label,
#enquireModal .form-control:not(:placeholder-shown) ~ label {
    color: #4A2D22 !important;
}

#enquireModal button[type="submit"] {
    color: #FFF6E8 !important;
    font-size: 17px !important;
    letter-spacing: 0.01em;
}

#enquireModal small {
    color: #765848 !important;
    font-weight: 500;
}

/* Refined premium enquiry modal */
#enquireModal .modal-content {
    border-radius: 10px !important;
    background:
        radial-gradient(circle at 84% 0%, rgba(201, 154, 69, 0.18), transparent 26%),
        linear-gradient(145deg, #FFF7EA 0%, #F6ECDA 56%, #E9D5AD 100%) !important;
    border: 1px solid rgba(201, 154, 69, 0.55) !important;
}

#enquireModal .modal-content::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(201, 154, 69, 0.28);
    border-radius: 8px;
    pointer-events: none;
}

#enquireModal .modal-header .rounded-circle {
    width: 58px !important;
    height: 58px !important;
    margin-bottom: 14px !important;
    background: linear-gradient(135deg, #4A2D22, #6A4632) !important;
}

#enquireModal .modal-title {
    font-size: 38px;
    line-height: 1;
    margin-bottom: 8px;
}

#enquireModal .modal-header p {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    line-height: 1.6;
}

#enquireModal .form-control {
    background: rgba(255, 255, 255, 0.62) !important;
    border: 1px solid rgba(106, 70, 50, 0.16) !important;
    padding-left: 18px;
}

#enquireModal .form-floating > label {
    padding-left: 18px;
    font-weight: 600;
}

#enquireModal button[type="submit"] {
    margin-top: 6px;
    background: linear-gradient(135deg, #4A2D22, #744A35) !important;
}

#enquireModal button[type="submit"] i {
    transform: rotate(-10deg);
}

#enquireModal .modal-body {
    position: relative;
    z-index: 2;
}

#enquireModal .modal-header {
    position: relative;
    z-index: 2;
}

#enquireModal .btn-close {
    top: 18px !important;
    right: 18px !important;
}

/* Requested small fixes: Amenities bg and pricing one-line price */
#amenities {
    background: #F6ECDA !important;
}

#amenities::before {
    opacity: 0.18;
}

#amenities .section-kicker,
#amenities .luxury-amenities-heading {
    color: #4A2D22 !important;
    text-shadow: none !important;
}

.table-row .price {
    white-space: nowrap;
}

/* Burgundy luxury redesign */
:root {
    --primary-burgundy: #730037;
    --deep-burgundy: #4d0025;
    --cream: #f4e6c9;
    --cream-soft: #fff2d8;
    --sand: #c3a26f;
    --ink: #18110f;
}

body {
    background: var(--cream) !important;
    color: var(--ink);
}

body,
p,
.text-muted,
.text-secondary {
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-5 {
    font-family: 'Cormorant Garamond', serif !important;
    letter-spacing: 0.03em;
    color: var(--primary-burgundy) !important;
}

section,
#about,
#amenities,
#highlights,
#pricing,
#specifications,
#location,
#gallery,
#contact {
    background: var(--cream) !important;
}

.site-navbar {
    background: linear-gradient(180deg, rgba(244, 230, 201, 0.34), rgba(244, 230, 201, 0.08)) !important;
    border-bottom: 1px solid rgba(115, 0, 55, 0.1) !important;
    box-shadow: none !important;
    backdrop-filter: blur(14px) saturate(135%);
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.header.is-scrolled .site-navbar {
    background: linear-gradient(180deg, rgba(244, 230, 201, 0.34), rgba(244, 230, 201, 0.08)) !important;
    border-bottom-color: rgba(115, 0, 55, 0.1) !important;
    box-shadow: none !important;
}

.site-navbar .navbar-brand h2 {
    color: var(--primary-burgundy) !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 34px !important;
    line-height: 0.9;
    text-shadow: 0 5px 22px rgba(244, 230, 201, 0.36);
}

.site-navbar .navbar-brand h2 span:first-child {
    color: var(--primary-burgundy) !important;
}

.site-navbar .navbar-brand h2 span:last-child {
    display: block;
    color: #17100d !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 12px !important;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.site-navbar .nav-link {
    color: var(--deep-burgundy) !important;
    text-shadow: 0 5px 20px rgba(244, 230, 201, 0.46);
}

.site-navbar .navbar-toggler-icon {
    filter: invert(14%) sepia(70%) saturate(2532%) hue-rotate(310deg);
}

.header.is-scrolled .site-navbar .navbar-brand h2,
.header.is-scrolled .site-navbar .navbar-brand h2 span:first-child,
.header.is-scrolled .site-navbar .nav-link {
    color: var(--primary-burgundy) !important;
    text-shadow: none;
}

.header.is-scrolled .site-navbar .navbar-brand h2 span:last-child {
    color: #17100d !important;
}

.header.is-scrolled .site-navbar .navbar-toggler-icon {
    filter: invert(14%) sepia(70%) saturate(2532%) hue-rotate(310deg);
}

.luxury-hero {
    height: 100vh;
    min-height: 760px;
    padding-top: 0;
    background:
        linear-gradient(115deg, rgba(244, 230, 201, 0.96) 0%, rgba(244, 230, 201, 0.9) 46%, rgba(77, 0, 37, 0.22) 100%),
        radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.34), transparent 26%),
        var(--cream);
    isolation: isolate;
}

.luxury-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(115, 0, 55, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(115, 0, 55, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 76%, transparent);
    opacity: 0.42;
}

.luxury-hero::after {
    content: "";
    position: absolute;
    left: -10%;
    top: 0;
    width: 42%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
    transform: skewX(-16deg);
    animation: heroSheen 7s ease-in-out infinite;
}

@keyframes heroSheen {
    0%, 18% { transform: translateX(-35%) skewX(-16deg); opacity: 0; }
    38% { opacity: 0.68; }
    68%, 100% { transform: translateX(330%) skewX(-16deg); opacity: 0; }
}

.luxury-hero .swiper-slide:first-child {
    background: transparent;
}

.luxury-hero-image {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 650px;
    border: 1px solid rgba(255, 244, 223, 0.56);
    box-shadow: 0 38px 110px rgba(77, 0, 37, 0.26);
}

.luxury-hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(77, 0, 37, 0.03), rgba(77, 0, 37, 0.22));
    pointer-events: none;
}

.luxury-hero-image::after {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 3;
    border: 1px solid rgba(255, 244, 223, 0.45);
    border-radius: 16px;
    pointer-events: none;
}

.luxury-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}

.luxury-copy {
    max-width: 640px;
    padding: 116px 0 30px;
    position: relative;
    z-index: 3;
}

.luxury-eyebrow,
.section-kicker {
    font-family: 'Marcellus', serif;
    color: var(--primary-burgundy);
    font-size: 22px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.luxury-eyebrow::after {
    content: "";
    display: block;
    width: 96px;
    height: 1px;
    background: var(--sand);
    margin-top: 16px;
}

.luxury-copy h1 {
    font-size: clamp(48px, 5vw, 78px);
    line-height: 1.05;
    margin: 70px 0 28px;
    max-width: 620px;
    text-shadow: 0 14px 42px rgba(77, 0, 37, 0.12);
}

.luxury-subtitle {
    color: var(--primary-burgundy);
    font-size: 25px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.luxury-intro {
    max-width: 630px;
    font-size: 18px;
    line-height: 1.8;
    margin: 56px 0 34px;
    color: #160d0a;
}

.luxury-price {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(115, 0, 55, 0.32);
    border-radius: 16px;
    padding: 18px 28px;
    margin-bottom: 36px;
    color: var(--primary-burgundy);
    background: rgba(255, 246, 226, 0.54);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(77, 0, 37, 0.12), inset 0 1px 0 rgba(255,255,255,0.65);
}

.luxury-price span,
.luxury-price small {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.luxury-price strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    line-height: 1;
}

.luxury-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    height: 66px;
    background: var(--primary-burgundy);
    color: #fff !important;
    border-radius: 14px;
    font-family: 'Marcellus', serif;
    letter-spacing: 0.12em;
    box-shadow: 0 20px 46px rgba(115, 0, 55, 0.28);
    position: relative;
    overflow: hidden;
}

.luxury-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent, rgba(255,255,255,0.28), transparent);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}

.luxury-btn:hover::after {
    transform: translateX(120%);
}

.luxury-btn:hover {
    transform: translateY(-2px);
}

.luxury-dark-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 23, 37, 0.03), rgba(2, 21, 35, 0.9)),
        linear-gradient(180deg, rgba(77, 0, 37, 0.24), rgba(0,0,0,0.12));
}

.luxury-dark-overlay.garden {
    background:
        linear-gradient(90deg, rgba(44, 22, 8, 0.42), rgba(77, 0, 37, 0.82)),
        linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.44));
}

.luxury-slide-panel {
    margin-left: auto;
    margin-right: 7vw !important;
    max-width: 650px;
    color: #fff;
}

.luxury-line {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3.2vw, 52px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.32);
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    padding: 28px 0;
}

.luxury-line span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    text-transform: lowercase;
    letter-spacing: 0.02em;
    font-size: 1.35em;
}

.luxury-slide-panel h2 {
    color: white !important;
    font-size: clamp(54px, 6vw, 96px);
    line-height: 0.85;
    margin-top: 42px;
}

.luxury-slide-panel h3,
.luxury-slide-panel p {
    color: #fff !important;
    letter-spacing: 0.12em;
}

.luxury-price.dark {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.42);
    color: #fff;
    backdrop-filter: blur(8px);
}

.title-underline,
.title-underline-left {
    background: var(--sand) !important;
    height: 2px;
}

.btn-primary-custom,
.offer-btn,
.nav-pills .nav-link.active {
    background: var(--primary-burgundy) !important;
    border-color: var(--primary-burgundy) !important;
}

.highlight-item,
.amenity-item,
.spec-card,
.pricing-table,
.contact-form-wrapper,
.card {
    background: rgba(255, 246, 226, 0.76) !important;
    border: 1px solid rgba(115, 0, 55, 0.18) !important;
    border-radius: 8px !important;
    box-shadow: 0 18px 48px rgba(77, 0, 37, 0.08) !important;
}

.strongest-amenity,
.table-header,
.address-card,
footer,
#testimonials {
    background: linear-gradient(135deg, var(--deep-burgundy), var(--primary-burgundy)) !important;
}

.amenity-icon,
.spec-card i,
.text-warning {
    color: var(--sand) !important;
}

#gallery {
    padding-top: 80px !important;
    padding-bottom: 100px !important;
}

#highlights {
    position: relative;
    padding: 120px 0 !important;
    background:
        linear-gradient(rgba(14, 91, 55, 0.9), rgba(12, 82, 50, 0.9)),
        url('/img/home18.jpeg') center/cover fixed !important;
}

#highlights::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.38;
    pointer-events: none;
}

#highlights .container {
    position: relative;
    z-index: 2;
}

#highlights h2 {
    color: #fff4df !important;
    text-transform: uppercase;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

#highlights h2::before {
    content: "Why Choose?";
    display: block;
    color: #fff4df;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    text-transform: none;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

#highlights > .container > .row {
    display: none !important;
}

.luxury-highlights-panel {
    width: min(100%, 1320px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 244, 223, 0.14);
    border: 1px solid rgba(255, 244, 223, 0.18);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
}

.luxury-highlight-cell {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff4df;
    position: relative;
}

.luxury-highlight-cell:not(:nth-child(3n))::after {
    content: "";
    position: absolute;
    right: 0;
    top: 32%;
    height: 36%;
    width: 1px;
    background: rgba(255, 244, 223, 0.42);
}

.luxury-highlight-cell:nth-child(-n+3)::before {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    bottom: 0;
    height: 1px;
    background: rgba(255, 244, 223, 0.16);
}

.luxury-highlight-cell i {
    color: rgba(216, 178, 109, 0.95);
    font-size: 48px;
    margin-bottom: 28px;
}

.luxury-highlight-cell h4,
.luxury-highlight-cell p {
    color: #fff4df !important;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    line-height: 1.1;
    margin: 0;
    letter-spacing: 0.08em;
    text-transform: capitalize;
}

.luxury-highlight-cell p {
    margin-top: 5px;
}

#amenities {
    position: relative;
    padding: 90px 0 110px !important;
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 244, 223, 0.24), transparent 26%),
        linear-gradient(135deg, rgba(166, 130, 74, 0.96), rgba(197, 164, 105, 0.92) 45%, rgba(145, 112, 63, 0.98)) !important;
}

#amenities::before,
#location::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.2;
    background-image:
        linear-gradient(30deg, rgba(255,255,255,0.18) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.18) 87.5%, rgba(255,255,255,0.18)),
        linear-gradient(150deg, rgba(255,255,255,0.18) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.18) 87.5%, rgba(255,255,255,0.18));
    background-size: 72px 126px;
}

#amenities .container,
#location .container {
    position: relative;
    z-index: 2;
}

#amenities .section-kicker,
#amenities .luxury-amenities-heading {
    color: #fff4df !important;
}

.luxury-amenities-heading {
    max-width: 980px;
    font-size: clamp(36px, 4.2vw, 64px);
    line-height: 1.14;
}

#amenities > .container > .row {
    display: none !important;
}

.luxuryAmenitiesSwiper {
    position: relative;
    width: min(100%, 1460px);
    margin: 48px auto 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 38px 95px rgba(61, 35, 10, 0.28);
    border: 1px solid rgba(255, 244, 223, 0.45);
}

.luxury-amenity-slide {
    position: relative;
    height: min(72vh, 720px);
    min-height: 520px;
    overflow: hidden;
}

.luxury-amenity-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(46, 24, 6, 0.08), rgba(46, 24, 6, 0.2) 48%, rgba(46, 24, 6, 0.55));
}

.luxury-amenity-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.82) saturate(1.03);
    transform: scale(1.03);
    transition: transform 6s ease;
}

.luxuryAmenitiesSwiper .swiper-slide-active .luxury-amenity-slide img {
    transform: scale(1.1);
}

.luxury-amenity-caption {
    position: absolute;
    right: 8%;
    bottom: 18%;
    z-index: 2;
    color: #fff;
    max-width: 520px;
    text-shadow: 0 2px 22px rgba(0,0,0,0.48);
}

.luxury-amenity-caption span {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2vw, 34px);
    font-weight: 700;
}

.luxury-amenity-caption h3 {
    color: #fff4df !important;
    font-size: clamp(48px, 5.4vw, 86px);
    line-height: 0.95;
    margin: 12px 0 0;
}

.luxury-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255,255,255,0.62);
    border-radius: 50%;
    background: rgba(255, 244, 223, 0.24);
    color: #fff;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.luxury-slider-arrow:hover {
    background: var(--primary-burgundy);
    border-color: var(--primary-burgundy);
}

.luxury-amenities-prev {
    left: 30px;
}

.luxury-amenities-next {
    right: 30px;
}

.luxury-amenities-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px !important;
    z-index: 5;
    text-align: center;
}

.luxury-amenities-pagination .swiper-pagination-bullet {
    width: 46px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255,255,255,0.62);
    opacity: 1;
}

.luxury-amenities-pagination .swiper-pagination-bullet-active {
    background: #fff;
}

#specifications {
    position: relative;
    padding: 110px 0 120px !important;
    background:
        linear-gradient(rgba(36, 63, 82, 0.82), rgba(36, 63, 82, 0.82)),
        url('/img/home18.jpeg') center/cover fixed !important;
}

#specifications > .container {
    position: relative;
    z-index: 2;
}

#specifications h2,
#specifications .section-kicker {
    color: #fff4df !important;
}

#specifications > .container > .nav,
#specifications > .container > .tab-content {
    display: none !important;
}

.luxury-spec-showcase {
    width: min(100%, 1180px);
    margin: 0 auto 100px;
}

.luxury-spec-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255,255,255,0.72);
    border-bottom: 1px solid rgba(255,255,255,0.72);
}

.luxury-spec-tab {
    min-height: 184px;
    border: 0;
    border-right: 1px solid rgba(255,255,255,0.72);
    background: rgba(255,255,255,0.04);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transition: 0.35s ease;
}

.luxury-spec-tab:last-child {
    border-right: 0;
}

.luxury-spec-tab.active,
.luxury-spec-tab:hover {
    background: rgba(255, 244, 223, 0.96);
    color: #243f52;
}

.luxury-spec-tab i {
    font-size: 44px;
    color: currentColor;
}

.luxury-spec-tab span {
    font-weight: 700;
    line-height: 1.4;
}

.luxury-spec-content {
    min-height: 420px;
    display: grid;
    grid-template-columns: 42% 58%;
    background: linear-gradient(135deg, rgba(14, 28, 42, 0.96), rgba(41, 58, 74, 0.94));
    overflow: hidden;
}

.luxury-spec-image {
    position: relative;
    min-height: 420px;
}

.luxury-spec-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.82);
}

.luxury-spec-detail {
    align-self: center;
    background: rgba(255, 244, 223, 0.68);
    margin-right: 0;
    padding: 34px 44px;
    color: #111;
    transform: translateX(-80px);
}

.luxury-spec-detail h3 {
    color: #243f52 !important;
    font-size: 32px;
    margin-bottom: 18px;
}

.luxury-spec-detail li {
    margin-bottom: 8px;
    color: #111;
}

.luxury-plan-section {
    width: min(100%, 1320px);
    margin: 0 auto;
    padding: 36px 0 0;
}

.luxury-plan-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 54px;
}

.luxury-plan-head h2 {
    color: #fff4df !important;
    max-width: 720px;
    font-size: clamp(36px, 4vw, 58px);
}

.luxury-plan-actions {
    display: flex;
    gap: 18px;
    padding-top: 32px;
}

.luxury-plan-actions button {
    min-width: 160px;
    height: 54px;
    border: 1px solid rgba(255,255,255,0.88);
    background: transparent;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
}

.luxury-plan-actions button.active {
    background: #fff;
    color: #9b7845;
}

.luxury-plan-frame {
    width: min(100%, 1120px);
    margin: 0 auto;
    background: rgba(255,255,255,0.12);
    padding: 16px;
    box-shadow: 0 34px 90px rgba(0,0,0,0.24);
}

.luxury-plan-frame img {
    width: 100%;
    display: block;
    object-fit: contain;
    background: rgba(255,255,255,0.92);
}

#location {
    position: relative;
    padding: 100px 0 115px !important;
    background:
        linear-gradient(rgba(237, 249, 236, 0.92), rgba(237, 249, 236, 0.92)),
        radial-gradient(circle at 76% 18%, rgba(195, 162, 111, 0.22), transparent 28%) !important;
}

#location::before {
    opacity: 0.18;
    background-image:
        linear-gradient(30deg, rgba(27, 101, 62, 0.16) 12%, transparent 12.5%, transparent 87%, rgba(27, 101, 62, 0.16) 87.5%, rgba(27, 101, 62, 0.16)),
        linear-gradient(150deg, rgba(27, 101, 62, 0.16) 12%, transparent 12.5%, transparent 87%, rgba(27, 101, 62, 0.16) 87.5%, rgba(27, 101, 62, 0.16));
}

#location h2 {
    color: #111 !important;
    text-transform: uppercase;
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#location > .container > .row {
    display: none !important;
}

.luxury-location-grid {
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
    gap: clamp(34px, 5vw, 82px);
    align-items: center;
}

.luxury-location-copy {
    color: #121710;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 1.45vw, 28px);
    line-height: 1.35;
}

.luxury-location-copy p {
    font-family: 'Cormorant Garamond', serif;
    color: #121710;
    margin-bottom: 22px;
}

.luxury-location-card {
    width: min(100%, 540px);
    margin: 36px auto 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 28px 70px rgba(28, 72, 43, 0.18);
    background: var(--sand);
}

.luxury-location-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: saturate(0.96);
}

.luxury-location-card div {
    padding: 18px 24px;
    text-align: center;
    color: #fff;
    font-size: 22px;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.luxury-location-map-wrap {
    display: flex;
    justify-content: center;
}

.luxury-location-map {
    position: relative;
    width: min(100%, 760px);
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 24px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        conic-gradient(from 18deg, #d9b66f, #fff7dc, #b4842d, #e6c776, #d9b66f) border-box;
    border: 18px solid transparent;
    box-shadow: 0 28px 72px rgba(30, 92, 54, 0.16);
}

.luxury-location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.map-pin {
    position: absolute;
    min-width: 112px;
    padding: 8px 10px;
    border-radius: 8px;
    background: var(--primary-burgundy);
    color: #fff;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
    box-shadow: 0 12px 28px rgba(77, 0, 37, 0.22);
}

.pin-one {
    left: 9%;
    top: 38%;
}

.pin-two {
    right: 7%;
    top: 44%;
}

.pin-three {
    left: 34%;
    bottom: 10%;
}

#gallery .gallery-grid,
#gallery #viewAllBtn,
#gallery #collapseBtn {
    display: none !important;
}

.luxuryGallerySwiper {
    position: relative;
    width: min(100%, 1520px);
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 32px 90px rgba(77, 0, 37, 0.2);
    border: 1px solid rgba(255, 244, 223, 0.42);
}

.luxury-gallery-slide {
    position: relative;
    height: min(72vh, 760px);
    min-height: 520px;
    cursor: pointer;
    overflow: hidden;
}

.luxury-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.76) saturate(1.04);
    transform: scale(1.02);
    transition: transform 5s ease, filter 0.7s ease;
}

.luxuryGallerySwiper .swiper-slide-active .luxury-gallery-slide img {
    transform: scale(1.09);
}

.luxury-gallery-caption {
    position: absolute;
    right: 8%;
    bottom: 14%;
    color: #fff;
    text-align: left;
    text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}

.luxury-gallery-caption span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
}

.luxury-gallery-caption h3 {
    color: #fff !important;
    font-size: clamp(42px, 5vw, 76px);
    line-height: 1;
    margin: 10px 0 0;
    text-transform: uppercase;
}

.luxury-gallery-pagination {
    bottom: 32px !important;
}

.luxury-gallery-pagination .swiper-pagination-bullet {
    width: 44px;
    height: 4px;
    border-radius: 0;
    background: rgba(255,255,255,0.72);
    opacity: 1;
}

.luxury-gallery-pagination .swiper-pagination-bullet-active {
    background: #fff;
}

.luxury-gallery-prev,
.luxury-gallery-next {
    color: #fff !important;
}

.fixed-enquire-tab {
    position: fixed;
    right: 0;
    top: 36%;
    z-index: 99998;
    writing-mode: vertical-rl;
    background: var(--primary-burgundy);
    color: #fff !important;
    padding: 22px 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

@media (max-width: 991.98px) {
    .luxury-hero {
        height: auto;
        min-height: 0;
        padding: 120px 0 60px;
    }

    .luxury-hero-image,
    .luxury-hero-image img {
        min-height: 360px;
    }

    .luxury-copy h1 {
        margin: 34px 0 22px;
    }

    .luxury-intro {
        margin: 26px 0;
    }

    .luxury-slide-panel {
        margin: 0 auto !important;
    }

    .luxury-gallery-slide {
        min-height: 420px;
        height: 58vh;
    }

    .luxury-amenity-slide {
        min-height: 430px;
        height: 60vh;
    }

    .luxury-amenity-caption {
        left: 32px;
        right: 32px;
        bottom: 82px;
    }

    .luxury-highlights-panel,
    .luxury-spec-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .luxury-highlight-cell:not(:nth-child(3n))::after,
    .luxury-highlight-cell:nth-child(-n+3)::before {
        display: none;
    }

    .luxury-highlight-cell,
    .luxury-spec-tab {
        min-height: 170px;
        border-bottom: 1px solid rgba(255, 244, 223, 0.16);
    }

    .luxury-spec-content {
        grid-template-columns: 1fr;
    }

    .luxury-spec-detail {
        transform: none;
        margin: 0;
    }

    .luxury-plan-head {
        flex-direction: column;
    }

    .luxury-plan-actions {
        padding-top: 0;
    }

    .luxury-location-grid {
        grid-template-columns: 1fr;
    }

    .luxury-location-map {
        width: min(100%, 620px);
    }
}

@media (max-width: 575.98px) {
    .luxury-eyebrow,
    .section-kicker {
        font-size: 15px;
    }

    .luxury-copy h1 {
        font-size: 42px;
    }

    .luxury-price strong {
        font-size: 32px;
    }

    .luxury-gallery-caption {
        left: 22px;
        right: 22px;
        bottom: 72px;
    }

    .luxury-amenities-heading {
        font-size: 34px;
    }

    .luxury-amenity-slide {
        min-height: 360px;
        height: 56vh;
    }

    .luxury-amenity-caption {
        left: 22px;
        right: 22px;
        bottom: 72px;
    }

    .luxury-slider-arrow {
        width: 42px;
        height: 42px;
    }

    .luxury-amenities-prev {
        left: 14px;
    }

    .luxury-amenities-next {
        right: 14px;
    }

    .luxury-highlights-panel,
    .luxury-spec-tabs {
        grid-template-columns: 1fr;
    }

    .luxury-plan-actions {
        width: 100%;
        flex-direction: column;
    }

    .luxury-plan-actions button {
        width: 100%;
    }

    .luxury-location-card img {
        height: 230px;
    }

    .luxury-location-map {
        border-width: 10px;
        padding: 12px;
    }

    .map-pin {
        display: none;
    }
}

/* Final premium warm theme: reduce blue dominance, keep every section */
:root {
    --site-mint: #F2E3C7;
    --site-mint-deep: #E6CFA4;
    --site-blue: #4A2D22;
    --site-blue-soft: #6A4632;
    --site-gold: #C99A45;
    --site-gold-deep: #9B6A25;
    --site-ink: #261B16;
    --site-panel: #FFF6E8;
}

body,
section,
#about,
#pricing,
#location,
#gallery,
#contact {
    background:
        radial-gradient(circle at 14% 12%, rgba(255,255,255,0.44), transparent 24%),
        linear-gradient(135deg, #F2E3C7 0%, #E8D2A8 100%) !important;
    color: var(--site-ink);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-5,
.text-primary-custom {
    color: var(--site-blue) !important;
}

.site-navbar {
    background: rgba(242, 227, 199, 0.9) !important;
    border-bottom-color: rgba(74, 45, 34, 0.14) !important;
}

.site-navbar .navbar-brand h2,
.site-navbar .navbar-brand h2 span:first-child,
.site-navbar .nav-link,
.header.is-scrolled .site-navbar .navbar-brand h2,
.header.is-scrolled .site-navbar .navbar-brand h2 span:first-child,
.header.is-scrolled .site-navbar .nav-link {
    color: var(--site-blue) !important;
}

.btn-primary-custom,
.offer-btn,
.nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--site-blue), var(--site-blue-soft)) !important;
    border-color: var(--site-blue) !important;
}

.highlight-item,
.amenity-item,
.spec-card,
.pricing-table,
.contact-form-wrapper,
#location .card,
.testimonial-panel,
.luxury-spec-detail {
    background: rgba(255, 246, 232, 0.92) !important;
    border-color: rgba(201, 154, 69, 0.5) !important;
}

#amenities {
    padding: 66px 0 74px !important;
    background:
        radial-gradient(circle at 82% 16%, rgba(201, 154, 69, 0.18), transparent 28%),
        linear-gradient(135deg, #F2E3C7 0%, #E6CFA4 100%) !important;
}

#amenities::before {
    background-image:
        linear-gradient(30deg, rgba(74,45,34,0.055) 12%, transparent 12.5%, transparent 87%, rgba(74,45,34,0.055) 87.5%, rgba(74,45,34,0.055)),
        linear-gradient(150deg, rgba(74,45,34,0.055) 12%, transparent 12.5%, transparent 87%, rgba(74,45,34,0.055) 87.5%, rgba(74,45,34,0.055));
    opacity: 0.42;
}

#amenities .section-kicker {
    color: var(--site-gold-deep) !important;
}

#amenities .luxury-amenities-heading {
    max-width: 1160px;
    color: var(--site-blue) !important;
    font-size: clamp(34px, 4vw, 60px);
    text-shadow: none;
}

.luxuryAmenitiesSwiper {
    margin-top: 34px;
    border-radius: 10px;
    border: 1px solid rgba(201, 154, 69, 0.55);
    box-shadow: 0 28px 78px rgba(74, 45, 34, 0.2);
    background: var(--site-panel);
}

.luxury-amenity-slide {
    height: min(58vh, 560px);
    min-height: 390px;
}

.luxury-amenity-slide::after {
    background:
        linear-gradient(90deg, rgba(38, 27, 22, 0.08) 0%, rgba(38, 27, 22, 0.18) 42%, rgba(38, 27, 22, 0.78) 100%);
}

.luxury-amenity-slide img {
    filter: brightness(0.9) saturate(1.02);
}

.luxury-amenity-caption {
    right: 7%;
    bottom: 14%;
    max-width: 560px;
}

.luxury-amenity-caption span,
.luxury-amenity-caption h3 {
    color: #FFF4DF !important;
    text-shadow: 0 10px 28px rgba(0,0,0,0.46);
}

.luxury-slider-arrow {
    background: rgba(255, 246, 232, 0.44);
    border-color: rgba(255, 246, 232, 0.72);
    color: #fff;
}

.luxury-slider-arrow:hover {
    background: var(--site-gold);
    border-color: var(--site-gold);
    color: var(--site-blue);
}

#highlights,
#specifications,
#testimonials {
    background:
        linear-gradient(rgba(74, 45, 34, 0.88), rgba(74, 45, 34, 0.86)),
        url('/img/home18.jpeg') center/cover fixed !important;
}

#highlights h2,
#specifications h2,
#testimonials h2,
.luxury-plan-head h2 {
    color: #FFF4DF !important;
}

.project-highlight-logo {
    background:
        linear-gradient(rgba(255, 246, 232, 0.95), rgba(255, 246, 232, 0.9)) padding-box,
        conic-gradient(from 30deg, var(--site-gold), #fff4cf, var(--site-blue-soft), var(--site-gold)) border-box !important;
}

.project-highlight-logo span,
.luxury-spec-detail h3,
#testimonialAuthor,
#location h2 {
    color: var(--site-blue) !important;
}

.project-highlight-point,
.luxury-highlights-panel,
.luxury-spec-tabs {
    background: rgba(255, 246, 232, 0.1) !important;
    border-color: rgba(255, 244, 223, 0.24) !important;
}

.luxury-spec-content {
    background: linear-gradient(135deg, rgba(58, 36, 28, 0.96), rgba(88, 58, 39, 0.92)) !important;
}

.luxury-spec-tab.active,
.luxury-spec-tab:hover,
.luxury-plan-actions button.active {
    background: var(--site-panel) !important;
    color: var(--site-blue) !important;
}

#location {
    background:
        radial-gradient(circle at 18% 20%, rgba(255,255,255,0.48), transparent 24%),
        linear-gradient(135deg, #F2E3C7, #E8D2A8) !important;
}

.luxury-location-map {
    background:
        linear-gradient(#FFF6E8, #FFF6E8) padding-box,
        conic-gradient(from 24deg, var(--site-gold), #fff4cf, var(--site-blue-soft), var(--site-gold)) border-box !important;
}

.luxury-location-map {
    overflow: hidden !important;
}

.map-pin {
    background: var(--site-blue) !important;
}

footer,
.site-footer {
    background: linear-gradient(135deg, #2C1D18, #4A2D22 58%, #6A4632) !important;
}

.fixed-enquire-tab {
    background: var(--site-blue) !important;
}

@media (max-width: 991.98px) {
    #amenities {
        padding: 54px 0 60px !important;
    }

    .luxury-amenity-slide {
        height: 50vh;
        min-height: 330px;
    }

    .luxury-amenity-caption {
        left: 28px;
        right: 28px;
        bottom: 58px;
    }

    #highlights,
    #specifications,
    #testimonials {
        background-attachment: scroll !important;
    }
}

@media (max-width: 575.98px) {
    #amenities {
        padding: 44px 0 50px !important;
    }

    #amenities .luxury-amenities-heading {
        font-size: 32px;
    }

    .luxury-amenity-slide {
        height: 46vh;
        min-height: 300px;
    }

    .luxury-amenity-caption {
        left: 20px;
        right: 20px;
        bottom: 50px;
    }

    .luxury-amenity-caption h3 {
        font-size: 42px;
    }
}

/* Final polish: remove heavy blue from amenities/pricing, keep premium warm theme */
#amenities {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.42), transparent 26%),
        linear-gradient(135deg, #F2E3C7 0%, #E8D2A8 100%) !important;
}

#amenities::before {
    opacity: 0.24;
    background-image:
        linear-gradient(30deg, rgba(74,45,34,0.05) 12%, transparent 12.5%, transparent 87%, rgba(74,45,34,0.05) 87.5%, rgba(74,45,34,0.05)),
        linear-gradient(150deg, rgba(74,45,34,0.05) 12%, transparent 12.5%, transparent 87%, rgba(74,45,34,0.05) 87.5%, rgba(74,45,34,0.05));
}

#amenities .section-kicker {
    color: #9B6A25 !important;
}

#amenities .luxury-amenities-heading {
    color: #4A2D22 !important;
    text-shadow: none !important;
}

.luxuryAmenitiesSwiper {
    background: #FFF6E8;
    border: 1px solid rgba(201, 154, 69, 0.65);
    border-radius: 10px;
    box-shadow: 0 26px 70px rgba(74, 45, 34, 0.18);
}

.luxury-amenity-slide::after {
    background:
        linear-gradient(90deg, rgba(38, 27, 22, 0.04), rgba(38, 27, 22, 0.12) 42%, rgba(38, 27, 22, 0.58));
}

.luxury-amenity-caption span,
.luxury-amenity-caption h3 {
    color: #FFF6E8 !important;
}

#pricing,
.pricing-section {
    background:
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.34), transparent 26%),
        linear-gradient(135deg, #F2E3C7 0%, #E8D2A8 100%) !important;
}

.pricing-title {
    color: #4A2D22 !important;
    text-shadow: none !important;
}

.pricing-table {
    background: #FFF6E8 !important;
    border: 1px solid rgba(201, 154, 69, 0.48);
    border-radius: 8px;
    box-shadow: 0 22px 62px rgba(74, 45, 34, 0.16) !important;
}

.table-header {
    background: linear-gradient(135deg, #4A2D22, #6A4632) !important;
    color: #FFF6E8 !important;
}

.table-row {
    background: rgba(255, 246, 232, 0.96);
}

.table-row .type,
.table-row .price {
    color: #4A2D22 !important;
}

.offer-btn {
    background: linear-gradient(135deg, #4A2D22, #6A4632) !important;
    border-color: #C99A45 !important;
    color: #FFF6E8 !important;
}

.offer-btn:hover {
    background: #C99A45 !important;
    color: #4A2D22 !important;
}

.fixed-enquire-tab {
    background: linear-gradient(135deg, #4A2D22, #6A4632) !important;
    border-left: 2px solid #C99A45;
}

@media (max-width: 575.98px) {
    .pricing-table {
        border-radius: 8px;
    }

    .table-row {
        padding: 22px 16px;
    }
}

/* Final requested palette: only Highlights and Specifications stay blue */
:root {
    --site-cream: #E9D5AD;
    --site-cream-light: #F6E9CF;
    --site-cream-dark: #D8B981;
    --site-blue: #183246;
    --site-blue-soft: #25445C;
    --site-gold: #C99A45;
    --site-espresso: #4A2D22;
    --site-ink: #261B16;
}

body,
section,
#about,
#amenities,
#pricing,
#location,
#gallery,
#contact {
    background:
        radial-gradient(circle at 12% 14%, rgba(255,255,255,0.42), transparent 24%),
        linear-gradient(135deg, var(--site-cream-light) 0%, var(--site-cream) 58%, var(--site-cream-dark) 100%) !important;
    color: var(--site-ink);
}

.site-navbar {
    background: rgba(233, 213, 173, 0.9) !important;
    border-bottom-color: rgba(74, 45, 34, 0.14) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-5,
.text-primary-custom {
    color: var(--site-espresso) !important;
}

.section-kicker,
.luxury-eyebrow {
    color: #9B6A25 !important;
}

.highlight-item,
.amenity-item,
.spec-card,
.pricing-table,
.contact-form-wrapper,
#location .card,
.testimonial-panel,
.luxury-spec-detail {
    background: rgba(255, 246, 232, 0.9) !important;
    border-color: rgba(201, 154, 69, 0.5) !important;
}

#amenities {
    padding: 66px 0 74px !important;
}

#amenities .section-kicker,
#amenities .luxury-amenities-heading,
#pricing h2,
#location h2,
#gallery h2,
#contact h2,
#about h2 {
    color: var(--site-espresso) !important;
    text-shadow: none !important;
}

.luxuryAmenitiesSwiper,
.luxuryGallerySwiper,
.luxury-location-map,
.pricing-table {
    border-color: rgba(201, 154, 69, 0.58) !important;
    box-shadow: 0 26px 72px rgba(74, 45, 34, 0.16) !important;
}

.luxury-amenity-caption span,
.luxury-amenity-caption h3,
.luxury-gallery-caption span,
.luxury-gallery-caption h3 {
    color: #FFF6E8 !important;
}

.table-header,
.offer-btn,
.btn-primary-custom,
.nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--site-espresso), #6A4632) !important;
    border-color: var(--site-espresso) !important;
    color: #FFF6E8 !important;
}

.fixed-enquire-tab,
footer,
.site-footer {
    background: linear-gradient(135deg, #2C1D18, var(--site-espresso) 58%, #6A4632) !important;
}

#highlights,
#specifications {
    background:
        linear-gradient(rgba(37, 68, 92, 0.88), rgba(37, 68, 92, 0.88)),
        url('/img/home18.jpeg') center/cover fixed !important;
}

#highlights h2,
#specifications h2,
#highlights h2::before,
#specifications .section-kicker,
.luxury-plan-head h2 {
    color: #FFF4DF !important;
}

#highlights .title-underline,
#specifications .title-underline {
    background: var(--site-gold) !important;
}

.project-highlight-logo {
    background:
        linear-gradient(rgba(255, 246, 232, 0.95), rgba(255, 246, 232, 0.9)) padding-box,
        conic-gradient(from 30deg, var(--site-gold), #fff4cf, var(--site-blue-soft), var(--site-gold)) border-box !important;
}

.project-highlight-logo span,
.luxury-spec-detail h3 {
    color: var(--site-blue) !important;
}

.project-highlight-point,
.luxury-spec-tabs {
    background: rgba(255, 244, 223, 0.1) !important;
    border-color: rgba(255, 244, 223, 0.24) !important;
}

.luxury-spec-content {
    background: linear-gradient(135deg, rgba(24, 50, 70, 0.96), rgba(37, 68, 92, 0.92)) !important;
}

.luxury-spec-tab {
    color: #FFF4DF !important;
}

.luxury-spec-tab.active,
.luxury-spec-tab:hover,
.luxury-plan-actions button.active {
    background: #FFF6E8 !important;
    color: var(--site-blue) !important;
}

.luxury-plan-actions button {
    border-color: rgba(255, 244, 223, 0.74) !important;
    color: #FFF4DF !important;
}

@media (max-width: 991.98px) {
    #highlights,
    #specifications {
        background-attachment: scroll !important;
    }
}

/* Final responsive polish for the luxury home sections. */
.slide-bg {
    background-position: center;
}

.luxury-slide-panel {
    max-width: min(92vw, 760px);
}

#highlights .title-underline,
#specifications .title-underline {
    margin-left: auto;
    margin-right: auto;
}

#highlights .container,
#specifications .container {
    padding-left: clamp(16px, 4vw, 56px) !important;
    padding-right: clamp(16px, 4vw, 56px) !important;
}

.luxury-highlights-panel,
.luxury-spec-showcase,
.luxury-plan-section {
    max-width: 100%;
}

@media (max-width: 991.98px) {
    .luxury-hero {
        height: auto;
        min-height: 680px;
    }

    .hero-section .swiper,
    .hero-section .swiper-wrapper,
    .hero-section .swiper-slide {
        min-height: 680px;
    }

    .hero-section .container {
        min-height: 680px;
        padding-top: 110px !important;
        padding-bottom: 48px !important;
    }

    #highlights,
    #specifications {
        padding: 86px 0 !important;
        background-attachment: scroll !important;
    }

    .luxury-highlights-panel {
        width: min(100%, 760px);
    }

    .luxury-highlight-cell {
        min-height: 150px;
        padding: 26px 18px;
    }

    .luxury-highlight-cell i {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .luxury-highlight-cell h4,
    .luxury-highlight-cell p {
        font-size: 20px;
        letter-spacing: 0.04em;
    }

    .luxury-spec-showcase {
        margin-bottom: 62px;
    }

    .luxury-spec-tabs {
        width: min(100%, 760px);
        margin: 0 auto;
    }

    .luxury-spec-content {
        width: min(100%, 760px);
        margin: 0 auto;
    }

    .luxury-spec-image {
        min-height: 300px;
    }

    .luxury-spec-detail {
        padding: 28px 24px;
    }
}

@media (max-width: 575.98px) {
    .luxury-hero {
        min-height: 560px;
    }

    .hero-section .swiper,
    .hero-section .swiper-wrapper,
    .hero-section .swiper-slide,
    .hero-section .container {
        min-height: 560px;
    }

    .hero-section .container {
        align-items: center !important;
        padding-top: 86px !important;
        padding-bottom: 34px !important;
    }

    .slide-bg {
        background-position: center top;
    }

    .luxury-slide-panel {
        padding: 22px 16px;
    }

    .luxury-slide-panel h2 {
        font-size: 34px !important;
        line-height: 1.05;
    }

    .luxury-slide-panel h3 {
        font-size: 15px !important;
        line-height: 1.35;
    }

    .luxury-line,
    .luxury-slide-panel > p {
        font-size: 12px;
        letter-spacing: 0.08em;
    }

    .luxury-price {
        padding: 12px 18px;
        margin-bottom: 0;
        border-radius: 10px;
    }

    .luxury-price strong {
        font-size: 28px;
    }

    #highlights,
    #specifications {
        padding: 64px 0 !important;
    }

    #highlights h2::before {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .luxury-highlights-panel,
    .luxury-spec-tabs,
    .luxury-spec-content {
        width: min(100%, 390px);
    }

    .luxury-highlight-cell,
    .luxury-spec-tab {
        min-height: 128px;
    }

    .luxury-spec-tab {
        gap: 10px;
        padding: 18px 12px;
    }

    .luxury-spec-tab i {
        font-size: 30px;
    }

    .luxury-spec-tab span {
        font-size: 13px;
    }

    .luxury-spec-content {
        min-height: 0;
    }

    .luxury-spec-image {
        min-height: 220px;
    }

    .luxury-spec-detail {
        padding: 22px 18px;
    }

    .luxury-spec-detail h3 {
        font-size: 26px;
    }

    .luxury-plan-head {
        margin-bottom: 28px;
        gap: 18px;
    }

    .luxury-plan-frame {
        padding: 8px;
    }
}

/* Final theme color correction: keep sections, change only backgrounds. */
#highlights {
    padding: 82px 0 88px !important;
    background: #F4E6C9 !important;
    min-height: auto;
}

#highlights::before {
    background:
        linear-gradient(90deg, rgba(115, 0, 55, 0.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(115, 0, 55, 0.04) 1px, transparent 1px);
    background-size: 76px 76px;
    opacity: 0.22;
}

#highlights h2 {
    color: var(--primary-burgundy) !important;
    text-shadow: none;
    text-transform: none;
    margin-bottom: 28px !important;
}

#highlights h2::before {
    color: var(--sand);
    font-size: 18px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

#highlights .title-underline {
    margin-bottom: 34px !important;
}

.luxury-highlights-panel {
    width: min(100%, 1120px);
    background: rgba(115, 0, 55, 0.78);
    border: 1px solid rgba(216, 178, 109, 0.42);
    box-shadow: 0 26px 70px rgba(77, 0, 37, 0.2), inset 0 1px 0 rgba(255,255,255,0.12);
}

.luxury-highlight-cell {
    min-height: 158px;
    color: #fff4df;
}

.luxury-highlight-cell h4,
.luxury-highlight-cell p {
    color: #fff4df !important;
}

#specifications {
    padding: 82px 0 88px !important;
    background: #F4E6C9 !important;
}

#specifications h2,
#specifications .section-kicker {
    color: var(--primary-burgundy) !important;
}

.luxury-spec-tabs {
    border-top-color: rgba(115, 0, 55, 0.32);
    border-bottom-color: rgba(115, 0, 55, 0.32);
}

.luxury-spec-tab {
    background: rgba(255, 250, 240, 0.62);
    border-right-color: rgba(115, 0, 55, 0.22);
    color: var(--primary-burgundy);
}

.luxury-spec-tab.active,
.luxury-spec-tab:hover {
    background: var(--primary-burgundy);
    color: #fff4df;
}

.luxury-spec-content {
    background: linear-gradient(135deg, rgba(77, 0, 37, 0.95), rgba(115, 0, 55, 0.88));
}

.luxury-spec-showcase {
    margin-bottom: 56px;
}

.luxury-spec-tab {
    min-height: 132px;
}

.luxury-spec-content {
    min-height: 330px;
}

.luxury-spec-image {
    min-height: 330px;
}

.luxury-plan-section {
    padding-top: 18px;
}

.luxury-plan-head {
    align-items: center;
    margin-bottom: 28px;
}

.luxury-plan-head h2 {
    font-size: clamp(30px, 3vw, 44px);
}

.luxury-plan-actions {
    padding-top: 0;
}

.luxury-plan-frame {
    width: min(100%, 880px);
    padding: 10px;
}

.luxury-plan-frame img {
    max-height: 430px;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    #highlights {
        padding: 60px 0 64px !important;
    }

    #specifications {
        padding: 60px 0 66px !important;
    }

    .luxury-spec-tab {
        min-height: 116px;
    }

    .luxury-spec-content,
    .luxury-spec-image {
        min-height: 260px;
    }

    .luxury-plan-frame img {
        max-height: 340px;
    }
}

@media (max-width: 575.98px) {
    #highlights,
    #specifications {
        padding: 50px 0 54px !important;
    }

    #highlights h2 {
        margin-bottom: 18px !important;
    }

    #highlights .title-underline {
        margin-bottom: 24px !important;
    }

    .luxury-spec-showcase {
        margin-bottom: 38px;
    }

    .luxury-plan-head {
        margin-bottom: 20px;
    }

    .luxury-plan-frame img {
        max-height: 250px;
    }
}

/* Overall section rhythm: less empty height on normal screens. */
#about,
#amenities,
#pricing,
#location,
#gallery,
#contact {
    padding-top: 64px !important;
    padding-bottom: 70px !important;
}

#about > .container,
#amenities > .container,
#pricing > .container,
#location > .container,
#gallery > .container,
#contact > .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.luxury-amenity-slide,
.luxury-gallery-slide {
    height: min(58vh, 560px);
    min-height: 420px;
}

.luxuryAmenitiesSwiper {
    margin-top: 30px;
}

.luxury-location-card img {
    height: 260px;
}

.luxury-location-map {
    width: min(100%, 620px);
}

@media (max-width: 991.98px) {
    #about,
    #amenities,
    #pricing,
    #location,
    #gallery,
    #contact {
        padding-top: 54px !important;
        padding-bottom: 58px !important;
    }

    .luxury-amenity-slide,
    .luxury-gallery-slide {
        height: 52vh;
        min-height: 340px;
    }
}

@media (max-width: 575.98px) {
    #about,
    #amenities,
    #pricing,
    #location,
    #gallery,
    #contact {
        padding-top: 44px !important;
        padding-bottom: 48px !important;
    }

    .luxury-amenity-slide,
    .luxury-gallery-slide {
        height: 48vh;
        min-height: 300px;
    }
}

/* Premium final theme for Highlights and Specifications */
#highlights,
#specifications {
    background:
        radial-gradient(circle at 12% 18%, rgba(216, 178, 109, 0.22), transparent 26%),
        radial-gradient(circle at 88% 22%, rgba(115, 0, 55, 0.12), transparent 28%),
        linear-gradient(135deg, #fffaf0 0%, #f4e6c9 52%, #ead5aa 100%) !important;
}

#highlights {
    padding: 78px 0 84px !important;
}

#specifications {
    padding: 82px 0 88px !important;
}

#highlights::before,
#specifications::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(115, 0, 55, 0.055) 1px, transparent 1px),
        linear-gradient(0deg, rgba(115, 0, 55, 0.04) 1px, transparent 1px);
    background-size: 78px 78px;
    opacity: 0.34;
}

#highlights h2,
#specifications h2 {
    color: var(--primary-burgundy) !important;
    text-shadow: none;
}

#highlights h2::before {
    color: var(--sand);
}

.luxury-highlights-panel {
    width: min(100%, 1120px);
    background:
        linear-gradient(135deg, rgba(77, 0, 37, 0.94), rgba(115, 0, 55, 0.86));
    border: 1px solid rgba(216, 178, 109, 0.5);
    box-shadow: 0 28px 78px rgba(77, 0, 37, 0.22), inset 0 1px 0 rgba(255,255,255,0.12);
}

.luxury-highlight-cell {
    min-height: 158px;
}

.luxury-highlight-cell i {
    color: #d8b26d;
}

.luxury-highlight-cell h4,
.luxury-highlight-cell p {
    color: #fff4df !important;
}

.luxury-highlight-cell:not(:nth-child(3n))::after {
    background: rgba(216, 178, 109, 0.45);
}

.luxury-highlight-cell:nth-child(-n+3)::before {
    background: rgba(216, 178, 109, 0.22);
}

.luxury-spec-showcase {
    width: min(100%, 1120px);
}

.luxury-spec-tabs {
    overflow: hidden;
    border: 1px solid rgba(115, 0, 55, 0.24);
    border-bottom: 0;
    background: rgba(255, 250, 240, 0.66);
    box-shadow: 0 22px 60px rgba(77, 0, 37, 0.12);
}

.luxury-spec-tab {
    min-height: 126px;
    color: var(--primary-burgundy);
    background: rgba(255, 250, 240, 0.64);
    border-right: 1px solid rgba(115, 0, 55, 0.16);
}

.luxury-spec-tab.active,
.luxury-spec-tab:hover {
    color: #fff4df;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--deep-burgundy));
}

.luxury-spec-tab i {
    color: currentColor;
}

.luxury-spec-content {
    min-height: 330px;
    background: linear-gradient(135deg, rgba(77, 0, 37, 0.95), rgba(115, 0, 55, 0.86));
    border: 1px solid rgba(115, 0, 55, 0.24);
    border-top: 0;
    box-shadow: 0 28px 78px rgba(77, 0, 37, 0.18);
}

.luxury-spec-image {
    min-height: 330px;
}

.luxury-spec-detail {
    background: rgba(255, 250, 240, 0.82);
    border-left: 4px solid var(--sand);
}

.luxury-spec-detail h3 {
    color: var(--primary-burgundy) !important;
}

.luxury-plan-head h2 {
    color: var(--primary-burgundy) !important;
    text-shadow: none;
}

.luxury-plan-actions button {
    border-color: rgba(115, 0, 55, 0.6);
    color: var(--primary-burgundy);
}

.luxury-plan-actions button.active {
    background: var(--primary-burgundy);
    color: #fff4df;
}

.luxury-plan-frame {
    background: rgba(255, 250, 240, 0.72);
    border: 1px solid rgba(216, 178, 109, 0.5);
    box-shadow: 0 24px 68px rgba(77, 0, 37, 0.15);
}

@media (max-width: 991.98px) {
    #highlights,
    #specifications {
        padding: 58px 0 64px !important;
    }

    .luxury-highlight-cell {
        min-height: 136px;
    }

    .luxury-spec-tab {
        min-height: 112px;
    }
}

@media (max-width: 575.98px) {
    #highlights,
    #specifications {
        padding: 46px 0 52px !important;
    }

    .luxury-highlights-panel {
        width: min(100%, 410px);
    }

    .luxury-highlight-cell {
        min-height: 118px;
    }
}

/* Blue premium theme for Highlights and Specifications */
#highlights,
#specifications {
    background:
        linear-gradient(rgba(37, 68, 92, 0.88), rgba(37, 68, 92, 0.88)),
        url('/img/home18.jpeg') center/cover fixed !important;
}

#highlights::before,
#specifications::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.32;
}

#highlights h2,
#specifications h2 {
    color: #fff4df !important;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

#highlights h2::before {
    color: #fff4df;
}

.luxury-highlights-panel {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 30px 78px rgba(4, 20, 34, 0.26), inset 0 1px 0 rgba(255,255,255,0.16);
}

.luxury-highlight-cell i {
    color: #e4b76b;
}

.luxury-highlight-cell h4,
.luxury-highlight-cell p {
    color: #fff4df !important;
}

.luxury-highlight-cell:not(:nth-child(3n))::after {
    background: rgba(255, 255, 255, 0.3);
}

.luxury-highlight-cell:nth-child(-n+3)::before {
    background: rgba(255, 255, 255, 0.16);
}

#specifications h2,
#specifications .section-kicker {
    color: #fff4df !important;
}

.luxury-spec-tabs {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(29, 56, 78, 0.42);
    box-shadow: 0 24px 70px rgba(4, 20, 34, 0.26);
}

.luxury-spec-tab {
    color: #fff4df;
    background: rgba(255, 255, 255, 0.05);
    border-right-color: rgba(255, 255, 255, 0.28);
}

.luxury-spec-tab.active,
.luxury-spec-tab:hover {
    background: #fff;
    color: #2f5775;
}

.luxury-spec-content {
    background: linear-gradient(135deg, rgba(24, 42, 58, 0.96), rgba(45, 70, 89, 0.94));
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 30px 80px rgba(4, 20, 34, 0.28);
}

.luxury-spec-detail {
    background: rgba(234, 239, 244, 0.78);
    border-left: 4px solid #e4b76b;
    color: #0f1e2b;
}

.luxury-spec-detail h3 {
    color: #2f5775 !important;
}

.luxury-spec-detail li {
    color: #132333;
}

.luxury-plan-head h2 {
    color: #fff4df !important;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.luxury-plan-actions button {
    border-color: rgba(255, 255, 255, 0.72);
    color: #fff;
}

.luxury-plan-actions button.active {
    background: #fff;
    color: #2f5775;
}

.luxury-plan-frame {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 28px 76px rgba(4, 20, 34, 0.28);
}

@media (max-width: 991.98px) {
    #highlights,
    #specifications {
        background-attachment: scroll !important;
    }
}

/* Premium responsive polish for Location and Residents sections */
#location {
    padding: 64px 0 70px !important;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.42), transparent 24%),
        linear-gradient(135deg, rgba(232, 244, 238, 0.96), rgba(218, 236, 226, 0.94)) !important;
    overflow: hidden;
}

#location::before {
    background-image:
        linear-gradient(30deg, rgba(37, 68, 92, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(37, 68, 92, 0.08) 87.5%, rgba(37, 68, 92, 0.08)),
        linear-gradient(150deg, rgba(37, 68, 92, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(37, 68, 92, 0.08) 87.5%, rgba(37, 68, 92, 0.08));
    opacity: 0.24;
}

#location .section-kicker {
    color: #d2a04d !important;
    font-size: 14px;
    letter-spacing: 0.14em;
    margin-bottom: 6px !important;
}

#location h2 {
    color: #183246 !important;
    font-size: clamp(30px, 3.2vw, 46px);
    margin-bottom: 34px !important;
    text-shadow: none;
}

.luxury-location-grid {
    width: min(100%, 1180px);
    margin: 0 auto;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(26px, 4vw, 62px);
    align-items: center;
}

.luxury-location-copy {
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.68;
}

.luxury-location-copy p,
.luxury-location-copy p strong {
    font-family: 'Poppins', sans-serif;
    color: #203040;
}

.luxury-location-copy p {
    margin-bottom: 14px;
}

.luxury-location-card {
    width: min(100%, 420px);
    margin: 24px auto 0;
    border-radius: 8px;
    background: #d2a04d;
    box-shadow: 0 20px 48px rgba(24, 50, 70, 0.14);
}

.luxury-location-card img {
    height: 210px;
}

.luxury-location-card div {
    padding: 12px 18px;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.luxury-location-map-wrap {
    justify-content: flex-end;
}

.luxury-location-map {
    width: min(100%, 560px);
    aspect-ratio: 1.15;
    border-radius: 10px;
    padding: 16px;
    background:
        linear-gradient(#f8fbf7, #f8fbf7) padding-box,
        linear-gradient(135deg, #d2a04d, #fff4cf, #b17a2d) border-box;
    border: 8px solid transparent;
    box-shadow: 0 28px 70px rgba(24, 50, 70, 0.18);
}

.luxury-location-map img {
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
}

.map-pin {
    background: #183246;
    border: 1px solid rgba(255,255,255,0.22);
}

#testimonials {
    position: relative;
    padding: 72px 0 78px !important;
    background:
        linear-gradient(rgba(24, 50, 70, 0.92), rgba(24, 50, 70, 0.9)),
        url('/img/home30.jpeg') center/cover fixed !important;
    overflow: hidden;
}

#testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 25%, rgba(210, 160, 77, 0.22), transparent 24%),
        linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: auto, 76px 76px, 76px 76px;
    opacity: 0.5;
}

#testimonials .container {
    position: relative;
    z-index: 2;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

#testimonials h2 {
    color: #fff4df !important;
    font-size: clamp(32px, 3.4vw, 52px);
    margin-bottom: 16px !important;
    text-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

#testimonials .title-underline {
    margin-bottom: 34px !important;
}

#testimonials .row {
    margin-left: 0;
    margin-right: 0;
}

#testimonials .col-lg-8 {
    width: min(100%, 860px);
    flex: 0 0 auto;
}

.testimonial-panel {
    border: 1px solid rgba(255, 244, 223, 0.36) !important;
    border-radius: 10px !important;
    background: rgba(255, 250, 240, 0.93) !important;
    box-shadow: 0 32px 90px rgba(4, 20, 34, 0.32) !important;
    padding: clamp(28px, 4vw, 46px) !important;
}

.testimonial-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 38px 100px rgba(4, 20, 34, 0.38) !important;
}

.testimonial-avatar {
    width: 92px;
    height: 92px;
    border: 4px solid #d2a04d;
    box-shadow: 0 16px 34px rgba(24, 50, 70, 0.24);
}

.testimonial-text {
    color: #2a3440 !important;
    font-size: clamp(16px, 1.2vw, 20px) !important;
    line-height: 1.75 !important;
    min-height: 74px !important;
}

#testimonialAuthor {
    color: #183246 !important;
}

#testimonialDesignation {
    color: #6f747a !important;
}

.testimonial-stars i {
    color: #d2a04d !important;
}

#testimonials .btn-outline-primary-custom {
    min-width: 54px;
    height: 42px;
    border-color: #183246;
    color: #183246;
}

#testimonials .btn-outline-primary-custom:hover {
    background: #183246;
    border-color: #183246;
    color: #fff4df;
}

#testimonials .dot {
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: rgba(24, 50, 70, 0.2);
}

#testimonials .dot.active,
#testimonials .dot:hover {
    background: #d2a04d;
    transform: none;
}

@media (max-width: 991.98px) {
    #location,
    #testimonials {
        padding: 54px 0 60px !important;
    }

    .luxury-location-grid {
        grid-template-columns: 1fr;
        width: min(100%, 720px);
    }

    .luxury-location-map-wrap {
        justify-content: center;
    }

    .luxury-location-map {
        width: min(100%, 620px);
    }

    #testimonials {
        background-attachment: scroll !important;
    }
}

@media (max-width: 575.98px) {
    #location,
    #testimonials {
        padding: 44px 0 50px !important;
    }

    #location h2,
    #testimonials h2 {
        margin-bottom: 24px !important;
    }

    .luxury-location-copy {
        text-align: center;
    }

    .luxury-location-card img {
        height: 180px;
    }

    .luxury-location-map {
        aspect-ratio: 1;
        padding: 10px;
        border-width: 6px;
    }

    .testimonial-panel {
        padding: 24px 18px !important;
    }

    .testimonial-avatar {
        width: 78px;
        height: 78px;
    }

    .testimonial-text {
        min-height: 96px !important;
    }
}

/* Final correction: circular location map and compact animated testimonials */
.luxury-location-card {
    display: none !important;
}

.luxury-location-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.95fr);
}

.luxury-location-map-wrap {
    justify-content: center;
}

.luxury-location-map {
    width: min(100%, 540px);
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 18px;
    background:
        linear-gradient(#eef8f1, #eef8f1) padding-box,
        conic-gradient(from 24deg, #d2a04d, #fff4cf, #1d4058, #d2a04d) border-box;
    border: 12px solid transparent;
    box-shadow: 0 30px 80px rgba(24, 50, 70, 0.2);
}

.luxury-location-map::before {
    content: "";
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 1px solid rgba(210, 160, 77, 0.45);
    pointer-events: none;
}

.luxury-location-map img {
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

.luxury-location-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 50%;
    display: block;
    background: #fff;
    pointer-events: none;
}

.map-pin {
    background: #183246;
    color: #fff4df;
    border: 1px solid rgba(210, 160, 77, 0.5);
    box-shadow: 0 14px 30px rgba(24, 50, 70, 0.28);
}

#testimonials {
    padding: 58px 0 64px !important;
}

#testimonials .col-lg-8 {
    width: min(100%, 720px);
}

.testimonial-panel {
    position: relative;
    overflow: hidden;
    max-width: 720px;
    margin: 0 auto;
    padding: 28px 34px !important;
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(232, 241, 246, 0.93)) !important;
}

.testimonial-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 7px;
    background: linear-gradient(#d2a04d, #fff4cf, #d2a04d);
}

.testimonial-panel::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -20%;
    width: 42%;
    height: 180%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: translateX(-120%) rotate(8deg);
    animation: testimonialSheen 5.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes testimonialSheen {
    0%, 24% { transform: translateX(-130%) rotate(8deg); opacity: 0; }
    42% { opacity: 0.7; }
    74%, 100% { transform: translateX(360%) rotate(8deg); opacity: 0; }
}

.testimonial-content {
    display: grid;
    grid-template-columns: 108px 1fr;
    grid-template-areas:
        "avatar quote"
        "avatar stars"
        "avatar author"
        "nav nav";
    column-gap: 24px;
    align-items: center;
    text-align: left !important;
}

.testimonial-content > .mb-4 {
    grid-area: avatar;
    margin-bottom: 0 !important;
}

.testimonial-content > .mb-4 br,
.testimonial-content > .mb-4 .fa-quote-left {
    display: none;
}

.testimonial-avatar {
    width: 94px;
    height: 94px;
    margin-bottom: 0 !important;
}

.testimonial-text {
    grid-area: quote;
    min-height: 0 !important;
    margin-bottom: 14px !important;
    font-size: 16px !important;
}

.testimonial-stars {
    grid-area: stars;
    margin-bottom: 10px !important;
}

#testimonialAuthor,
#testimonialDesignation {
    grid-area: author;
}

#testimonialDesignation {
    margin-bottom: 0 !important;
}

.testimonial-content > .d-flex {
    grid-area: nav;
    justify-content: flex-end !important;
    margin-top: 18px;
}

.testimonial-dots {
    justify-content: center;
    margin-top: 18px !important;
}

@media (max-width: 991.98px) {
    .luxury-location-grid {
        grid-template-columns: 1fr;
    }

    .luxury-location-map {
        width: min(100%, 500px);
    }

    #testimonials {
        padding: 50px 0 56px !important;
    }
}

@media (max-width: 575.98px) {
    .luxury-location-map {
        width: min(100%, 340px);
        padding: 10px;
        border-width: 8px;
    }

    .luxury-location-map::before {
        inset: -10px;
    }

    .testimonial-panel {
        padding: 24px 20px !important;
    }

    .testimonial-content {
        display: block;
        text-align: center !important;
    }

    .testimonial-avatar {
        width: 78px;
        height: 78px;
        margin-bottom: 16px !important;
    }

    .testimonial-text {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }

    .testimonial-content > .d-flex {
        justify-content: center !important;
    }
}

/* Restore center-logo highlights and fix testimonial overlap */
.project-highlights-orbit {
    position: relative;
    width: min(100%, 1160px);
    min-height: 500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px minmax(0, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 24px clamp(36px, 5vw, 86px);
    align-items: center;
}

.project-highlights-orbit::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(58vw, 620px);
    height: min(40vw, 360px);
    border: 1px solid rgba(228, 183, 107, 0.42);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.project-highlight-logo {
    grid-column: 2;
    grid-row: 1 / 4;
    justify-self: center;
    width: 220px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 28px;
    background:
        linear-gradient(#f8fbf7, #f8fbf7) padding-box,
        conic-gradient(from 30deg, #e4b76b, #fff4cf, #25445c, #e4b76b) border-box;
    border: 8px solid transparent;
    box-shadow: 0 30px 80px rgba(4, 20, 34, 0.28);
    position: relative;
    z-index: 2;
}

.project-highlight-logo img {
    width: 86px;
    height: 86px;
    object-fit: contain;
    margin-bottom: 10px;
}

.project-highlight-logo span {
    color: #183246;
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.05;
}

.project-highlight-point {
    position: relative;
    z-index: 2;
    padding: 16px 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 18px 44px rgba(4, 20, 34, 0.18);
    backdrop-filter: blur(8px);
}

.project-highlight-point::before {
    content: "";
    position: absolute;
    top: 50%;
    width: clamp(32px, 4.5vw, 70px);
    height: 1px;
    background: rgba(228, 183, 107, 0.78);
}

.project-highlight-point::after {
    content: "\f061";
    position: absolute;
    top: calc(50% - 8px);
    color: #e4b76b;
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    font-weight: 900;
}

.point-one,
.point-three,
.point-five {
    grid-column: 1;
    text-align: right;
}

.point-two,
.point-four,
.point-six {
    grid-column: 3;
}

.point-one,
.point-two {
    grid-row: 1;
}

.point-three,
.point-four {
    grid-row: 2;
}

.point-five,
.point-six {
    grid-row: 3;
}

.point-one::before,
.point-three::before,
.point-five::before {
    right: calc(-1 * clamp(32px, 4.5vw, 70px));
}

.point-one::after,
.point-three::after,
.point-five::after {
    right: calc(-1 * clamp(40px, 5vw, 78px));
}

.point-two::before,
.point-four::before,
.point-six::before {
    left: calc(-1 * clamp(32px, 4.5vw, 70px));
}

.point-two::after,
.point-four::after,
.point-six::after {
    left: calc(-1 * clamp(40px, 5vw, 78px));
    transform: rotate(180deg);
}

.project-highlight-point i {
    color: #e4b76b;
    font-size: 21px;
    margin-bottom: 7px;
}

.project-highlight-point h4 {
    color: #fff4df !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: 0;
    margin: 0 0 4px;
}

.project-highlight-point h5 {
    color: rgba(255, 244, 223, 0.82) !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 8px;
}

.project-highlight-point p {
    color: rgba(255, 244, 223, 0.76);
    font-size: 12px;
    line-height: 1.55;
    margin: 0;
}

#testimonials .testimonial-content {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center !important;
}

#testimonials .testimonial-content > .mb-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px !important;
}

#testimonials .testimonial-content > .mb-4 br,
#testimonials .testimonial-content > .mb-4 .fa-quote-left {
    display: none !important;
}

#testimonials .testimonial-avatar {
    position: static;
    display: block;
    width: 82px;
    height: 82px;
    margin: 0 !important;
}

#testimonials .testimonial-text {
    display: block;
    width: min(100%, 560px);
    min-height: 0 !important;
    margin: 0 auto 16px !important;
    color: #233241 !important;
    font-size: 17px !important;
    line-height: 1.72 !important;
    text-align: center;
}

#testimonials .testimonial-stars {
    margin-bottom: 10px !important;
}

#testimonialAuthor,
#testimonialDesignation {
    display: block;
    width: 100%;
    text-align: center;
}

#testimonials .testimonial-content > .d-flex {
    justify-content: center !important;
    margin-top: 14px;
}

@media (max-width: 991.98px) {
    .project-highlights-orbit {
        grid-template-columns: 1fr;
        min-height: 0;
        width: min(100%, 640px);
        gap: 14px;
    }

    .project-highlights-orbit::before,
    .project-highlight-point::before,
    .project-highlight-point::after {
        display: none;
    }

    .project-highlight-logo,
    .point-one,
    .point-two,
    .point-three,
    .point-four,
    .point-five,
    .point-six {
        grid-column: 1;
        grid-row: auto;
    }

    .project-highlight-logo {
        width: 180px;
        margin: 0 auto 10px;
    }

    .project-highlight-point,
    .point-one,
    .point-three,
    .point-five {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .project-highlight-logo {
        width: 152px;
        padding: 20px;
    }

    .project-highlight-logo img {
        width: 64px;
        height: 64px;
    }

    .project-highlight-logo span {
        font-size: 17px;
    }

    .project-highlight-point h4 {
        font-size: 19px;
    }

    #testimonials .testimonial-text {
        font-size: 15px !important;
    }
}

/* Final Why Choose section: blurred premium theme with logo circle intact */
#highlights {
    padding: 82px 0 88px !important;
    background:
        linear-gradient(rgba(29, 68, 91, 0.86), rgba(24, 61, 84, 0.88)),
        url('/img/home18.jpeg') center/cover fixed !important;
    overflow: hidden;
}

#highlights::before {
    background:
        linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.34;
}

#highlights h2 {
    color: #fff4df !important;
    text-shadow: 0 8px 24px rgba(0,0,0,0.28);
    text-transform: uppercase;
}

#highlights h2::before {
    color: #fff4df;
    opacity: 0.9;
}

#highlights .title-underline {
    background: #d8b26d;
    box-shadow: 0 0 22px rgba(216, 178, 109, 0.34);
}

#highlights .project-highlights-orbit {
    width: min(100%, 1120px);
    min-height: 470px;
    padding: 28px;
    border: 1px solid rgba(255, 244, 223, 0.2);
    background: rgba(255, 244, 223, 0.1);
    box-shadow: 0 32px 90px rgba(4, 20, 34, 0.24), inset 0 1px 0 rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
}

#highlights .project-highlights-orbit::before {
    width: min(54vw, 580px);
    height: min(36vw, 320px);
    border-color: rgba(216, 178, 109, 0.34);
}

#highlights .project-highlight-logo {
    width: 210px;
    background:
        linear-gradient(rgba(255, 244, 223, 0.92), rgba(255, 244, 223, 0.86)) padding-box,
        conic-gradient(from 30deg, #d8b26d, #fff4cf, #315c78, #d8b26d) border-box;
    box-shadow: 0 26px 72px rgba(4, 20, 34, 0.28);
}

#highlights .project-highlight-logo span {
    color: #173249;
}

#highlights .project-highlight-point {
    background: rgba(255, 244, 223, 0.09);
    border-color: rgba(255, 244, 223, 0.22);
    box-shadow: none;
}

#highlights .project-highlight-point i,
#highlights .project-highlight-point::after {
    color: #d8b26d;
}

#highlights .project-highlight-point::before {
    background: rgba(216, 178, 109, 0.7);
}

#highlights .project-highlight-point h4 {
    color: #fff4df !important;
}

#highlights .project-highlight-point h5,
#highlights .project-highlight-point p {
    color: rgba(255, 244, 223, 0.78) !important;
}

@media (max-width: 991.98px) {
    #highlights {
        padding: 60px 0 66px !important;
        background-attachment: scroll !important;
    }

    #highlights .project-highlights-orbit {
        min-height: 0;
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    #highlights {
        padding: 48px 0 54px !important;
    }

    #highlights .project-highlights-orbit {
        padding: 16px;
    }
}

/* Site-wide final theme: premium blue, soft mint, and gold accents */
:root {
    --site-mint: #EEF6F1;
    --site-mint-deep: #DDEEE6;
    --site-blue: #183246;
    --site-blue-soft: #25445C;
    --site-gold: #D8B26D;
    --site-gold-deep: #B98635;
    --site-ink: #1E2D3A;
}

body {
    background: var(--site-mint) !important;
    color: var(--site-ink);
}

section,
#about,
#pricing,
#location,
#gallery,
#contact {
    background:
        radial-gradient(circle at 12% 14%, rgba(255,255,255,0.55), transparent 24%),
        linear-gradient(135deg, var(--site-mint), var(--site-mint-deep)) !important;
}

#amenities {
    background:
        linear-gradient(rgba(24, 50, 70, 0.9), rgba(24, 50, 70, 0.88)),
        url('/img/garden.jpg') center/cover fixed !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-5,
.text-primary-custom {
    color: var(--site-blue) !important;
}

.section-kicker,
.luxury-eyebrow {
    color: var(--site-gold-deep) !important;
}

.title-underline,
.title-underline-left,
.dot.active,
.dot:hover {
    background: var(--site-gold) !important;
}

.site-navbar {
    background: rgba(238, 246, 241, 0.82) !important;
    border-bottom: 1px solid rgba(24, 50, 70, 0.12) !important;
    box-shadow: 0 10px 32px rgba(24, 50, 70, 0.08) !important;
}

.site-navbar .navbar-brand h2,
.site-navbar .navbar-brand h2 span:first-child,
.site-navbar .nav-link,
.header.is-scrolled .site-navbar .navbar-brand h2,
.header.is-scrolled .site-navbar .navbar-brand h2 span:first-child,
.header.is-scrolled .site-navbar .nav-link {
    color: var(--site-blue) !important;
    text-shadow: none !important;
}

.site-navbar .navbar-brand h2 span:last-child,
.header.is-scrolled .site-navbar .navbar-brand h2 span:last-child {
    color: var(--site-blue-soft) !important;
}

.navbar .nav-link:hover,
.navbar-brand span,
.amenity-icon,
.spec-card i,
.text-warning {
    color: var(--site-gold) !important;
}

.btn-primary-custom,
.offer-btn,
.nav-pills .nav-link.active {
    background: var(--site-blue) !important;
    border-color: var(--site-blue) !important;
    color: #fff !important;
}

.btn-primary-custom:hover,
.offer-btn:hover,
.btn-outline-primary-custom:hover {
    background: var(--site-gold) !important;
    border-color: var(--site-gold) !important;
    color: var(--site-blue) !important;
}

.image-border-bg,
.table-header,
.address-card {
    background: linear-gradient(135deg, var(--site-blue), var(--site-blue-soft)) !important;
}

.alert-success {
    background: rgba(216, 178, 109, 0.12) !important;
    color: var(--site-blue) !important;
}

.highlight-item,
.amenity-item,
.spec-card,
.pricing-table,
.contact-form-wrapper,
.card,
.testimonial-panel {
    border-color: rgba(216, 178, 109, 0.45) !important;
    box-shadow: 0 18px 46px rgba(24, 50, 70, 0.1) !important;
}

.highlight-item,
.amenity-item,
.spec-card,
.pricing-table,
.contact-form-wrapper,
#location .card {
    background: rgba(255, 255, 255, 0.82) !important;
}

.pricing-title,
.pricing-table .type,
.pricing-table .price,
#contact h2,
#about h2 {
    color: var(--site-blue) !important;
}

.table-row {
    border-bottom-color: rgba(24, 50, 70, 0.1);
}

.luxury-amenities-heading,
#amenities .section-kicker,
#amenities .luxury-amenities-heading {
    color: #FFF4DF !important;
}

.luxuryAmenitiesSwiper,
.luxuryGallerySwiper {
    border-color: rgba(216, 178, 109, 0.42);
    box-shadow: 0 30px 84px rgba(24, 50, 70, 0.2);
}

#gallery h2,
#pricing h2,
#contact h2,
#about h2 {
    text-shadow: none;
}

#location {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.5), transparent 24%),
        linear-gradient(135deg, #EEF6F1, #DDEEE6) !important;
}

#location h2,
#testimonialAuthor {
    color: var(--site-blue) !important;
}

#testimonials {
    background:
        linear-gradient(rgba(24, 50, 70, 0.92), rgba(24, 50, 70, 0.9)),
        url('/img/home30.jpeg') center/cover fixed !important;
}

#testimonials h2,
#highlights h2,
#specifications h2,
.luxury-plan-head h2 {
    color: #FFF4DF !important;
}

#highlights,
#specifications {
    background:
        linear-gradient(rgba(37, 68, 92, 0.88), rgba(37, 68, 92, 0.88)),
        url('/img/home18.jpeg') center/cover fixed !important;
}

.project-highlight-logo,
.luxury-spec-tab.active,
.luxury-spec-tab:hover,
.luxury-plan-actions button.active {
    box-shadow: 0 18px 54px rgba(24, 50, 70, 0.18);
}

.luxury-plan-frame {
    overflow: hidden;
    background: #fff !important;
}

.luxury-plan-frame img {
    width: 100%;
    height: clamp(260px, 42vw, 560px);
    max-height: none !important;
    object-fit: cover !important;
    object-position: center;
    background: #fff;
}

@media (max-width: 575.98px) {
    .luxury-plan-frame img {
        height: 260px;
    }
}

.prime-location-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.prime-location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(216, 178, 109, 0.45);
    border-radius: 8px;
    background: rgba(255, 248, 235, 0.9);
    box-shadow: 0 12px 30px rgba(24, 50, 70, 0.08);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.prime-location-item.active,
.prime-location-item:hover {
    border-color: rgba(169, 120, 40, 0.85);
    box-shadow: 0 16px 38px rgba(24, 50, 70, 0.14);
    transform: translateY(-2px);
}

.prime-location-item i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    border-radius: 50%;
    background: #183246;
    color: #fff4df;
    font-size: 16px;
}

.prime-location-item strong {
    display: block;
    color: #183246;
    font-size: 15px;
    line-height: 1.25;
}

.prime-location-item span {
    display: block;
    margin-top: 3px;
    color: #a97828;
    font-size: 13px;
    font-weight: 700;
}

#location .luxury-location-card {
    display: block !important;
    width: min(100%, 480px);
    margin: 26px auto 0;
    border-radius: 10px;
    overflow: hidden;
    background: #c79b4b;
    box-shadow: 0 20px 48px rgba(24, 50, 70, 0.14);
    position: relative;
}

#location .luxury-location-card img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
    object-position: center;
    animation: locationImageFade 0.55s ease;
}

#location .luxury-location-card div {
    padding: 12px 18px;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.location-live-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(10, 24, 36, 0.92);
    color: #fff4df;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
    transform: translateY(-50%);
}

.location-live-prev {
    left: 14px;
}

.location-live-next {
    right: 14px;
}

.location-live-arrow:hover {
    background: #c79b4b;
    color: #183246;
}

@keyframes locationImageFade {
    from {
        opacity: 0.45;
        transform: scale(1.02);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 575.98px) {
    .prime-location-list {
        grid-template-columns: 1fr;
    }

    .prime-location-item {
        text-align: left;
    }

    #location .luxury-location-card img {
        height: 210px;
    }
}

.luxury-spec-detail,
.testimonial-panel {
    background: rgba(238, 246, 241, 0.94) !important;
}

footer,
.site-footer {
    background:
        linear-gradient(135deg, #102536, #183246 56%, #25445C) !important;
    border-top: 4px solid var(--site-gold) !important;
}

footer h4,
.site-footer h4 {
    color: var(--site-gold) !important;
}

footer p,
footer a,
.site-footer p,
.site-footer a {
    color: rgba(255, 244, 223, 0.78) !important;
}

.footer-input {
    border-color: rgba(255, 244, 223, 0.28) !important;
}

.footer-input:focus {
    border-color: var(--site-gold) !important;
    box-shadow: 0 0 0 0.2rem rgba(216, 178, 109, 0.16) !important;
}

.fixed-enquire-tab {
    background: var(--site-blue) !important;
    border-left: 2px solid var(--site-gold);
}

@media (max-width: 991.98px) {
    .site-navbar .navbar-collapse {
        background: rgba(238, 246, 241, 0.98) !important;
        border: 1px solid rgba(24, 50, 70, 0.12) !important;
    }

    .navbar-nav .nav-link {
        color: var(--site-blue) !important;
    }

    #amenities,
    #highlights,
    #specifications,
    #testimonials {
        background-attachment: scroll !important;
    }
}

@media (max-width: 575.98px) {
    section,
    #about,
    #pricing,
    #location,
    #gallery,
    #contact {
        background:
            linear-gradient(135deg, var(--site-mint), var(--site-mint-deep)) !important;
    }

    .display-5 {
        font-size: 1.78rem !important;
    }
}

/* Final home theme color: warm cream base */
:root {
    --site-mint: #F2E3C7;
    --site-mint-deep: #E8D2A8;
    --site-blue: #183246;
    --site-blue-soft: #25445C;
    --site-gold: #C79B4B;
    --site-gold-deep: #A97828;
    --site-ink: #231A14;
}

body,
section,
#about,
#pricing,
#location,
#gallery,
#contact {
    background:
        radial-gradient(circle at 12% 14%, rgba(255,255,255,0.4), transparent 24%),
        linear-gradient(135deg, #F2E3C7, #E8D2A8) !important;
}

.site-navbar {
    background: rgba(242, 227, 199, 0.86) !important;
}

.highlight-item,
.amenity-item,
.spec-card,
.pricing-table,
.contact-form-wrapper,
#location .card,
.luxury-spec-detail,
.testimonial-panel {
    background: rgba(255, 248, 235, 0.9) !important;
}

#location {
    background:
        radial-gradient(circle at 18% 20%, rgba(255,255,255,0.46), transparent 24%),
        linear-gradient(135deg, #F2E3C7, #E8D2A8) !important;
}

@media (max-width: 575.98px) {
    section,
    #about,
    #pricing,
    #location,
    #gallery,
    #contact {
        background: linear-gradient(135deg, #F2E3C7, #E8D2A8) !important;
    }
}

/* Amenity section final override: warm theme background and safe caption wrapping. */
#amenities {
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.52), transparent 25%),
        radial-gradient(circle at 84% 18%, rgba(216, 178, 109, 0.22), transparent 28%),
        linear-gradient(135deg, #F2E3C7 0%, #E8D2A8 100%) !important;
    background-attachment: scroll !important;
}

#amenities::before {
    opacity: 0.16 !important;
}

#amenities .section-kicker,
#amenities .luxury-amenities-heading {
    color: #4A2D22 !important;
    text-shadow: none !important;
}

.luxuryAmenitiesSwiper {
    border-color: rgba(201, 154, 69, 0.68) !important;
    box-shadow: 0 26px 70px rgba(74, 45, 34, 0.18) !important;
}

.luxury-amenity-slide::after {
    background:
        linear-gradient(90deg, rgba(38, 27, 22, 0.03) 0%, rgba(38, 27, 22, 0.14) 44%, rgba(38, 27, 22, 0.64) 100%) !important;
}

.luxury-amenity-slide img {
    object-position: center center;
}

.luxury-amenity-caption {
    width: min(88%, 560px);
    overflow-wrap: normal;
}

.luxury-amenity-caption span,
.luxury-amenity-caption h3 {
    display: block;
    color: #FFF6E8 !important;
    letter-spacing: 0;
    white-space: normal;
}

.luxury-amenity-caption h3 {
    font-size: clamp(38px, 4.8vw, 78px);
    line-height: 1.05;
    max-width: 11ch;
}

@media (max-width: 575.98px) {
    #amenities {
        background:
            radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.44), transparent 28%),
            linear-gradient(135deg, #F2E3C7, #E8D2A8) !important;
    }

    .luxury-amenity-caption {
        left: 18px;
        right: 18px;
        bottom: 42px;
        width: auto;
    }

    .luxury-amenity-caption span {
        font-size: 20px;
        line-height: 1.18;
    }

    .luxury-amenity-caption h3 {
        font-size: 34px;
        max-width: 10ch;
    }
}

/* Gallery final override: full image slider and full gallery modal. */
#gallery #viewAllBtn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

#gallery #collapseBtn,
#gallery .gallery-grid {
    display: none !important;
}

.luxuryGallerySwiper {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.luxury-gallery-slide {
    border-radius: 16px;
    overflow: hidden;
    background: #183246;
    min-height: 420px;
    height: min(52vh, 560px);
    box-shadow: 0 26px 70px rgba(74, 45, 34, 0.18);
}

.luxury-gallery-slide img,
.luxuryGallerySwiper .swiper-slide-active .luxury-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center;
    background: #183246;
    filter: none !important;
    transform: none !important;
}

.luxury-gallery-pagination {
    position: static !important;
    margin-top: 18px;
}

.all-gallery-modal {
    background: rgba(12, 22, 32, 0.98);
    color: #fff;
}

.all-gallery-modal .modal-header {
    padding: 18px clamp(16px, 3vw, 34px);
}

.all-gallery-modal .modal-body {
    padding: 0 clamp(14px, 3vw, 34px) 34px;
    overflow-y: auto;
}

.all-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.all-gallery-item {
    min-height: 220px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(216, 178, 109, 0.32);
    cursor: pointer;
}

.all-gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: block;
    object-fit: cover;
    object-position: center;
    background: #183246;
}

#imageLightbox .modal-content {
    background: rgba(8, 14, 20, 0.98) !important;
}

#lightboxImage {
    width: 100%;
    height: calc(100vh - 70px);
    object-fit: contain !important;
    background: #111;
}

body.modal-open .header,
body.modal-open .fixed-enquire-tab {
    display: none !important;
}

.modal {
    z-index: 100100 !important;
}

.modal-backdrop {
    z-index: 100000 !important;
}

#allGalleryModal .btn-close,
#imageLightbox .btn-close {
    position: relative;
    z-index: 100101;
}

#testimonials .testimonial-avatar {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #183246, #25445C);
    color: #fff4df;
    border: 4px solid #d2a04d;
    font-size: 34px;
}

#testimonials .testimonial-avatar i {
    line-height: 1;
}

@media (max-width: 575.98px) {
    .all-gallery-grid {
        grid-template-columns: 1fr;
    }

    .all-gallery-item,
    .all-gallery-item img {
        min-height: 190px;
    }
}
