body{
       font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
       line-height: 1.625;
       font-size: 16px;
       color: #323232;
        font-weight: 400;
}
a{
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6{
    color:#222;
}
.section-space{
    padding: 60px 0;
}

.section-title {
       font-size: 2.25rem;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 2.5rem;

    }

    .section-subtitle {
        font-size: 18px;
        color: #555;
        margin-bottom: 60px;
    }

/* Logo */
.navbar-brand {
    font-size: 28px;
    font-weight: 900;
    color: #aa8453;
}

/* Desktop Menu */
.nav-link {
    font-size: 17px;
    font-weight: 500;
    color: #222;
    margin-left: 24px;
    padding-bottom: 5px;
}

.nav-link:hover {
    color:#aa8453;
    border-bottom: 2px solid #aa8453;
}

/* Icons */
.nav-icons i {
    font-size: 18px;
    margin-left: 15px;
    cursor: pointer;
}

/* DEFAULT STATE */
.mobile-icons {
    display: none;
}

.desktop-menu {
    display: block;
}

/* BELOW 1024px */
@media (max-width: 1024px) {

    .desktop-menu {
        display: none !important;
    }

    .mobile-icons {
        display: flex !important;
        align-items: center;
    }
}

/* ===== CUSTOM TOGGLER ===== */
.navbar-toggler {
    border: none;
    background: none;
}

/* Hamburger lines */
.custom-toggler span {
    display: block;
    width: 25px;
    height: 2px;
    background: #222;
    margin: 5px 0;
    transition: 0.3s;
}

/* Transform to CROSS */
.custom-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler.active span:nth-child(2) {
    opacity: 0;
}

.custom-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


.offcanvas-title{
    color: #aa8453;
    font-weight: 900;
}

@media(max-width:576px){
.navbar-brand{
    font-size: 20px;
}
}




/* ===== HERO SECTION ===== */
.main-slider{
    position: relative;
}
.at-hero-section {
    position: relative;
    height: 550px;
    overflow: hidden;
}

/* IMAGES */
.at-hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* ACTIVE IMAGE */
.at-hero-slide.at-active {
    opacity: 1;
}

/* OVERLAY TEXT */
.at-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.at-hero-title {
    font-size: 48px;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 700;
}

.at-hero-subtitle {
    font-size: 20px;
}

/* BUTTONS */
.at-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    line-height: 19px;
    border-radius: 100%;
    color: #aa8453;
}

.at-prev-btn {
    left: 20px;
}

.at-next-btn {
    right: 20px;
}


/* Booking Section */
.book-now-sect {
    position: absolute;
    max-width: 680px;
    z-index: 999;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.at-location-box {
    background: #f1f1f1;
    padding: 25px;
    border-radius: 10px;
}

/* LABEL */
.at-location-label {
    font-size: 14px;
    color: #a67c52;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

/* ROW ALIGN */
.at-location-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ICON */
.at-location-icon {
    font-size: 18px;
    color: #a67c52;
}

/* SELECT */
.at-location-select {
    border: none;
    border-bottom: 2px solid #ccc;
    width: 100%;
    padding: 8px;
    font-size: 16px;
    background: transparent;
    outline: none;
}

/* BUTTON */
.at-book-btn {
    background: #a67c52;
    color: #fff;
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
}

.at-book-btn:hover {
    background: #8c653f;
}

@media(max-width:992px){
    .at-hero-content {
    width: 100%;
    top: 30%;
}
}

@media(max-width:768px){
    .at-hero-title {
    font-size: 35px;
}

.at-hero-subtitle{
    font-size: 18px;
}

.at-hero-section {
    height: 600px;
    
}
}


/* --why-section-- */
.why-section {
        padding: 80px 0 60px;
        text-align: center;
    }



   
    .feature-box {
        padding: 30px 20px;
        transition: 0.3s;
    }

    .feature-box:hover {
        transform: translateY(-6px);
        background-color:  #f6f1f0;
        border-radius: 20px;
    }

    .feature-icon img {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
        object-fit: contain;
    }

    .feature-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .feature-text {
        font-size: 15px;
        line-height: 1.7;
        max-width: 280px;
        margin: 0 auto;
        font-weight: 500;
    }



    /* Section */
.testimonial-section {
    padding: 60px 0;
    background-color: #f6f1f0;
}

.testimonial-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Card */
.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Header */
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.testimonial-location {
    font-size: 14px;
    color: #777;
}

/* Text */
.testimonial-text {
    font-size: 15px;
}



/* Section */
.amenities-section {
    padding: 80px 0;
    text-align: center;
}

.amenities-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
}

/* Item */
.amenity-item {
    margin-bottom: 40px;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 20px;
}

.amenity-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.amenity-item:hover .icon-box, .amenity-item:hover .icon-box img {
    transform: scale(1.05);
}

/* Icon box */
.icon-box {
    width: 68px;
    height: 68px;
    background: rgb(246 241 240 );
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
        border-radius: 50px 90px 50px 50px;
}

.icon-box img {
    width: 32px;
    transition: all 0.3s ease;
}

/* Text */
.amenity-title {
    font-size: 20px;
    font-weight: 700;
}

/* Section */
.newsletter-section {
    background: #111;
    color: #fff;
    padding: 70px 0;
    border-bottom: 1px solid #444;
}

/* Left Content */
.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.newsletter-text {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
}

/* Form */
.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    height: 55px;
    border-radius: 8px;
    border: none;
    padding: 0 15px;
    font-size: 16px;
}

