:root {
    --color-white: #FFFFFF;
    --color-theme: #008C58;
    --color-charcoal: #2C2C2C;
    --color-gold: #D4AF37;
    --color-beige: #F5F1E8;
    --color-light-gold: #E8D7A8;
    --color-dark-charcoal: #1A1A1A;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

@font-face {
    font-family: 'Bella Vista';
    src: url(/bella_vista_2/Bella\ Vista.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background 0.3s ease;
}

&.solid-navbar {
    background-color: #aaa;
    transition: background-color 0.2s linear;
  }

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 15px 40px;  */
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.logo {
    height: 80px;
    width: auto;
}

.nav-logo h2 {
    /* font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-charcoal);
    letter-spacing: 2px; */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: var(--color-charcoal);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-theme);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-theme);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-charcoal);
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero-section {
    /* position: relative; */
    /* height: 100vh; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-light-gold) 100%); */
    background-image: url(/images/belvedere_banner.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-split-div {
    max-width: 2000px;
    margin: 0 auto;
}

.hero-split {
    display: none;
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* align-items: start; */
    align-items: center;
    padding: 20px;
    justify-content: space-between;
    /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; */
    /* background: linear-gradient(135deg, rgba(245, 241, 232, 0.35) 0%, rgba(232, 215, 168, 0.35) 100%); */
}

.hero-split.active {
    display: grid;
}

.hero-content {        
    top: 150px;
    justify-self: start;
    z-index: 1;
    width: 380px;
    height: 450px;
    padding: 0 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    border: 4px solid #008C58;
    margin-bottom: 20px;
}

@keyframes pulseWidth {
    0% {
        transform: scaleX(1); /* Original width */
    }
    50% {
        transform: scaleX(1.1); /* Expands out by 5% at the 2-second mark */
    }
    100% {
        transform: scaleX(1); /* Shrinks back to original size at 4 seconds */
    }
}

.eoi-highlight {
    font-family: var(--font-body);
    color: var(--color-beige);
    font-size: 18px;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 10px;
    background-color: var(--color-theme);
    /* width: 100%; */
    height: auto;
    padding: 20px;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.eoi-detail {
    animation: pulseWidth 2s ease-in-out infinite;
}

.eoi-highlight ul li {
    list-style: none;
}

.eoi-detail span {
    font-size: 24px;
    font-weight: bold;
}

.contact-form .hero-title {
    margin: 0;
    font-size: 24px;
    color: var(--color-charcoal);
    justify-content: center;
    align-items: center;
    /* font-weight: bolder; */
}

.lead-form form {
    top: 150px;
    justify-self: end;
    height: 620px;
    width: 380px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.7);
}

.hero-title {
    font-family: sans-serif;
    font-size: 30px;
    color: var(--color-beige);
    font-weight: bold;
    line-height: 1.2;
    padding: 10px 0px 0px 0px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-beige);
    margin-bottom: 30px;
    /* font-weight: 300; */
}

.list-style {
    list-style: none;
    color: var(--color-theme);
    display: flex;
}

.list-style p {
    color: var(--color-beige);
    padding-left: 10x;
    margin-left: 10px;
}

.hero-description {
    font-size: 18px;
    color: var(--color-beige);
    margin-bottom: 40px;
    font-family: var(--font-body);
    /* font-weight: 400; */
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--color-theme);
    color: var(--color-white);
    /* box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); */
    box-shadow: 0 4px 15px rgba(1, 119, 74, 0.3);
}

.btn-primary:hover {
    background: var(--color-theme);
    transform: translateY(-2px);
    /* box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4); */
    box-shadow: 0 4px 15px rgba(1, 119, 74, 0.3);
}

.btn-secondary {
    /* background: transparent; */
    background: var(--color-theme);
    color: var(--color-beige);
}

 .btn-secondary:hover {
    /* background: var(--color-theme); */
    /* color: var(--color-white); */
    transform: translateY(-2px);
} 

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-beige);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: var(--color-charcoal);
    margin: 10px auto;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* Fade-in Animation */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section Styling */
section {
    padding: 100px 0;
}

.popup-overlay {
    display: none; 
    position: fixed;
    left: 0;
    height: auto;
    width: 100%;
    border-radius: 8px;
    z-index: 1000;
    background-image: url(/images/belvedere_banner2.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

@starting-style {
  .popup-overlay .popup-content {
    opacity: 0;
    transform: scale(0.9);
  }
}

.popup-content {
    /*display: flex;*/
    /*background: #fff;*/
    width: 550px;
    height: auto;
    max-width: 100%;
    border-radius: 8px; 
    position: relative;
    overflow: hidden;
    justify-content: center;
    background-color: rgba(255, 255, 255, 1);
    border: var(--color-theme) 2px solid;
    color: var(--color-charcoal);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); 
}

.popup-left, .popup-right {
  flex: 1;
  padding: 40px;
}

.popup-right {
    flex: 1;
}

.popup-right h2 {
    color: var(--color-theme);
    font-size: xx-large;
    margin-bottom: 15px;
}

.popup-right ul li {
    font-size: larger;
    font-weight: bolder;
    list-style: none;
    margin-bottom: 20px;
    animation: pulseWidth 2s ease-in-out infinite;
}

.popup-left .popup-right h2 {
    font-family: var(--font-body);
    font-size: 22px;
    color: var(--color-charcoal);
    letter-spacing: 2px;
}

.popup-left .popup-right h2 {
    font-family: var(--font-body);
    font-size: 22px;
    color: var(--color-charcoal);
    letter-spacing: 2px;
}

.popup-right ul li p {
    color: var(--color-dark-charcoal);
    font-family: sans-serif;
    font-size: x-large;
}

.popup-left form {
    height: 320px;
}

.popup-left form input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 34px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  /* color: var(--color-beige); */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-body);
    font-size: 48px;
    color: var(--color-charcoal);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-subtitle-bv {
    font-family: 'Bella Vista', sans-serif;
    font-size: 40px;
    color: var(--color-charcoal);
    font-weight: 300;
}

