* {
  margin: 0;
  /* padding: 0; */
  box-sizing: border-box;
}

:root {
  --primary: #2c3e50;
  --secondary: #e74c3c;
  --accent: #f39c12;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
  /* --border: #dee2e6; */
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Floating Icons */
.floating-icons {
  position: fixed;
  bottom: 20px;
  z-index: 999;
  width: 100%; /* Ensure it takes up the full width */
  display: flex;
  justify-content: space-between; /* Ensures space between the icons */
  padding: 0 20px; /* Optional: adds space on the left and right */
}

.floating-icons a {
  display: block;
  background-color: #25d366; /* WhatsApp color */
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

/* WhatsApp icon (left) */
.whatsapp-icon {
  background-color: #25d366; /* WhatsApp color */
}

.whatsapp-icon:hover {
  background-color: #128c7e; /* WhatsApp hover color */
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Call icon (right) */
.call-icon {
  background-color: #34b7f1; /* Call button color */
}

.call-icon:hover {
  background-color: #007bb5; /* Call hover color */
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================== TOPBAR ===================== */
.topbar {
  background-color: #2c3e50;
  color: white;
  padding: 10px 0;
}

.topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Topbar Left Section (Contact Info) */
.topbar-left {
  display: flex;
  gap: 20px;
}

.topbar-left span {
  display: inline-block;
}

/* Topbar Right Section (Social Icons) */
.topbar-right {
  display: flex;
  gap: 20px;
}

.topbar-right a {
  font-size: 18px;
  color: #ffffff;
  transition: color 0.3s;
}

.topbar-right a:hover {
  color: #ff6b9d; /* Hover color for social icons */
}

/* ===================== MOBILE & TABLET VIEW ===================== */

/* Mobile View */
@media (max-width: 480px) {
  .topbar-left, .topbar-right ,.topbar{
    text-align: center;
    width: 100%;
    display: none;
  }

  .topbar-left span {
    display: block;
    margin-bottom: 5px; /* Space between contact number and email */
  }

  .topbar-right {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

  .topbar-right a {
    font-size: 20px;
    color: #9b59b6; /* Change social icons color */
  }

  .topbar-right a:hover {
    color: #ff6b9d; /* Hover color */
  }
}

/* Tablet View */
@media (max-width: 768px) {
  .topbar-left, .topbar-right {
  
    width: 100%;
  }

  .topbar-left {
    margin-bottom: 10px;
  }

  .topbar-right {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }
}

/* Desktop View (Larger Screens) */
@media (min-width: 769px) {
  .topbar-left {
    flex: 1;
  }

  .topbar-right {
    display: flex;
    gap: 20px;
  }
}

/* ===================== HEADER ===================== */
/* ===================== HEADER ===================== */
.header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 90px; /* Adjust the height as per your preference */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

/* Logo Image */
.logo img {
  height: 90px;
  width: 100px;
  display: block;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px; /* Adjusted to create space between the items */
  margin: 0;
  padding: 0;
  justify-content: flex-start; /* Ensures items are aligned towards the left */
}

.nav-menu li {
  margin-right: 20px; /* Adds more space to the right */
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #0077ff;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive Menu Toggle */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    color: #333;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }
}

/* ===================== HERO SECTION ===================== */
/* CTA Section */
.hero {
  min-height: 40vh;
  background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1600') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(243, 156, 18, 0.1), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.5rem;  /* Default size for larger screens */
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 5px;
}

.btn-primary {
  background: linear-gradient(135deg, #FF7F50, #FF6347); /* Orange to Red gradient */
  color: white;
  box-shadow: 0px 8px 20px rgba(255, 99, 71, 0.4); /* Light red shadow */
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF6347, #FF4500); /* Darker red gradient on hover */
  transform: translateY(-4px);
  box-shadow: 0px 10px 30px rgba(255, 69, 0, 0.6); /* Stronger shadow on hover */
}

.btn-secondary {
  background: #2c3e50; /* Dark blue-grey background */
  color: white;
  border: 2px solid #34495e; /* Subtle border */
  font-weight: 600;
  text-transform: uppercase;
}

.btn-secondary:hover {
  background: #34495e; /* Lighter grey on hover */
  color: #ecf0f1; /* Light color for text on hover */
  transform: translateY(-3px);
  box-shadow: 0px 6px 15px rgba(44, 62, 80, 0.4); /* Subtle shadow effect */
}

/* ===================== Mobile View ===================== */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.4rem; /* Reduced font size for mobile */
  }

  .hero p {
    font-size: 1rem; /* Font size for mobile */
  }

  .btn-primary,
  .btn-secondary {
    font-size: 1rem; /* Button font size for mobile */
  }
}

/* ===================== Tablet View ===================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;  /* Font size for tablets */
  }

  .hero p {
    font-size: 1.2rem;  /* Font size for tablets */
  }

  .btn-primary,
  .btn-secondary {
    font-size: 1.2rem;  /* Button font size for tablets */
  }
}

/* ===================== Desktop View (Larger Screens) ===================== */
@media (min-width: 769px) {
  .hero h1 {
    font-size: 3rem;  /* Font size for laptops and larger screens */
  }

  .hero p {
    font-size: 1.8rem;  /* Font size for laptops and larger screens */
  }

  .btn-primary,
  .btn-secondary {
    font-size: 1.5rem;  /* Button font size for laptops and larger screens */
  }
}




/* Featured Properties */
/* Home Section */
.home-section-1 {
  padding: 80px 0;
}

.home-section-1 .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.home-section-1 .section-subtitle {
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.home-section-1 .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
}

.home-section-1 .section-description {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.home-section-1 .properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.home-section-1 .property-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.home-section-1 .property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ===== IMAGES ROW (Desktop = 4 in a row) ===== */
.home-section-1 .property-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* single row of 4 */
  gap: 14px;
  padding: 0; /* << removed padding to remove side space */
}

/* small, neat tiles */
.home-section-1 .property-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f6f7;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.home-section-1 .property-image:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
  opacity: 0.95;
}

.home-section-1 .property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  display: block;
}