.newsletter-btn {
    background: #b08d57;
    color: #fff;
    border: none;
    padding: 0 25px;
    border-radius: 8px;
    font-weight: 600;
    height: 55px;
    transition: 0.3s;
}

.newsletter-btn:hover {
    background: #9a7848;
}

/* Privacy Text */
.newsletter-privacy {
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
}

.newsletter-privacy a {
    color: #fff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
    .newsletter-input{
        flex:auto;
    }
}



/* Section */
.faq-section {
    padding: 90px 0;
}

.faq-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
}

/* Accordion */
.accordion {
    max-width: 850px;
    margin: auto;
}

.accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.accordion-item:hover {
    transform: translateY(-3px);
}

/* Button */
.accordion-button {
    font-size: 18px;
    font-weight: 500;
    padding: 20px 60px 20px 20px;
    background: #fff;
    position: relative;
}

.accordion-button::after {
    display: none;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Circle Icon */
.faq-toggle {
    position: absolute;
    right: 20px;
    width: 25px;
    height: 25px;
    border: 1.5px solid #b08d57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b08d57;
    transition: 0.3s;
    font-size: 16px;
}

/* Rotate */
.accordion-button:not(.collapsed) .faq-toggle i {
    transform: rotate(180deg);
}

/* Active */
.accordion-button:not(.collapsed) {
    box-shadow: inset 4px 0 0 #b08d57;
    color:#222;
}

/* Content */
.accordion-body {
    padding: 15px 20px 20px;
}

/* Smooth View More */
.extra-faq {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.extra-faq.show {
    max-height: 1000px;
}

/* Button */
.view-more-btn {
    display: block;
    margin: 25px auto 0;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    font-weight: 700;
}

.faq-section .view-more-btn i {
    margin-left: 5px;
}


/* ===== Property Card Styling ===== */

.property-card {
    border: 1px solid #aa8453;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    transition: 0.3s;
    cursor: pointer;
}

.property-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Image Slider */
.property-slider img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}

/* Title */
.property-title {
    font-size: 22px;
    font-weight: 600;
    color: #aa8453;
}

/* Rating */
.rating-badge {
    background: #2e7d32;
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 8px;
}

/* Info */
.property-info {
    color: #6c757d;
    font-size: 15px;
    margin-top: 5px;
}

/* Amenities */
.amenities span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 42px;
    border: 1px solid #ddd;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 16px;
    color: #555;
    transition: 0.3s;
}

.amenities span:hover {
    border-color: #c89b63;
}

.amenities span.more {
    height: 42px;
    width: 65px;
    border-radius: 50px;
}

.amenities span.more:hover {
    background: #c89b63;
    color: #fff;
}

/* Price */
.price {
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0;
}

.price i{
    color:#aa8453;
}

