/* ----- RESET & BASE ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.5;
  color: #1e2a3a;
  background-color: #fff;
  scroll-behavior: smooth;
}

:root {
  --primary: #ef7027;
  --primary-dark: #d45c1a;
  --primary-light: #fef1e8;
  --text-dark: #0f172a;
  --text-light: #475569;
  --border: #e2e8f0;
  --whatsapp-green: #25D366;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER SECTION ========== */
header {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

/* ========== LOGO IMAGE STYLES ========== */
.logo-area {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
}

.logo-image {
  height: 50px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.02);
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.5px;
  display: block;
  text-align: center;
}

.logo-text {
  display: none;
}

@media (max-width: 768px) {
  .logo-image {
    height: 40px;
  }
  .logo-subtitle {
    font-size: 0.6rem;
  }
}

@media (max-width: 550px) {
  .logo-image {
    height: 35px;
  }
  .logo-subtitle {
    font-size: 0.55rem;
  }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-btn,
.enquire-btn {
  padding: 10px 20px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.whatsapp-btn {
  background: #fff;
  border: 1.5px solid var(--whatsapp-green);
  color: #000;
  position: relative;
  overflow: hidden;
  animation: 2s infinite pulse;
}

.whatsapp-btn:hover {
  background: #e8f5e9;
  transform: scale(1.02);
  animation: none;
}

.whatsapp-icon {
  transition: transform 0.3s;
}

.whatsapp-btn:hover .whatsapp-icon {
  transform: scale(1.2) rotate(5deg);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.enquire-btn {
  background: var(--primary);
  color: #000;
  border: none;
  box-shadow: 0 2px 8px rgba(239, 112, 39, 0.3);
}

.enquire-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger.active .hamburger-line:first-child {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.main-nav {
  background: #fff;
  border-top: 1px solid var(--border);
  transition: 0.3s;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px 50px;
  list-style: none;
  padding: 12px 0;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-dark);
  transition: 0.2s;
  font-size: 0.9rem;
  position: relative;
}

.nav-links li a.active,
.nav-links li a:hover {
  color: #000;
  font-weight: 600;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links li a.active::after,
.nav-links li a:hover::after {
  width: 100%;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
  position: relative;
}

.hero .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .hero-subtitle {
  color: #ef7027;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero .hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero .btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #ef7027 0, #d45c1a 100%);
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(239, 112, 39, 0.4);
}

.hero .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .btn-secondary:hover {
  transform: translateY(-3px);
  background: #20b859;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .hero-subtitle {
    font-size: 1rem;
  }

  .hero .hero-description {
    max-width: 100%;
    font-size: 0.9rem;
    padding: 0 20px;
  }

  .hero .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero .btn-primary,
  .hero .btn-secondary {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 550px) {
  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero .hero-subtitle {
    font-size: 0.8rem;
  }

  .hero .hero-description {
    font-size: 0.85rem;
  }
}

/* ========================================
   BREADCRUMB SECTION
   ======================================== */
.breadcrumb-section {
  padding: 12px 0;
  background: #f8fafc;
  border-bottom: 1px solid #eef2f6;
}

.breadcrumb-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.breadcrumb-section p {
  font-size: 0.85rem;
  color: #5a6874;
  margin: 0;
}

.breadcrumb-section a {
  color: #ef7027;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-section a:hover {
  color: #d45c1a;
  text-decoration: underline;
}

/* Breadcrumb Responsive */
@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 10px 0;
  }

  .breadcrumb-section p {
    font-size: 0.8rem;
    text-align: center;
  }
}

@media (max-width: 550px) {
  .breadcrumb-section {
    padding: 8px 0;
  }

  .breadcrumb-section p {
    font-size: 0.75rem;
  }
}



/* ========================================
   LUXURY SENIOR LIVING SECTION
   ======================================== */
.content-section {
  padding: 60px 0;
  background: #fff;
}

.content-section:nth-child(even) {
  background: linear-gradient(145deg, #fefaf7 0%, #fff 100%);
}

.content-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.content-text {
  flex: 1;
}

.content-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.content-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ef7027, #ffb347);
  border-radius: 3px;
}

.content-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a6874;
  margin-bottom: 1.25rem;
}

.content-text p:last-child {
  margin-bottom: 0;
}

/* Internal Link */
.internal-link {
  color: #ef7027;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.internal-link:hover {
  color: #d45c1a;
  text-decoration: underline;
}

/* Image Styles */
.content-image {
  flex: 1;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.content-image img:hover {
  transform: scale(1.02);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
  .content-wrapper {
    gap: 40px;
  }

  .content-text h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .content-section {
    padding: 50px 0;
  }

  .content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .content-text h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .content-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .content-text p {
    font-size: 0.95rem;
    text-align: center;
  }

  .content-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 550px) {
  .content-section {
    padding: 40px 0;
  }

  .content-text h2 {
    font-size: 1.4rem;
  }

  .content-text p {
    font-size: 0.9rem;
  }

  .content-image img {
    border-radius: 16px;
  }
}



/* ========================================
   WHY CHOOSE SENIOR LIVING SECTION
   ======================================== */
.why-choose-section {
  padding: 80px 0;
  background: linear-gradient(145deg, #fefaf7 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative Background Element */
.why-choose-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 112, 39, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-choose-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(239, 112, 39, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-choose-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  background: rgba(239, 112, 39, 0.1);
  color: #ef7027;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(239, 112, 39, 0.15);
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a2a3a;
  margin-bottom: 12px;
}

.section-header h2 span {
  color: #ef7027;
  position: relative;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #5a6874;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.choose-card {
  background: #ffffff;
  padding: 35px 28px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #eef2f6;
  position: relative;
  overflow: hidden;
}

.choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef7027, #ffb347);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.choose-card:hover::before {
  transform: scaleX(1);
}

.choose-card:hover {
  transform: translateY(-8px);
  border-color: #ef7027;
  box-shadow: 0 20px 50px rgba(239, 112, 39, 0.1);
}

/* Card Icon - NO FLIP */
.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(239, 112, 39, 0.1), rgba(239, 112, 39, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  color: #ef7027;
  transition: all 0.4s ease;
}

.choose-card:hover .card-icon {
  background: linear-gradient(135deg, #ef7027, #d45c1a);
  color: #ffffff;
  /* transform: rotateY(180deg); REMOVED - No Flip */
}

/* Card Content */
.choose-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.choose-card:hover h3 {
  color: #ef7027;
}

.choose-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #5a6874;
  margin: 0;
}

/* Hover Line Animation */
.card-hover-line {
  width: 30px;
  height: 3px;
  background: #ef7027;
  margin: 16px auto 0;
  border-radius: 4px;
  transition: all 0.4s ease;
  opacity: 0.3;
}

.choose-card:hover .card-hover-line {
  width: 60px;
  opacity: 1;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1100px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    padding: 0 16px;
  }

  .choose-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .choose-card {
    padding: 28px 20px 24px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .choose-card h3 {
    font-size: 1.05rem;
  }

  .choose-card p {
    font-size: 0.88rem;
  }
}

@media (max-width: 550px) {
  .why-choose-section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-tag {
    font-size: 0.65rem;
    padding: 4px 14px;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .choose-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .choose-card {
    padding: 22px 16px 20px;
    border-radius: 16px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .choose-card h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .choose-card p {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .card-hover-line {
    width: 20px;
    height: 2px;
    margin-top: 12px;
  }

  .choose-card:hover .card-hover-line {
    width: 40px;
  }
}

@media (max-width: 400px) {
  .choose-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .choose-card {
    padding: 25px 20px;
  }
}




/* ========================================
   WHY GURGAON IS PREFERRED DESTINATION
   ======================================== */
.preferred-destination-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.preferred-destination-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.preferred-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

/* ===== LEFT CONTENT ===== */
.preferred-content {
  flex: 1.2;
}

.preferred-header {
  margin-bottom: 25px;
}

.preferred-tag {
  display: inline-block;
  background: rgba(239, 112, 39, 0.1);
  color: #ef7027;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 10px;
  border: 1px solid rgba(239, 112, 39, 0.15);
}

.preferred-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a2a3a;
  line-height: 1.2;
}

.preferred-content h2 span {
  color: #ef7027;
  position: relative;
}

.preferred-content h2 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(239, 112, 39, 0.15);
  border-radius: 4px;
  z-index: -1;
}

.preferred-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: #5a6874;
  margin-bottom: 1.2rem;
}

/* ===== BENEFITS ===== */
.benefits-container {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #eef2f6;
}

.benefits-container h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 16px;
  position: relative;
  padding-left: 16px;
}

.benefits-container h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background: linear-gradient(180deg, #ef7027, #ffb347);
  border-radius: 4px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.92rem;
  color: #5a6874;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li:hover {
  color: #1a2a3a;
  transform: translateX(4px);
}

.benefits-list li i {
  color: #ef7027;
  font-size: 1rem;
  width: 20px;
  flex-shrink: 0;
}

/* ===== RIGHT IMAGE ===== */
.preferred-image {
  flex: 1;
  position: relative;
}

.preferred-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  display: block;
}

.preferred-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(239, 112, 39, 0.12);
}

