:root {
    --signature-green: #cb6b52;
    --signature-green-dark: #a04123;
    --forest-green: #a04123;
    --gold: #cb6b52;
    --gold-dark: #a04123;
    --charcoal: #2b2f33;
    --text-primary: #2d3340;
    --text-secondary: #5f6670;
    --divider-olive: #cb6b52;
    --bg-beige: #fffcf9;
    --bg-ash: #fffcf9;
    --bg-light-green: #fffcf9;
    --bg-dark-green: #a04123;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--bg-beige);
    line-height: 1.6;
    font-size: 15px;
}

.font-heading {
    font-family: 'Montserrat', sans-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: 90px;
    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 .5rem;
    }

    .navbar {
        height: 75px;
    }
}

.navbar-logo img {
    width: 65px;
    transition: transform 0.3s ease;
}

.navbar-logo .develoeper-logo {
    width: 180px;
    height: auto;
}

.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: 13px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    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: start;
    gap: 1.5rem;
    padding: 2rem;
}

.mobile-menu-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    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-1.jpg') center/cover no-repeat;
}



@media (max-width: 1023px) {
    .hero-section {
        margin-top: 64px;
        min-height: 80vh;
        background: url('../images/img/banner-1.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.1rem, 5vw, 3.6rem);
    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(1rem, 1.8vw, 1.25rem);
    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: 0.9rem 2.2rem;
    font-size: 1rem;
    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: 13px;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 100px;
    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;
}


.banner-form-container {
    display: none;
}

.banner-query-text {
    background-color: #ffffff !important;
    color: black;
}

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

    .banner-form-container {
        display: block;
        padding: 2rem 1rem 1rem 1rem !important;
        background-color: transparent;
    }

    .contact-section {
        padding-top: 0rem !important;
    }

    .carousel-thumbnails {
        justify-content: flex-start;
    }

    .carousel-main {
        height: 280px !important;
    }

}

.floor-plans-section {
    padding-bottom: 0rem;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.2rem);
    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: 1rem;
}

.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;
    }
}

.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(33, 56, 35, 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-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

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

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

.btn-outline {
    border: 2px solid var(--signature-green);
    color: var(--signature-green);
    background: transparent;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    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: var(--bg-ash);
}

.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(33, 56, 35, 0.1);
    border-color: var(--signature-green);
}

.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-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.highlights-section .highlight-icon img {
    filter: brightness(0) saturate(100%) invert(1);
}

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

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

.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%;
}



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

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

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

@media (max-width: 767px) {
  

 
}

