:root {
    --signature-green: #13204c;
    --forest-green: #0c173c;
    --gold: #D4AF37;
    --gold-dark: #C6A24F;
    --charcoal: #333333;
    --text-primary: #333333;
    --text-secondary: #555555;
    --divider-olive: #CBD6C4;
    --bg-beige: #FAFAF7;
    --bg-ash: #F5F5F5;
    --bg-light-green: #f4f5f7;
    --bg-dark-green: #0c173c;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    background: white;
    line-height: 1.6;
}

.font-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 200;
}

.font-body {
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #EEEDEE;
    height: 72px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

@media (max-width: 1023px) {
    .navbar-container {
        padding: 0 1.5rem;
    }

    .navbar {
        height: 64px;
    }
}

.navbar-logo img {
    height: 52px;
    transition: transform 0.3s ease;
}

.navbar-logo:hover img {
    transform: scale(1.03);
}

.navbar-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

@media (max-width: 1023px) {
    .navbar-menu {
        display: none;
    }
}

.nav-link {
    color: var(--signature-green);
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link.active {
    font-weight: 500;
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--signature-green);
}

@media (max-width: 1023px) {
    .mobile-menu-toggle {
        display: block;
    }
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--signature-green);
    z-index: 1040;
    animation: slideDown 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.mobile-menu-header {
    text-align: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-logo-icon {
    background: white;
    border-radius: 0.75rem;
    padding: 0.75rem;
}

.mobile-menu-logo-text {
    color: white;
    text-align: left;
}

.mobile-menu-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
}

.mobile-menu-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-link.active {
    border-bottom: 2px solid var(--gold);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 72px;
    background: url('../images/img/banner.jpg') center/cover no-repeat;
}

@media (max-width: 1023px) {
    .hero-section {
        margin-top: 64px;
        min-height: 80vh;
        background: url('../images/img/mobile-banner.jpg') center/cover no-repeat;

    }
}


.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.4); */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--signature-green);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--charcoal);
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.8);
}

.btn-primary {
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.hero-info-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
    display: inline-block;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--signature-green);
    font-size: 14px;
}

.hero-badge svg {
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    animation: bounce 2s infinite;
}

.scroll-indicator::after {
    content: '';
    width: 4px;
    height: 12px;
    background: var(--gold);
    border-radius: 2px;
    margin-top: 8px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

/* Sections */
section {
    padding: 4rem 0;
}

@media (max-width: 767px) {
    section {
        padding: 3rem 0;
    }
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--signature-green);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.section-divider {
    width: 96px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--divider-olive), transparent);
    margin: 1rem auto;
}

/* Township Overview */
.township-section {
    background: var(--bg-beige);
    position: relative;
    overflow: hidden;
}

.township-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.township-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;

}

@media (min-width: 1024px) {
    .township-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.developer-logo {
    filter: brightness(0.2);
}

.township-image {
    position: relative;
    border-radius: 1.5rem;
    /* overflow: hidden; */
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2); */
}

.township-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1.5rem;
}

@media (min-width: 1024px) {
    .township-image img {
        height: 600px;
    }
}

.township-image::after {
    content: '';
    position: absolute;
    bottom: -45px;
    right: -45px;
    width: 128px;
    height: 128px;
    border: 4px solid var(--gold);
    border-radius: 1.5rem;
    z-index: -1;
}

@media (max-width: 1023px) {
    .township-image::after {
        display: none;
    }
}

.quick-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.quick-fact-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.quick-fact-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--signature-green);
    box-shadow: 0 8px 20px rgba(29, 69, 32, 0.15);
}

.quick-fact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light-green);
    border-radius: 50%;
    margin-bottom: 0.75rem;
}

.quick-fact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--signature-green);
}

.quick-fact-title {
    font-size: 1.125rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.quick-fact-subtitle {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-outline {
    border: 2px solid var(--signature-green);
    color: var(--signature-green);
    background: transparent;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--signature-green);
    color: white;
}

.bottom-divider {
    margin-top: 4rem;
}

.bottom-divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--divider-olive), transparent);
}

/* Project Highlights */
.highlights-section {
    background: #EEEDEE;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-card {
    background: var(--bg-beige);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--divider-olive);
}

.highlight-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(29, 69, 32, 0.1);
    border-color: var(--signature-green);
}

.highlight-icon img {
    width: 32px;
}

.highlight-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--signature-green), var(--forest-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1);
}

.highlight-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.highlight-title {
    font-size: 1.25rem;
    color: var(--signature-green);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.highlight-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.highlight-underline {
    height: 4px;
    width: 0;
    background: linear-gradient(to right, var(--signature-green), transparent);
    margin-top: 1.5rem;
    transition: width 0.5s ease;
}

.highlight-card:hover .highlight-underline {
    width: 100%;
}

.highlights-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .highlights-gallery {
        grid-template-columns: 2fr 1fr;
    }
}

