/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInNav {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.55);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    animation: slideInNav 0.8s ease-out;
}

.logo img {
    width: auto;
    height: 45px;
    max-width: 150px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links li {
    animation: fadeInDown 0.8s ease-out;
    animation-fill-mode: both;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9a961;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #c9a961;
    transform: translateY(-2px);
}

.contact-btn {
    background: #c9a961;
    color: white;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact-btn:hover {
    background: #b08d45;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 169, 97, 0.3);
}

/* Hero Section */
.hero {
    height: 90vh;
    min-height: 500px;
    background: url('./images/amara-front-view-1265x570.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 50px;
    position: relative;
    margin-top: 80px;
    animation: fadeIn 1.2s ease-in;
}
@media (max-width: 480px) {
.hero {
    height: 90vh;
    min-height: 500px;
    background: url('./images/amara-front-view-375x600.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 60px;
    justify-content: flex-start;
    padding: 0 50px;
    position: relative;
    animation: fadeIn 1.2s ease-in;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 600px;
    bottom: 50px;
}

 }
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.3), transparent);
    animation: fadeIn 1.5s ease-in;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 600px;
}

.hero h1 {
    font-size: 50px;
    font-weight: 400;
    color: white;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.hero p {
    font-size: 33px;
    font-weight: 300;
    color: white;
    line-height: 1.2;
    text-transform: uppercase;
    animation: fadeInLeft 1s ease-out 0.3s both;
}

/* Stats Section */
.stats-section {
    padding: 80px 50px;
    background: #f8f8f8;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stats-image img {
    width: 100%;
    height: 770px;
    max-height: 500px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: fadeInLeft 1s ease-out;
    transition: transform 0.5s ease;
}

.stats-image:hover img {
    transform: scale(1.02);
}

.stats-content {
    animation: fadeInRight 1s ease-out;
}

.stats-content h2 {
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c9a961;
    margin-bottom: 20px;
}

.stats-content h3 {
    font-size: 32px;
    text-align: center;
    font-weight: 300;
    margin-bottom: 40px;
    color: #2c3e50;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    animation: scaleIn 0.8s ease-out both;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 48px;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
    color: #c9a961;
}

.stat-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-number::before {
    content: "G+";
}

/* add + only to specific number */
.plus-sign::before {
    content: "June ";
}

/* Community Section */
.community-section {
    padding: 80px 50px;
    background: #f8f8f8;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.community-image {
    width: 100%;
    height: 400px;
    background: #d4b896 center/cover no-repeat;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: fadeInLeft 1s ease-out;
    transition: background-image 0.6s ease;
}

.community-content {
    background: #af2490;
    padding: 50px;
    color: white;
    animation: fadeInRight 1s ease-out;
}

.community-content h2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.community-list {
    list-style: none;
    line-height: 2.5;
}

.community-list li {
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.community-list li.active {
    color: #c9a961;
    transform: translateX(10px);
}

.community-list li::before {
    content: '→ ';
    color: #c9a961;
    margin-right: 10px;
}

/* Animation */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .community-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .community-list li {
        justify-content: center;
    }
}

/* === Location Section === */
#location {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

#location h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
}

#location .lead {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Map + Card Container */
.location-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}

/* Google Map Styling */
.map {
  flex: 1 1 600px;
  width: 100%;
  min-width: 350px;
  height: 450px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Location Card Styling */
.location-card {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.location-card h3 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.location-card p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
}

.location-card i {
  color: #d13c6f;
  margin-right: 8px;
}

/* Button */
.direction-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #d13c6f;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.direction-btn:hover {
  background: #a32e56;
}

/* Responsive Design */
@media (max-width: 992px) {
  .location-container {
    flex-direction: column;
    align-items: center;
  }

  .map,
  .location-card {
    width: 100%;
  }
}

/* Lifestyle Section */
.lifestyle-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    padding: 60px 40px;
    font-family: 'Montserrat', sans-serif;
    flex-wrap: wrap;
    margin: 0 auto;
    box-sizing: border-box;
}

.lifestyle-text {
    font-size: 35px;
    font-weight: 700;
    color: #000;
    width: 35%;
    min-width: 250px;
}

.lifestyle-section h2 {
    font-size: 45px;
    color: black;
    margin-bottom: 20px;
}