.home-section-1 .property-image:hover img {
  transform: scale(1.06); /* smooth zoom */
}

/* Badges/price (optional) */
.home-section-1 .property-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--secondary); color: var(--white);
  padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 600;
}
.home-section-1 .property-price {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(255,255,255,.95);
  padding: 6px 12px; border-radius: 6px; font-weight: 700; color: var(--primary); font-size: 16px;
}

.home-section-1 .property-content {
  padding: 22px;
}

.home-section-1 .property-title {
  font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 10px;
}

.home-section-1 .property-location {
  color: var(--gray); display: flex; align-items: center; gap: 8px; margin-bottom: 18px;
}

.home-section-1 .property-features {
  display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border);
}
.home-section-1 .property-feature {
  display: flex; align-items: center; gap: 8px; color: var(--gray); font-size: 14px;
}
.home-section-1 .property-feature i { color: var(--secondary); }

/* ===== RESPONSIVE ===== */

/* Tablet: 2 images per row */
@media (max-width: 992px) {
  .home-section-1 .property-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .home-section-1 .property-image { border-radius: 10px; }
}

/* Mobile: 1 image per row */
@media (max-width: 576px) {
  .home-section-1 .property-images {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 0; /* vertical breathing room only */
  }
  .home-section-1 .property-image {
    aspect-ratio: 16 / 10;
  }
}

/* === Laptop gutter fix: full-width container & tighter gaps === */
@media (min-width: 1024px) and (max-width: 1440px) {
  .home-section-1 .container-1 {
    max-width: 100%;
    padding-left: 24px;   /* small, consistent side padding */
    padding-right: 24px;
  }
  .home-section-1 .properties-grid { gap: 24px; }
  .home-section-1 .property-images { gap: 16px; } /* tighter between tiles */
}

/* Ultra-wide: don't cap width (remove side white space) */
@media (min-width: 1400px) {
  .home-section-1 .property-images {
    max-width: none;
    margin: 0;
  }
}


/* Home Service Section */
.home-service {
    text-align: center;
  
    background-color: #ffffff;
  
}

/* Heading Style */
.home-service h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
}

/* Paragraph Margin Fix */
.home-service p {
    font-size: 18px;
    color: #777;
    margin-bottom: 30px; /* Add some space below the paragraph */
}

/* Service Grid */
.services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

/* Individual Service Card */
.service {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

/* Hover effect for cards */
.service:hover {
    transform: translateY(-10px);
}

/* Icon for each service */
.service-icon {
    width: 110px;
    height: 110px;
    margin-bottom: 15px;
}

/* Service Title */
.service h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

/* Service Description */
.service p {
    font-size: 16px;
    color: #777;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .services {
        flex-direction: column;
        align-items: center;
    }
    .service {
        width: 80%;
        margin-bottom: 20px;
    }
}