.gallery-item {
    height: 320px;
    border-radius: 1rem;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Location Section */
.location-section {
    background: white;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.location-map {
    display: none;
    background: white;
    border-radius: 1.5rem;
    padding: 0.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--divider-olive);
}

@media (min-width: 1024px) {
    .location-map {
        display: block;
    }
}

.map-placeholder {
    aspect-ratio: 5/4;
    background: linear-gradient(135deg, var(--bg-light-green), var(--bg-beige));
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.map-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map-pin-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--signature-green), var(--forest-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(29, 69, 32, 0.3);
    animation: mapPulse 2s infinite;
}

@keyframes mapPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.map-pin-circle svg {
    width: 32px;
    height: 32px;
    color: white;
    fill: white;
}

.map-pin-label {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--divider-olive);
    font-size: 12px;
    color: var(--signature-green);
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .location-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.location-card {
    background: var(--bg-beige);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
}

.location-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--signature-green);
}

.location-card-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    transition: all 0.3s ease;
}

.location-card:hover .location-card-icon {
    background: linear-gradient(135deg, var(--signature-green), var(--forest-green));
}

.location-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--signature-green);
    transition: color 0.3s ease;
}

.location-card:hover .location-card-icon svg {
    color: white;
}

.location-card-name {
    font-size: 0.875rem;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .location-card-name {
        font-size: 1rem;
    }
}

.location-card-distance {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.875rem;
}

@media (min-width: 1024px) {
    .location-card-distance {
        font-size: 1rem;
    }
}

.btn-whatsapp {
    background: linear-gradient(to right, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(to right, #20BA56, #0F7A6C);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-ash);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    background: linear-gradient(135deg, var(--bg-light-green), white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--divider-olive);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--signature-green);
}

.pricing-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    background: linear-gradient(135deg, var(--signature-green), var(--forest-green));
}

.pricing-icon svg {
    width: 32px;
    height: 32px;
    color: var(--signature-green);
    transition: color 0.3s ease;
}

.pricing-card:hover .pricing-icon svg {
    color: white;
}

.pricing-type {
    font-size: 1.75rem;
    color: var(--signature-green);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

@media (min-width: 768px) {
    .pricing-type {
        font-size: 2rem;
    }
}

.pricing-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.pricing-amount {
    font-size: 2rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-amount {
        font-size: 2.5rem;
    }
}

.pricing-size {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.pricing-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 3rem;
}

/* Featured Floor Plan */
.featured-floor-plan {
    position: relative;
    padding: 6rem 0;
    background: url('../images/img/floor-plan-bg.jpg') center/cover fixed;
}

.featured-floor-plan::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
}

.floor-plan-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.floor-plan-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    transition: transform 0.3s ease;
}

@media (min-width: 1024px) {
    .floor-plan-card {
        grid-template-columns: 1fr 1fr;
    }
}

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

.floor-plan-image {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--bg-light-green), var(--bg-beige));
    overflow: hidden;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .floor-plan-image {
        height: 500px;
    }
}

.floor-plan-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/img/floor-plan.jpg') center/cover;
    filter: blur(6px);
    transition: all 0.3s ease;
}

.floor-plan-image:hover::before {
    filter: blur(2px);
    transform: scale(1.05);
}

.floor-plan-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(212, 175, 55, 0.2);
}

.floor-plan-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.floor-plan-image:hover .floor-plan-overlay {
    opacity: 1;
}

.floor-plan-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1024px) {
    .floor-plan-content {
        padding: 3rem;
    }
}