.lifestyle-list {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lifestyle {
    text-align: center;
}

.lifestyle img {
    width: 70px;
    height: 65px;
    object-fit: contain;
}

.lifestyle hr {
    border: none;
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, #d2ae6d,#A82682);
    margin: 10px auto;
}

.lifestyle p {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

/* ===== Floorplans Section ===== */
#floorplans {
  text-align: center;
  padding: 80px 5%;
}

#floorplans h2 {
  font-size: 2.2rem;
  color: var(--primary, #383535);
  margin-bottom: 0.5rem;
}

#floorplans .lead {
  color: var(--muted, #292727);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ===== Grid Layout ===== */
.floorplans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

/* ===== Card Styling ===== */
.fp-card {
  background: var(--card, #20142d);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.fp-card h4 {
  margin: 0;
  padding: 14px 16px;
  background: linear-gradient(90deg, #2a1b3d, #3d2560);
  color: var(--secondary, #d9a2ff);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
}

.fp-card img {
  width: 100%;
  filter: blur(4px);
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* ===== Popup Modal ===== */
.img-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.9);
}

.img-modal img {
  margin: 5% auto;
  display: block;
  width: 85%;
  max-width: 900px;
  border-radius: 8px;
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.img-modal .close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.img-modal .close:hover {
  color: #d9a2ff;
}

#caption {
  text-align: center;
  color: #ccc;
  margin-top: -20px;
  font-size: 1rem;
}

/* About & Contact Section */
.about-contact-section {
    padding: 30px 30px;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.about-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.brand-header {
    text-align: center;
}

.brand-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.tagline {
    font-size: 16px;
    color: #666;
    font-style: italic;
    font-weight: 500;
}

.about-text h2 {
    font-size: 32px;
    color: #D4AF37;
    margin-bottom: 5px;
    font-weight: 600;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
}

.qr-section {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.qr-item {
    text-align: center;
}

.qr-code {
    width: 120px;
    height: 120px;
    padding: 10px;
    background: white;
    border: 3px solid #af2490;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(175, 36, 144, 0.15);
}

.qr-label {
    font-size: 13px;
    color: #333;
    font-weight: 600;
    line-height: 1.5;
}

/* Enquiry Form Container */
.enquiry-form-container {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 36px;
    color: #af2490;
    margin-bottom: 35px;
    font-weight: 700;
    text-align: center;
}

.enquiry-form {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.enquiry-form input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.enquiry-form input:focus {
    outline: none;
    border-color: #af2490;
    background: white;
    box-shadow: 0 0 0 3px rgba(175, 36, 144, 0.1);
}

.enquiry-form input::placeholder {
    color: #999;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #af2490;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #8f1d75;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(175, 36, 144, 0.3);
}

/* Social Footer */
.social-footer {
    text-align: center;
    padding-top: 12px;
    border-top: 2px solid #f0f0f0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #af2490;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(175, 36, 144, 0.3);
}

.copyright {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.privacy-link {
    color: #af2490;
    text-decoration: underline;
    font-weight: 600;
}

.privacy-link:hover {
    color: #D4AF37;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .qr-section {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-contact-section {
        padding: 30px 20px;
    }
    
    .about-content,
    .enquiry-form-container {
        padding: 35px 25px;
    }
    
    .brand-logo {
        max-width: 200px;
    }
    
    .about-text h2 {
        font-size: 26px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .qr-section {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .about-contact-section {
        padding: 30px 15px;
    }
    
    .about-content,
    .enquiry-form-container {
        padding: 25px 20px;
    }
    
    .brand-logo {
        max-width: 120px;
    }
    
    .about-text h2 {
        font-size: 22px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .form-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .qr-code {
        width: 120px;
        height: 120px;
    }
    
    .qr-label {
        font-size: 12px;
    }
    
    .enquiry-form input {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 16px;
        font-size: 16px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .copyright {
        font-size: 11px;
    }
}
/* POPUP OVERLAY */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

/* POPUP BOX */
.popup-container {
    background: white;
    width: 100%;
    max-width: 550px;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    animation: popupBounce 0.4s ease-out;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* POPUP CLOSE BUTTON */
.popup-close {
    position: absolute;
    right: 20px;
    top: 12px;
    font-size: 32px;
    cursor: pointer;
    color: #af2490;
    transition: 0.3s;
}

.popup-close:hover {
    color: #D4AF37;
}

/* POPUP TITLE */
.popup-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
    color: #af2490;
    text-transform: uppercase;
    font-weight: 700;
}

/* POPUP FORM */
.popup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup-row {
    display: flex;
    gap: 15px;
}

.popup-row input {
    flex: 1;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #eaeaea;
    border-radius: 8px;
    font-size: 15px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.popup-form input:focus,
.popup-form textarea:focus {
    border-color: #af2490;
    background: white;
    box-shadow: 0 0 8px rgba(175,36,144,0.2);
}

.popup-form textarea {
    min-height: 120px;
    resize: none;
}

/* BUTTON */
.popup-submit-btn {
    background: #af2490;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    transition: 0.3s ease;
}

.popup-submit-btn:hover {
    background: #8f1d75;
    box-shadow: 0 8px 20px rgba(175,36,144,0.3);
}

/* ANIMATION */
@keyframes popupBounce {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes popupClose {
    from { transform: scale(1); opacity: 1; }
    to { transform: scale(0.7); opacity: 0; }
}



/* ========== RESPONSIVE DESIGN ========== */

/* Large Tablets and Small Laptops (1024px and below) */
@media (max-width: 1024px) {
    nav {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .contact-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .hero {
        padding: 0 40px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 28px;
    }

    .stats-section,
    .community-section {
        padding: 60px 40px;
        gap: 40px;
    }

    .stats-content h3 {
        font-size: 28px;
    }

    .lifestyle-section {
        padding: 50px 30px;
    }

    .lifestyle-text {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .lifestyle-list {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .location-card {
        right: 30px;
        width: 350px;
        padding: 30px;
    }

    .location-card h2 {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    nav {
        padding: 12px 15px;
    }

    .logo img {
        height: 40px;
    }

    .nav-links {
        display: none;
    }

    .contact-btn {
        padding: 8px 15px;
        font-size: 11px;
    }

    .hero {
        padding: 0 30px;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 24px;
    }

    .stats-section,
    .community-section {
        grid-template-columns: 1fr;
        padding: 50px 30px;
        gap: 30px;
    }

    .stats-image img {
        max-height: 350px;
    }

    .stats-content h2 {
        font-size: 12px;
    }

    .stats-content h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .stats-grid {
        gap: 20px;
    }

    .stat-number {
        font-size: 40px;
    }

    .lifestyle-section {
        padding: 40px 20px;
    }

    .lifestyle-section h2 {
        font-size: 32px;
    }

    .lifestyle-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .community-image {
        height: 300px;
    }

    .community-content {
        padding: 40px 30px;
    }

    .location-section {
        padding: 40px 15px;
    }

    .map-container iframe {
        height: 400px;
    }

    .location-card {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }

    .layout-section {
        padding: 40px 15px;
    }

    .layout-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .layout-container {
        gap: 20px;
    }

    .visit-section {
        padding: 60px 30px;
    }

    .visit-section h3 {
        font-size: 28px;
    }

    footer {
        padding: 40px 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
    nav {
        padding: 10px;
    }

    .logo img {
        height: 35px;
    }

    .contact-btn {
        padding: 6px 12px;
        font-size: 10px;
    }

    .hero {
        padding: 0 20px;
        min-height: 350px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 20px;
    }

    .stats-section,
    .community-section {
        padding: 40px 20px;
    }

    .stats-content h3 {
        font-size: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 12px;
    }

    .lifestyle-section {
        padding: 30px 15px;
    }

    .lifestyle-section h2 {
        font-size: 24px;
    }

    .lifestyle-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .lifestyle img {
        width: 60px;
        height: 55px;
    }

    .lifestyle p {
        font-size: 14px;
    }

    .community-content {
        padding: 30px 20px;
    }

    .community-list {
        line-height: 2;
    }

    .map-container iframe {
        width: 100%;
        height: 300px;
    }

    .location-card {
        padding: 25px;
    }

    .location-card h2 {
        font-size: 24px;
    }

    .location-card p {
        font-size: 16px;
    }

    .direction-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .layout-title {
        font-size: 20px;
    }

    .visit-section {
        padding: 50px 20px;
    }

    .visit-section h3 {
        font-size: 22px;
        line-height: 1.4;
    }

    footer {
        padding: 30px 20px 15px;
    }

    .footer-column h4 {
        font-size: 13px;
    }

    .footer-column ul li {
        font-size: 12px;
    }
}

/* Extra Small Devices (375px and below) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .stats-content h3 {
        font-size: 18px;
    }

    .lifestyle-section h2 {
        font-size: 20px;
    }

    .visit-section h3 {
        font-size: 20px;
    }
}
.map-container {
  width: 58%;
  min-width: 300px;
}

.map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}
