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

:root {
    --dark: #212529;
    --gold: #CD9742;
    --white: #FFFFFF;
    --cream: #FFFCF1;
    --light-cream: #FFF5D7;
    --gray: #F7F7F7;
    --text-gray: #888888;
    --border: #D4D4D4;
}

html {
    scroll-behavior: smooth;
}

section[id], h2[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--dark);
    line-height: 1.6;
}

/* Common Heading Styles */
h1, h2, h3, h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 0.84px;
    color: var(--dark);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea {
    font-family: inherit;
}

::placeholder {
    color: #999999;
    opacity: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-gold {
    padding: 11px 16px;
    gap: 10px;
    border-radius: 45px;
    background: linear-gradient(270deg, #BE8037 -10.02%, #F4D46F 46.08%, #BE8037 108.19%);
    color: var(--dark);
}

.btn-gold:hover {
    background: linear-gradient(270deg, #a8702f -10.02%, #e0c260 46.08%, #a8702f 108.19%);
}

.btn-arrow {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

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

.btn-dark {
    background: #212529;
    color: #fff;
    padding: 14px 40px;
    border-radius: 45px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-dark:hover {
    background: #000;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--dark);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.nav {
    margin-left: auto;
    margin-right: 30px;
}

.mobile-nav-btn {
    display: none;
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 11px 16px;
    border: 1px solid var(--white);
    border-radius: 45px;
    transition: 0.3s;
}

.phone-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.phone-link svg {
    stroke: var(--white);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 100px 0 50px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #1a1a1a url('Images/BannerImage.webp') center 30% / cover no-repeat;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 516px;
    gap: 250px;
    align-items: center;
}

.hero-content {
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content h1 {
    font-size: 42px;
    line-height: 55px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.hero-price {
    font-size: 20px;
    margin-bottom: 25px;
}

.hero-price strong {
    font-size: 24px;
}

.hero-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 550px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: left;
    padding-right: 40px;
    border-right: 1px solid rgba(255,255,255,0.3);
}

.stat-item:last-child {
    border-right: none;
    padding-right: 0;
}

.stat-num {
    display: block;
    font-size: 42px;
    font-weight: 700;
}

.stat-text {
    font-size: 14px;
}

/* Hero Form */
.hero-form-wrapper {
    position: relative;
    z-index: 5;
}

.hero-form {
    background: #FFFFFF;
    padding: 35px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.hero-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.hero-form h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 6px;
}

.asterisk {
    color: #F94343;
}

.hero-form input,
.hero-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    background: var(--white);
    color: var(--dark);
    transition: 0.3s;
}


.hero-form input::placeholder,
.hero-form textarea::placeholder {
    color: #999;
}

.hero-form input:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.hero-form input.input-error {
    border-color: #F94343;
    background: #fff5f5;
}

.hero-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* Form Messages */
.form-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 10px;
}

.form-message.show {
    display: flex;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.loading {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.form-message::before {
    font-size: 16px;
}

.form-message.success::before {
    content: '✓';
}

.form-message.error::before {
    content: '✕';
}

.form-message.loading::before {
    content: '⏳';
}

/* ===== PRICING ===== */
.pricing {
    padding: 70px 0;
    background: var(--white);
}

.section-title {
    font-size: 42px;
    line-height: 55px;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 40px;
}

.pricing-table {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.pricing-header {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr;
    background: var(--gray);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.pricing-header div {
    padding: 20px 30px;
    border-right: 1px solid var(--border);
}

.pricing-header div:first-child {
    text-align: center;
}

.pricing-header div:last-child {
    border-right: none;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr;
    font-size: 16px;
    border-top: 1px solid var(--border);
    align-items: center;
}

.pricing-row:nth-child(odd) {
    background: var(--white);
}

.pricing-row:nth-child(even) {
    background: var(--gray);
}

.pricing-row div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 30px;
    border-right: 1px solid var(--border);
}

.pricing-row div:first-child {
    justify-content: flex-start;
}

.pricing-row div:last-child {
    border-right: none;
}

.tick-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--gold);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Pricing Accordion - Hidden on desktop */
.pricing-accordion {
    display: none;
}

.pricing-dropdown {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}

.pricing-dropdown summary {
    padding: 16px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    background: var(--white);
    border-radius: 10px;
}

.pricing-dropdown summary::-webkit-details-marker {
    display: none;
}

.pricing-dropdown summary::after {
    content: '+';
    margin-left: auto;
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
}

.pricing-dropdown[open] summary {
    border-radius: 10px 10px 0 0;
}

.pricing-dropdown[open] summary::after {
    content: '−';
}

.pricing-details {
    padding: 15px 20px 15px 50px;
    background: #f9f9f9;
    border-top: 1px solid var(--border);
    border-radius: 0 0 10px 10px;
}

.pricing-details p {
    margin: 0 0 8px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--text);
    display: flex;
    justify-content: space-between;
}

.pricing-details p:last-child {
    margin-bottom: 0;
}

.pricing-details strong {
    color: var(--dark);
}

.pricing-accordion-header {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-download {
    text-align: center;
    margin-top: 30px;
}



/* ===== AMENITIES ===== */
.amenities {
    padding: 70px 0;
    background: var(--cream);
}

.amenities-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.amenities-content h2 {
    font-size: 42px;
    line-height: 55px;
    margin-bottom: 20px;
}

.amenities-content h2 span {
    color: #212529;
}

.amenities-desc {
    font-size: 16px;
    color: #212529;
    margin-bottom: 30px;
    line-height: 1.7;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.amenity {
    font-size: 16px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.amenity-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    background: #FFF5D7;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.amenity-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.more-amenities {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.amenities-image img {
    border-radius: 10px;
}

/* ===== MASTER PLAN ===== */
.masterplan {
    padding: 70px 0 30px;
    background: var(--white);
}

.masterplan-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.masterplan-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: blur(3px);
}

.floorplan-title {
    margin-top: 40px;
    margin-bottom: 0;
}

.floorplan-btn-wrapper {
    text-align: center;
    margin-top: 30px;
}

/* ===== FLOOR PLANS ===== */
.floorplans {
    padding: 0 0 70px;
    background: var(--white);
}

.floorplans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

.floorplan-card {
    background: #FFFFFF;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 7.8px 3px rgba(0, 0, 0, 0.04);
    padding: 20px;
}

.floorplan-inner {
    border: 1.5px solid #CD9742;
    border-radius: 15px;
    padding: 25px 25px 25px;
    position: relative;
}

.floorplan-label {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    display: inline-block;
    padding: 0 50px;
    background: #FFFFFF;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.floorplan-inner h3 {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.floorplan-img img {
    max-height: 358px;
    margin: 0 auto;
    filter: blur(3px);
}

/* ===== LOCATION ===== */
.location {
    padding: 20px 0 70px;
    background: var(--white);
}

.location-map {
    margin-top: 40px;
    width: 100%;
}

.location-map img {
    width: 100%;
    height: auto;
    display: block;
}

.location-connectivity {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.location-connectivity img {
    max-width: 700px;
    width: 100%;
    height: auto;
}

.location-legend {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.location-legend img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 70px 0;
    background: #F7F7F7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 25px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    padding-bottom: 100%;
    height: 0;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s;
}

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

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 70px 0 40px;
    background: var(--white);
}

.video-section .section-subtitle {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1321px;
    margin: 40px auto 0;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px auto 0;
    width: fit-content;
}

/* ===== FAQ ===== */
.faq {
    padding: 10px 0 70px;
    background: var(--white);
}

.faq-list {
    max-width: 1188px;
    margin: 35px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #F7F7F7;
    border-radius: 13px;
    padding: 0 39px;
    transition: all 0.3s ease;
}

.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0;
    text-align: left;
    color: #212529;
    position: relative;
    transition: padding 0.3s ease, margin 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-btn {
    padding-bottom: 18px;
    margin-bottom: 15px;
}

.faq-item.active .faq-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -39px;
    right: -39px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-btn:hover {
    color: var(--gold);
}

.faq-icon {
    display: inline-flex;
    transition: 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 22px;
    opacity: 1;
}

.faq-answer p {
    color: #212529;
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.footer-col h4 {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

/* Footer Logo Column */
.footer-logo-col {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    display: inline-block;
}

.footer-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

/* Footer Address Column */
.footer-address p {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    transition: 0.3s;
    cursor: default;
}

.footer-address p:hover {
    color: var(--gold);
}

.footer-address p img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

.footer-address p:hover img {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(5deg);
}

/* Footer Contact Column */
.footer-contact .contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact .contact-list li {
    list-style: none;
}

.footer-contact .contact-list li a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    transition: 0.3s;
}

.footer-contact .contact-list li a:hover span {
    color: var(--gold);
}

.footer-contact .contact-list li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.footer-contact .contact-list li a:hover img {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(5deg);
}

/* Footer Social Column */
.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.social-icons a svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--white);
}

.footer-bottom strong {
    font-weight: 700;
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 999;
    transition: 0.3s;
}

.floating-call img {
    width: 56px;
    height: 56px;
    display: block;
}

.floating-call:hover {
    transform: scale(1.1);
}

/* ===== EXIT POPUP ===== */
.exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.exit-popup-overlay.active {
    display: flex;
}

.exit-popup {
    background: #fff;
    border-radius: 15px;
    max-width: 550px;
    width: 100%;
    position: relative;
    animation: popupSlide 0.3s ease;
    overflow: visible;
}

@keyframes popupSlide {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.exit-popup-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--dark);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.exit-popup-close:hover {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.1);
}

.exit-popup-content {
    padding: 40px;
}

.exit-popup-content h3 {
    font-family: 'Lato', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    text-align: center;
}

.exit-popup-content .form-subtitle {
    text-align: center;
    margin-bottom: 25px;
}

.exit-popup-content .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.exit-popup-content .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.exit-popup-content .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.exit-popup-content .form-group input:focus {
    border-color: var(--gold);
    outline: none;
}

.exit-popup-content .form-group input.input-error {
    border-color: #dc3545;
}

.exit-popup-content .btn-gold {
    margin-top: 10px;
    border: none;
    cursor: pointer;
}

.exit-popup-content .btn-gold .btn-arrow {
    width: 26px;
    height: 26px;
}

@media (max-width: 576px) {
    .exit-popup-content {
        padding: 30px 20px;
    }

    .exit-popup-content h3 {
        font-size: 22px;
    }

    .exit-popup-content .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== RESPONSIVE - Large screens with zoom (1200px - 1400px) ===== */
@media (max-width: 1400px) {
    .container {
        padding: 0 40px;
    }

    .nav-list {
        gap: 25px;
    }

    .nav-link {
        font-size: 15px;
    }

    .hero-inner {
        grid-template-columns: 1fr 450px;
        gap: 60px;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 48px;
    }

    .hero-price {
        font-size: 18px;
    }

    .hero-price strong {
        font-size: 22px;
    }

    .hero-desc {
        font-size: 14px;
        max-width: 480px;
    }

    .stat-num {
        font-size: 34px;
    }

    .stat-text {
        font-size: 13px;
    }

    .section-title {
        font-size: 34px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    /* Footer */
    .footer-inner {
        gap: 40px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-address p,
    .footer-contact .contact-list li a {
        font-size: 14px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        width: 38px;
        height: 38px;
    }

    .social-icons a svg {
        width: 18px;
        height: 18px;
    }
}

/* ===== RESPONSIVE - 175% zoom (1024px - 1200px) ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 35px;
    }

    .nav-list {
        gap: 18px;
    }

    .nav-link {
        font-size: 14px;
    }

    .header-right .btn-gold {
        padding: 10px 14px;
        font-size: 14px;
    }

    .phone-link {
        padding: 10px 14px;
        font-size: 14px;
    }

    .hero-inner {
        grid-template-columns: 1fr 380px;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .hero-desc {
        font-size: 13px;
        max-width: 380px;
    }

    .hero-price {
        font-size: 16px;
    }

    .hero-price strong {
        font-size: 18px;
    }

    .hero-form {
        padding: 25px 30px;
    }

    .hero-form h3 {
        font-size: 20px;
    }

    .stat-num {
        font-size: 28px;
    }

    .stat-text {
        font-size: 11px;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-item {
        padding-right: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: auto 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer-col h4 {
        font-size: 15px;
    }

    .footer-address p,
    .footer-contact .contact-list li a {
        font-size: 13px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icons a {
        width: 34px;
        height: 34px;
    }

    .social-icons a svg {
        width: 16px;
        height: 16px;
    }
}

/* ===== RESPONSIVE - iPad (768px - 1024px) ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    /* Header */
    .nav {
        display: none;
    }

    .header-right {
        display: flex;
    }

    .header-right .btn-gold {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        gap: 6px;
    }

    .mobile-menu-btn span {
        width: 28px;
        height: 3px;
    }

    .header-inner {
        justify-content: space-between;
    }

    .header-right {
        margin-left: auto;
        margin-right: 15px;
    }

    .logo img {
        height: 55px;
    }

    .phone-link {
        padding: 10px 14px;
        font-size: 15px;
    }

    /* Hero */
    .hero {
        padding: 90px 0 40px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 46px;
    }

    .hero-form-wrapper {
        max-width: 500px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-item {
        padding-right: 30px;
    }

    .stat-num {
        font-size: 38px;
    }

    .stat-text {
        font-size: 14px;
    }

    /* Pricing */
    .section-title {
        font-size: 32px;
        line-height: 42px;
    }

    /* Amenities */
    .amenities-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .amenities-image {
        order: -1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .amenities-image img {
        width: 100%;
        border-radius: 15px;
    }

    .amenities-content h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .amenities-content h2 br {
        display: none;
    }

    /* Master Plan */
    .masterplan-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    /* Floor Plans */
    .floorplans-grid {
        gap: 30px;
    }

    .floorplan-inner h3 {
        font-size: 24px;
    }

    /* FAQ */
    .faq-item {
        padding: 0 25px;
    }

    .faq-item.active .faq-btn::after {
        left: -25px;
        right: -25px;
    }

    .faq-btn {
        font-size: 18px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .footer-logo-col {
        justify-content: flex-start;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-address p,
    .footer-contact .contact-list li a {
        font-size: 14px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        width: 38px;
        height: 38px;
    }

    .social-icons a svg {
        width: 16px;
        height: 16px;
    }
}

/* ===== RESPONSIVE - Mobile (below 768px) ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header */
    .nav {
        display: none;
    }

    .header-right {
        display: flex;
    }

    .header-right .btn-gold {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-inner {
        justify-content: space-between;
    }

    .header-right {
        margin-left: auto;
        margin-right: 15px;
    }

    .logo img {
        height: 50px;
    }

    .phone-link {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 80px 0 30px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 38px;
        margin-top: 30px;
    }

    .hero-content h1 br {
        display: none;
    }

    .hero-price {
        font-size: 16px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        padding-right: 20px;
    }

    .stat-item:last-child {
        border-right: none;
    }

    .stat-num {
        font-size: 28px;
    }

    .stat-text {
        font-size: 12px;
    }

    .hero-form-wrapper {
        max-width: 100%;
    }

    .hero-form {
        padding: 25px 20px;
    }

    .hero-form h3 {
        font-size: 20px;
    }

    /* Sections */
    .pricing, .amenities, .masterplan, .floorplans, .faq, .gallery, .video-section, .location {
        padding: 30px 0;
    }

    .section-title {
        font-size: 24px;
        line-height: 32px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* Pricing Table */
    .pricing-table {
        border-radius: 8px;
    }

    .pricing-header {
        font-size: 14px;
    }

    .pricing-header div {
        padding: 15px 12px;
    }

    .pricing-row {
        font-size: 14px;
    }

    .pricing-row div {
        padding: 15px 12px;
    }

    .tick-mark {
        width: 18px;
        height: 18px;
        font-size: 10px;
        margin-right: 8px;
    }

    /* Amenities */
    .amenities-content h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .amenities-desc {
        font-size: 14px;
    }

    .amenities-grid {
        gap: 12px;
    }

    .amenity {
        font-size: 14px;
    }

    .amenity-icon {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }

    .amenity-icon img {
        width: 22px;
        height: 22px;
    }

    /* Master Plan */
    .masterplan-card {
        padding: 20px;
    }

    /* Location */
    .location-map {
        margin-top: 25px;
    }

    .location-map img {
        min-height: 250px;
        object-fit: cover;
    }

    /* Floor Plans */
    .floorplans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .floorplan-label {
        font-size: 14px;
    }

    .floorplan-inner h3 {
        font-size: 20px;
    }

    /* FAQ */
    .faq-item {
        padding: 0 20px;
    }

    .faq-item.active .faq-btn::after {
        left: -20px;
        right: -20px;
    }

    .faq-btn {
        font-size: 16px;
        padding: 18px 0;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 24px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo-col {
        justify-content: center;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-address p {
        font-size: 14px;
    }

    .footer-contact .contact-list {
        align-items: center;
    }

    .footer-contact .contact-list li a {
        font-size: 14px;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        margin-top: 30px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 11px;
        line-height: 1.6;
    }
}

/* ===== RESPONSIVE - Small Mobile (below 480px) ===== */
@media (max-width: 480px) {
    /* Pricing - Show accordion, hide table */
    .pricing-desktop {
        display: none;
    }

    .pricing-accordion {
        display: block;
    }

    /* Amenities */
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    /* Hero Stats */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-item {
        text-align: center;
        padding-right: 0;
        border-right: none;
        padding: 10px 5px;
        border-left: 1px solid rgba(255,255,255,0.3);
    }

    .stat-item:first-child {
        border-left: none;
    }

    .stat-num {
        font-size: 22px;
    }

    .stat-text {
        font-size: 10px;
    }

    .stat-text {
        font-size: 12px;
    }

    /* Footer */
    .footer-col h4 {
        font-size: 15px;
    }

    .footer-address p,
    .footer-contact .contact-list li a {
        font-size: 13px;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
    }

    .social-icons a svg {
        width: 16px;
        height: 16px;
    }
}

/* Mobile Menu Dropdown */
.nav.active {
    display: block !important;
    position: fixed;
    top: 74px;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    width: auto;
    background: var(--dark);
    padding: 20px 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav.active .nav-list {
    flex-direction: column;
    gap: 0;
}

.nav.active .nav-link {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 16px;
}

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

.nav.active .mobile-nav-btn {
    display: none;
    margin-top: 20px;
}

/* Hamburger Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-btn span {
    transition: 0.3s;
}
  .whats_app_btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.whats_app_btn svg {
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: 0.3s;
}

.whats_app_btn svg:hover {
    transform: scale(1.1);
}
.whats_app_btn svg{
  width: 60px !important;
  height: 60px !important;
  max-width: 60px !important;
  max-height: 60px !important;
  min-width: 60px !important;
  min-height: 60px !important;
}