.featured-badge {
    display: inline-block;
    background: #F4EAD0;
    color: var(--signature-green);
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.floor-plan-title {
    font-size: 1.5rem;
    color: var(--signature-green);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.floor-plan-price {
    font-size: 1.375rem;
    color: var(--gold);
    font-family: 'Poppins';
    margin-bottom: 1rem;
    font-weight: 500;
}

.floor-plan-area {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-signature-green {
    background-color: var(--signature-green);
    border: none;
    color: white;
    padding: 0.875rem 2.25rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-signature-green:hover {
    background-color: #111f4e;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15), 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Amenities Section */
.amenities-section {
    background: var(--bg-dark-green);
    overflow: hidden;
}

.amenities-section .section-title {
    color: white;
}

.amenities-section .section-subtitle {
    color: var(--gold);
}

.amenities-section .section-divider {
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-main {
    position: relative;
    height: 500px;
    border-radius: 1rem;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

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

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-dark-green), rgba(21, 46, 23, 0.5), transparent);
}

.carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
}

@media (min-width: 768px) {
    .carousel-content {
        padding: 3rem;
    }
}

.carousel-accent {
    width: 64px;
    height: 4px;
    background: var(--gold);
    margin-bottom: 1rem;
}

.carousel-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

@media (min-width: 768px) {
    .carousel-title {
        font-size: 2.5rem;
    }
}

.carousel-description {
    color: #D1D5DB;
    font-size: 1.125rem;
    max-width: 40rem;
}

.carousel-nav-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav-btn:hover {
    background: var(--gold);
}

.carousel-nav-btn.prev {
    left: 1rem;
}

.carousel-nav-btn.next {
    right: 1rem;
}

.carousel-thumbnails {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    overflow-x: auto;
    padding: 1rem;
}

.carousel-thumbnail {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-thumbnail:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.carousel-thumbnail.active {
    border: 4px solid var(--gold);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.carousel-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease;
}

.carousel-thumbnail.active::after {
    background: rgba(212, 175, 55, 0.2);
}

.carousel-thumbnail:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

.carousel-counter {
    text-align: center;
    margin-top: 1.5rem;
}

.carousel-counter-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.carousel-counter-highlight {
    color: var(--gold);
    font-weight: 600;
}

/* Floor Plans */
.floor-plans-section {
    background: #EEEDEE;
    position: relative;
    overflow: hidden;
}

.floor-plans-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.floor-plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .floor-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.floor-plan-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    cursor: pointer;
    border: 1px solid var(--divider-olive);
}

.floor-plan-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.floor-plan-diagram {
    position: relative;
    height: 320px;
    background: linear-gradient(135deg, var(--signature-green), var(--forest-green));
    padding: 2rem;
    overflow: hidden;
}

.floor-plan-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.floor-plan-layout {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floor-plan-box {
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 1.5rem;
    width: 256px;
    height: 224px;
    position: relative;
    transition: transform 0.5s ease;
}

.floor-plan-item:hover .floor-plan-box {
    transform: scale(1.05);
}

.floor-plan-room {
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 4px;
    position: absolute;
    color: var(--gold);
    font-size: 10px;
    padding: 2px 4px;
}

.floor-plan-info {
    padding: 2rem;
}

.floor-plan-config {
    font-size: 1.875rem;
    color: var(--signature-green);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.floor-plan-size {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    background: #EEEDEE;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-branding {
    text-align: center;
}

@media (min-width: 1024px) {
    .contact-branding {
        text-align: left;
    }
}

.contact-heading {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--signature-green);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.contact-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-dark), var(--gold));
}

.contact-text {
    color: var(--charcoal);
    font-size: 1.125rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .contact-text {
        margin-left: 0;
    }
}

.contact-features {
    list-style: none;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .contact-feature {
        justify-content: flex-start;
    }
}

.contact-feature-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.contact-form-wrapper {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--divider-olive);
    position: relative;
}

.contact-form-title {
    font-size: 1.875rem;
    color: var(--signature-green);
    margin-bottom: 0.5rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.contact-form-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-ash);
    border: 1px solid var(--divider-olive);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--signature-green);
    box-shadow: 0 0 0 3px rgba(29, 69, 32, 0.1);
}

.success-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: scaleRotate 0.6s ease;
}

@keyframes scaleRotate {
    from {
        transform: scale(0) rotate(0deg);
    }

    to {
        transform: scale(1) rotate(360deg);
    }
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 3;
}