/* Section 2 */
.home-section-2 {
  padding: 80px 0;
}

.home-section-2 .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.home-section-2 .section-subtitle {
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.home-section-2 .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
}

.home-section-2 .section-description {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.home-section-2 .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.home-section-2 .feature-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  padding: 25px;
  text-align: center;
}

.home-section-2 .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.home-section-2 .feature-icon {
  font-size: 40px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.home-section-2 .feature-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.home-section-2 .feature-description {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
}

/* Testimonials */
/* .home-section-3 {
  padding: 80px 0;
} */

.home-section-3 .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.home-section-3 .section-subtitle {
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.home-section-3 .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
}

.home-section-3 .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-items: center;
}

.home-section-3 .testimonial-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  padding: 25px;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.home-section-3 .testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.home-section-3 .testimonial-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.home-section-3 .testimonial-author {
  margin-bottom: 15px;
}

.home-section-3 .testimonial-name {
  font-weight: 700;
  color: var(--primary);
}

.home-section-3 .testimonial-role {
  color: var(--gray);
  font-size: 14px;
}

.home-section-3 .testimonial-rating {
  margin-bottom: 15px;
}

.home-section-3 .testimonial-rating i {
  color: var(--secondary);
  font-size: 18px;
}

.home-section-3 .testimonial-text {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 20px;
}

/* CTA Section */
/* CTA Section */
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px; /* Added padding for top and bottom spacing */
  background-color: #f0f0f0; /* Optional: background color for the section */
  text-align: center; /* Ensures the text is centered */
}

.cta-section .container {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  text-align: center; /* Centers the text */
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #333; /* Adjusted color for better contrast */
}

