/* ----- 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;
}

/* Remove old text logo styles if still present */
.logo-text {
    display: none;
}

/* Responsive Logo */
@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;
    }
}

/* ========== NAVIGATION RIGHT SIDE ========== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Buttons */
.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 Button */
.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 Button */
.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 MENU (MOBILE) ========== */
.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 NAVIGATION ========== */
.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 ========== */
.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: 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

/* Dark overlay for better text readability */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 100px;
  position: relative;
  z-index: 2;
}

/* Content styling */
.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ef7027;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 80%;
  animation: fadeInUp 0.8s ease 0.2s both;
  padding-right: 200px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #ef7027 0, #d45c1a 100%);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(239, 112, 39, 0.4);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(239, 112, 39, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #000;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: #20b859;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== SEO SECTION ========== */
.seo-section {
  padding: 60px 0;
  background: linear-gradient(145deg, #fff 0, #fef5ed 100%);
  position: relative;
}

.seo-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 100px;
}

.seo-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.3px;
}

.seo-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;
}

.seo-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a6874;
  margin-bottom: 1.25rem;
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.seo-section p:last-child {
  margin-bottom: 0;
}

/* ========== APARTMENT TYPES SECTION ========== */
.apartment-types {
  padding: 40px 0;
  background: linear-gradient(145deg, #fefaf7 0, #fff 100%);
  position: relative;
}

.apartment-types .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 100px;
}

.apartment-types 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;
}

.apartment-types 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;
}

.types-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.type-card {
  flex: 1;
  min-width: 280px;
  max-width: 550px;
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  text-align: center;
}

.type-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(239, 112, 39, 0.08);
}

.type-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.type-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5a6874;
}

/* ========== INVESTMENT SECTION ========== */
.investment-section {
  padding: 60px 0;
  background: linear-gradient(145deg, #fff 0, #fef5ed 100%);
  position: relative;
}

.investment-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 100px;
}

.investment-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.3px;
}

.investment-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;
}

.investment-section > .container > p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a6874;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.investment-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.investment-section li {
  font-size: 0.95rem;
  color: #2d3a4a;
  padding: 0.75rem 1.2rem 0.75rem 2rem;
  position: relative;
  background: #fff;
  border-radius: 40px;
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
  font-weight: 500;
}

