@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

    body {
        overflow-x: hidden;
        position: relative;
    }

    body {
        font-family: "Inter", sans-serif;
        font-weight: 400;
        line-height: 28px;
        color: #6a6a6a;
        font-size: 14px;
        background-color: #eff2f1;
    }

    @media (min-width: 1400px) {
        .container {
            max-width: 1290px;
        }
    }
    /* Navbar */
    .header-logo {
        height: 85px;
        object-fit: contain;
    }

    /* Desktop Nav Links */
    .nav-link-custom {
        font-size: 14px;
        font-weight: 500;
        color: #1f2937;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .nav-link-custom:hover {
        color: #a67c52;
    }

    /* Mobile Nav Links */
    .nav-link-mobile {
        font-size: 15px;
        font-weight: 500;
        color: #1f2937;
        text-decoration: none;
        padding-bottom: 10px;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-link-mobile:hover {
        color: #a67c52;
    }

    /* CTA Button */
    .btn-header-cta {
        background: #a67c52;
        color: #fff;
        padding: 10px 18px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 14px;
    }

    .btn-header-cta:hover {
        background-color: #a67c52;
        color: #ffffff;
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .header-logo {
            height: 55px;
        }
    }

    @media (max-width: 991px) {
        #global-header .btn {
            padding: 6px 10px;
        }

        #global-header .fa-bars {
            font-size: 26px;
        }

        .btn-header-cta {
            width: 100%;
            text-align: center;
            padding: 12px;
            font-size: 15px;
        }
    }

    /* Hero section */

    .hero-section {
        position: relative;
        min-height: 100vh;
        background: url('../images/EXTERIOR/IMG-20250516-WA0084.jpg') center/cover no-repeat;
        display: flex;
        align-items: center;
        font-family: 'Segoe UI', sans-serif;
        color: #fff;
    }

    .hero-content {
        margin-left: 15%;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.1)
        );
    }

    .hero-container {
        position: relative;
        max-width: 1200px;
        padding: 40px 20px;
        margin: auto;
    }

    .hero-tagline {
        color: #d8b46a;
        font-size: 14px;
        letter-spacing: 2px;
        font-weight: 600;
    }

    .hero-container h1 {
        font-size: 56px;
        line-height: 1.2;
        margin: 20px 0;
        font-weight: 700;
    }

    .hero-container h1 span {
        color: #d8b46a;
    }

    .hero-container p {
        max-width: 520px;
        font-size: 16px;
        line-height: 1.7;
        color: #e6e6e6;
        margin-bottom: 30px;
    }

    .hero-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: #d8b46a;
        color: #000;
        padding: 14px 28px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
    }

    .btn-primary:hover {
        background: #caa04f;
    }

    .btn-secondary {
        background: white;
        color: #d8b46a;
        padding: 14px 28px;
        border-radius: 6px;
        border: 1px solid #d8b46a;
        text-decoration: none;
        font-weight: 600;
    }

    .btn-secondary:hover {
        background: rgba(216, 180, 106, 0.15);
    }

    .hero-note {
        margin-top: 20px;
        font-size: 14px;
        color: #dcdcdc;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-container h1 {
            font-size: 38px;
        }

        .hero-container p {
            font-size: 15px;
        }

        .hero-content {
            margin-left: 5%;
        }

        .hero-tagline {
            font-size: 10px;
        }

        .hero-container h1 {
            font-size: 25px;
        }

        .hero-container p {
            font-size: 11px;
        }

        .btn-primary {
            padding: 7px 19px;
        }

        .btn-secondary {
            padding: 7px 27px;
        }

        .hero-note {
            font-size: 8px;
        }
    }

    .why-section {
        background: #faf7f2;
        padding: 90px 20px;
        font-family: 'Segoe UI', sans-serif;
    }

    .why-container {
        max-width: 1200px;
        margin: auto;
        text-align: center;
    }

    .why-tagline {
        color: #d8b46a;
        font-size: 13px;
        letter-spacing: 2px;
        font-weight: 600;
    }

    .why-container h2 {
        font-size: 38px;
        margin: 15px 0;
        color: #1c1c1c;
    }

    .why-subtitle {
        max-width: 600px;
        margin: 0 auto 60px;
        color: #555;
        line-height: 1.6;
    }

    .why-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .why-card {
        background: #fff;
        padding: 35px 25px;
        border-radius: 14px;
        text-align: left;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }

    .why-card:hover {
        transform: translateY(-6px);
    }

    .icon-box {
        width: 50px;
        height: 50px;
        background: #e0b57b;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .why-card h4 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #1c1c1c;
    }

    .why-card p {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
    }

    .why-stats {
        margin-top: 70px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }

    .why-stats h3 {
        font-size: 36px;
        color: #d8b46a;
        margin-bottom: 5px;
    }

    .why-stats span {
        font-size: 14px;
        color: #555;
    }

    /* Responsive */
    @media (max-width: 768px) {

        .why-section {
            padding: 40px 20px;
        }

        .why-tagline {
            font-size: 10px;
        }

        .why-container h2 {
            font-size: 26px;
        }

        .why-container h4 {
            font-size: 16px;
        }

        .why-container p {
            font-size: 12px;
        }
    }

    .rooms-section {
        padding: 90px 20px;
        background: #fff;
        font-family: 'Segoe UI', sans-serif;
        text-align: center;
    }

    .rooms-container {
        max-width: 1200px;
        margin: auto;
    }

    .rooms-tag {
        color: #d8b46a;
        font-size: 13px;
        letter-spacing: 2px;
        font-weight: 600;
    }

    .rooms-container h2 {
        font-size: 38px;
        margin: 15px 0;
        color: #1c1c1c;
    }

    .rooms-subtitle {
        max-width: 650px;
        margin: 0 auto 60px;
        color: #555;
        line-height: 1.6;
    }

    .rooms-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }

    .room-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }

    .room-card img {
        width: 100%;
        height: 315px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .room-card:hover img {
        transform: scale(1.05);
    }

    .room-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.15),
            rgba(0,0,0,0)
        );
        padding: 25px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        color: #fff;
    }

    .room-overlay h4 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .room-overlay p {
        font-size: 14px;
        color: #e6e6e6;
        margin-bottom: 10px;
    }

    .room-overlay a {
        color: #d8b46a;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
    }

    .room-overlay a:hover {
        text-decoration: underline;
    }

    .badge {
        position: absolute;
        top: 18px;
        right: 18px;
        background: #d8b46a;
        color: #fff;
        font-size: 12px;
        padding: 6px 14px;
        border-radius: 20px;
        font-weight: 600;
        z-index: 2;
    }

    .rooms-btn {
        margin-top: 20px;
    }

    .btn-main {
        background: #a67c52;
        color: #fff;
        padding: 14px 34px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
    }

    .btn-main:hover {
        background: #caa04f;
    }

    /* Responsive */
    @media (max-width: 768px) {

        .rooms-section {
            padding: 40px 20px;
        }

        .rooms-container .rooms-tag {
            font-size: 10px;
        }

        .rooms-container h2 {
            font-size: 26px;
        }

        .rooms-container p {
            font-size: 12px;
        }

        .room-card img {
            height: 260px;
        }
    }

    .amenities-section {
        padding: 90px 20px;
        background:
                    linear-gradient(
                        rgba(31, 22, 16, 0.92),
                        rgba(31, 22, 16, 0.92)
                    ),
                    url('/images/publicContain.webp') center/cover no-repeat;
        color: #fff;
        font-family: 'Segoe UI', sans-serif;
    }

    .section-tag {
        color: #e2b27c;
        letter-spacing: 2px;
        font-size: 13px;
        font-weight: 600;
    }

    .section-title {
        font-size: 38px;
        font-weight: 700;
        margin: 10px 0;
    }

    .section-subtitle {
        color: #d1d1d1;
        max-width: 650px;
        margin: auto;
    }

    .amenity-card {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 16px;
        padding: 25px 27px;
        height: 100%;
        transition: all 0.3s ease;
    }

    .amenity-card:hover {
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.12);
    }

    .icon-box {
        width: 48px;
        height: 48px;
        background: #e2b27c;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .icon-box i {
        font-size: 20px;
        color: #fff;
    }

    .amenity-card h5 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .amenity-card p {
        color: #dcdcdc;
        font-size: 14px;
    }

    .btn-amenities {
        background: #e2b27c;
        color: #fff;
        padding: 12px 28px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }

    .btn-amenities:hover {
        background: #c99a63;
        color: #fff;
    }

    .luxury-cta-section {
        padding: 100px 0;
        background-color: #fffaf5;
        font-family: 'Segoe UI', sans-serif;
    }

    .cta-eyebrow {
        letter-spacing: 2px;
        font-size: 13px;
        color: #d2a679;
        font-weight: 600;
    }

    .cta-title {
        font-size: 42px;
        font-weight: 700;
        margin: 15px 0 20px;
        line-height: 1.2;
        color: #1f1610;
    }

    .cta-text {
        color: #555;
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 520px;
    }

    .cta-list {
        list-style: none;
        padding: 0;
        margin-bottom: 35px;
        font-size: 18px;
    }

    .cta-list li {
        display: flex;
        gap: 15px;
        margin-bottom: 18px;
    }

    .check-icon {
        width: 36px;
        height: 36px;
        background: #d2a679;
        color: #fff;
        border-radius: 50%;
        text-align: center;
        line-height: 36px;
        font-weight: bold;
    }

    .cta-list strong {
        color: #1f1610;
    }

    .cta-list p {
        margin: 3px 0 0;
        color: #666;
        font-size: 14px;
    }

    .cta-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .btn-book {
        background: #d2a679;
        color: #fff;
        padding: 12px 28px;
        border-radius: 8px;
        text-decoration: none;
    }

    .btn-book:hover {
        background: #c29a6b;
    }

    .btn-outline {
        border: 1px solid #d2a679;
        color: #d2a679;
        padding: 12px 28px;
        border-radius: 8px;
        text-decoration: none;
    }

    .btn-outline:hover {
        background: #d2a679;
        color: #fff;
    }

    .cta-image-wrapper {
        position: relative;
        display: inline-block;
    }

    .cta-image-wrapper img {
        border-radius: 16px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    }

    .rating-badge {
        position: absolute;
        bottom: -20px;
        left: -20px;
        background: #fff;
        padding: 12px 18px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        color: #1f1610;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .luxury-cta-section {
            padding: 40px 20px;
        }

        .cta-title {
            font-size: 26px;
        }

        .cta-text {
            font-size: 12px;
        }

        .cta-list li {
            flex-direction: column;
            align-items: flex-start;
        }

        .check-icon {
            margin-bottom: 10px;
        }

        .btn-book {
            padding: 8px 28px;
        }

        .btn-outline {
            padding: 9px 22px;
        }
    }

    .testimonials-section {
        padding: 100px 20px;
        background: #fff;
        font-family: 'Segoe UI', sans-serif;
    }

    .testimonials-container {
        max-width: 1200px;
        margin: auto;
        text-align: center;
    }

    .section-tag {
        font-size: 12px;
        letter-spacing: 2px;
        color: #d4a373;
        font-weight: 600;
    }

    .testimonials-container h2 {
        font-size: 36px;
        margin: 10px 0;
    }

    .section-subtitle {
        color: #666;
        margin-bottom: 50px;
    }

    .testimonial-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 60px;
    }

    .testimonial-card {
        background: #fffaf4;
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        text-align: left;
    }

    .location-card {
        background: #fffaf4;
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        text-align: left;
    }

    .stars {
        color: #d4a373;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .testimonial-card p {
        font-size: 15px;
        line-height: 1.7;
        color: #444;
        margin-bottom: 25px;
    }

    .guest {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .avatar {
        width: 42px;
        height: 42px;
        background: #d4a373;
        color: #fff;
        font-weight: 600;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .guest h4 {
        font-size: 14px;
        margin: 0;
    }

    .guest span {
        font-size: 12px;
        color: #777;
    }

    .stats-bar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        background: linear-gradient(90deg, #d4a373, #e6b980);
        border-radius: 16px;
        padding: 40px 20px;
        color: #fff;
        margin-bottom: 40px;
    }

    .stat h3 {
        font-size: 36px;
        margin-bottom: 5px;
    }

    .stat p {
        font-size: 14px;
        opacity: 0.9;
    }

    .review-btn {
        display: inline-block;
        padding: 14px 30px;
        background: #d4a373;
        color: #fff;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }

    .review-btn:hover {
        background: #c08a4a;
    }

    /* Responsive */
    @media (max-width: 768px) {

        .testimonials-section {
            padding: 50px 20px;
        }

        .testimonials-container h2
        {
            font-size: 26px;
        }

        .stat h3 {
            font-size: 26px;
        }
    }

    .site-footer {
        background: #ffffff;
        padding: 60px 0 30px;
        color: #000;
        font-size: 15px;
    }

    .footer-logo {
        max-width: 160px;
    }

    .footer-text {
        color: #333;
        line-height: 1.7;
    }

    .footer-title {
        font-weight: 600;
        margin-bottom: 20px;
    }

    .footer-links,
    .footer-contact {
        list-style: none;
        padding: 0;
    }

    .footer-links li,
    .footer-contact li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #000;
        text-decoration: none;
    }

    .footer-links a:hover {
        color: #d4a373;
    }

    .footer-contact i {
        margin-right: 10px;
        color: #d4a373;
    }

    .footer-social {
        display: flex;
        gap: 12px;
        margin-top: 20px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #d4a373;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: 0.3s;
    }

    .footer-social a:hover {
        background: #d4a373;
        color: #fff;
    }

    .site-footer hr {
        margin: 40px 0 20px;
        border-color: #ddd;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 14px;
    }

    .footer-bottom-links a {
        margin-left: 15px;
        color: #000;
        text-decoration: none;
    }

    .footer-bottom-links a:hover {
        color: #d4a373;
    }

    /* Mobile */
    @media (max-width: 768px) {
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .footer-bottom-links a {
            margin: 0 8px;
        }

        .footer-logo {
            max-width: 100px;
        }
    }

    .luxury-banner {
        background: linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
        ),
        url('../images/EXTERIOR/IMG-20250516-WA0084.jpg') center/cover no-repeat;
        color: #fff;
        position: relative;
    }

    .banner-tag {
        font-size: 13px;
        letter-spacing: 2px;
        color: #d4af37;
        text-transform: uppercase;
        font-weight: 600;
    }

    .banner-title {
        font-size: 48px;
        font-weight: 300;
        margin: 15px 0;
        line-height: 1.2;
    }

    .banner-title span {
        display: block;
        font-weight: 600;
        color: #e6c27a;
    }

    .banner-text {
        max-width: 520px;
        font-size: 16px;
        line-height: 1.7;
        color: #e6e6e6;
        margin-bottom: 30px;
    }

    /* Mobile */
    @media (max-width: 768px) {

        .luxury-banner {
            padding: 40px 20px;
        }

        .banner-tag {
            font-size: 11px;
        }

        .banner-title {
            font-size: 26px;
        }

        .banner-text {
            font-size: 12px;
        }
    }

    /* Contact Us */

    .free-session-section {
        background: #f9fafb;
    }

    .session-info {
        padding: 30px;
    }

    .session-info h2 {
        font-size: 34px;
    }

    .info-item {
        display: flex;
        gap: 16px;
        margin-bottom: 22px;
    }

    .info-item .icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 1px solid #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #a67c52;
    }

    .info-item h6 {
        margin-bottom: 4px;
        font-weight: 600;
    }

    .info-item p {
        margin: 0;
        color: #555;
        font-size: 15px;
    }

    .session-form {
        background: #ffffff;
        border-radius: 14px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .form-control {
        height: 46px;
        border-radius: 8px;
    }

    textarea.form-control {
        height: auto;
    }

    .btn-submit {
        background: #a67c52;
        color: #fff;
        padding: 12px 26px;
        border-radius: 8px;
        border: none;
        font-weight: 600;
        transition: 0.3s ease;
    }

    .btn-submit:hover {
        background: #a67c52;
    }

    .form-label {
        font-weight: 600;
        margin-bottom: 6px;
    }

    .form-control {
        border: none;
        border-bottom: 2px solid #e5e7eb;
        border-radius: 0;
        padding-left: 0;
        box-shadow: none;
    }

    .form-control:focus {
        border-bottom-color: #a67c52;
        box-shadow: none;
    }

    .btn-submit {
        background: #a67c52;
        color: #fff;
        padding: 14px;
        border-radius: 8px;
        border: none;
        font-weight: 600;
    }


    /* Mobile */
    @media (max-width: 768px) {

        .session-info {
            padding: 13px;
        }

        .session-info h2 {
            font-size: 23px;
        }

        .session-info p {
            font-size: 12px;
        }

        .info-item {
            flex-direction: column;
            align-items: flex-start;
        }

        .info-item .icon {
            margin-bottom: 6px;
        }

        .testimonial-card p {
            font-size: 11px;
        }
    }

    li a {
        color: inherit;
        text-decoration: none;
        font-weight: 500;
    }

    li a:hover {
        text-decoration: underline;
    }
