:root {
  --card-bg: #e0cdc2;
  --dark-brown: #2d1a12;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  color: #2b1b12;
}

/* HEADER */
.header {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  width: 100%;
  padding: 14px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, #daccc1, #fad2a6);
  border-radius: 12px;
  z-index: 1000;
}

.logo {
  font-size: 20px;
  font-weight: 600;
}

.logo img {
  width: 100px;
  height: auto;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  color: #2b1b12;
  padding: 8px 16px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

.nav a:hover {
  background-color: #2b1b12;
  color: #f7cea4;
  transform: translateY(-2px);
}

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

.search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 12px;
  border: none;
  background: #2b1b12;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}

.search-btn:hover {
  background: #1f140e;
}

/* HERO SECTION */
.hero {
  max-width: 100%;
  padding: 80px 5% 0px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background-color: #fdf6ef;
}

.hero-content {
  flex: 1;
  max-width: 480px;
  margin-top: -60px;
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
  color: #2b1b12;
  display: block;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #4b3a30;
  margin-bottom: 32px;
  max-width: 450px;
}

.btn-dark {
  padding: 14px 28px;
  background: #2b1b12;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
}
.btn-dark:hover {
  background: #1f140e;
}

/* HERO IMAGE */

.hero-image {
  flex: 1.5;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

/* SEARCH BAR */
.search-bar {
  max-width: 900px;
  margin: -60px auto 60px auto;
  display: flex;
  align-items: center;
  border-radius: 12px;
  background: linear-gradient(to bottom, #fad2a6, #daccc1);
  padding: 30px 20px;
  gap: 12px;
  position: relative;
  z-index: 10;
}
/* FIELD CARD */
.field {
  width: 100%;
  flex-basis: 100%;
  transition: all 0.2s ease-in-out;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid #fad2a6;
}

.field:hover {
  border: 1px solid #fad2a6;
  outline: none;
  box-shadow:
    inset 0px 0px 10px rgba(255, 102, 0, 0.5),
    inset 0px 0px 10px rgba(255, 212, 59, 0.5),
    0px 0px 100px rgba(255, 212, 59, 0.5),
    0px 0px 100px rgba(255, 102, 0, 0.5);
}

/* SELECT WRAPPER */
.select-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.select-wrapper img {
  width: 18px;
  height: 18px;
}

/* SELECT */
.field select {
  width: 100%;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  color: #2b1b12;
  cursor: pointer;
}

.field label {
  font-size: 11px;
  font-weight: 600;
  color: #8b6b52;
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* FOCUS STATE (SAME AS INPUT-CONTAINER STYLE) */
.field:focus-within {
  border-color: #2b1b12;
  box-shadow: 0 6px 18px rgba(43, 27, 18, 0.18);
}

/* PLACEHOLDER OPTION */
.field select option[value=""] {
  color: #9c7f67;
}

/* BUTTON */
.search-btn {
  background: #2b1b12;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s ease;
}

.search-btn:hover {
  background: #1f140e;
}

/* Section Container */
.about-section {
  padding: 80px 10%;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
}

.about-section .container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Image Styling */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(120, 49, 5, 0.1);
}

/* Content Styling */
.about-content {
  flex: 1;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #2d1a0f;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Stats Styling */
.stats-grid {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #2d1a0f;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: #888;
  margin: 0;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .about-section .container {
    flex-direction: column;
    text-align: center;
  }
  .stats-grid {
    justify-content: center;
    gap: 20px;
  }
  .section-title {
    font-size: 28px;
  }
}
.why-choose-us {
  padding: 60px 20px;
  text-align: center;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d1a12;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  font-weight: 500;
}

/* Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Card Styling */
.feature-card {
  background: linear-gradient(to bottom, #fad2a6, #daccc1);
  padding: 40px 30px;
  border-radius: 20px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-10px);
}

/* Icon Box Styling */
.icon-box {
  background-color: #fff;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.icon-box img {
  height: 52px;
  width: 53px;
}

/* Text inside cards */
.feature-card h3 {
  font-size: 1.3rem;
  color: #2d1a12;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.residences-section {
  padding: 80px 20px;
  text-align: center;
}

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

.main-title {
  font-size: 2.2rem;
  color: #2d1a12;
  margin-bottom: 50px;
  font-weight: 700;
}

/* Grid setup */
.residences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Card Style */
.residence-card {
  background: linear-gradient(to bottom, #908983, #fad2a6);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.residence-card:hover {
  transform: translateY(-10px);
}

/* Image styling */
.image-container {
  width: 100%;
  height: 250px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Area */
.card-content {
  padding: 25px;
  text-align: left;
}

.location {
  font-weight: 700;
  color: #2d1a12;
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.features {
  display: flex;
  gap: 20px;
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.features i {
  margin-right: 5px;
}

.features {
  display: flex;
  gap: 100px;
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2d1a12;
  font-size: 0.95rem;
  font-weight: 600;
}

.feature-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Footer Section of Card */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sign-up-btn {
  background-color: #231916;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.sign-up-btn:hover {
  background-color: #444;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d1a12;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .residences-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-section {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}

.testimonial-header h2,
.testimonial-header h3 {
  margin: 0;
  color: #333;
}

.testimonial-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.testimonial-header h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.slider-container {
  position: relative;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.card-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background: linear-gradient(to bottom, #daccc1, #fad2a6);
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  display: flex;
  flex-direction: column;
}

.card-bg-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.profile-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid #fff;
}

.profile-info {
  flex-grow: 1;
}

.profile-info h4,
.profile-info p {
  margin: 0;
  color: #333;
}

.profile-info h4 {
  font-weight: bold;
  font-size: 1.1rem;
}

.profile-info p {
  font-size: 0.9rem;
  color: #555;
}

.rating {
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

.rating .fa-star {
  color: #f5c518;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  margin: 0;
  flex-grow: 1;
}

.slider-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: #3b322c;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-btn:hover {
  background-color: #5c4d43;
}

.slider-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px); /* 2 cards visible */
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%; /* 1 card visible */
  }
}

/* Scoped Variables for this section only */
.help-section-container {
  --hs-primary-dark: #2c1d14; /* Dark Brown text/button */
  --hs-secondary-beige: #dcc9be; /* Input background */
  --hs-bg-white: #ffffff;

  background-color: var(--hs-bg-white);
  padding: 60px 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  font-family: "Poppins", sans-serif;
}

.help-section-content {
  width: 100%;
  max-width: 900px;
  text-align: center;
}

/* Headings Scoped */
.help-section-title {
  font-family: "Poppins", sans-serif;
  color: var(--hs-primary-dark);
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 10px;
  margin-top: 0;
}

.help-section-subtitle {
  font-family: "Poppins", sans-serif;
  color: var(--hs-primary-dark);
  font-size: 2.2rem;
  margin-bottom: 30px;
  margin-top: 0;
  font-weight: 700;
}

/* Features Area */
.help-section-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.help-section-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--hs-primary-dark);
  font-weight: 600;
  font-size: 1rem;
}

.help-section-feature-item i {
  border: 2px solid var(--hs-primary-dark);
  border-radius: 50%;
  padding: 4px;
  font-size: 0.8rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Form Styling */
.help-section-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.help-section-input-group {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.help-section-input-group i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--hs-primary-dark);
  opacity: 0.7;
  pointer-events: none; /* Icon click through */
}

.help-section-email-input {
  width: 100%;
  padding: 16px 20px 16px 50px; /* Space for icon */
  background: linear-gradient(to bottom, #daccc1, #fad2a6);
  border: 2px solid transparent;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--hs-primary-dark);
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.help-section-email-input::placeholder {
  color: var(--hs-primary-dark);
  opacity: 0.6;
}

.help-section-email-input:focus {
  background-color: #fff;
  border-color: var(--hs-secondary-beige);
  box-shadow: 0 4px 12px rgba(44, 29, 20, 0.1);
}

.help-section-submit-btn {
  background-color: var(--hs-primary-dark);
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
}

.help-section-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(44, 29, 20, 0.3);
  background-color: #3e2b20;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .help-section-title {
    font-size: 2rem;
  }
  .help-section-subtitle {
    font-size: 1.8rem;
  }
  .help-section-features {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
  .help-section-form {
    flex-direction: column;
  }
  .help-section-submit-btn {
    width: 100%;
  }
}

/* Import Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

.dwello-footer-container {
  background: linear-gradient(to bottom, #fad2a6, #daccc1);
  --df-text-color: #483429; /* Dark Brown Text */

  /* Social Brand Colors */
  --fb-color: #1877f2;
  --insta-color: #e1306c;
  --x-color: #000000;

  background-color: var(--df-bg-color);
  color: var(--df-text-color);
  font-family: "Poppins", sans-serif;
  padding: 60px 20px;
  width: 100%;
}

.dwello-footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* --- Brand Section --- */
.dwello-footer-brand {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.dwello-footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--df-text-color);
}

.dwello-footer-tagline {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  opacity: 0.9;
}

/* --- Links Section --- */
.dwello-footer-links {
  flex: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.dwello-footer-column {
  min-width: 120px;
}

.dwello-footer-column h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.dwello-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dwello-footer-column ul li {
  margin-bottom: 12px;
}

/* --- 1. General Links Hover Effect (Underline Animation) --- */
.dwello-footer-column ul li a {
  text-decoration: none;
  color: var(--df-text-color);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

/* Line jo neeche banegi */
.dwello-footer-column ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--df-text-color);
  transition: width 0.3s ease;
}

/* Hover hone par line full width ho jayegi */
.dwello-footer-column ul li a:hover::after {
  width: 100%;
}

.dwello-footer-column ul li a:hover {
  color: #000; /* Thora sa dark ho jaye text */
}

/* --- 2. Social Media Links Special Styling --- */
/* (Is class ko specific banaya taake upar wala effect ispe na lage) */
.dwello-footer-social li a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Remove underline effect from social links text specifically */
.dwello-footer-social li a::after {
  display: none;
}

/* Icon Default Style */
.dwello-footer-social i {
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--df-text-color);
  border-radius: 8px; /* Modern Soft Square */
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Bouncy Effect */
  background-color: transparent;
  color: var(--df-text-color);
}

/* --- Hover: Real Brand Colors Show --- */

/* Text hover effect */
.dwello-footer-social li a:hover span {
  transform: translateX(5px);
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Instagram Hover */
.dwello-footer-social li a:hover .fa-instagram {
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  border-color: transparent;
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

/* Facebook Hover */
.dwello-footer-social li a:hover .fa-facebook-f {
  background-color: var(--fb-color);
  border-color: var(--fb-color);
  color: white;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

/* Twitter/X Hover */
.dwello-footer-social li a:hover .fa-x-twitter {
  background-color: var(--x-color);
  border-color: var(--x-color);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsiveness wahi same rahegi */
@media (max-width: 768px) {
  .dwello-footer-wrapper {
    flex-direction: column;
  }
  .dwello-footer-links {
    gap: 40px;
  }
}
/* =========================================
   RESPONSIVE DESIGN (MOBILE & TABLET FIXES)
   Paste this at the VERY END of your CSS file
   ========================================= */

/* --- Tablet & Small Laptops (Max Width: 1024px) --- */
@media (max-width: 1024px) {
  .hero {
    padding: 100px 5% 0px 5%;
    gap: 20px;
  }

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

  .hero-image img {
    max-width: 100%;
  }

  .search-bar {
    width: 90%;
  }
}

/* --- Mobile Devices (Max Width: 768px) --- */
@media (max-width: 768px) {
  /* 1. Header Fix */
  .header {
    position: relative; /* Mobile par fixed hatana behtar hai */
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    gap: 15px;
    border-radius: 0;
    padding: 15px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .header-right {
    width: 100%;
    justify-content: center;
  }

  /* 2. Hero Section Fix */
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 30px;
  }

  .hero-content {
    margin-top: 0;
    max-width: 100%;
  }

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

  .hero-content p {
    margin: 0 auto 20px auto;
  }

  .hero-image {
    justify-content: center;
    width: 100%;
  }

  /* 3. Search Bar Fix */
  .search-bar {
    flex-direction: column;
    margin: 30px auto; /* Negative margin remove kar diya mobile ke liye */
    width: 90%;
    padding: 20px;
    gap: 15px;
  }

  .field {
    width: 100%;
  }

  .search-btn {
    width: 100%;
    padding: 14px;
  }

  /* 4. About Section Fix */
  .about-section .container {
    flex-direction: column;
    gap: 40px;
  }

  .stats-grid {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

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

  /* 5. Residences / Grid Fix */
  .residences-grid,
  .features-grid {
    grid-template-columns: 1fr; /* Ek line mein ek card */
    padding: 0 10px;
  }

  .residence-card,
  .feature-card {
    width: 100%;
  }

  /* 6. Testimonials Fix */
  .testimonial-card {
    flex: 0 0 100%; /* Ek baar mein pura ek card dikhega */
    margin-bottom: 20px;
  }

  .card-slider {
    flex-direction: column; /* Slider ko vertical kar diya taake mobile pe saare dikhein */
    overflow: visible;
  }

  /* 7. Newsletter Section Fix */
  .help-section-title {
    font-size: 2rem;
  }

  .help-section-subtitle {
    font-size: 1.5rem;
  }

  .help-section-form {
    flex-direction: column;
    width: 100%;
  }

  .help-section-input-group {
    width: 100%;
  }

  .help-section-submit-btn {
    width: 100%;
  }

  /* 8. Footer Fix */
  .dwello-footer-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .dwello-footer-links {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .dwello-footer-brand {
    max-width: 100%;
    margin: 0 auto;
  }

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

  .dwello-footer-social {
    justify-content: center;
    display: flex;
    gap: 15px;
  }
}

/* --- Very Small Screens (Phones < 480px) --- */
@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .nav a {
    font-size: 14px;
    padding: 6px 10px;
  }
}
/* --- MOBILE MENU SIDEBAR (Left Slide) --- */

/* 1. Default: Menu Button Chupa rahega (Desktop pe) */
.menu-btn,
.close-btn {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #2d1a12;
}

/* 2. Mobile Styling (Max Width 768px) */
@media (max-width: 768px) {
  /* Header Layout Adjustment */
  .header {
    justify-content: space-between;
    padding: 15px 20px;
  }

  /* Menu Button Show karein */
  .menu-btn {
    display: block;
    order: 1; /* Left side par */
  }

  .logo {
    order: 2; /* Center/Right */
  }

  .header-right {
    order: 3;
  }

  /* --- SIDEBAR MENU STYLING --- */
  .nav {
    position: fixed;
    top: 0;
    left: -100%; /* Screen se bahar (Hidden) */
    width: 280px; /* Sidebar ki chourai */
    height: 100vh; /* Full Height */
    background: #fdf6ef; /* Hero wala background color */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 30px;
    gap: 25px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease-in-out; /* Smooth Slide Effect */
    z-index: 2000; /* Sabse upar */
  }

  /* Jab Menu Active ho (JS se class lagegi) */
  .nav.active {
    left: 0; /* Screen ke andar aa jayega */
  }

  /* Links Styling inside Sidebar */
  .nav a {
    font-size: 1.1rem;
    width: 100%;
    border-bottom: 1px solid rgba(45, 26, 18, 0.1);
    padding-bottom: 10px;
    color: #2d1a12;
  }

  .nav a:hover {
    background: transparent;
    color: #e1306c; /* Highlight color */
    transform: translateX(10px); /* Thora aage slide karega hover pe */
  }

  /* Close Button Styling */
  .close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2d1a12;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }
}

/* =========================================
   NEW PAGES STYLES (About, Agents, Services)
   ========================================= */

/* --- Page Hero Section --- */
.page-hero {
  padding: 180px 5% 80px 5%;
  background: linear-gradient(to bottom, #fad2a6, #daccc1);
  text-align: center;
}

.page-hero-content h1 {
  font-size: 48px;
  color: #2d1a12;
  margin-bottom: 10px;
}

.page-hero-content p {
  font-size: 18px;
  color: #4b3a30;
}

/* --- About Us Page --- */
.about-mission {
  padding: 80px 5%;
  text-align: center;
}

.about-mission-content .mission-image {
  width: 100%;
  max-width: 800px;
  border-radius: 24px;
  margin-top: 40px;
}

.team-section {
  padding: 80px 5%;
  background-color: #fdf6ef;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member-card {
  text-align: center;
}

.team-member-card img {
  width: 100%;
  border-radius: 24px;
  margin-bottom: 20px;
}

.team-member-card h3 {
  color: #2d1a12;
  margin-bottom: 5px;
}

.team-member-card p {
  color: #4b3a30;
}

/* --- Agents Page --- */
.agents-grid-section {
  padding: 80px 5%;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.agent-card {
  background: linear-gradient(to bottom, #fad2a6, #daccc1);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.agent-card:hover {
  transform: translateY(-10px);
}

.agent-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.agent-info {
  padding: 20px;
  text-align: center;
}

.agent-info h3 {
  color: #2d1a12;
  margin-bottom: 5px;
}

.agent-info p {
  color: #4b3a30;
  margin-bottom: 15px;
}

.agent-socials a {
  color: #2d1a12;
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.agent-socials a:hover {
  color: #ffffff;
}

/* --- Services Page --- */
.services-grid-section {
  padding: 80px 5%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(to bottom, #fad2a6, #daccc1);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 48px;
  color: #2d1a12;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #2d1a12;
  margin-bottom: 15px;
}

.service-card p {
  color: #4b3a30;
}

/* --- Active Nav Link --- */
.nav a.active {
  background-color: #2b1b12;
  color: #f7cea4;
}

/* ==============================================
   PRO & LUXURY STYLES FOR CONTENT PAGES
   ============================================== */

.dw-pro-page-section {
  padding: 80px 5%;
  background-color: #fdf6ef; /* Light, warm background */
}

.dw-pro-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(45, 26, 18, 0.08);
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* Two columns: left smaller, right larger */
  overflow: hidden;
}

/* --- Left Side (Info) --- */
.dw-pro-info-side {
  background: linear-gradient(to bottom, #fad2a6, #daccc1);
  padding: 50px 40px;
  color: #2d1a12;
}

.dw-pro-info-side h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.dw-pro-info-side p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 40px;
}

.dw-pro-info-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.dw-pro-info-block i {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 12px;
}

.dw-pro-info-block div h4 {
  font-size: 1.1rem;
  margin: 0 0 5px 0;
}

.dw-pro-info-block div p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 1;
}

/* --- Right Side (Form) --- */
.dw-pro-form-side {
  padding: 50px 40px;
}

.dw-pro-form-side h2 {
  font-size: 2.2rem;
  color: #2d1a12;
  margin-bottom: 30px;
}

.dw-pro-form-group {
  margin-bottom: 25px;
}

.dw-pro-form-group input,
.dw-pro-form-group textarea {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.dw-pro-form-group input::placeholder,
.dw-pro-form-group textarea::placeholder {
  color: #aaa;
}

.dw-pro-form-group input:focus,
.dw-pro-form-group textarea:focus {
  outline: none;
  border-color: #fad2a6;
  box-shadow: 0 0 0 4px rgba(250, 210, 166, 0.5);
}

.dw-pro-submit-btn {
  width: 100%;
  background-color: #2d1a12;
  color: #fff;
  padding: 18px;
  border-radius: 12px;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.dw-pro-submit-btn:hover {
  background-color: #1f140e;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .dw-pro-contact-container {
    grid-template-columns: 1fr;
  }
}