.investment-section li::before {
  content: '✓';
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.investment-section li:hover {
  background: #fef5ed;
  transform: translateX(3px);
  border-color: var(--primary);
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 40px 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: 1.5rem 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;
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */

/* Tablet Landscape (1024px - 1200px) */
@media (max-width: 1200px) {
  .hero .container {
    padding: 0 40px;
  }
  
  .hero-description {
    padding-right: 100px;
  }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    padding-right: 50px;
    max-width: 85%;
  }
  
  .type-card {
    max-width: 450px;
  }
}

/* Small Tablet (768px - 992px) */
@media (max-width: 992px) {
  .hero {
    min-height: 50vh;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
    max-width: 90%;
  }
  
  .seo-section h2,
  .apartment-types h2,
  .investment-section h2,
  .faq-section h2 {
    font-size: 2rem;
  }
  
  .type-card {
    max-width: 400px;
  }
}

/* Mobile Landscape (576px - 768px) */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 0;
    text-align: center;
  }
  
  .hero .container {
    padding: 0 24px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-description {
    max-width: 100%;
    font-size: 0.9rem;
    padding-right: 0;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .btn-primary,
  .btn-secondary {
    min-width: 200px;
    text-align: center;
    justify-content: center;
  }
  
  .seo-section,
  .apartment-types,
  .investment-section,
  .faq-section {
    padding: 50px 0;
  }
  
  .seo-section h2,
  .apartment-types h2,
  .investment-section h2,
  .faq-section h2 {
    font-size: 1.8rem;
  }
  
  .seo-section h2::after,
  .apartment-types h2::after,
  .investment-section h2::after,
  .faq-section h2::after {
    width: 60px;
  }
  
  .seo-section p,
  .investment-section > .container > p {
    font-size: 0.95rem;
    padding: 0 15px;
  }
  
  .type-card {
    min-width: 100%;
    max-width: 100%;
    padding: 1.5rem;
  }
  
  .type-card h3 {
    font-size: 1.3rem;
  }
  
  .type-card p {
    font-size: 0.9rem;
  }
  
  .investment-section li {
    width: 100%;
    text-align: center;
    padding: 0.7rem 1rem 0.7rem 2rem;
  }
  
  .faq-item {
    padding: 1.2rem 1.5rem;
  }
  
  .faq-item h3 {
    font-size: 1rem;
    padding-left: 1.6rem;
  }
  
  .faq-item h3::before {
    width: 22px;
    height: 22px;
    font-size: 0.9rem;
  }
  
  .faq-item p {
    font-size: 0.9rem;
    padding-left: 1.6rem;
  }
}

/* Mobile Portrait (480px - 576px) */
@media (max-width: 576px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  
  .hero-description {
    font-size: 0.85rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .seo-section,
  .apartment-types,
  .investment-section,
  .faq-section {
    padding: 40px 0;
  }
  
  .seo-section h2,
  .apartment-types h2,
  .investment-section h2,
  .faq-section h2 {
    font-size: 1.5rem;
  }
  
  .seo-section h2::after,
  .apartment-types h2::after,
  .investment-section h2::after,
  .faq-section h2::after {
    width: 50px;
    height: 2.5px;
  }
  
  .seo-section p,
  .investment-section > .container > p {
    font-size: 0.88rem;
  }
  
  .type-card {
    padding: 1.2rem;
  }
  
  .type-card h3 {
    font-size: 1.2rem;
  }
  
  .type-card p {
    font-size: 0.85rem;
  }
  
  .investment-section li {
    font-size: 0.85rem;
    padding: 0.6rem 1rem 0.6rem 1.8rem;
  }
  
  .investment-section li::before {
    font-size: 0.75rem;
    left: 0.6rem;
  }
  
  .faq-item {
    padding: 1rem;
  }
  
  .faq-item h3 {
    font-size: 0.9rem;
    padding-left: 1.5rem;
  }
  
  .faq-item h3::before {
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
  }
  
  .faq-item p {
    font-size: 0.85rem;
    padding-left: 1.5rem;
  }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  .hero {
    padding: 50px 0;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.8rem;
  }
  
  .hero-description {
    font-size: 0.8rem;
  }
  
  .btn-primary,
  .btn-secondary {
    max-width: 100%;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .seo-section,
  .apartment-types,
  .investment-section,
  .faq-section {
    padding: 35px 0;
  }
  
  .seo-section h2,
  .apartment-types h2,
  .investment-section h2,
  .faq-section h2 {
    font-size: 1.3rem;
  }
  
  .seo-section p,
  .investment-section > .container > p {
    font-size: 0.85rem;
  }
  
  .type-card h3 {
    font-size: 1.1rem;
  }
  
  .type-card p {
    font-size: 0.8rem;
  }
  
  .investment-section li {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem 0.5rem 1.6rem;
  }
  
  .faq-item h3 {
    font-size: 0.85rem;
    padding-left: 1.4rem;
  }
  
  .faq-item h3::before {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
  }
  
  .faq-item p {
    font-size: 0.8rem;
    padding-left: 1.4rem;
  }
}

/* Extra Small Mobile (below 360px) */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.3rem;
  }
  
  .hero-subtitle {
    font-size: 0.7rem;
  }
  
  .seo-section h2,
  .apartment-types h2,
  .investment-section h2,
  .faq-section h2 {
    font-size: 1.2rem;
  }
  
  .type-card {
    padding: 1rem;
  }
  
  .type-card h3 {
    font-size: 1rem;
  }
  
  .faq-item {
    padding: 0.8rem;
  }
  
  .faq-item h3 {
    font-size: 0.8rem;
  }
}

/* Large Desktop (above 1400px) */
@media (min-width: 1400px) {
  .hero .container {
    max-width: 1400px;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .type-card {
    max-width: 600px;
    padding: 2.5rem;
  }
  
  .type-card h3 {
    font-size: 1.8rem;
  }
  
  .type-card p {
    font-size: 1rem;
  }
}





















/* ========== 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-logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    }

    .footer-tagline {
    font-size: 0.7rem;
    color: var(--primary);
    letter-spacing: 2px;
    display: block;
    margin-top: 5px;
    }

    .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: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    }

    @media (max-width: 992px) {
    .nav-links {
        gap: 20px 30px;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-stats {
        gap: 35px;
    }
    .hero-image-wrapper,
    .hero-img {
        min-height: 450px;
    }
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .highlights-title,
    .location-title {
        font-size: 2rem;
    }
    .map-container {
        height: 350px;
    }
    .about-title {
        font-size: 2rem;
    }
    .contact-title {
        font-size: 2rem;
    }
    .floorplans-title {
        font-size: 2rem;
    }
    .floorplans-grid {
        gap: 25px;
    }
    .floor-card {
        min-width: 300px;
    }
    .overview-container {
        padding: 35px;
    }
    .overview-title {
        font-size: 1.7rem;
    }
    }

    @media (max-width: 850px) {
    .overview-container {
        flex-direction: column;
    }
    .stats-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .stat-circle {
        flex: 1;
        min-width: 120px;
    }
    .location-wrapper {
        flex-direction: column-reverse;
    }
    .location-distances,
    .location-map {
        width: 100%;
    }
    .map-container {
        height: 350px;
    }
    .about-wrapper {
        flex-direction: column;
        gap: 35px;
    }
    .about-stats {
        flex-direction: row;
        width: 100%;
    }
    .stats-card {
        flex: 1;
    }
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-form-container {
        width: 100%;
    }
    .contact-info-container {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .info-card {
        flex: 1;
        min-width: calc(50% - 10px);
    }
    }

    @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;
    }
    .logo-text {
        font-size: 1.4rem;
    }
    .logo-subtitle {
        font-size: 0.6rem;
    }
    .contact-btn,
    .enquire-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }
    .hero {
        padding: 50px 0;
    }
    .hero-grid {
        flex-direction: column;
        gap: 40px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content h2 {
        font-size: 1.3rem;
    }
    .hero-desc {
        max-width: 100%;
    }
    .hero-features,
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    .hero-image {
        width: 100%;
    }
    .hero-image-wrapper {
        min-height: auto;
        max-height: 320px;
        border-radius: 25px;
    }
    .hero-img {
        min-height: auto;
        height: 320px;
        object-fit: cover;
        object-position: center;
    }
    .overview-section,
    .highlights-section,
    .amenities-section,
    .floorplans-section,
    .gallery-section,
    .location-section,
    .about-section,
    .contact-section {
        padding: 50px 0;
    }
    .overview-container {
        padding: 25px;
        margin-bottom: 20px;
    }
    .overview-title {
        font-size: 1.5rem;
    }
    .overview-text {
        font-size: 0.92rem;
    }
    .circle-number {
        font-size: 1.3rem;
    }
    .overview-tagline {
        font-size: 0.8rem;
        padding: 12px 20px;
    }
    .highlights-header,
    .gallery-header,
    .location-header,
    .about-header,
    .contact-header,
    .floorplans-header {
        margin-bottom: 35px;
    }
    .highlights-title,
    .gallery-title,
    .location-title,
    .about-title,
    .contact-title,
    .floorplans-title {
        font-size: 1.8rem;
    }
    .highlights-subtitle,
    .gallery-subtitle,
    .location-subtitle,
    .contact-subtitle,
    .floorplans-subtitle {
        font-size: 0.85rem;
    }
    .highlights-tag,
    .gallery-tag,
    .location-tag,
    .about-tag,
    .contact-tag,
    .floorplans-tag {
        font-size: 0.7rem;
    }
    .highlight-item {
        padding: 20px;
        gap: 12px;
    }
    .highlight-icon {
        font-size: 1.8rem;
        min-width: 40px;
    }
    .highlight-content h3 {
        font-size: 0.95rem;
    }
    .highlight-content p {
        font-size: 0.8rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .gallery-label {
        font-size: 0.8rem;
    }
    .gallery-btn {
        padding: 10px 30px;
        font-size: 0.85rem;
    }
    .map-container {
        height: 280px;
    }
    .address-text strong {
        font-size: 0.9rem;
    }
    .address-text span {
        font-size: 0.7rem;
    }
    .distances-grid {
        gap: 12px;
    }
    .distance-item {
        padding: 10px 12px;
    }
    .distance-icon {
        font-size: 1.1rem;
        min-width: 30px;
    }
    .distance-place {
        font-size: 0.8rem;
    }
    .distance-time {
        font-size: 0.65rem;
    }
    .about-text {
        font-size: 0.95rem;
    }
    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .about-highlight-item {
        font-size: 0.85rem;
    }
    .highlight-check {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    .about-partner {
        padding: 20px;
    }
    .partner-icon {
        font-size: 1.8rem;
    }
    .partner-info strong {
        font-size: 0.9rem;
    }
    .partner-info span {
        font-size: 0.75rem;
    }
    .stats-number {
        font-size: 1.5rem;
    }
    .stats-icon {
        font-size: 2rem;
    }
    .contact-form-container {
        padding: 25px;
    }
    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    .submit-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .info-card {
        padding: 18px 20px;
    }
    .info-icon {
        font-size: 1.6rem;
        min-width: 45px;
    }
    .info-icon img {
        width: 24px;
        height: 24px;
    }
    .info-content h3 {
        font-size: 0.9rem;
    }
    .info-content p,
    .info-content a {
        font-size: 0.8rem;
    }
    .floorplans-grid {
        flex-direction: column;
        align-items: center;
    }
    .floor-card {
        width: 100%;
        max-width: 400px;
        min-width: auto;
    }
    .floor-name {
        font-size: 1.2rem;
    }
    .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 {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-direction: row;
    }
    .footer-nav {
        align-items: left;
        text-align: left;
    }
    .footer-nav li a:hover {
        transform: translateX(0) translateY(-2px);
    }
    .footer-contact {
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-contact-item:hover {
        transform: translateX(0);
    }
    .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;
    }
    .lightbox-prev,
    .lightbox-next {
        font-size: 20px;
        padding: 10px 15px;
    }
    .lightbox-caption {
        font-size: 0.8rem;
        bottom: 20px;
    }
    .close-lightbox {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }
    }

    @media (max-width: 600px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .highlights-title {
        font-size: 1.4rem;
    }
    .highlights-tag {
        font-size: 0.65rem;
        padding: 4px 12px;
    }
    .highlight-item {
        padding: 18px;
    }
    .highlight-icon {
        font-size: 1.6rem;
        min-width: 35px;
    }
    .highlight-content h3 {
        font-size: 0.9rem;
    }
    .highlight-content p {
        font-size: 0.75rem;
    }
    .contact-info-container {
        flex-direction: column;
    }
    .info-card {
        min-width: 100%;
    }
    }

    @media (max-width: 550px) {
    .nav-buttons {
        gap: 8px;
    }
    .contact-btn span {
        display: none;
    }
    .contact-btn {
        padding: 8px 12px;
    }
    .enquire-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
    .logo-text {
        font-size: 1.2rem;
    }
    .logo-subtitle {
        font-size: 0.55rem;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content h2 {
        font-size: 1.1rem;
    }
    .hero-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-desc {
        font-size: 0.9rem;
    }
    .hero-features {
        gap: 12px;
    }
    .feature {
        font-size: 0.75rem;
    }
    .feature-check {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    .hero-stats {
        gap: 20px;
    }
    .stat-number {
        font-size: 1.6rem;
    }
    .stat-label {
        font-size: 0.7rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn-primary,
    .btn-whatsapp {
        padding: 12px 24px;
        font-size: 0.85rem;
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    .hero-image-wrapper {
        max-height: 260px;
    }
    .hero-img {
        height: 260px;
    }
    .overview-container {
        padding: 20px;
    }
    .overview-title {
        font-size: 1.3rem;
    }
    .overview-text {
        font-size: 0.88rem;
    }
    .stats-wrapper {
        flex-direction: column;
    }
    .stat-circle {
        text-align: center;
    }
    .circle-number {
        font-size: 1.2rem;
    }
    .overview-tagline {
        font-size: 0.7rem;
        padding: 10px 15px;
    }
    .amenities-title {
        font-size: 1.5rem;
    }
    .amenities-header {
        margin-bottom: 30px;
    }
    .amenities-wrapper {
        gap: 10px;
    }
    .amenity-item {
        padding: 5px 12px;
    }
    .amenity-icon {
        font-size: 0.85rem;
    }
    .amenity-name {
        font-size: 0.7rem;
    }
    .floorplans-title {
        font-size: 1.5rem;
    }
    .floorplans-tag {
        font-size: 0.65rem;
        padding: 4px 12px;
    }
    .floor-card {
        padding: 20px;
    }
    .floor-name {
        font-size: 1.1rem;
    }
    .detail-label,
    .detail-value {
        font-size: 0.75rem;
    }
    .floor-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    .request-tag {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    .gallery-title {
        font-size: 1.5rem;
    }
    .gallery-tag {
        font-size: 0.65rem;
        padding: 4px 12px;
    }
    .gallery-grid {
        gap: 12px;
    }
    .gallery-label {
        font-size: 0.7rem;
    }
    .gallery-controls {
        margin-top: 35px;
        gap: 15px;
    }
    .gallery-btn {
        padding: 8px 20px;
        font-size: 0.75rem;
    }
    .lightbox-img {
        max-width: 95%;
        max-height: 80%;
    }
    .location-title {
        font-size: 1.5rem;
    }
    .location-tag {
        font-size: 0.65rem;
        padding: 4px 12px;
    }
    .map-container {
        height: 220px;
    }
    .map-address {
        padding: 15px;
    }
    .address-icon {
        font-size: 1.4rem;
    }
    .address-text strong {
        font-size: 0.85rem;
    }
    .address-text span {
        font-size: 0.65rem;
    }
    .location-distances {
        padding: 18px;
    }
    .distances-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .distance-item {
        padding: 10px 12px;
    }
    .distance-icon {
        font-size: 1rem;
        min-width: 28px;
    }
    .distance-place {
        font-size: 0.75rem;
    }
    .distance-time {
        font-size: 0.65rem;
    }
    .about-title {
        font-size: 1.5rem;
    }
    .about-tag {
        font-size: 0.65rem;
        padding: 4px 12px;
    }
    .about-text {
        font-size: 0.9rem;
    }
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .about-highlight-item {
        font-size: 0.8rem;
    }
    .about-partner {
        padding: 15px;
    }
    .partner-icon {
        font-size: 1.5rem;
    }
    .partner-info strong {
        font-size: 0.85rem;
    }
    .partner-info span {
        font-size: 0.7rem;
    }
    .about-stats {
        flex-direction: column;
    }
    .stats-card {
        padding: 20px;
    }
    .stats-number {
        font-size: 1.3rem;
    }
    .stats-icon {
        font-size: 1.8rem;
    }
    .stats-label {
        font-size: 0.75rem;
    }
    .contact-title {
        font-size: 1.5rem;
    }
    .contact-tag {
        font-size: 0.65rem;
        padding: 4px 12px;
    }
    .contact-form-container {
        padding: 20px;
    }
    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    .submit-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    .info-card {
        padding: 15px;
    }
    .info-icon {
        font-size: 1.4rem;
        min-width: 40px;
    }
    .info-icon img {
        width: 22px;
        height: 22px;
    }
    .info-content h3 {
        font-size: 0.85rem;
    }
    .info-content p,
    .info-content a {
        font-size: 0.75rem;
    }
    .footer-logo-text {
        font-size: 1.4rem;
    }
    .footer-description {
        font-size: 0.8rem;
    }
    .footer-heading {
        font-size: 0.95rem;
    }
    .footer-nav li a,
    .footer-contact-item,
    .footer-visit p {
        font-size: 0.8rem;
    }
    .social-icon {
        width: 38px;
        height: 38px;
    }
    .social-icon img {
        width: 18px;
        height: 18px;
    }
    .links-wrapper {
        gap: 25px;
        flex-direction: row;
    }
    .footer-nav {
        gap: 8px;
    }
    .footer-nav li a {
        font-size: 0.75rem;
    }
    .footer-copyright p,
    .footer-bottom-links a {
        font-size: 0.7rem;
    }
    }

    @media (max-width: 400px) {
    .links-wrapper {
        gap: 15px;
    }
    .footer-nav li a {
        font-size: 0.7rem;
    }
    .distances-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .distance-item {
        padding: 8px 10px;
    }
    .distance-icon {
        font-size: 0.9rem;
        min-width: 25px;
    }
    .distance-place {
        font-size: 0.7rem;
    }
    .distance-time {
        font-size: 0.6rem;
    }
    }

    @media (max-width: 380px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .hero-content h2 {
        font-size: 1rem;
    }
    .hero-features {
        gap: 10px;
    }
    .hero-stats {
        gap: 15px;
    }
    .stat-number {
        font-size: 1.3rem;
    }
    .hero-image-wrapper {
        max-height: 220px;
    }
    .hero-img {
        height: 220px;
    }
    .overview-title {
        font-size: 1.2rem;
    }
    .overview-text {
        font-size: 0.85rem;
    }
    .about-title,
    .contact-title,
    .floorplans-title,
    .gallery-title,
    .location-title {
        font-size: 1.3rem;
    }
    .about-text {
        font-size: 0.85rem;
    }
    .about-highlight-item {
        font-size: 0.75rem;
    }
    .partner-info span {
        font-size: 0.65rem;
    }
    .contact-subtitle,
    .gallery-subtitle {
        font-size: 0.75rem;
    }
    .map-container {
        height: 200px;
    }
    .info-card {
        padding: 12px;
    }
    .info-icon {
        font-size: 1.2rem;
        min-width: 35px;
    }
    .info-icon img {
        width: 20px;
        height: 20px;
    }
    }

    @media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
    }
    }





    .location-section {
    padding: 50px 0;
    background: linear-gradient(145deg, #fff 0, #fef5ed 100%);
    position: relative;
    }

    .location-section .container {
    padding: 0 75px;
    }

    .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;
    }

    .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;
    max-width: 600px;
    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: 470px;
    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;
    }

    



/* ========== BREADCRUMB SECTION ========== */
.breadcrumb-section {
  padding: 5px 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;
}

.breadcrumb-section a {
  color: #ef7027;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-section a:hover {
  color: #ff3700;
}    /* ========== BENEFITS SECTION - NO WHITE SPACE ========== */
.benefits-section {
  padding: 60px 0;
  background: linear-gradient(145deg, #ffffff 0%, #fefaf7 100%);
}

.benefits-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 100px;
}

.benefits-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

/* Heading Styles */
.benefits-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.benefits-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ef7027, #ffb347);
  border-radius: 3px;
}

/* Paragraph Styles */
.benefits-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a6874;
  margin-bottom: 1.25rem;
}