/* Image Stats Badges */
.image-stats {
  display: flex;
  gap: 12px;
  margin-top: -30px;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.stat-item {
  flex: 1;
  background: #ffffff;
  padding: 14px 12px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: #ef7027;
  box-shadow: 0 15px 35px rgba(239, 112, 39, 0.12);
}

.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ef7027;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  color: #5a6874;
  font-weight: 500;
  margin-top: 2px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .preferred-wrapper {
    gap: 40px;
  }

  .preferred-content h2 {
    font-size: 2rem;
  }

  .benefits-grid {
    gap: 8px 20px;
  }
}

@media (max-width: 992px) {
  .preferred-wrapper {
    flex-direction: column;
  }

  .preferred-content {
    order: 2;
  }

  .preferred-image {
    order: 1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .preferred-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .preferred-destination-section {
    padding: 60px 0;
  }

  .preferred-content {
    text-align: center;
  }

  .preferred-content h2 {
    font-size: 1.6rem;
  }

  .preferred-content p {
    font-size: 0.95rem;
    text-align: center;
  }

  .benefits-container {
    text-align: left;
  }

  .benefits-container h4 {
    text-align: center;
    padding-left: 0;
  }

  .benefits-container h4::before {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px 15px;
  }

  .benefits-list li {
    font-size: 0.88rem;
    padding: 5px 0;
  }

  .image-stats {
    margin-top: -20px;
    padding: 0 10px;
  }

  .stat-item {
    padding: 10px 8px;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }
}

@media (max-width: 550px) {
  .preferred-destination-section {
    padding: 50px 0;
  }

  .preferred-header {
    text-align: center;
  }

  .preferred-tag {
    font-size: 0.6rem;
    padding: 4px 12px;
  }

  .preferred-content h2 {
    font-size: 1.4rem;
  }

  .preferred-content p {
    font-size: 0.9rem;
  }

  .benefits-container {
    margin-top: 20px;
    padding-top: 20px;
  }

  .benefits-container h4 {
    font-size: 0.95rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .benefits-list li {
    font-size: 0.85rem;
    padding: 4px 0;
  }

  .benefits-list li i {
    font-size: 0.9rem;
    width: 18px;
  }

  .image-stats {
    flex-direction: row;
    margin-top: -15px;
    padding: 0 8px;
    gap: 8px;
  }

  .stat-item {
    padding: 8px 6px;
    border-radius: 10px;
  }

  .stat-number {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }

  .preferred-image img {
    border-radius: 16px;
  }
}

@media (max-width: 400px) {
  .image-stats {
    flex-direction: column;
    margin-top: -10px;
    gap: 6px;
  }

  .stat-item {
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .stat-number {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }
}





/* ========================================
   J ESTATES – MODERN RETIREMENT COMMUNITY
   ======================================== */
.j-estates-section {
  padding: 80px 0;
  background: linear-gradient(145deg, #fefaf7 0%, #ffffff 100%);
  position: relative;
}

.j-estates-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Heading - One Line ===== */
.j-estates-heading {
  text-align: center;
  margin-bottom: 35px;
}

.j-estates-heading h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a2a3a;
  line-height: 1.2;
  margin: 0;
}

.j-estates-heading h2 span {
  color: #ef7027;
  position: relative;
}

.j-estates-heading h2 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(239, 112, 39, 0.15);
  border-radius: 4px;
  z-index: -1;
}

/* ===== Description ===== */
.j-estates-description {
  max-width: 900px;
  margin: 0 auto 45px;
  text-align: center;
}

.j-estates-description p {
  font-size: 1rem;
  line-height: 1.9;
  color: #5a6874;
  margin-bottom: 12px;
}

.j-estates-description p:last-child {
  margin-bottom: 0;
}

/* ===== Highlights ===== */
.highlights-wrapper {
  margin-bottom: 60px;
}

.highlights-wrapper h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2a3a;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.highlights-wrapper h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ef7027, #ffb347);
  border-radius: 4px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  border-color: #ef7027;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(239, 112, 39, 0.08);
}

.highlight-item i {
  color: #ef7027;
  font-size: 1.1rem;
  width: 24px;
  flex-shrink: 0;
  text-align: center;
}

.highlight-item span {
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a2a3a;
  line-height: 1.3;
}

/* ===== Amenities ===== */
.amenities-wrapper h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2a3a;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
}

