/* Variables */
:root {
    --heading-font-size: 48px;
    --body-font-size: 24px;
    --letter-spacing: -0.04em;
    --primary-color: #16351A;
    --white: #FFF;
    --navbar-height: 68px;
    --whatsapp-color: #25D366;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8f9fa;
    font-weight: 200;
    padding-top: var(--navbar-height);
    font-family: 'Geist', sans-serif;
    font-size: var(--body-font-size);
    line-height: 1.5;
    letter-spacing: var(--letter-spacing);
}

/* Typography */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Geist', sans-serif;
    font-size: var(--heading-font-size);
    letter-spacing: var(--letter-spacing);
    font-weight: 600;
}
.text-primary {
    color: var(--primary-color) !important;
}
/* Navbar */
.navbar {
    height: var(--navbar-height);
    background-color: var(--primary-color);
    width: 100%;
    border-bottom: 2px solid var(--white);
    padding: 0;
}

.navbar-container {
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 0 20px !important;
    font-size: 16px;
    letter-spacing: var(--letter-spacing);
    border-left: 2px solid var(--white);
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0;
    transition: color 0.3s ease;
}

.nav-link:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 2px;
    background-color: var(--white);
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.nav-item:last-child {
    border-left: 2px solid var(--white);
    padding-left: 20px;
    align-items: center;
    display: flex;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link.whatsapp-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--whatsapp-color);
    justify-content: center;
    padding: 0 !important;
    border: none !important;
    margin-left: 0;
}

.contact-link.whatsapp-link i {
    font-size: 24px;
    color: var(--white);
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    padding: 0;
    color: var(--white);
    display: flex;
    align-items: center;
}

.hero-image {
    width: 100%;
    object-fit: contain;
    border-radius: 0;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}
#project.section {
    padding: 8rem 0;
}
#enquiry.section {
    background: var(--primary-color) ;
    color: var(--white);
}

.section h2 {
    margin-bottom: 2rem;
}

/* Responsive Styles */
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .navbar-collapse {
        height: 100%;
        display: flex !important;
    }

    .navbar-nav {
        height: 100%;
    }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    :root {
        --heading-font-size: 42px;
        --body-font-size: 20px;
    }

    .section {
        padding: 4rem 24px;
    }

    #project.section {
        padding: 6rem 24px;
    }

    .navbar {
        height: auto;
    }
    
    .navbar-container {
        padding: 1rem;
        flex-wrap: wrap;
    }
    
    body {
        padding-top: 84px;
    }
    
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 0;
        width: 100%;
        order: 3;
    }

    .navbar-toggler {
        border: 2px solid var(--white);
        padding: 0.5rem;
        order: 2;
    }

    .navbar-brand {
        order: 1;
    }

    .nav-link {
        padding: 1rem 20px !important;
        border-left: none;
        border-bottom: 2px solid var(--white);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    :root {
        --heading-font-size: 36px;
        --body-font-size: 18px;
    }

    .section {
        padding: 3rem 24px;
    }

    #project.section {
        padding: 4rem 24px;
    }

    .project-logo {
        width: 100%;
        margin-bottom: 2rem;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    :root {
        --heading-font-size: 32px;
        --body-font-size: 16px;
    }

    .section {
        padding: 2rem 24px;
    }

    #project.section {
        padding: 3rem 24px;
    }
} 
.project-info {
    color: #828282;
}

.project-info p {
    margin-bottom: 1.5rem;
}
#project hr {
    height: 2px;
    margin: 40px 0;
    border-top: 2px solid var(--primary-color);
    opacity: 1;
}

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

.project-logo {
    max-width: 100%;
    height: auto;
}

#project h2 {
    color: var(--primary-color);
}

.bg-pattern {
    background-image: url("../images/bg-pattern.png");
    background-repeat: repeat;
    background-size: 15%;
}

.video-section {
    padding: 0;
}

.video-section .ratio {
    width: 100%;
    margin: 0;
}

.video-section iframe {
    border: none;
}

/* Showcase Styles */
.showcase-carousel-container {
    margin: 0 auto;
    position: relative;
}

.showcase-slider {
    margin: 0 -15px;
}

.showcase-item {
    padding: 0 15px;
    cursor: pointer;
}

.showcase-item img {
    width: 100%;
    height: 900px;
    object-fit: cover;
    transition: transform 0.3s ease;
}


/* Slick Slider Custom Styles */
.showcase-slider .slick-prev,
.showcase-slider .slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}


.showcase-slider .slick-prev {
    left: 40px;
}

.showcase-slider .slick-next {
    right: 40px;
}