.benefits-content p:last-child {
  margin-bottom: 0;
}

/* Desktop (993px and above) - NO WHITE SPACE */
@media (min-width: 993px) {
  .benefits-wrapper {
    align-items: stretch;
  }
  
  .benefits-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .benefits-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    background: linear-gradient(135deg, #ef7027, #d45c1a);
    line-height: 0;
    font-size: 0;
  }
  
  .benefits-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
  }
  
  .benefits-image:hover img {
    transform: scale(1.05);
  }
}

/* Tablet (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
  .benefits-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .benefits-content {
    width: 100%;
  }
  
  .benefits-section h2 {
    text-align: center;
  }
  
  .benefits-section h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .benefits-content p {
    text-align: center;
  }
  
  .benefits-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    line-height: 0;
    font-size: 0;
  }
  
  .benefits-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
  }
  
  .benefits-image:hover img {
    transform: scale(1.05);
  }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
  .benefits-section {
    padding: 45px 0;
  }
  
  .benefits-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .benefits-content {
    width: 100%;
  }
  
  .benefits-section h2 {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .benefits-section h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
  }
  
  .benefits-content p {
    font-size: 0.95rem;
    text-align: center;
  }
  
  .benefits-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    line-height: 0;
    font-size: 0;
  }
  
  .benefits-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
  }
  
  .benefits-image:hover img {
    transform: scale(1.05);
  }
}

/* Small Mobile (up to 550px) */
@media (max-width: 550px) {
  .benefits-section {
    padding: 35px 0;
  }
  
  .benefits-section h2 {
    font-size: 1.4rem;
  }
  
  .benefits-content p {
    font-size: 0.88rem;
  }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
  .benefits-section {
    padding: 50px 0;
  }
  
  .benefits-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .benefits-content {
    width: 100%;
  }
  
  .benefits-section h2 {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .benefits-section h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
  }
  
  .benefits-content p {
    font-size: 0.95rem;
    text-align: center;
  }
  
  .benefits-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    min-height: 320px;
  }
  
  .benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .benefits-image:hover img {
    transform: scale(1.05);
  }
}