.amenities-wrapper h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ef7027, #ffb347);
  border-radius: 4px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.amenity-category {
  background: #ffffff;
  padding: 28px 22px 25px;
  border-radius: 18px;
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
  text-align: center;
}

.amenity-category:hover {
  border-color: #ef7027;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(239, 112, 39, 0.08);
}

.category-icon {
  width: 55px;
  height: 55px;
  background: rgba(239, 112, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.5rem;
  color: #ef7027;
  transition: all 0.3s ease;
}

.amenity-category:hover .category-icon {
  background: linear-gradient(135deg, #ef7027, #d45c1a);
  color: #ffffff;
}

.amenity-category h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 14px;
}

.amenity-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenity-category ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.88rem;
  color: #5a6874;
  justify-content: center;
}

.amenity-category ul li i {
  color: #ef7027;
  font-size: 0.75rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1100px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .j-estates-heading h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .j-estates-section {
    padding: 60px 0;
  }

  .j-estates-heading h2 {
    font-size: 1.6rem;
  }

  .j-estates-description p {
    font-size: 0.95rem;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .highlight-item {
    padding: 12px 14px;
  }

  .highlight-item span {
    font-size: 0.82rem;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .amenity-category {
    padding: 22px 16px 20px;
  }

  .amenity-category h4 {
    font-size: 0.95rem;
  }

  .amenity-category ul li {
    font-size: 0.82rem;
  }
}

@media (max-width: 550px) {
  .j-estates-section {
    padding: 50px 0;
  }

  .j-estates-heading h2 {
    font-size: 1.3rem;
  }

  .j-estates-description p {
    font-size: 0.9rem;
  }

  .highlights-wrapper h3,
  .amenities-wrapper h3 {
    font-size: 1.1rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .highlight-item {
    padding: 10px 12px;
    gap: 8px;
    border-radius: 10px;
  }

  .highlight-item i {
    font-size: 0.9rem;
    width: 20px;
  }

  .highlight-item span {
    font-size: 0.78rem;
  }

  .amenities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .amenity-category {
    padding: 18px 12px 16px;
    border-radius: 14px;
  }

  .category-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .amenity-category h4 {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .amenity-category ul li {
    font-size: 0.78rem;
    padding: 3px 0;
  }
}

@media (max-width: 400px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .amenity-category {
    padding: 20px 16px;
  }

  .j-estates-heading h2 {
    font-size: 1.1rem;
  }
}




/* ========================================
   SENIOR LIVING VS TRADITIONAL RETIREMENT HOMES
   ======================================== */
.comparison-section {
  padding: 70px 0;
  background: #ffffff;
}

.comparison-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Heading ===== */
.comparison-heading {
  text-align: center;
  margin-bottom: 35px;
}

.comparison-heading h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a2a3a;
  line-height: 1.2;
  margin: 0;
}

.comparison-heading h2 span {
  color: #ef7027;
  position: relative;
}

.comparison-heading h2 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 5px;
  background: rgba(239, 112, 39, 0.15);
  border-radius: 4px;
  z-index: -1;
}

/* ===== Table ===== */
.table-wrapper {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
  margin-bottom: 25px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  min-width: 500px;
}

.comparison-table thead th {
  background: #1a2a3a;
  color: #ffffff;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
}

.comparison-table thead th:first-child {
  background: #ef7027;
  color: #ffffff;
  width: 45%;
}

.comparison-table thead th:last-child {
  width: 55%;
}

.comparison-table tbody td {
  padding: 12px 20px;
  border-bottom: 1px solid #f0f2f5;
  color: #1a2a3a;
  font-weight: 500;
  font-size: 0.9rem;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody td:first-child {
  font-weight: 500;
  color: #5a6874;
  background: #fafbfc;
}

.comparison-table tbody td .check {
  color: #ef7027;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 6px;
  display: inline-block;
}

.comparison-table tbody tr {
  transition: background 0.2s ease;
}

.comparison-table tbody tr:hover td {
  background: rgba(239, 112, 39, 0.03);
}

.comparison-table tbody tr:hover td:first-child {
  background: rgba(239, 112, 39, 0.05);
}

/* ===== Description ===== */
.comparison-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.comparison-description p {
  font-size: 1rem;
  line-height: 1.7;
  color: #5a6874;
  margin: 0;
  padding: 10px 18px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #ef7027;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
  .comparison-heading h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .comparison-section {
    padding: 55px 0;
  }

  .comparison-heading h2 {
    font-size: 1.5rem;
  }

  .comparison-table {
    min-width: 420px;
  }

  .comparison-table thead th {
    padding: 11px 16px;
    font-size: 0.85rem;
  }

  .comparison-table tbody td {
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  .comparison-table tbody td .check {
    font-size: 0.9rem;
  }

  .comparison-description p {
    font-size: 0.92rem;
    padding: 8px 14px;
  }
}

@media (max-width: 550px) {
  .comparison-section {
    padding: 45px 0;
  }

  .comparison-heading h2 {
    font-size: 1.3rem;
  }

  .comparison-table {
    min-width: 340px;
  }

  .comparison-table thead th {
    padding: 10px 12px;
    font-size: 0.78rem;
  }

  .comparison-table tbody td {
    padding: 9px 12px;
    font-size: 0.75rem;
  }

  .comparison-table tbody td .check {
    font-size: 0.8rem;
    margin-right: 4px;
  }

  .comparison-description p {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
}

@media (max-width: 400px) {
  .comparison-table {
    min-width: 290px;
  }

  .comparison-table thead th {
    padding: 8px 10px;
    font-size: 0.7rem;
  }

  .comparison-table tbody td {
    padding: 8px 10px;
    font-size: 0.68rem;
  }

  .comparison-table tbody td .check {
    font-size: 0.7rem;
  }

  .comparison-heading h2 {
    font-size: 1.1rem;
  }

  .comparison-description p {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}





/* ========================================
   LOCATION SECTION
   ======================================== */
.location-section {
  padding: 80px 0;
  background: #ffffff;
}

.location-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Heading ===== */
.location-heading {
  text-align: center;
  margin-bottom: 40px;
}

.location-heading h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a2a3a;
  line-height: 1.2;
  margin: 0;
}

.location-heading h2 span {
  color: #ef7027;
  position: relative;
}

.location-heading h2 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(239, 112, 39, 0.15);
  border-radius: 4px;
  z-index: -1;
}

/* ===== Location Wrapper ===== */
.location-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.location-content {
  flex: 1.3;
}

.location-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5a6874;
  margin-bottom: 20px;
}

.location-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 15px;
  position: relative;
  padding-left: 14px;
}

.location-content h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background: linear-gradient(180deg, #ef7027, #ffb347);
  border-radius: 4px;
}

.landmarks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

.landmark-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
}

.landmark-item:hover {
  border-color: #ef7027;
  background: rgba(239, 112, 39, 0.04);
  transform: translateX(4px);
}

.landmark-item i {
  color: #ef7027;
  font-size: 0.9rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.landmark-item span {
  font-size: 0.88rem;
  color: #5a6874;
  font-weight: 500;
}

/* ========== LOCATION SECTION ========== */
.location-section {
  padding: 50px 0;
  background: linear-gradient(145deg, #fff 0, #fef5ed 100%);
  position: relative;
}

.location-header {
  text-align: center;
  margin-bottom: 50px;
}

.location-tag {
  display: inline-block;
  background: rgba(239, 112, 39, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.location-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 12px;
}

.title-accent {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.location-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ffb347, transparent);
  margin: 0 auto 20px;
  border-radius: 3px;
}

.location-subtitle {
  font-size: 0.95rem;
  color: #7a8a9a;
  margin: 0 auto;
}

.location-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.location-distances {
  flex: 1;
  background: #fff;
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef2f6;
}

.distances-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.distance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: #f8fafc;
  border-radius: 16px;
  transition: 0.3s;
}

.distance-item:hover {
  background: #fff;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(239, 112, 39, 0.1);
  border-left: 3px solid var(--primary);
}

.distance-icon {
  font-size: 1.3rem;
  min-width: 35px;
}

.distance-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.distance-place {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a2a3a;
}

.distance-time {
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 500;
  margin-top: 3px;
}

.location-map {
  flex: 1.2;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef2f6;
}

.map-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-address {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #eef2f6;
}

.address-icon {
  font-size: 1.8rem;
}

.address-text {
  display: flex;
  flex-direction: column;
}

.address-text strong {
  font-size: 1rem;
  color: #1a2a3a;
  margin-bottom: 5px;
}

.address-text span {
  font-size: 0.8rem;
  color: #7a8a9a;
}

/* ========================================
   APARTMENTS SECTION
   ======================================== */
.apartments-section {
  margin-bottom: 50px;
  padding-top: 50px;
  border-top: 2px solid #eef2f6;
}

.apartments-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a2a3a;
  text-align: center;
  margin-bottom: 12px;
}

.apartments-section h3 span {
  color: #ef7027;
}

.apartments-desc {
  text-align: center;
  font-size: 1rem;
  color: #5a6874;
  margin: 0 auto 30px;
}

.config-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.config-card {
  background: #ffffff;
  padding: 28px 20px 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
}

.config-card:hover {
  border-color: #ef7027;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(239, 112, 39, 0.08);
}

.config-icon {
  width: 55px;
  height: 55px;
  background: rgba(239, 112, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.5rem;
  color: #ef7027;
  transition: all 0.3s ease;
}

.config-card:hover .config-icon {
  background: linear-gradient(135deg, #ef7027, #d45c1a);
  color: #ffffff;
}

.config-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 6px;
}

.config-card p {
  font-size: 0.85rem;
  color: #5a6874;
  margin: 0;
}

.apartments-footer {
  text-align: center;
  font-size: 0.95rem;
  color: #5a6874;
}

.apartments-footer .internal-link {
  color: #ef7027;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.apartments-footer .internal-link:hover {
  color: #d45c1a;
  text-decoration: underline;
}

/* ========================================
   EXPLORE MORE SECTION
   ======================================== */
.explore-section h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2a3a;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.explore-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ef7027, #ffb347);
  border-radius: 4px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.explore-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.explore-card:hover {
  border-color: #ef7027;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(239, 112, 39, 0.08);
}

.explore-card i:first-child {
  color: #ef7027;
  font-size: 1.1rem;
  width: 20px;
  flex-shrink: 0;
}

.explore-card span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1a2a3a;
  flex: 1;
}

.explore-card i:last-child {
  color: #ef7027;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.explore-card:hover i:last-child {
  transform: translateX(4px);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1100px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .location-wrapper {
    flex-direction: column;
  }

  .location-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .landmarks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .location-heading h2 {
    font-size: 2rem;
  }

  .config-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .location-section {
    padding: 60px 0;
  }

  .location-heading h2 {
    font-size: 1.6rem;
  }

  .location-content p {
    font-size: 0.95rem;
  }

  .landmarks-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px 15px;
  }

  .landmark-item {
    padding: 6px 10px;
  }

  .landmark-item span {
    font-size: 0.82rem;
  }

  .location-image {
    max-width: 500px;
  }

  .location-badge {
    bottom: -8px;
    right: -8px;
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .apartments-section h3 {
    font-size: 1.5rem;
  }

  .config-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .config-card {
    padding: 22px 16px 18px;
  }

  .explore-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .explore-card {
    padding: 14px 16px;
  }

  .explore-card span {
    font-size: 0.8rem;
  }
}

@media (max-width: 550px) {
  .location-section {
    padding: 50px 0;
  }

  .location-heading h2 {
    font-size: 1.4rem;
  }

  .location-content p {
    font-size: 0.9rem;
  }

  .landmarks-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .landmark-item {
    padding: 6px 10px;
  }

  .landmark-item span {
    font-size: 0.8rem;
  }

  .landmark-item i {
    font-size: 0.8rem;
    width: 16px;
  }

  .location-badge {
    bottom: -6px;
    right: -6px;
    padding: 6px 14px;
    font-size: 0.7rem;
  }

  .apartments-section {
    padding-top: 35px;
  }

  .apartments-section h3 {
    font-size: 1.3rem;
  }

  .apartments-desc {
    font-size: 0.9rem;
  }

  .config-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .config-card {
    padding: 20px 14px 16px;
  }

  .config-card h4 {
    font-size: 1rem;
  }

  .apartments-footer {
    font-size: 0.88rem;
  }

  .explore-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .explore-card {
    padding: 12px 16px;
  }

  .explore-card span {
    font-size: 0.82rem;
  }

  .explore-card i:first-child {
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .landmark-item span {
    font-size: 0.75rem;
  }

  .location-badge {
    padding: 5px 12px;
    font-size: 0.65rem;
  }

  .explore-card span {
    font-size: 0.75rem;
  }
}



/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 60px 0;
  background: linear-gradient(145deg, #fefaf7 0, #fff 100%);
  position: relative;
}

.faq-section .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.3px;
}

.faq-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ffb347, transparent);
  border-radius: 3px;
}