.cta-section p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Button Styling */
.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Button 1: Contact Us Now */
.btn-primary {
  background: linear-gradient(135deg, #FF7F50, #FF6347); /* Orange to Red gradient */
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF6347, #FF4500); /* Darker red gradient on hover */
  transform: translateY(-4px);
  box-shadow: 0px 10px 30px rgba(255, 69, 0, 0.6); /* Stronger shadow on hover */
}

/* Button 2: Schedule a Viewing */
.btn-secondary {
  background: #2c3e50; /* Dark blue-grey background */
  color: white;
  border: 2px solid #34495e; /* Subtle border */
  font-weight: 600;
  text-transform: uppercase;
}

.btn-secondary:hover {
  background: #34495e; /* Lighter grey on hover */
  color: #ecf0f1; /* Light color for text on hover */
  transform: translateY(-3px);
  box-shadow: 0px 6px 15px rgba(44, 62, 80, 0.4); /* Subtle shadow effect */
}



/* Footer */
.footer {
  background: linear-gradient(180deg, #0a1222, #07101e);
  color: white;
  border-top: 1px solid #0b1a33;
  padding-top: 40px;
}

/* ===== DESKTOP / TABLET ===== */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;                 /* <— centered (no left gap) */
  padding: 0 20px 30px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.3fr;
  gap: 24px;
  align-items: start;
}

/* Headings & text */
.footer h4 { font-size: 16px; font-weight: 800; margin-bottom: 10px; }
.footer p, .footer a, .footer li, .footer small { font-size: 14px; color: gray; text-decoration: none; }

/* Brand block */
.footer-logo{ display:flex; flex-direction:column; align-items:flex-start; text-align:left; }
.footer-logo img{ width:100px; height:90px; margin:0 0 10px 0; display:block; }
.footer-logo p{ max-width:340px; margin:0 0 14px 0; line-height:1.6; }
.footer-social-media{ display:flex; gap:10px; justify-content:flex-start; align-items:center; }
.footer-social-media a{
  width:36px; height:36px; display:grid; place-items:center; border-radius:8px;
  background:#0c1a2f; border:1px solid #1f2a44; color:#e5e7eb; text-decoration:none;
  transition:transform .15s ease, filter .2s ease;
}
.footer-social-media a:hover{ filter:brightness(1.15); transform:translateY(-2px); }

/* Lists */
.footer-links ul, .footer-property-types ul{ list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.footer-links a, .footer-property-types a{ text-decoration:none; color:#94a3b8; }
.footer-links a:hover, .footer-property-types a:hover{ color:#ffffff; }

/* Contact */
.footer-contact-info p{ margin:6px 0; display:flex; align-items:center; gap:8px; }
.footer-contact-info i{ color:#22c55e; }

/* Newsletter */
.footer-newsletter p{ margin-bottom:10px; }
.footer-form{
  display:flex; gap:8px; background:#0c1a2f; border:1px solid #1f2a44; padding:6px; border-radius:10px;
}
.footer-form input{ flex:1; background:whitesmoke; border:none; outline:none; color:black; padding:10px; }
.footer-form input::placeholder{ color:#7e8aa6; }
.footer-form button{
  background:linear-gradient(135deg,#22c55e,#14b8a6); color:#03110a; font-weight:700; border:none; border-radius:8px;
  padding:10px 14px; cursor:pointer; transition:transform .15s ease, filter .2s ease;
}
.footer-form button:hover{ transform:translateY(-1px); filter:brightness(1.05); }

/* Bottom */
.footer-bottom{ border-top:1px solid #1f2a44; text-align:center; padding:14px; color:#90a1c3; font-size:13px; }

/* ===== BREAKPOINTS ===== */
/* ===== Laptops: 1024px–1440px par desktop jaisa same layout rakho ===== */
@media (min-width: 1024px) and (max-width: 1440px) {
  .footer-container{
    /* desktop columns ko hi enforce karo */
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1.3fr !important;
    gap: 24px !important;
    justify-items: initial;   /* center nahi — desktop jaisa */
    text-align: initial;
  }
  /* newsletter apni column me hi rahe (span na ho) */
  .footer-newsletter{
    grid-column: auto !important;
    max-width: none;
    margin: 0;
  }
}

@media (max-width:768px){
  .footer-container{ grid-template-columns: 1fr 1fr; }
  .footer-newsletter{ grid-column: span 2; }
}

/* ===== MOBILE ≤600px: custom order + centered ===== */
@media (max-width:600px){
  .footer-container{
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "logo"
      "links"
      "types"
      "contact"
      "newsletter";
    gap: 18px;
    padding: 0 16px 24px;
    justify-items: center;
    text-align: center;
  }

  /* map sections to areas (order) */
  .footer-logo{ grid-area: logo; align-items:center !important; text-align:center !important; }
  .footer-links{ grid-area: links; }
  .footer-property-types{ grid-area: types; }
  .footer-contact-info{ grid-area: contact; }
  .footer-newsletter{ grid-area: newsletter; max-width:420px; margin:0 auto; }

  /* inner centering */
  .footer-logo img{ margin:0 auto 10px auto !important; }
  .footer-logo p{ margin:0 auto 16px auto !important; }
  .footer-social-media{ justify-content:center !important; }

  .footer-links ul, .footer-property-types ul{ justify-items:center; }
  .footer-links a, .footer-property-types a{ display:inline-block; }

  .footer-contact-info p{ justify-content:center !important; }

  .footer-form{ flex-direction:column; align-items:stretch; }
  .footer-form input{ text-align:center; }
  .footer-form button{ width:100%; }
}

/* --- Contact Info: add vertical gap between items --- */
.footer-contact-info{
  display: grid;         /* stack items with uniform gaps */
  gap: 12px;             /* increase/decrease as you like */
}
.footer-contact-info p{
  margin: 0;             /* rely on grid gap instead of margins */
  display: flex;
  align-items: center;
  gap: 10px;             /* icon ↔ text spacing */
}

/* --- Newsletter: spacing between form and privacy note --- */
.footer-newsletter p{
  margin: 0 0 12px;      /* title/desc and form ke beech space */
}
.footer-form{
  margin-bottom: 12px;   /* form ke neeche gap (note se pehle) */
}
.footer-newsletter small{
  display: block;
  margin-top: 8px;       /* extra breathing room below form */
  color: #7e8aa6;        /* subtle tone */
}

/* (optional) mobile par thoda extra gap pleasant lagta hai */
@media (max-width: 600px){
  .footer-contact-info{ gap: 14px; }
  .footer-form{ margin-bottom: 14px; }
  .footer-newsletter small{ margin-top: 10px; }
}

/* Footer Bottom Styles */
.footer-bottom {
  border-top: 1px solid #1f2a44;
  text-align: center;
  padding: 14px;
  color: #90a1c3;
  font-size: 13px;
}

/* Developer Link Styles */
.developer-link {
  color: gray; /* Make the link text gray */
  text-decoration: none; /* Remove underline */
  font-weight: 600;
}

.developer-link:hover {
  color: #0077ff; /* Color on hover */
  text-decoration: underline; /* Add underline on hover */
}