/* Small Mobile (up to 550px) */
@media (max-width: 550px) {
  .benefits-section {
    padding: 40px 0;
  }
  
  .benefits-section h2 {
    font-size: 1.4rem;
  }
  
  .benefits-content p {
    font-size: 0.88rem;
  }
  
  .benefits-image {
    min-height: 260px;
  }
}

/* Extra Small Mobile (up to 380px) */
@media (max-width: 380px) {
  .benefits-section {
    padding: 30px 0;
  }
  
  .benefits-section h2 {
    font-size: 1.3rem;
  }
  
  .benefits-content p {
    font-size: 0.85rem;
  }
  
  .benefits-image {
    min-height: 220px;
  }
}

/* ========== INFRASTRUCTURE SECTION ========== */
.infrastructure-section {
  padding: 60px 0;
  background: linear-gradient(145deg, #fefaf7 0%, #ffffff 100%);
  text-align: center;
}

.infrastructure-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
}

.infrastructure-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
  display: inline-block;
}

.infrastructure-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ef7027, #ffb347);
  border-radius: 3px;
}

.infrastructure-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a6874;
  margin-bottom: 1.25rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.infrastructure-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.infrastructure-highlights span {
  background: #fff;
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a2a3a;
  border: 1px solid #eef2f6;
  transition: all 0.3s;
  cursor: default;
}