.faq-item {
  background: #fff;
  border-radius: 20px;
  padding: 1rem 2rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
  cursor: pointer;
  text-align: left;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(239, 112, 39, 0.08);
  transform: translateX(5px);
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.8rem;
}

.faq-item h3::before {
  content: '?';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
  background: rgba(239, 112, 39, 0.1);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.faq-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5a6874;
  padding-left: 1.8rem;
}

/* ========== FAQ RESPONSIVE ========== */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-section h2 {
    font-size: 1.8rem;
  }

  .faq-item {
    padding: 1rem 1.5rem;
  }

  .faq-item h3 {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.9rem;
  }
}

@media (max-width: 550px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-section h2 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  .faq-item {
    padding: 0.9rem 1.2rem;
    border-radius: 16px;
  }

  .faq-item h3 {
    font-size: 0.9rem;
    padding-left: 1.6rem;
  }

  .faq-item h3::before {
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
  }

  .faq-item p {
    font-size: 0.85rem;
    padding-left: 1.6rem;
  }
}

























/* ========================================
   FOOTER SECTION
   ======================================== */
.footer-section {
  background: linear-gradient(135deg, #0a1628 0, #0f1a2e 100%);
  color: #cbd5e1;
  padding: 50px 0 0;
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ffb347, var(--primary));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-description {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #a0aec0;
}

.footer-certified {
  margin-top: 5px;
}

.certified-badge {
  display: inline-block;
  background: rgba(239, 112, 39, 0.15);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--primary);
  border: 1px solid rgba(239, 112, 39, 0.3);
}

