/* Reset and Base Styles */

@font-face {
    font-family: 'lora-regular';
    src: url('fonts/lora-regular.ttf');

}

@font-face {
    font-family: 'avertastd-regular';
    src: url('fonts/avertastd-regular.ttf');

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'avertastd-regular';
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* p{
      font-family: 'avertastd-regular';
} */
img {
    max-width: 100%;
    height: auto;
}

@font-face {
    font-family: "Bodoni 72", serif;
    src: url('bodoni-72-book.ttf');
}

/* Typography */
.section-title {
    font-family: 'lora-regular';
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #0b5f5a;
}

/* Buttons */
.btn {
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-plus {
    width: 50px;
    height: 35px;
    background: #015ca4;
    color: white;
    border-radius: 100px;
    font-size: 1.125rem;
}

.btn-enquire {
    background: #50b348;
    color: white;
}

.btn-submit {
    background: #cba44d;
    color: white;
    border-radius: 1000px;
    padding: 12px 23px;
    font-size: 15px;
}

.btn-cta {
    /* height: 35px; */
    background: #50b348;
    color: white;
    border-radius: 100px;
    padding: 0 1rem;
    font-size: 1rem;
}

.btn-view-plan {
    width: 210px;
    height: 64px;
    background: #50b348;
    color: white;
    border-radius: 100px;
    font-size: 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); */
    /* padding: 7px 0; */
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    width: 138px;
    height: 77px;
    object-fit: contain;
    margin-right: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav {
    background: black;
    border-radius: 100px;
    padding: 0 2rem;
    height: 27px;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 27px;
    height: 100%;
}

a {
    font-size: 12px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 11px;
    font-weight: 400;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: 'lora-regular';
}

.nav-item:hover {
    opacity: 0.8;
}

.dropdown-icon {
    width: 10px;
    height: 6px;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.qr-code {
    width: 73px;
    height: 47px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #050505;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgb(0 0 0 / 65%), rgb(0 0 0 / 69%)), url(../image/image-3.png);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    color: white;
    padding-top: 100px;
}

.hero-content {
    text-align: center;
    margin-bottom: 0rem;
}



.scroll-indicator {
    width: 20px;
    height: 55px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Contact Form - Default and Sticky Styles */
.contact-form-container {
    position: relative;
    bottom: 0;
    left: 120px;
    right: 120px;
    background: url('./rectangle-14.svg');
    background-size: cover;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 999;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.contact-form-container.sticky-form {
    position: fixed;
    /* top: 80px; */
    left: 50%;
    transform: translateX(-50%);
    width: 82%;
    /* max-width: 1200px; */
    /* background: rgba(0, 0, 0, 0.9); */
    /* border-radius: 10px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

.contact-form-container.sticky-form-hidden {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.sticky-form-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.sticky-form-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-form-container.sticky-form .sticky-form-close {
    display: flex;
}

.contact-form {
    max-width: 1524px;
    margin: 0 auto;
    position: relative;
}

.contact-form h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.7rem;
}

.form-fields {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-direction: row;
    align-items: flex-start;
}

.form-field {
    background: white;
    border: 1px solid #ececec;
    border-radius: 4px;
    padding: 0px 10px;
    min-width: 224px;
    flex: 1;
    /* line-height: 10px; */
    height: 32px;
}

.form-field label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    color: #50b348;
    font-weight: 500;
}

.form-field input {
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #333;
    width: 100%;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 9px;
}

.checkbox-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.checkbox-container label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.5625rem;
    color: white;
    font-weight: 500;
}

/* Overview Section */
.overview-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-image {
    position: relative;
    /* width: 100%; */
    /* height: 710px; */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    cursor: pointer;
}

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

.overview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 4rem 4rem 4rem 4rem;
    color: white;
}

.overview-overlay h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.overview-overlay p {
    font-size: 1.5625rem;
    line-height: 1.2;
    white-space: pre-line;
}

.navigation-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.nav-btn {
    width: 42px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-btn:hover {
    transform: scale(1.1);
}

/* Antalya Section */


.polo-image-container {
    position: relative;
    margin-bottom: 2rem;
}

.polo-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    /* Ensures no extra space below image */
}

.features-bar {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    background: #015ca4;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-radius: 10px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    flex: 1;
    border-left: 1px solid #ffffff2b;
    padding: 0 1.375rem;
}

.feature img {
    width: clamp(60px, 15vw, 80px);
    /* Responsive image size */
    height: auto;
    max-height: 50px;
    object-fit: contain;
    margin-bottom: 0.5625rem;
}

.feature p {
    font-size: clamp(0.75rem, 2vw, 1rem);
    line-height: 1.2;
}

/* Tablet (≤768px) */
@media (max-width:768px) {
    .mob-footer-btn {
        font-weight: 600;
        /* text-align: center; */
        white-space: nowrap;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border: 1px solid transparent;
        padding: 3px 8px;
        font-size: 12px;
        /* line-height: 1.5; */
        border-top-right-radius: 10px !important;
        transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        align-items: center;
        border-radius: 0px;
        border-top-left-radius: 10px;
    }

    .feature {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        color: white;
        flex: 1;
        border-left: 1px solid #ffffff2b;
        padding: 0 1.375rem;
        justify-content: center;
        gap: 18px;
    }

    .nav-link {
        display: block;
        padding: 8px 16px !important;
    }

    .btn {
        display: flex;
        font-weight: 600;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border: 1px solid transparent;
        padding: 8px 8px !important;
        font-size: 12px;
        /* line-height: 1.5; */
        border-radius: 20px;
        transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        align-items: center;
    }

    .nav-btn {
        width: 57px !important;
        height: 56px !important;
        background: none;
        border: none;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .next-arrow {
        left: 80%;
        position: absolute;
    }

    .prev-arrow {
        right: 67%;
        position: absolute;
    }

    /*   .nav-btn {
    position: absolute;
    top: 101% !important;
    transform: translateY(-50%);
    background: none !important;
    color: white;
    border: none;
    padding: clamp(0.5rem, 2vw, 1rem);
    cursor: pointer;
    font-size: clamp(1rem, 3vw, 1.5rem);
    z-index: 10;
    transition: background 0.3s;
} */
    .btn-width {
        width: 70% !important;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        align-items: center;
        margin-top: 2rem;
    }

    .swiper-slide-active img {
        transform: scale(0.9) !important;
        border: 1px solid #50b348;
    }

    .connectivity-labels {
        /* height: 60px; */
        background: #015ca4;
        display: flex;
        align-items: center;
        /* padding: 0 2rem; */
        justify-content: space-between;
        margin-top: 8px;
    }

    .form-container {
        padding: 20px 34px !important;
    }

    .disclaimer-content.open {
        max-height: 1506px;
        opacity: 1;
    }

    .video-container {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        height: 298px;
    }

    .antalya-section {
        padding: 2rem 1rem;
    }

    .antalya-title {
        font-size: clamp(2rem, 4.5vw, 2.5rem);
    }

    .antalya-subtitle {
        font-size: clamp(0.875rem, 2vw, 1rem);
    }

    .antalya-description {
        font-size: clamp(0.8125rem, 1.8vw, 0.875rem);
    }

    .features-bar {
        flex-direction: column;
        /* Stack features vertically */
        padding: 1rem;
        gap: 1.5rem;
        bottom: 4%;
        width: 95%;
    }

    .feature {
        border-left: none;
        /* Remove borders for stacked layout */
        border-bottom: 1px solid #ffffff2b;
        /* Add separator between features */
        padding: 1rem 0;
        width: 100%;
    }

    .feature:last-child {
        border-bottom: none;
    }

    .feature img {
        width: clamp(50px, 12vw, 70px);
    }

    .nav {
        border-radius: 0px !important;
    }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
    .antalya-section {
        padding: 1.5rem 0.5rem;
    }

    .antalya-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .antalya-subtitle {
        font-size: clamp(0.75rem, 1.8vw, 0.875rem);
    }

    .antalya-description {
        font-size: clamp(0.75rem, 1.5vw, 0.8125rem);
        padding: 0 0.5rem;
    }

    .features-bar {
        padding: 0.75rem;
        gap: 1rem;
        bottom: 2%;
        width: 98%;
    }

    .feature {
        padding: 0.75rem 0;
    }

    .feature img {
        width: clamp(40px, 10vw, 60px);
    }

    .feature p {
        font-size: clamp(0.6875rem, 1.8vw, 0.875rem);
    }
}



/* Tour Section */
.tour-section {
    padding: 3rem 0rem;
    text-align: center;
}

.tour-toggles {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.toggle-btn {
    padding: 4px 16px;
    border-radius: 100px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: #50b348;
}

.toggle-btn:not(.active) {
    background: #6d6d6d;
}

.tour-video {
    position: relative;
    max-width: 1522px;
    height: 740px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.tour-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn img {
    width: 69px;
    height: 70px;
}

/* Offerings Section */
.offerings-section {
    padding: 3rem 0rem;
    text-align: center;
}

.offerings-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    height: 35px;
    padding: 0 1.5rem;
    border-radius: 100px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #50b348;
}

.filter-btn:not(.active) {
    background: #6d6d6d;
}

.offerings-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.offerings-container {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
}

.offering-item {
    flex: 0 0 33.33%;
    /* Ensures three items per slide (100% / 3) */
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
}

.offering-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .offering-item {
        flex: 0 0 50%;
        /* Two items for medium screens */
    }
}

@media (max-width: 768px) {
    .offering-item {
        flex: 0 0 100%;
        /* One item for small screens */
    }
}

/* Connectivity Section */
.connectivity-section {
    padding: 3rem 0rem;
    text-align: center;
}

.connectivity-container {
    position: relative;
    max-width: 1530px;
    margin: 0 auto;
}

.connectivity-map {
    width: 100%;
    height: auto;
    border-radius: 8px;
}


.location-label {
    font-family: 'Bodoni 72', serif;
    font-size: 17px;
    color: white;
    text-align: center;
    line-height: 19px;
    /* transform: translateX(-50%); */
    padding-right: 33px;
}


/* Configuration Section */
.configuration-section {
    padding: 4rem 0rem;
    text-align: center;
}

.floor-plans {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.floor-plan {
    position: relative;
    width: 535px;
    height: 448px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.floor-plan:hover {
    transform: scale(1.02);
}

.floor-plan img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floor-plan.main .btn-view-plan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bhk-toggles {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Footer */
.footer {
    background: transparent;
}

.disclaimer-section {
    background: #000000;
    padding: 3rem 2rem;
}

.disclaimer-content {
    max-width: 1520px;
    margin: 0 auto;
    color: #d5d5d5;
    font-size: 12px;
    font-weight: 200;
    line-height: 1.5;
}

.disclaimer-content p {
    margin-bottom: 1.5rem;
}

.footer-bottom {
    padding: 1rem 2rem;
    max-width: 1520px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat';
}

.copyright {
    font-size: 14px;
    color: black;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    font-size: 14px;
}

.footer-links a {
    color: black;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    /*     opacity: 0.7; */
}

.back-to-top {
    width: 45px;
    height: 45px;
    background: #035149;
    color: white;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-2px);
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
    }

    .hero-title {
        font-size: 5rem;
    }

    .antalya-title {
        font-size: 3.5rem;
    }

    .header-container {
        padding: 0 1rem;
        margin-top: 10px;
    }

    .nav-items {
        gap: 1rem;
    }

    .nav-item {
        font-size: 0.875rem;
    }

    .features-bar {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .feature {
        min-width: 45%;
    }

    .offerings-container {
        gap: 1rem;
    }

    .offering-item {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: 250px;
    }

    .offering-item img {
        width: 100%;
        max-width: 300px;
        height: 320px;
    }

    .floor-plans {
        flex-wrap: wrap;
    }

    .floor-plan {
        width: 400px;
        height: 336px;
    }

    .connectivity-labels {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .location-label {
        font-size: 1.25rem;
    }

    .carousel-btn.prev {
        left: -15px;
    }

    .carousel-btn.next {
        right: -15px;
    }

    .contact-form-container.sticky-form {
        width: 95%;
        /*         top: 70px; */
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .hero-title {
        font-family: 'Bodoni 72', serif;
        font-size: 3rem;
        font-weight: normal;
        line-height: 1;
        margin-bottom: 2rem;
    }

    .hidden-xs {
        display: none !important;
    }

    .hidden-sm {
        display: none !important;
    }

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

    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }

    .antalya-title {
        font-size: 2.5rem;
    }

    .antalya-subtitle {
        font-size: 1.5rem;
    }

    .antalya-description {
        font-size: 1rem;
        /*         padding: 0 1rem; */
    }

    /* Mobile Header */
    .mobile-menu-btn {
        display: flex;
    }

    .header-right {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: top 0.3s ease;
        z-index: 999;
    }

    .header-right.active {
        top: 85px;
    }

    .nav {
        background: transparent;
        padding: 0;
        height: auto;
        width: 100%;
        margin-bottom: 2rem;
    }

    .nav-items {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .nav-item {
        color: #333;
        font-size: 1.125rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
        width: 70%;
    }

    .action-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn-enquire {
        width: 100%;
        justify-content: center;
    }

    .qr-code {
        align-self: center;
    }

    /* Mobile Contact Form */
    .contact-form-container {
        position: static;
        margin-top: 2rem;
    }

    .contact-form-container.sticky-form {
        width: 95%;
        top: 60px;
        padding: 1rem;
    }

    .form-fields {
        flex-direction: column;
        gap: 1rem;
    }

    .form-field {
        min-width: 100%;
    }

    .btn-submit {
        width: 100%;
        margin-top: 1rem;
    }

    /* Mobile Features Bar */
    .features-bar {
        position: static;
        transform: none;
        width: 100%;
        flex-direction: column;
        gap: 0rem;
        margin-top: 1rem;
    }

    .feature {
        min-width: 100%;
    }

    .feature img {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .feature p {
        font-size: 15px;
        line-height: 21px;
    }

    /* Mobile CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }

    /* Mobile Tour Section */
    .tour-toggles {
        flex-direction: column;
        gap: 0.5rem;
    }

    .toggle-btn {
        width: 100%;
    }

    .tour-video {
        height: 400px;
    }

    /* Mobile Offerings */
    .offerings-filters {
        flex-direction: column;
        gap: 0.5rem;
    }

    .filter-btn {
        width: 100%;
    }

    .offerings-container {
        flex-direction: column;
        width: 100%;
    }

    .offering-item {
        flex: none;
        min-width: 100%;
    }

    .offering-item img {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }

    .carousel-btn {
        /*         display: none; */
    }

    /* Mobile Floor Plans */
    .floor-plans {
        flex-direction: column;
        align-items: center;
    }

    .floor-plan {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }

    .bhk-toggles {
        flex-direction: column;
        gap: 0.5rem;
    }

    .toggle-btn {
        width: 100%;
    }

    /* Mobile Connectivity */
    .connectivity-labels {
        position: static;
        background: #015ca4;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 1rem;
        height: auto;
    }

    .location-label {
        position: static;
        transform: none;
        font-size: 1rem;
    }

    /* Mobile Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        gap: 1rem;
    }

    .copyright,
    .footer-links {
        font-size: 1rem;
    }

    /* Mobile Overview */
    .overview-image {
        height: 400px;
    }

    .overview-overlay {
        padding: 2rem 1rem;
    }

    .overview-overlay h3 {
        font-size: 1.5rem;
    }

    .overview-overlay p {
        font-size: 1.125rem;
    }

    .navigation-buttons {
        justify-content: center;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .logo {
        width: 150px;
        height: auto;
    }

    .contact-form h3 {
        font-size: 1.5rem;
    }

    .disclaimer-content {
        font-size: 0.875rem;
    }

    .offering-item img {
        max-width: 300px;
        height: 250px;
    }

    .floor-plan {
        max-width: 300px;
        height: 250px;
    }

    .contact-form-container.sticky-form {
        width: 98%;
        top: 50px;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

/* Focus States for Accessibility */
button:focus,
input:focus,
a:focus {
    /* outline: 2px solid #50b348; */
    /* outline-offset: 2px; */
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Slider transition effects */
.offering-item,
.overview-image img,
.floor-plan img {
    transition: all 0.3s ease;
}

.offering-item:hover {
    transform: translateY(-5px);
}

.overview-image:hover img {
    transform: scale(1.05);
}

.tab-content {
    padding: 30px 0px;
    /*           border-top: 1px solid #a4a4a447; */
    display: block;
}

.tab-content>.tab-pane {
    display: none;
    visibility: hidden
}

.tab-content>.active {
    display: block;
    visibility: visible
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent
}

@media (min-width:768px) {
    .floor-mr {
        margin-top: 30px;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .connectivity-labels {
        /* bottom: 20%;
    left: 0;
    right: 0; */
        /* height: 60px; */
        background: #015ca4;
        display: flex;
        align-items: center;
        /* padding: 0 2rem; */
        justify-content: space-between;
        margin-top: 40px;
    }

    .footer-mr {
        margin-bottom: 98px;
    }

    .disclaimer-content.open {
        max-height: 1000px;
        /* Large enough to fit content; adjust if needed */
        opacity: 1;
        /* Fully visible when open */
    }

    .video-container {
        position: relative;
        width: 100%;
        max-width: 100%;
        /* Optional: constrain max width */
        margin: 0 auto;
        height: 500px;
    }

    .hero-title {
        font-family: 'Bodoni 72', serif;
        font-size: 3rem;
        font-weight: normal;
        line-height: 1;
        margin-bottom: 2rem;
    }

    .location-border {
        border-right: 1px solid #c2c2c2;
        /* position: absolute; */
        height: 54px;

    }

    .hidden-lg {
        display: none !important;
    }

    .hidden-md {
        display: none !important;
    }

    .tour_pd {
        display: flex;
        justify-content: center;
        background: none;
        border: none;
        gap: 1rem;
    }
}

@media (max-width:767px) {
    .gallery-tab {
        display: flex;
        flex-flow: nowrap !important;
    }
}

.carousel {
    position: relative;
    width: 100%;
    padding: 0 40px;
    min-height: 200px;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-container {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
}

.carousel-item {
    flex: 0 0 33.333%;
    padding: 0px 10px;
    text-align: center;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    min-height: 150px;
    background-color: #f0f0f0;
    border-radius: 10px;
    cursor: pointer;
    /* Indicate clickable image */
}

.carousel-item h3 {
    margin-top: 19px;
    font-size: 15px;
    color: #000000;
    text-align: left;
    font-family: 'Montserrat';
    text-transform: uppercase;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 12px;
    border-radius: 50%;
    transition: background 0.2s;
}

.carousel-btn:hover {
    /* background: rgba(0, 0, 0, 0.9); */
}

.carousel-btn img {
    width: 31px;
    height: 31px;
    display: block;
}

.carousel-btn.prev {
    left: -11px;
    transform: scaleX(-1) translateY(-50%);
}

.carousel-btn.next {
    right: -11px;
}

/* Medium screens (≤1024px) */
@media (max-width: 1024px) {
    .carousel {
        padding: 0 30px;
    }

    .carousel-item {
        flex: 0 0 50%;
    }

    .carousel-btn.prev {
        left: -25px;
    }

    .carousel-btn.next {
        right: -25px;
    }
}

/* Mobile screens (≤768px) */
@media (max-width: 768px) {
    .carousel-btn {
        position: absolute;
        top: 111%;
        transform: translateY(-50%);
        border: none;
        cursor: pointer;
        z-index: 10;
        padding: 12px;
        border-radius: 50%;
        transition: background 0.2s;
    }

    .bg {
        background: #000;
        height: 1000px;
        padding: 100px;
    }

    .carousel {
        padding: 0 0px;
        margin: 10px auto;
    }

    .carousel-item {
        flex: 0 0 100%;
    }

    .carousel-btn.prev {
        left: 33%;
    }

    .carousel-btn.next {
        right: 33%;
    }

    .carousel-btn img {
        width: 41px;
        height: 41px;
    }

    .carousel-item h3 {
        font-size: 1em;
    }
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.background-overlay1 {
    position: absolute;
    bottom: 37px;
    left: -11px;
    width: 100%;
    height: 65%;
    background-color: #005f9e;
    z-index: -1;
}


/* swiper style */

.swiper-container {
    width: 100%;
    /* height: 400px; */
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform: scale(1);
    border: 1px solid #c0c4cb;
}

.swiper-slide-active img {
    transform: scale(1.2);
    /* Zoom in the active slide */
    border: 1px solid #50b348;
}

.background-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    /* Covers the lower half of the slider and extends below */
    background-color: #005f9e;
    /* Blue background color matching your reference */
    z-index: -1;
    /* Places the background behind the slider */
}

.swiper-slide-active .view-image-btn {
    display: block;
    /* Show button only on active slide */
}

.view-image-btn {
    display: none;
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #50b348;
    color: white;
    border: none;
    border-radius: 21px;
    cursor: pointer;
    font-size: 16px;
    z-index: 10;
}

.view-image-btn:hover {
    background-color: #0056b3;
}



.footer {
    background-color: #f8f8f8;
    padding: 35px 0;
    font-family: Arial, sans-serif;
}

.disclaimer-section {
    margin-bottom: 20px;
}

.disclaimer-content {
    max-height: 25px;
    /*     opacity: 0; */
    overflow: hidden;
    font-size: 14px;
    line-height: 1.6;
    color: #c9c9c9;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    font-family: 'Montserrat';
}

.toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    /* border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
        }
        .toggle-btn:hover {
            background-color: #0056b3;
        }
        .toggle-icon {
            margin-right: 8px;
            font-size: 18px;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: #666;
        }
        .footer-links a {
/*             color: #007bff; */
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    font-weight: 600;
}

.back-to-top {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}

.back-to-top:hover {
    background-color: #0056b3;
}


.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image scales to fill the container */
    z-index: 1;
    /* Places the image above the iframe */
}

.video-overlay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    /* Semi-transparent background */
    border-radius: 50%;
    /* Circular shape */
    border: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    /* Above the image */
}

.video-overlay::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 52%;
    /* Slightly offset for triangle effect */
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid white;
    /* Play triangle */
    z-index: 3;
    /* Above the circle */
}

/* Hide overlay on click (handled by JavaScript) */
.video-overlay.clicked {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-container {
        height: 298px;
        /* Match the smaller iframe height */
    }

    .video-overlay::before {
        width: 40px;
        height: 40px;
    }

    .video-overlay::after {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 14px solid white;
    }
}

iframe {
    position: relative;
    z-index: 0;
    /* Ensures the iframe is behind the image */
}

/* Optional: Hide overlay on click or hover (using JavaScript/CSS) */
.video-overlay:hover {
    opacity: 0;
    transition: opacity 0.3s ease;
}


.open-popup {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #cba44d;
    color: white;
    /*     border: none;
    border-radius: 50px; */
    text-transform: uppercase;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
    /* Fade-in animation for overlay */
}

.popup-content {
    position: relative;
    background-color: white;
    /*     padding: 20px; */
    border-radius: 8px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform: scale(0.7);
    /* Start slightly scaled down */
    opacity: 0;
    /* Start invisible */
    animation: popIn 0.3s ease-out forwards;
    /* Scale-up and fade-in animation */
}

.popup-image {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
}

.form-container {
    padding: 20px 57px;
}

.form-container h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    /* padding: 10px; */
    font-size: 14px;
    border: 1px solid #ccc;
    /* border-radius: 4px; */
    outline: none;
    border: none;
}

input:focus {
    border-color: #4CAF50;
}

.submit-btn {
    padding: 10px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #45a049;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #666;
}

.checkbox-container input {
    margin-top: 0px;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 10px;
    font-size: 18px;
    cursor: pointer;
    color: #000000;
    background: white;
    padding: 0px 6px;
    height: 25px;
    width: 24px;
}

.close-btn:hover {
    color: #4CAF50;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .popup-content {
        width: 90%;
        /*         padding: 15px; */
    }

    .popup-image {
        height: 200px;
    }

    .form-container h2 {
        font-size: 1.2rem;
    }

    input {
        font-size: 12px;
    }

    .submit-btn {
        font-size: 14px;
    }

    .checkbox-container {
        font-size: 10px;
    }
}

/* banner css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider-container {
    width: 100%;
    /*             max-width: 1400px; */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 62vw;
    max-height: 633px;
    min-height: 200px;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

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

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*             background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
    */ z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    padding: 0 15px;
    width: 90%;
    z-index: 2;
    /* Above overlay */
}

.slide-content h2 {
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.slide-content p {
    font-size: clamp(0.9rem, 3vw, 1.3rem);
}

/*          .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
           background: rgba(0, 0, 0, 0.6); 
            color: white;
            border: none;
            padding: clamp(0.5rem, 2vw, 1rem);
            cursor: pointer;
            font-size: clamp(1rem, 3vw, 1.5rem);
            z-index: 10;
            transition: background 0.3s;
        } */

/*         .nav-btn:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .prev-btn {
            left: 10px;
        }

        .next-btn {
            right: 10px;
        }
 */
.dots {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1vw, 3px);
    z-index: 10;
}

.dot {
    width: clamp(8px, 2vw, 8px);
    height: clamp(8px, 2vw, 8px);
    background: rgb(76 175 80);
    border-radius: 50%;
    cursor: pointer;
    transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease, background-color 0.3s, opacity 0.3s;
}

.dot.active {
    width: 8px;
    height: clamp(30px, 5vw, 61px);
    background: radial-gradient(circle at center, #ffffff 50%, #ffffff 100%);
    border-radius: 5px;
    /* transform: translateX(-2px); */
    /* box-shadow: 0 0 10px rgba(255, 255, 255, 0.7); */
    transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease, background-color 0.3s, opacity 0.3s;
}

/* Large screens (laptops, desktops) */
@media (min-width: 1024px) {
    .slider-container {
        height: 50vw;
    }

    .slide-content h2 {
        font-size: 3rem;
    }

    .slide-content p {
        font-size: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 1023px) and (min-width: 768px) {
    .slider-container {
        height: 70vw;
        max-height: 450px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .dots {
        right: 15px;
    }

    /*             .nav-btn {
                padding: 0.8rem;
                font-size: 1.2rem;
            } */
}

/* Phones */
@media (max-width: 767px) {
    .slider-container {
        height: 80vw;
        max-height: 350px;
        min-height: 150px;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .nav-btn {
        padding: 0.5rem;
        font-size: 1rem;
    }

    .dots {
        right: 46%;
        gap: 8px;
    }

    .dots {
        position: absolute;
        /* bottom: 15%; */
        right: 31%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: row;
        gap: clamp(8px, 2vw, 12px);
        z-index: 10;
        top: 81%;

    }

    .dot.active {
        height: 9px;
        width: clamp(51px, 5vw, 46px);
        background: radial-gradient(circle at center, #ffffff 50%, #e0e0e0 100%);
        border-radius: 5px;
        /* transform: translateX(-2px); */
        /* box-shadow: 0 0 10px rgba(255, 255, 255, 0.7); */
        transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease, background-color 0.3s, opacity 0.3s;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .slider-container {
        /*                 height: 100vw;
                max-height: 600px; */
        height: 100%;
        max-height: 100%;
        min-height: 100%;
    }

    .slide-content h2 {
        font-size: 1.2rem;
    }

    .slide-content p {
        font-size: 0.8rem;
    }

    /*             .nav-btn {
                padding: 0.4rem;
                font-size: 0.8rem;
            } */
}

/* mobile button */

@media only screen and (max-width: 767px) {
    .sec-eq {
        display: none;
    }

    .sec-eq form {
        flex-direction: column;
    }

    .formControl {
        width: 100%;
        margin: 0 0 15px 0;
    }

    .sec-eqMobile {
        display: flex;
        position: fixed;
        /* background: url(../../images/back.png); */
        bottom: 0;
        left: 0;
        font-size: 20px;
        color: #fff;
        /* background: #282a39; */
        /* background-image: linear-gradient(to right, #766529, #49451b); */
        width: 100%;
        text-align: center;
        z-index: 99;
    }

    .poweredby {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        font-size: 20px;
        color: #fff;
        background: #f7931d;
        width: 100%;
        text-align: center;
        z-index: 99;
    }

    .mobContact img {
        margin-right: 5px;
    }

    .sec-eqMobile a {
        width: 100%;
        color: #fff;
        display: flex;
        align-items: flex-end;
        align-content: flex-end;
    }

    .envelope {
        width: 65px !important;
        height: 63px !important;
        border-radius: 50% !important;
    }

    a.mobEqNow {
        /* 		background-color: #af8227; */
        border-left: 2px solid #fff;
    }

    .closeIcon {
        display: flex;
    }
}

@media only screen and (max-width: 520px) {
    .sec-eqMobile {
        font-size: 16px;
    }
}

/* Hide slider pagination/dots (banner indicators) */
/* Targets common implementations and the site's .dots/.dot selectors */
.slider-container .dots,
.slider-container .dot,
.swiper-pagination,
.carousel-indicators,
.slick-dots,
.owl-dots {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* connectivity points */
.text-content {
    flex: 1;
    padding: 30px;
    /*             background: #ffffff; */
    border-radius: 0 0 10px 10px;
    margin-top: 10px;
}

.category {
    margin-bottom: 20px;
}

.category h3 {
    color: #ffffff;
    font-size: 1.5em;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffffff;
    display: inline-block;
}

.facility-list {
    list-style: none;
    padding: 0;
}

.facility-list li {
    padding: 3px 0;
    font-size: 15px;
    transition: transform 0.2s ease, color 0.2s ease;
    cursor: pointer;
    color: white;
    font-family: 'Montserrat';
}

.facility-list li:hover {
    transform: translateX(10px);
    color: #50b348;
}


/* key hilight */

.highlights-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.highlights-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.highlights-grid {
    display: grid;
    gap: 1.5rem;
    /*     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); */
    grid-template-columns: repeat(5, 1fr);
    margin-top: 2rem;
}

.highlight-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: default;

    /* Start hidden for animation */
    opacity: 0;
    transform: translateY(30px);
    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.5s ease-out;
}

/* Animation active class */
.highlight-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effect with scale + shadow */
.highlight-card:hover,
.highlight-card:focus {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
    outline: none;
}


.icon-circle {
    background: #cba44d;
    /* light green background */
    color: #000;
    /* green tick */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem auto;
    font-size: 1.8rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.highlight-card:hover .icon-circle,
.highlight-card:focus .icon-circle {
    background-color: #ccc;
}

.highlight-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #34495e;
    font-family: 'Montserrat';
}

.highlight-desc {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.4;
}

/* Desktop keeps original layout */
.mobile-slider {
    width: 100%;
}

/* ========================= */
/* MOBILE SLIDER ACTIVATION */
/* ========================= */
@media (max-width: 768px) {

    .highlights-grid {
        display: flex !important;
        /* override desktop grid */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .highlights-grid::-webkit-scrollbar {
        display: none;
    }

    .slide {
        min-width: 100vw;
        flex-shrink: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 14px;
        padding: 10px;
        box-sizing: border-box;
        scroll-snap-align: start;
    }

    .slide .highlight-card {
        width: 100%;
        height: 160px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .highlight-title {
        font-size: 13px;
        line-height: 1.3;
        text-align: center;
        max-height: 3.9em;
        overflow: hidden;
    }
}




/* @media (max-width: 768px) {
  

  .highlights-section h2 {
    font-size: 2rem;
  }

  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }

  .highlight-card {
    padding: 1.5rem 1rem;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .highlight-title {
    font-size: 1.1rem;
  }

  .highlight-desc {
    font-size: 0.9rem;
  }
} */

/* .mobilemap */

.locationContainer {
    width: 100%;
    /* margin: 0 auto; */
    display: flex;
    position: relative;
}

.artistMapSec {
    width: 100%;
    position: relative;
}

.artistMapSec img {
    max-width: 100%;
    /* width: 500px; */
    position: relative;
    z-index: 2;
    display: block;
}

.mapImg {
    width: 100%;
    display: flex;
    position: relative;
    background-color: #d8dfcd;
}

.sec-location iframe {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.mapBtn {
    background-color: #4caf50;
    color: #fff;
    padding: 5px 15px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    font-size: 14px;
    margin-top: 0px;
}

.artistMapSec.hide .mapImg {
    z-index: 1;
}

.desktop-banner {
    display: block;
}

.mobile-banner {
    display: none;
}

/* On small screens: hide desktop, show mobile */
@media (max-width: 768px) {
    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }
}



/* General */
.breez-section {
    font-family: "Georgia", serif;
}

/* Stats Bar */
.stats-bar {
    background: #2f3528;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    color: #fff;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.stat-item h3 span {
    font-size: 22px;
    letter-spacing: 1px;
}

.stat-item p {
    font-size: 11px;
    margin-top: 8px;
    letter-spacing: 1px;
    color: #e0e0e0;
}

/* Divider */
.divider {
    width: 1px;
    height: 50px;
    background: #c7a24c;
}

/* About Section */
.about-wrapper {
    background: #f5f6e8;
    padding: 60px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.about-title {
    min-width: 240px;
}

.about-title h2 {
    font-size: 28px;
    color: #0f4c5c;
    letter-spacing: 2px;
    margin: 0;
}

.title-line {
    display: block;
    width: 60px;
    height: 2px;
    background: #c7a24c;
    margin-top: 10px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #2d2d2d;
    max-width: 720px;
}

@media (max-width: 767px) {

    /* Stats Bar */
    .stats-bar {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .stat-item {
        width: 100%;
    }

    .stat-item h3 {
        font-size: 26px;
    }

    .stat-item h3 span {
        font-size: 20px;
    }

    .stat-item p {
        font-size: 11px;
    }

    .divider {
        width: 60px;
        height: 1px;
        background: #c7a24c;
    }

    /* About Section */
    .about-wrapper {
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
    }

    .about-title {
        min-width: auto;
        text-align: left;
    }

    .about-title h2 {
        font-size: 24px;
    }

    .title-line {
        margin-top: 8px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.7;
        max-width: 100%;
    }
}


/**********living area******/
/* Section Wrapper */
.living-section {
    background: #f4f6e8;
    padding: 0;
    font-family: "Georgia", serif;
}

/* Main Layout */
.living-container {
    display: flex;
    align-items: stretch;
}

/* Image Area */
.living-image {
    width: 65%;
}

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

/* Content Area */
.living-content {
    width: 35%;
    padding: 60px 50px;
    background: #f4f6e8;
}

.brand-logo img {
    max-width: 180px;
    margin-bottom: 40px;
}

.living-content h2 {
    font-size: 30px;
    color: #0f4c5c;
    line-height: 1.3;
    margin-bottom: 12px;
}

.heading-line {
    display: block;
    width: 60px;
    height: 2px;
    background: #c7a24c;
    margin-bottom: 30px;
}

/* Features */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 15px;
    color: #2d2d2d;
    padding: 14px 0;
    border-bottom: 1px solid #d8d2b8;
    line-height: 1.6;
}

.features-list li:last-child {
    border-bottom: none;
}

/* ------------------ Mobile Responsive ------------------ */
@media (max-width: 767px) {

    .living-container {
        flex-direction: column;
    }

    .living-image,
    .living-content {
        width: 100%;
    }

    .living-content {
        padding: 35px 20px;
    }

    .brand-logo img {
        max-width: 150px;
        margin-bottom: 25px;
    }

    .living-content h2 {
        font-size: 24px;
    }

    .features-list li {
        font-size: 14px;
    }
}





/*****/
.configuration-section {
    background: #fff;
    padding: 80px 0;
    font-family: 'Georgia', serif;
}

.config-image img {
    width: 100%;
    border-radius: 4px;
}

/* .config-content {
  padding-left: 30px;
} */

.config-title {
    font-size: 32px;
    color: #0b5f5a;
    line-height: 1.3;
    margin-bottom: 15px;
    margin-top: 15px;
}

.config-divider {
    width: 70px;
    height: 2px;
    background: #d4b26a;
    margin-bottom: 25px;
}

.config-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.config-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #dcdcdc;
}

.config-cta {
    display: inline-block;
    background: #0b5f5a;
    color: #fff;
    padding: 14px 34px;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.config-cta:hover {
    background: #000;
}

.image-wrapper {
    position: relative;
    width: 100%;
    display: inline-block;
}

/* Ensure image fills container */
.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Badge base */
.image-wrapper::before {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Artistic */
.artistic-impression1::before {
    content: "Artistic Impression";
    background: #0b5f5a;
}

/* Actual */
.actual-image1::before {
    content: "Actual Image";
    background: rgba(0, 100, 0, 0.85);
}

/* Ensure slide is positioning root */
.swiper-slide,
.artistic-impression,
.actual-image {
    position: relative;
}

/* Common badge */
.artistic-impression1::after,
.actual-image1::after {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    border-radius: 4px;
    z-index: 10;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.75);
}

/* Artistic */
.artistic-impression1::after {
    content: "Artistic Impression";
    background: rgba(120, 0, 40, 0.85);
}

/* Actual */
.actual-image1::after {
    content: "Actual Image";
    background: rgba(0, 90, 40, 0.9);
}

.carousel-item {
    position: relative;
}

.carousel-item::after {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    border-radius: 4px;
    z-index: 5;
    text-transform: uppercase;
}

/* Artistic */
.carousel-item.artistic-impression::after {
    content: "Artistic Impression";
    background: rgba(0, 90, 40, 0.9);
}

/* Actual */
.carousel-item.actual-image::after {
    content: "Actual Image";
    background: rgba(0, 90, 40, 0.9);
}