.section-subtitle {
    /* font-family: 'Bella Vista', sans-serif; */
    font-size: 20px;
    color: var(--color-charcoal);
    font-weight: 500;
}

/* About Section */
.about-section {
    background: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    padding-right: 20px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-rera {
    margin-top: 30px;
    padding: 15px 20px;
    background: var(--color-beige);
    border-left: 4px solid var(--color-gold);
    font-size: 14px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.highlight-card {
    background: var(--color-beige);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.highlight-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--color-charcoal);
}

.highlight-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Amenities Section */
.amenities-section {
    background: var(--color-beige);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.amenity-card {
    background: var(--color-white);
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.amenity-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.amenity-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Floor Plans Section */
.floor-plans-section {
    background: var(--color-white);
}

.floor-plans-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--color-charcoal);
    color: var(--color-charcoal);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    font-family: var(--font-body);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.floor-plans-content {
    max-width: 1000px;
    margin: 0 auto;
}

.floor-plan-item {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    animation: fadeIn 0.5s ease-in;
}

.floor-plan-item.active {
    display: grid;
}

.floor-plan-details h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--color-charcoal);
}

.plan-specs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #E0E0E0;
}

.spec-label {
    font-weight: 600;
    color: var(--color-charcoal);
}

.spec-value {
    color: var(--color-gold);
    font-weight: 600;
}

.floor-plan-image {
    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

.fp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fp-overlay button {
    padding: 16px 40px;
    color: var(--color-dark-charcoal);
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    background: rgb(245, 238, 220);
    letter-spacing: 1px;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(173, 134, 5, 0.7);
}

.fp-overlay button:hover { 
    transform: translateY(-2px);
}

.floor-plan-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    filter: blur(6px);
    transition: filter 0.5s ease;
}

.floor-plan-image span {
    color: var(--color-beige);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.floor-plan-image:hover .fp-overlay {
    opacity: 1;
}

/* Gallery Section */
.gallery-section {
    background: var(--color-beige);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 50px;
    color: var(--color-white);
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(212, 175, 55, 0.8);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Location Section */
.location-section {
    background: var(--color-white);
}

.location-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.location-map iframe {
    width: 100%;
    height: 500px;
    filter: grayscale(20%);
}

.location-landmarks h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--color-charcoal);
}

.landmarks-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.landmark-item {
    display: flex;
    gap: 20px;
    align-items: start;
    padding: 20px;
    background: var(--color-beige);
    transition: transform 0.3s ease;
}

.landmark-item:hover {
    transform: translateX(5px);
}

.landmark-icon {
    font-size: 30px;
    flex-shrink: 0;
}

.landmark-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--color-charcoal);
}

.landmark-item p {
    font-size: 14px;
    color: #666;
}

/* Contact Section */
.contact-section {
    background: var(--color-beige);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--color-charcoal);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 30px;
    flex-shrink: 0;
}

.contact-icon i {
    width: 50px;
    height: 50px;
    padding: 10px;
    font-size: 40px;
    color: #25D366;
}

.contact-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--color-charcoal);
}

.contact-item p {
    font-size: 14px;
    color: #666;
}

.contact-link {
    text-decoration: none;
    color: inherit;
}

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--color-charcoal);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-icon:hover {
    background: var(--color-gold);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
    background: var(--color-white);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-theme);
}

.form-error {
    display: block;
    color: #E53E3E;
    font-size: 13px;
    margin-top: 5px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    margin-bottom: 30px;
}

.form-success {
    margin-top: 20px;
    padding: 15px;
    background: #48BB78;
    color: var(--color-white);
    text-align: center;
    display: none;
}

.form-success.active {
    display: block;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox input {
    margin-top: 4px;
}

form span {
    display: inline-block;
    font-size: 13px;
    line-height: 20px;
    text-align: left;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-icon i {
    position: relative;
    align-items: center;
    top: 5px;
    /* right: 5px; */
    width: 50px;
    height: 50px;
    font-size: 40px;
    color: #fff;
}

.whatsapp-float i {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

/* Footer */
.footer {
    background: var(--color-dark-charcoal);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-project-name {
    margin-left: 15px;
}

.footer-brand img {
    width: 100x;
    height: 100px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--color-gold);
    font-size: 14px;
}

.footer-disclaimer {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: var(--color-white);
        width: 100%;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .about-content,
    .floor-plan-item,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 830px) {
    .hero-split {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .hero-content {
        width: auto;
        height: auto;
        padding-bottom: 10px;
    }

    .lead-form {
        justify-self: start;
    }
}

@media (max-width: 640px) {
    .hero-split {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .hero-content {
        width: auto;
        height: auto;
        padding-bottom: 10px;
    }

    .lead-form {
        justify-self: start;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .popup-content { 
        flex-direction: column; 
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .amenities-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .floor-plans-tabs {
        flex-direction: column;
        width: 100%;
    }

    .tab-btn {
        width: 100%;
    }
}

@media (max-width: 405px) {
    .hero-split {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .hero-content {
        width: auto;
        height: auto;
        padding-bottom: 10px;
    }
}