.infrastructure-highlights span:hover {
  background: #ef7027;
  color: #fff;
  border-color: #ef7027;
  transform: translateY(-3px);
}

/* ========== CONNECTIVITY SECTION ========== */
.connectivity-section {
  padding: 60px 0;
  background: linear-gradient(145deg, #ffffff 0%, #fefaf7 100%);
  text-align: center;
}

.connectivity-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
}

.connectivity-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
  display: inline-block;
}

.connectivity-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ef7027, #ffb347);
  border-radius: 3px;
}

.connectivity-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a6874;
  margin-bottom: 1.25rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.connectivity-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.connectivity-highlights span {
  background: #fff;
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a2a3a;
  border: 1px solid #eef2f6;
  transition: all 0.3s;
  cursor: default;
}

.connectivity-highlights span em {
  color: #ef7027;
  font-style: normal;
  font-weight: 700;
  margin-left: 8px;
}

.connectivity-highlights span:hover {
  background: #ef7027;
  color: #fff;
  border-color: #ef7027;
  transform: translateY(-3px);
}

.connectivity-highlights span:hover em {
  color: #fff;
}

/* ========== LIFESTYLE SECTION ========== */
.lifestyle-section {
  padding: 60px 0;
  background: linear-gradient(145deg, #fefaf7 0%, #ffffff 100%);
}

.lifestyle-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 100px;
}

