@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Inter:wght@400;500;600;700&family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E8C499;
    --secondary: #210000;
    --batch: #B18E54;

}

body {
    background-color: #e5c4a1;
    background-image: url('../img/bg-reapeat.png');
    /* Ensures the pattern tiles seamlessly */
    background-repeat: repeat;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    scroll-behavior: smooth;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Header & Navbar */
.header {
    background-color: #e8dbd0;
    transition: all 0.3s ease-in-out;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.navbar-nav {
    gap: 30px;
}

.navbar-nav .nav-link {
    color: #4a3424;
    font-weight: 400;
    font-size: 0.9rem;
    padding: 15px 0 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Georgia", "Times New Roman", serif;
    transition: color 0.3s ease;
}

.btn-cta {
    background-color: var(--secondary);
    color: #fff;
    font-weight: 400;
    font-size: 0.9rem;
    padding: 6px 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
    border: 2px solid var(--secondary);
}

.btn-cta:hover {
    background-color: var(--secondary);
    color: #fff;
}

.navbar-nav .nav-link i {
    font-size: 1.3rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #000;
}

@media (max-width: 768px) {

    .amenities-icon {
        margin-bottom: 0;
        padding: 0 0 7px 0;
    }

    .unit-plan {
        padding-bottom: 0 !important;
    }

    .master-plan {
        padding: 30px 0 !important;
    }

    .overview {
        padding: 30px 0 !important;
    }

    .overview-title {
        font-size: 1.6rem !important;
    }

    .divider img {
        width: 70%;
        margin: 0 auto;
    }
}

/* Desktop Hover Animation for Nav Links */
@media (min-width: 992px) {
    .navbar-nav .nav-link {
        position: relative;
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 1.3px;
        bottom: 8px;
        left: 0;
        background-color: #000;
        transition: width 0.3s ease-in-out;
        border-radius: 2px;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 100%;
    }
}

/* Animated Hamburger */
.custom-toggler {
    border: none;
    outline: none;
    padding: 5px 10px;
}

.custom-toggler:focus {
    box-shadow: none;
}

.hamburger-icon {
    width: 26px;
    height: 18px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #4a3424;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 8px;
}

.hamburger-icon span:nth-child(3) {
    top: 16px;
}

.custom-toggler:not(.collapsed) .hamburger-icon span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.custom-toggler:not(.collapsed) .hamburger-icon span:nth-child(2) {
    opacity: 0;
    left: -20px;
}

.custom-toggler:not(.collapsed) .hamburger-icon span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #e8dbd0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-top: 1px solid rgba(74, 52, 36, 0.1);
        padding-bottom: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        gap: 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px !important;
    }
}

.hero-main {
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

.hero-slider .item picture {
    display: block;
    width: 100%;
}

.hero-slider .item img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
}

@media (max-width: 768px) {
    .contact img {
        padding-bottom: 2rem;
    }

    .hero-slider .item img {
        height: 100vh;
        object-fit: fill;
    }
}

/* Hide owl dots slightly above the bottom */
.hero-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.hero-slider .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    background: rgba(255, 255, 255, 0.5);
    display: block;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.hero-slider .owl-dots .owl-dot.active span,
.hero-slider .owl-dots .owl-dot:hover span {
    background: #e8c499;
}

img.rotate,
.navbar-brand .rotate {
    animation: simpleRotate 13s linear infinite;
    transform-origin: center center;
}

@keyframes simpleRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Overview Section */
.overview {
    padding: 80px 0;
}

.overview-icons img {
    max-height: 60px;
    /* Adjust based on your SVG dimensions */
}

.overview-icons p {
    font-size: 1rem;
    font-weight: 500;
    color: #33251c;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.vertical-divider {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background-color: #5c4333;
}

.overview-title {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.6rem;
    color: #210000;
    font-weight: normal;
}

.overview-text {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.1rem;
    color: #4a3424;
    line-height: 1.8;
}

.divider {
    text-align: center;
}

/* Master Plan */
.master-plan {
    padding: 80px 0;
}

.master-plan h2.overview-title {
    text-transform: uppercase;
    margin-bottom: 50px;
}