/* Solea Gallery */
.solea-gallery {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.solea-gallery-nav-row {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.solea-gallery-nav {
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(203, 107, 82, 0.35);
}

.solea-gallery-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.solea-gallery-item {
    margin: 0;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--bg-ash);
    box-shadow: 0 16px 30px rgba(23, 24, 28, 0.08);
    aspect-ratio: 4 / 3;
}

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

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

@media (max-width: 767px) {
    .solea-gallery-track {
        grid-auto-flow: column;
        grid-auto-columns: 85%;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0.75rem;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }

    .solea-gallery-track::-webkit-scrollbar {
        display: none;
    }

    .solea-gallery-item {
        scroll-snap-align: center;
        aspect-ratio: 5 / 4;
    }

    .solea-gallery-nav-row {
        display: flex;
    }

    .solea-gallery-nav {
        display: inline-flex;
    }
}

/* 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(33, 56, 35, 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-circle img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.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-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

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

.location-card-name {
    font-size: 0.8125rem;
    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.8125rem;
}

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

.btn-whatsapp {
    background: linear-gradient(to right, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 0.9rem 1.75rem;
    font-size: 0.95rem;
    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-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

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

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

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

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

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

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

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

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

/* Featured Floor Plan */
.featured-floor-plan {
    position: relative;
    padding: 6rem 0;
    background: url('https://images.unsplash.com/photo-1638454668466-e8dbd5462f20?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxsdXh1cnklMjBhcGFydG1lbnQlMjBpbnRlcmlvcnxlbnwxfHx8fDE3NjI1MTI5MzB8MA&ixlib=rb-4.1.0&q=80&w=1080') 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: var(--bg-beige);
    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: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.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: var(--signature-green-dark);
    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: linear-gradient(160deg, #a04123 0%, #cb6b52 100%);
    overflow: hidden;
}

.amenities-section .section-title {
    color: #fffcf9;
}

.amenities-section .section-subtitle {
    color: rgba(255, 252, 249, 0.85);
}

.amenities-section .section-divider {
    background: linear-gradient(to right, transparent, #fffcf9, 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, rgba(160, 65, 35, 0.95), rgba(160, 65, 35, 0.35), 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: #fffcf9;
    margin-bottom: 1rem;
}

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

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

.carousel-description {
    color: rgba(255, 252, 249, 0.85);
    font-size: 1rem;
    max-width: 40rem;
}

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

.carousel-nav-btn:hover {
    background: #fffcf9;
    color: #a04123;
}

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

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

@media (max-width: 767px) {
    .carousel-nav-btn {
        display: none;
        width: 38px;
        height: 38px;
        top: auto;
        bottom: 12px;
    }

    .carousel-nav-btn.prev {
        left: 50%;
        transform: translateX(-56px);
    }

    .carousel-nav-btn.next {
        right: auto;
        left: 50%;
        transform: translateX(18px);
    }

    .carousel-content {
        padding: 1.5rem 1.25rem 1.2rem;
    }

}

.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, 252, 249, 0.35);
}

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

.carousel-thumbnail.active {
    border: 4px solid #fffcf9;
    box-shadow: 0 6px 20px rgba(203, 107, 82, 0.45);
}

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

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

.carousel-thumbnail.active::after {
    background: rgba(255, 252, 249, 0.15);
}

.carousel-thumbnail:hover::after {
    background: rgba(160, 65, 35, 0.25);
}

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

.carousel-counter-text {
    color: rgba(255, 252, 249, 0.75);
    font-size: 0.8125rem;
}

.carousel-counter-highlight {
    color: #fffcf9;
    font-weight: 600;
}

/* Floor Plans */
.floor-plans-section {
    background: var(--bg-ash);
    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.6rem;
    color: var(--signature-green);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

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

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

.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(1.75rem, 3.5vw, 2.2rem);
    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: 1rem;
    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-about-text {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 1rem auto 0;
    display: inline-block;
    text-align: left;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-about-text li {
    margin-bottom: 0.4rem;
}

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

@media (max-width: 767px) {
    .contact-about-text {
        list-style: none;
        padding-left: 0;
        text-align: center;
    }

    .contact-about-text li {
        margin-bottom: 0.5rem;
    }
}

.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;
    font-size: 0.9rem;
}

@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.6rem;
    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;
    font-size: 0.95rem;
}

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

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

.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: 0.95rem;
    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(33, 56, 35, 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-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

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

.success-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* 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.6rem, 3.2vw, 2.1rem);
    color: white;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

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

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

.footer-brand {
    margin: 1.5rem auto 0;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-developer-logo {
    width: 260px;
    height: auto;
}

.footer-developer-logo-2 {
    width: 100px;
    margin: 10px 0px;
    filter: brightness(0) invert(1);
}

.footer-brand-text {
    color: #D1D5DB;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

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

.footer-disclaimer {
    color: #999999;
    font-size: 0.7rem;
    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: 0.9rem 1.75rem;
    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: 0.95rem;
}

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

.floating-icon {
    animation: rotatePhone 2s infinite;
    width: 20px;
    height: 20px;
}

@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: 0.9rem;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8125rem;
    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: var(--bg-dark-green);
    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.25rem;
    color: white;
    font-family: 'Playfair Display', serif;
}

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

.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);
    font-size: 0.9rem;
}

.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);
    width: 20px;
    height: 20px;
}

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

.form-privacy {
    font-size: 0.7rem;
    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;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg-ash);
}

::-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: var(--gold);
}

.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: var(--bg-beige);
    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: 24px;
    font-weight: 600;
    color: #333;
    margin-top: 15px;
}

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

.home-btn-thank-you {
    display: inline-block;
    padding: 9px 22px;
    font-size: 14px;
    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) {

    .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: 0.75rem;
        padding-top: 0.75rem;
        padding-bottom: 3rem;
    }

    .footer-brand {
        padding: 0 0.5rem;
        gap: 0.75rem;
    }

    .footer-developer-logo {
        width: 260px;
    }

  
    .footer-brand-text {
        padding: 0 0.75rem;
        font-size: 0.85rem;
        line-height: 1.8;
    }
}



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

.mobile-banner {
    display: none;
    width: 100%;
    height: 100%;
}


.privacy-policy-page {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding-top: 10px;
}

.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;
}




.zx-sec-102 {
    background: var(--bg-beige);
    padding: 50px 15px;
}

.zx-container-77 {
    max-width: 1200px;
    margin: auto;
}

/* Grid */
.zx-grid-21 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.zx-card-11 {
    text-align: center;
}

/* Image Box */
.zx-imgbox-66 {
    background: #f7f7f7;
    border: 4px solid #123c42;
    border-radius: 26px;
    padding: 25px;
    min-height: 320px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.zx-imgbox-66 img {
    max-width: 80%;
    max-height: 250px;
    object-fit: contain;
    transition: 0.3s;
    filter: blur(4px);
}

/* Hover Effect */
.zx-card-11:hover img {
    transform: scale(1.05);
}

/* Text */
.zx-sub-09 {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 2px;
    color: #4b4a49;
}

.zx-title-55 {
    margin: 8px 0 16px;
    font-size: 24px;
    font-weight: 500;
    color: var(--bg-dark-green);
}

/* Button */
.zx-btn-88 {
    display: inline-block;
    padding: 12px 26px;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
    border-radius: 30px;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
}

.zx-btn-88:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 992px) {
    .zx-grid-21 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .zx-grid-21 {
        grid-template-columns: 1fr;
    }
}