.lifestyle-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.lifestyle-images {
  flex: 1;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.image-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(239, 112, 39, 0.1);
  border-color: #ef7027;
}

.image-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-card span {
  display: block;
  padding: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a2a3a;
  background: #fff;
}

.lifestyle-content {
  flex: 1;
}

.lifestyle-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.lifestyle-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ef7027, #ffb347);
  border-radius: 3px;
}

.lifestyle-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a6874;
  margin-bottom: 1.25rem;
}

/* ========== HOMEBUYERS SECTION ========== */
.homebuyers-section {
  padding: 60px 0;
  background: linear-gradient(145deg, #ffffff 0%, #fefaf7 100%);
  text-align: center;
}

.homebuyers-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
}

.homebuyers-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
  display: inline-block;
}

.homebuyers-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ef7027, #ffb347);
  border-radius: 3px;
}

.homebuyers-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a6874;
  margin-bottom: 1.25rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.homebuyers-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.reason-card {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid #eef2f6;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.reason-card:hover {
  transform: translateY(-8px);
  border-color: #ef7027;
  box-shadow: 0 20px 35px rgba(239, 112, 39, 0.1);
}

.reason-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.reason-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 8px;
}

.reason-card p {
  font-size: 0.85rem;
  color: #7a8a9a;
  margin: 0;
  font-weight: 500;
}