.showcase-slider .slick-prev:before,
.showcase-slider .slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 32px;
    color: white;
    opacity: 1;
}

.showcase-slider .slick-prev:before {
    content: "\f053"; /* fa-chevron-left */
}

.showcase-slider .slick-next:before {
    content: "\f054"; /* fa-chevron-right */
}

/* Fancybox Custom Styles */
.fancybox__container {
    --fancybox-bg: rgba(0, 0, 0, 0.9);
}

.fancybox__toolbar {
    --fancybox-accent-color: #16351A;
}

.fancybox__nav button {
    --fancybox-accent-color: #16351A;
}

/* Modal Styles */

.carousel-item img {
    height: 100vh;
    object-fit: contain;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
}

/* Amenities Styles */
.amenity-item {
    transition: transform 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-10px);
}

.amenity-item img {
    border-radius: 8px;
    margin-bottom: 1.5rem;
    width: 180px;
}

.amenity-item h3 {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 0;
}

/* Responsive Styles for Amenities */
@media (min-width: 1200px) {
    .amenities .row {
        margin: 0 -20px;
    }
    
    .amenities .col-lg-3 {
        padding: 0 20px;
    }
}

@media (max-width: 991.98px) {
    
    
    .amenity-item h3 {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    
    
    .amenity-item h3 {
        font-size: 18px;
    }
}

/* Floor Plan Styles */
.floor-plan-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floor-plan-card:hover {
    transform: translateY(-5px);
}

.floor-plan-content {
    background: var(--primary-color);
    padding-top: 24px;
    padding-bottom: 24px;
    text-align: center;
    color: #fff2dd;
    margin-bottom: 4px;
}

.floor-plan-size {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}
.floor-plan-card .btn-primary {
    width: 100%;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Floor Plan Modal Styles */
#floorPlanModal .btn-close{
position: absolute;
top: 24px;
right: 24px;
font-size: 14px;
}
#floorPlanModal .phone {
    padding-left: 100px !important;
}
#floorPlanModal .btn-submit {
color: var(--white);
border: 0;
border-radius: 8px;
background-color: var(--white);
font-weight: 200;
padding: 0.25rem 1rem;
transition: all 0.3s ease;
}
.modal-content {
    border: none;
    border-radius: 0;
    overflow: hidden;
}



.modal-header .btn-close {
    background-color: #fff;
    opacity: 0.8;
    padding: 0.5rem;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.floor-plan-image {
    width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .floor-plan-size {
        font-size: 36px;
    }
    
    .floor-plan-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .floor-plan-size {
        font-size: 32px;
    }
    
    .floor-plan-card {
        padding: 1rem;
    }
}

/* Enquiry Section Styles */
.enquiry-section {
    background-color: var(--primary-color);
    color: #fff;
}

.enquiry-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.75rem 1rem;
    font-size: 16px;
    transition: all 0.3s ease;
}

.enquiry-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.enquiry-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    box-shadow: none;
}

.enquiry-form .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}


.enquiry-form .form-check-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}

.enquiry-form .btn-primary {
    background-color: #fff;
    color: var(--primary-color);
    border: none;
    font-weight: 500;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.enquiry-form .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.enquiry-form .invalid-feedback {
    color: #ff6b6b;
}

@media (max-width: 767.98px) {
    .enquiry-form .form-check-label {
        font-size: 12px;
    }
    
    .enquiry-form .btn-primary {
        width: 100%;
    }
}
.btn-form {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 500;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-form:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-form:active {
    background-color: rgba(255, 255, 255, 0.8);
    transform: translateY(0);
}

.btn-form:focus {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.btn-form:disabled {
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--primary-color);
    cursor: not-allowed;
    transform: none;
}

.enquiry-form .form-control.is-valid {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.15);
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.enquiry-form .form-control.is-invalid {
    border-color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.1);
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ff6b6b'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ff6b6b' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.enquiry-form .alert-success {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.enquiry-form .btn-form:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.enquiry-form .form-control.phone {
    letter-spacing: 1px;
    font-family: monospace;
    font-size: 18px;
}
.iti {
    width: 100%;
}
.iti__selected-dial-code {
    font-size: 16px;
}

/* Logo Cloud Section Styles */
.logo-cloud-section {
    background-color: var(--primary-color);
    padding: 4rem 0;
}

.logo-item {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.logo-item img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 767.98px) {
    .logo-cloud-section {
        padding: 2rem 0;
    }
    
    .logo-item {
        padding: 0.5rem;
    }
}
.rerainfo-divider {
    background-color: var(--primary-color);
    height: 100%;
    width: 1px;
}

.enquiry-form .alert-danger {
    background-color: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}