/* Buttons */
.btn-custom {
    background: #1f2a3c;
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-custom:hover {
    background: #c89b63;
    color: #000;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 35px;
    height: 35px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

/* Responsive */
@media(max-width:768px){
    .property-slider img {
        height: 200px;
    }
}




/* ===== Section ===== */
.stay-section {
    padding-bottom: 80px;
}

/* Left Content */
.stay-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.stay-title {
    font-size: 45px;
    font-weight: 900;
    color: #a67843;
    margin: 15px 0;
}

.stay-text {
    font-size: 16px;
    max-width: 520px;
}

/* Stats */
.stay-stats {
    margin: 30px 0;
}

.stay-stat h4 {
    font-size: 26px;
    color: #a67843;
    font-weight: 700;
}

.stay-stat p {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

/* Button */
.stay-btn {
    background: #a67843;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
}

.stay-btn:hover {
    background: rgba(170,132,83,.9);
    color: #fff;
}

/* Image Slider */
.stay-slider img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}



/* ===== Responsive (<992px) ===== */
@media (max-width: 991px) {

    .stay-section {
        text-align: center;
        padding: 60px 0;
    }

    /* Image on top */
    .stay-img-col {
        order: -1;
        margin-bottom: 30px;
    }

    .stay-title {
        font-size: 34px;
    }

    .stay-text {
        margin: auto;
    }

    .stay-stats {
        justify-content: center;
    }

    .stay-stat {
        margin-bottom: 15px;
        text-align: center;
    }

    .stay-slider img {
        height: 280px;
    }

    .stay-btn {
        margin-top: 15px;
    }

}








/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #aa8453;
    display: inline-block;
    margin-bottom: 10px;
}



.section-divider {
    width: 60px;
    height: 2px;
    background: #aa8453;
    margin: 0 auto;
}

/* Contact Wrapper */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Contact Form */
.contact-form {
    flex: 2;
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e8e2da;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #aa8453;
    display: inline-block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #aa8453;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: #aa8453;
    margin-right: 8px;
    width: 18px;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    font-size: 14px;
    border: 1px solid #e0d8cc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #aa8453;
    box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.1);
    background: #ffffff;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #aa8453;
    color: #ffffff;
    border: none;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #aa8453;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 162, 101, 0.3);
}

/* Contact Info */
.contact-info {
    flex: 1.2;
    background: #323232;
    border-radius: 20px;
    padding: 35px;
    color: #ffffff;
}

.info-title {
    
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #aa8453;
    display: inline-block;
    color: #fff;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(196, 162, 101, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-icon i {
    font-size: 20px;
    color: #aa8453;
}

.info-item:hover .info-icon {
    background: #aa8453;
    transform: scale(1.05);
}

.info-item:hover .info-icon i {
    color: #fff;
}

.info-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.info-content p {
    color: #d4cfc5;
    margin: 0;
}

.info-content a {
    color: #d4cfc5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-content a:hover {
    color: #aa8453;
}

/* Social Links */
.social-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 6px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background: #aa8453;
    color: #aa8453;
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-form,
    .contact-info {
        flex: auto;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-form,
    .contact-info {
        padding: 25px;
    }
    
    .form-title,
    .info-title {
        font-size: 20px;
    }
    
    .map-section iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .contact-form,
    .contact-info {
        padding: 20px;
    }
    
    .info-item {
        gap: 12px;
    }
    
    .info-icon {
        width: 38px;
        height: 38px;
    }
    
    .info-icon i {
        font-size: 16px;
    }
}




/* ===== Section ===== */
.policy-section {
    background: #f7f8fa;
    padding: 80px 0;
}

/* Heading */
.policy-heading {
    text-align: center;
    margin-bottom: 50px;
}

.policy-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #a67843;
}

/* Card */
.policy-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    height: 100%;
    transition: 0.3s;
}

.policy-box:hover {
    transform: translateY(-5px);
}

/* Title */
.policy-box h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
    font-weight: 600;
}

/* Text */
.policy-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* List */
.policy-box ul {
    padding-left: 18px;
}

.policy-box ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Icons */
.policy-icon {
    color: #a67843;
    margin-right: 10px;
}

/* Contact Highlight */
.contact-highlight {
    background: #a67843;
    color: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.contact-highlight a {
    color: #fff;
    text-decoration: none;
}

/* Responsive */
@media(max-width:768px){
    .policy-heading h2 {
        font-size: 28px;
    }
}


/* ===== Footer Styling ===== */
.footer {
    background: #0d0f14;
    color: #bfbfbf;
    padding: 70px 0 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer h4 {
    color: #c89b63;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 900;
}

.footer h5 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 18px;
}



/* Links */
.footer-links a {
    display: block;
    text-decoration: none;
    color: #bfbfbf;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #c89b63;
    padding-left: 5px;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    margin-right: 4px;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: #1a1d24;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #c89b63;
    color: #000;
}

/* Contact spacing */
.contact p {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Payment Icons */
.payment-section {
    border-top: 1px solid #1f222a;
    margin-top: 40px;
    padding-top: 25px;
}

.payment-icons img {
    height: 30px;
    margin: 5px;
    background: #fff;
    padding: 5px 8px;
    border-radius: 5px;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #1f222a;
    margin-top: 25px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
}

.footer-bottom span {
    color: #aa8453;
}

.footer-bottom a {
    color: #bfbfbf;
}

/* ===== Responsive Fixes ===== */
@media (max-width: 991px) {
    .footer .col-lg-4 {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer h4 {
        font-size: 24px;
    }
}