.success-title {
    font-size: 1.5rem;
    color: var(--signature-green);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.success-text {
    color: var(--text-secondary);
}

/* Footer */
footer {
    background: var(--charcoal);
    position: relative;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-content {
    padding: 1rem 0 2.5rem;
    text-align: center;
}

.footer-heading {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-text {
    color: #D1D5DB;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}

.footer-legal {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: #BBBBBB;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.footer-disclaimer {
    color: #999999;
    font-size: 0.75rem;
    max-width: 48rem;
    margin: 0 auto;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    display: none;
    animation: fadeInUp 0.3s ease;
}

@media (min-width: 768px) {
    .floating-cta {
        display: block;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.floating-btn {
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.floating-icon {
    animation: rotatePhone 2s infinite;
}

@keyframes rotatePhone {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(-10deg);
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--signature-green);
    border-top: 2px solid var(--gold);
    z-index: 1050;
    display: block;
    padding: 0.75rem;
}

@media (min-width: 768px) {
    .mobile-bottom-nav {
        display: none;
    }
}

.mobile-bottom-nav button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-bottom-nav button:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, #13204c, #0c173c);
    backdrop-filter: blur(15px);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 28rem;
    width: 100%;
    border: 1px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    color: white;
    font-family: 'Playfair Display', serif;
}

.modal-description {
    color: #D1D5DB;
    margin-top: 0.5rem;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-form .form-input {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: white;
}

.modal-form .form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal-form .form-input:focus {
    border-color: var(--gold);
}

.modal-form .form-label {
    color: white;
}

.modal-form .form-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 40px;
    color: var(--gold);
}

.input-icon+.form-input {
    padding-left: 2.5rem;
}

.form-privacy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 1rem;
}

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

.text-center {
    text-align: center;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}









/* own css */

.footer-phone-field {
    display: flex;
}

.footer-country {
    width: 62px;
    text-align: center;
    border-radius: 8px 0px 0px 8px;
}

.footer-phone-field {
    border-radius: 0px 8px 8px 0px;
}




.error-side,
.error-banner,
.error-modal {
    display: none;
    color: red;
    font-size: 12px;
    position: absolute;
    right: 20px;
    top: 10px;
}

.banner-query-box {
    position: relative;
    margin-bottom: 25px;
}

.banner-query-box.d-flex {
    display: flex;
}

.footer-query-box {
    position: relative;
    margin-bottom: 25px;
}

.modal-query-box {
    position: relative;
    margin-bottom: 25px;
}

.banner-query-box.d-flex {
    display: flex;
}

.condition-label {
    color: white;
    margin-left: 5px;
}

.sidecondition-label {
    margin-left: .5rem;
    margin-bottom: 0px !important;
    color: black !important;
}


.footerterms-and-condition-block {
    margin-left: 10px;
    color: #fff;
    font-size: 12px;
}

.check-box,
.sidecheck-box {
    left: 0;
    top: 25px;
    background: rgb(37 36 36 / 90%) !important;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    font-size: 12px;
    z-index: 5;
}

.phone-country-code {
    width: 44px;
    padding: 8px !important;
    border-radius: 8px 0px 0px 8px !important;
    background: #0000000a !important;
}

.phone-country-code-modal {
    width: 44px;
    padding: 7px !important;
    border-radius: 8px 0px 0px 8px !important;
    background: #00000005 !important;
    color: black !important;
}

.checkbox-form {
    accent-color: black;
}

.checkbox-form-footer {
    accent-color: #d1ac3c;
}

.footer-sidecondition-label {
    /* color: white !important; */
}

.phone-country-code-footer {
    border: 1px solid white;
    color: white;
}

.phone-input-code {
    border-radius: 0px 8px 8px 0px !important;
    padding: 20px 15px !important;
}

.error {
    border: 2px solid red !important;
    animation: error .2s linear 5 alternate .1s;
}

.phone-modal-field {
    border-radius: 0px 3px 3px 0px
}


.modal-conditional-labal {
    accent-color: black !important;
}




.modal-container-group {
    position: relative;
    margin-bottom: 0.8rem !important;
}


.btn-style-one:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.side-checkbox_color {
    accent-color: var(--forest-green);
}

.thank-you-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 20px;
}

.thank-you-container {
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.thank-you-logo {
    width: 200px;
    max-width: 80%;
}

.head-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-top: 15px;
}

.thank-you-container h4 {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
}

.home-btn-thank-you {
    display: inline-block;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
    color: #fff;
    border: 1px white solid !important;
    transition: all 0.3s ease;
}

.home-btn:hover {
    background-color: #555;
    color: white !important;

}

@media (max-width: 767px) {
    .thank-you-logo {
        width: 190px;
    }

    .head-title {
        font-size: 22px;
    }

    .thank-you-container h4 {
        font-size: 16px;
    }

    .home-btn {
        font-size: 15px;
        padding: 8px 20px;
    }

    .thank-you-section {
        padding: 40px 15px;
    }

    .desktop-banner {
        display: none !important;
    }

    .mobile-banner {
        display: block !important;
    }

    .footer-legal {
        margin-top: 0px;
        padding-top: 0px;
        padding-bottom: 3rem;
    }

    .carousel-nav-btn {
        top: 30%;
    }


}



.desktop-banner {
    display: block;
    width: 100%;
    height: 100%;
}

.mobile-banner {
    display: none;
    width: 100%;
    height: 100%;
    margin-top: 14px;
}


.privacy-policy-page {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.privacy-policy-page:hover {
    color: white;
    text-decoration: underline;
    font-weight: 200;
}


.privacy-policy-content {
    margin-top: 40px;
}



.img-icon_:hover img {
    filter: brightness(0) invert(1) !important;
}

.location-card-icon img {
    width: 26px;
}


.quick-fact-icon img{
    width: 24px;
}