/* ========== FUTURE GROWTH SECTION ========== */
.future-section {
  padding: 60px 0;
  background: linear-gradient(145deg, #fefaf7 0%, #ffffff 100%);
}

.future-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 100px;
}

.future-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.future-content {
  flex: 1;
}

.future-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.future-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ef7027, #ffb347);
  border-radius: 3px;
}

.future-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a6874;
  margin-bottom: 1.25rem;
}

.future-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.future-image img {
  width: 100%;
  height: 445px;  /* Auto height - no white space */
  object-fit: cover;
  transition: transform 0.5s;
  display: block;  /* Remove inline spacing */
}

.future-image:hover img {
  transform: scale(1.05);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .benefits-wrapper,
  .lifestyle-wrapper,
  .future-wrapper {
    flex-direction: column;
  }
  
  .benefits-image,
  .future-image {
    width: 100%;
  }
  
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .lifestyle-images {
    width: 100%;
  }
  
  .lifestyle-content {
    text-align: center;
  }
  
  .lifestyle-section h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .benefits-section,
  .infrastructure-section,
  .connectivity-section,
  .lifestyle-section,
  .homebuyers-section,
  .future-section {
    padding: 45px 0;
  }
  
  .benefits-section h2,
  .infrastructure-section h2,
  .connectivity-section h2,
  .lifestyle-section h2,
  .homebuyers-section h2,
  .future-section h2 {
    font-size: 1.6rem;
  }
  
  .benefits-content p,
  .infrastructure-section p,
  .connectivity-section p,
  .lifestyle-content p,
  .homebuyers-section p,
  .future-content p {
    font-size: 0.95rem;
  }
  
  .infrastructure-highlights span,
  .connectivity-highlights span {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
  
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .image-card img {
    height: 120px;
  }
  
  .image-card span {
    padding: 8px;
    font-size: 0.75rem;
  }
  
  .homebuyers-reasons {
    flex-direction: column;
    align-items: center;
  }
  
  .reason-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 550px) {
  .benefits-section,
  .infrastructure-section,
  .connectivity-section,
  .lifestyle-section,
  .homebuyers-section,
  .future-section {
    padding: 35px 0;
  }
  
  .benefits-section h2,
  .infrastructure-section h2,
  .connectivity-section h2,
  .lifestyle-section h2,
  .homebuyers-section h2,
  .future-section h2 {
    font-size: 1.4rem;
  }
  
  .benefits-content p,
  .infrastructure-section p,
  .connectivity-section p,
  .lifestyle-content p,
  .homebuyers-section p,
  .future-content p {
    font-size: 0.88rem;
  }
  
  .image-grid {
    grid-template-columns: 1fr;
  }
  
  .infrastructure-highlights,
  .connectivity-highlights {
    gap: 10px;
  }
  
  .infrastructure-highlights span,
  .connectivity-highlights span {
    padding: 6px 14px;
    font-size: 0.75rem;
  }
}