.footer-links {
  text-align: center;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  padding-bottom: 5px;
  position: relative;
}

.links-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.footer-nav li a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s;
  display: inline-block;
}

.footer-nav li a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #a0aec0;
  transition: 0.3s;
  padding: 5px 0;
  width: fit-content;
  min-width: 220px;
}

.footer-contact-item:hover {
  transform: translateX(5px);
}

.footer-contact-item .contact-icon {
  font-size: 1.1rem;
  width: 30px;
  text-align: center;
  display: inline-block;
}

.footer-contact-item a {
  color: #a0aec0;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.social-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-visit {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-visit p {
  font-size: 0.8rem;
  color: #a0aec0;
  margin-bottom: 10px;
}

.visit-btn {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.visit-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 25px 0;
}

.footer-copyright p {
  font-size: 0.75rem;
  color: #718096;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: #718096;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
   ======================================== */

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-usp {
    gap: 12px;
  }

  .usp-card {
    padding: 10px 18px;
  }

  .usp-text {
    font-size: 0.8rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-checklist.two-columns {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 992px) {
  .nav-links {
    gap: 20px 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .content-wrapper {
    gap: 40px;
  }

  .content-text h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 850px) {
  .hero {
    padding: 80px 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-usp {
    gap: 10px;
  }

  .usp-card {
    padding: 8px 16px;
  }

  .usp-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .usp-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header-inner {
    padding: 12px 0;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    z-index: 1000;
    border-top: none;
    overflow-y: auto;
  }

  .main-nav.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 80px 20px 40px;
  }

  .nav-links li a {
    font-size: 1.1rem;
    padding: 8px 0;
    display: inline-block;
  }

  .nav-links li a::after {
    bottom: 0;
  }

  .contact-btn span {
    display: none;
  }

  .contact-btn {
    padding: 8px 12px;
  }

  .enquire-btn {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .hero-usp {
    gap: 10px;
  }

  .usp-card {
    padding: 8px 14px;
  }

  .usp-icon {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  .usp-text {
    font-size: 0.7rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-whatsapp {
    padding: 14px 28px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .content-section {
    padding: 50px 0;
  }

  .content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .content-text h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .content-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .content-text p {
    font-size: 0.95rem;
    text-align: center;
  }

  .content-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .benefits-content h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .benefits-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .benefits-checklist.two-columns {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .benefits-checklist li {
    text-align: left;
  }

  .benefits-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .why-senior-section {
    padding: 50px 0;
  }

  .why-senior-section h2 {
    font-size: 1.6rem;
  }

  .why-senior-section p {
    font-size: 0.95rem;
    padding: 0 16px;
  }

  .benefits-section {
    padding: 50px 0;
  }

  .benefits-section h2 {
    font-size: 1.6rem;
  }

  .benefits-section ul {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 500px;
  }

  .benefits-section ul li {
    font-size: 0.95rem;
  }

  .faq-section {
    padding: 50px 0;
  }

  .faq-section h2 {
    font-size: 1.6rem;
  }

  .faq-item {
    padding: 1.2rem 1.5rem;
  }

  .faq-item h3 {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.9rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 35px;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
    align-items: center;
  }

  .footer-heading {
    text-align: center;
  }

  .links-wrapper {
    justify-content: center;
    gap: 40px;
  }

  .footer-nav {
    align-items: flex-start;
    text-align: left;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-social {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-visit {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 550px) {
  .nav-buttons {
    gap: 8px;
  }

  .logo-image {
    height: 35px;
  }

  .hero {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 16px;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .hero-usp {
    gap: 8px;
  }

  .usp-card {
    padding: 6px 12px;
    gap: 8px;
  }

  .usp-icon {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
  }

  .usp-text {
    font-size: 0.65rem;
  }

  .btn-primary,
  .btn-whatsapp {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .content-section {
    padding: 40px 0;
  }

  .content-text h2 {
    font-size: 1.4rem;
  }

  .content-text p {
    font-size: 0.9rem;
  }

  .content-image img {
    border-radius: 16px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .benefits-list-section {
    padding: 40px 0;
  }

  .benefits-content h2 {
    font-size: 1.4rem;
  }

  .benefits-checklist li {
    font-size: 0.9rem;
  }

  .why-senior-section {
    padding: 40px 0;
  }

  .why-senior-section h2 {
    font-size: 1.4rem;
  }

  .why-senior-section p {
    font-size: 0.9rem;
    padding: 0 12px;
  }

  .benefits-section {
    padding: 40px 0;
  }

  .benefits-section h2 {
    font-size: 1.4rem;
  }

  .benefits-section ul li {
    font-size: 0.9rem;
    padding-left: 28px;
  }

  .benefits-section ul li::before {
    font-size: 1rem;
  }

  .faq-section {
    padding: 40px 0;
  }

  .faq-section h2 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  .faq-item {
    padding: 1rem 1.2rem;
  }

  .faq-item h3 {
    font-size: 0.9rem;
    padding-left: 1.6rem;
  }

  .faq-item h3::before {
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
  }

  .faq-item p {
    font-size: 0.85rem;
    padding-left: 1.6rem;
  }

  .links-wrapper {
    gap: 25px;
  }

  .footer-nav li a {
    font-size: 0.8rem;
  }

  .footer-contact-item {
    font-size: 0.8rem;
    min-width: auto;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }

  .social-icon img {
    width: 18px;
    height: 18px;
  }

  .footer-copyright p,
  .footer-bottom-links a {
    font-size: 0.7rem;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.75rem;
  }

  .hero-description {
    font-size: 0.8rem;
  }

  .usp-card {
    padding: 5px 10px;
  }

  .usp-text {
    font-size: 0.6rem;
  }

  .usp-icon {
    width: 18px;
    height: 18px;
    font-size: 0.55rem;
  }

  .btn-primary,
  .btn-whatsapp {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .links-wrapper {
    gap: 15px;
  }

  .footer-nav li a {
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
  }
}