.master-plan-card {
    background-color: var(--batch);
    padding: 24px;
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.master-plan-inner {
    background-color: var(--batch);
    padding: 15px;
    border-radius: 12px;
}

.master-plan-inner img {
    background-color: #fff;
    border-radius: 5px;
    display: block;
    width: 100%;
}

.unit-plan {
    padding: clamp(3rem, 3.8vw, 4.25rem) 0;

}

.unit-card {
    background: var(--batch);
    border-radius: 10px;
}

.unit-card img {
    width: 70%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    align-items: center;
}

.unit-card p {
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 2rem;
    color: #fff;
}

.ft-ramky {
    background-color: var(--batch);
    color: #fff;
    padding: 1rem 0;
    font-family: 'Inter', sans-serif;
}

.ft-ramky p {
    margin-bottom: 0;
}

/* Contact Form */
.contact {
    padding: clamp(3rem, 3.8vw, 4.25rem) 0;
}

.contact img {
    border-radius: 15px;
}

.contact-form {
    background-color: #e8dbd0;
    padding: 2.5rem;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-form .form-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
}

.contact-form .form-label {
    font-weight: 500;
    color: #4a3424;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid rgba(177, 142, 84, 0.5);
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(177, 142, 84, 0.25);
    border-color: var(--batch);
    background-color: #fff;
    outline: none;
}

.contact-form .custom-checkbox {
    accent-color: var(--batch);
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.contact-form .consent-text {
    font-size: 0.9rem;
    color: #4a3424;
    line-height: 1.5;
    cursor: pointer;
}

.contact-form .submit-btn {
    background-color: var(--batch);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.85rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-form .submit-btn:hover {
    background-color: #927545;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(177, 142, 84, 0.4);
    color: #fff;
}

/* Sticky Enquire Now Button */
.sticky-enquire-btn {
    position: fixed;
    right: -68px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    background-color: var(--batch);
    color: #fff;
    padding: 10px 30px;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 0 0 8px 8px;
    z-index: 1050;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease, right 0.3s ease;
    letter-spacing: 1px;
}

.sticky-enquire-btn:hover {
    background-color: #927545;
    color: #fff;

}

.popup-btn {
  background-color: var(--batch);
  color: #fff;
  padding: 10px 30px;
  font-size: 1.1rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  border: none;
  border-radius: 8px;
  z-index: 1050;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease, right 0.3s ease;
  letter-spacing: 1px;
  max-width: 300px;
  margin: 20px auto auto auto;
  display: block;
}

.popup-btn:hover {
    background-color: #927545;
    color: #fff;

}

/* Enquire Modal Enhancements */
.enquire-modal-content {
    background-color: var(--primary);
    border-radius: 15px;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.enquire-modal-content .modal-header .btn-close {
    background-color: #fff;
    opacity: 0.8;
    border-radius: 50%;
    padding: 10px;
    margin: 10px 10px 0 auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.enquire-modal-content .modal-header .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
    transition: all 0.3s ease;
}

.enquire-modal-content .contact-form {
    padding: 1rem 2rem 2.5rem 2rem;
    box-shadow: none;
}

/* Form validation and loading states */
.form-field-message {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #b91c1c;
    margin-top: 0.35rem;
    min-height: 1.25rem;
    line-height: 1.4;
}

.form-field-message.is-valid {
    color: #15803d;
}

.contact-form .form-control.is-invalid {
    border-color: #b91c1c;
    background-color: #fff;
}

.contact-form .form-control.is-valid {
    border-color: #15803d;
    background-color: #fff;
}

.contact-form .submit-btn.is-loading,
.contact-form .submit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-btn-loader {
    display: none;
    width: 1.1rem;
    height: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ramky-spin 0.7s linear infinite;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.submit-btn.is-loading .submit-btn-loader {
    display: inline-block;
}

.submit-btn.is-loading .submit-btn-text {
    opacity: 0.9;
}

@keyframes ramky-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Honeypot field - must remain hidden */
.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.amenities-icon {
    text-align: center;
    /*box-shadow: 1px 1px 25px #e0e0e0;*/
    /*box-shadow: 0 8px 8px -6px rgba(0, 0, 0, 0.2);*/
    padding: 15px;
    /*background: #f7f7f7;*/
    margin-bottom: 30px;
    transition: ease all 0.5s;
}

.amenities-icon .icons-wrap {

    margin: 0px auto;
    border: 2px solid transparent;
    border-radius: 50%;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: ease all 0.5s;
}



.amenities-icon .icons-wrap img {
    width: 80px !important;
    /*border: 1px solid #000;*/
    /*border-radius: 50%;*/
}

.amenities-icon h3 {
    font-size: 16px;
    line-height: 1.4;
    transition: ease all 0.5s;
    color: #222;
    min-height: 30px;
    text-transform: capitalize;
}

.amenities-icon:hover h3 {
    color: #222;
    transition: ease all 0.5s;
}

/* ---conect-- */
.amenities-icon-1 {
    text-align: center;
    /*box-shadow: 1px 1px 25px #e0e0e0;*/
    /*box-shadow: 0 8px 8px -6px rgba(0, 0, 0, 0.2);*/
    padding: 15px;
    /*background: #f7f7f7;*/
    margin-bottom: 30px;
    transition: ease all 0.5s;
}

.amenities-icon-1:hover {
    transform: translateY(-10px);
    transition: ease all 0.5s;
}

.amenities-icon-1 .icons-wrap {
    height: 90px;
    width: 90px;
    margin: 0px auto;
    border: 2px solid transparent;
    border-radius: 50%;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: ease all 0.5s;
}

.amenities-icon-1:hover .icons-wrap {
    border-radius: 0;
    border-color: #0f684b;
    transition: ease all 0.5s;
}

.amenities-icon-1 .icons-wrap img {
    width: 80px !important;
    /*border: 1px solid #000;*/
    /*border-radius: 50%;*/
}

.amenities-icon-1 h3 {
    font-size: 16px;
    line-height: 1.4;
    transition: ease all 0.5s;
    color: #222;
    min-height: 30px;
    text-transform: capitalize;
}

.amenities-icon-1:hover h3 {
    color: #222;
    transition: ease all 0.5s;
}

.amenities-icon-1 h3 {
    font-size: 16px;
    line-height: 1.4;
    transition: ease all 0.5s;
    color: #fff;
    min-height: 30px;
    text-transform: capitalize;
}

.amenities-icon-1 h3 span {
    font-size: 16px;
    font-weight: 500;
    color: #39b54a;
    text-align: center;
    display: block;
}

.amenities-icon-1:hover h3 {
    color: #fff;
    transition: ease all 0.5s;
}

.amenities-icon p {}

/* Aminity Slider Styles */
.aminity {
    padding: 60px 0;

}

.aminity-slider .item {
    padding: 15px;
}

.amenities-icon {
    text-align: center;
    padding: 30px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icons-wrap {
    margin-bottom: 15px;
}

.icons-wrap img {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain;
    margin: 0 auto;
}

.amenities-icon h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.aminity .sub-head {
    text-align: center;
    margin-bottom: 10px;
}

.aminity .head-line {
    text-align: center;
    margin-bottom: 40px;
}

.owl-carousel.aminity-slider {
    display: block;
    /* Fallback if JS fails */
}

.owl-carousel.aminity-slider.owl-loaded {
    display: block;
 
}

.aminity .owl-carousel .owl-stage-outer{
            background: #ffffff8c; 
     border-radius: 30px; 
     padding: 1rem 0; 
}

/* Owl Carousel Custom Navigation Styles */
.aminity-slider .owl-nav {
    margin-top: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.aminity-slider .owl-nav button.owl-prev,
.aminity-slider .owl-nav button.owl-next {
    width: 32px !important;
    height: 32px !important;
    border: none !important;
    background-color: transparent !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease !important;
    padding: 0 !important;
}

.aminity-slider .owl-nav button.owl-prev:hover,
.aminity-slider .owl-nav button.owl-next:hover {
    transform: scale(1.1);
}

.nav-link img {
    width: 15px;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #b18e54 !important;
}