@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Great+Vibes&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..700;1,400..700&family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* ==========================================================================
   G9 PROJECTS - OFFICIAL BRAND STYLESHEET
   Theme: Official G9 Projects Logo Color Combination
   Color Palette: Logo Crimson Burgundy (#8b1e22), Roof Architectural Slate (#5a6578),
                  Deep Slate Charcoal (#1e293b), Onyx Black (#0f172a), Soft Rose Tint (#fdf2f2)
   ========================================================================== */

:root {
  /* G9 Projects Color Palette (Deep Maroon & Slate Charcoal) */
  --primary: #7a0c0d;            /* Official Deep Crimson Maroon */
  --primary-hover: #5c090a;      /* Darker Maroon hover */
  --primary-light: #fdf0f0;      /* Soft warm rose tint */
  --primary-glow: rgba(122, 12, 13, 0.25);
  
  --secondary: #1e293b;          /* Roof Slate Charcoal */
  --secondary-hover: #0f172a;    /* Darker Slate Charcoal hover */
  --secondary-light: #f1f5f9;    /* Soft slate tint */
  --secondary-glow: rgba(30, 41, 59, 0.25);
  
  --accent-gold: #c59b27;        /* Elegant Gold accent */
  
  --dark: #1e1e1e;               /* Charcoal Onyx for main text */
  --text-main: #2b2b2b;
  --text-muted: #555555;
  --text-light: #888888;
  
  --bg-main: #ffffff;
  --bg-soft: #f8f9fa;
  --bg-card: #ffffff;
  --bg-dark-card: #181818;
  
  --border-light: #e5e5e5;
  --border-primary: rgba(122, 12, 13, 0.3);
  --border-secondary: rgba(30, 41, 59, 0.3);
  
  /* Compatibility aliases */
  --gold-glow: rgba(122, 12, 13, 0.25);
  --border-gold: #7a0c0d;
  --shadow-gold: 0 10px 30px rgba(122, 12, 13, 0.22);
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 10px 30px rgba(122, 12, 13, 0.3);
  --shadow-secondary: 0 10px 30px rgba(30, 41, 59, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  -webkit-font-smoothing: antialiased;
}

.text-serif {
  font-family: var(--font-serif);
  font-style: italic;
}

.text-gold {
  color: var(--primary);
}

.bg-gold {
  background-color: var(--primary);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: linear-gradient(135deg, rgba(122, 12, 13, 0.08) 0%, rgba(30, 41, 59, 0.05) 100%);
  color: var(--primary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(122, 12, 13, 0.06);
  transition: var(--transition);
}

.section-tag:hover {
  transform: translateY(-1px);
  background: var(--primary-light);
  box-shadow: 0 4px 14px rgba(122, 12, 13, 0.12);
}

.section-title {
  font-size: 2.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.08rem;
  font-weight: 450;
  line-height: 1.7;
  max-width: 720px;
}

/* Container */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */
.top-bar {
  display: none !important;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info-item i {
  color: var(--secondary);
}

.header-badge {
  background: var(--primary);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

/* Main Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 4px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 95px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

.brand-fallback {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  line-height: 1;
}

.brand-tagline {
  font-size: 0.68rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Dropdown Menu & Submenus */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--bg-card);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 14px 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-group {
  margin-bottom: 6px;
}

.dropdown-group:last-child {
  margin-bottom: 0;
}

.dropdown-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--dark);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.dropdown-group-header:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.dropdown-group-header .dropdown-arrow {
  font-size: 0.75rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.dropdown-group.active .dropdown-group-header .dropdown-arrow,
.dropdown-group:hover .dropdown-group-header .dropdown-arrow {
  transform: rotate(90deg);
}

.dropdown-sub-items {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding-left: 24px;
  margin-top: 4px;
}

.dropdown-group.active .dropdown-sub-items,
.dropdown-group:hover .dropdown-sub-items {
  display: flex;
}

.dropdown-sub-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 6px;
  transition: var(--transition);
}

.dropdown-sub-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  padding-left: 14px;
}

.dropdown-divider {
  height: 1px;
  background: var(--border-light);
  margin: 6px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(122, 12, 13, 0.35);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(122, 12, 13, 0.45);
  color: #ffffff;
}

.btn-secondary {
  background: var(--secondary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(244, 130, 31, 0.35);
}

.btn-secondary:hover {
  background: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 130, 31, 0.45);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

/* ==========================================================================
   HERO SLIDER CAROUSEL (Banner Images 1, 2, 3, 4)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 520px;
  max-height: 72vh;
  overflow: hidden;
  background: #0b1424;
}



.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 12px 35px rgba(122, 12, 13, 0.4);
}

.prev-btn {
  left: 30px;
}

.next-btn {
  right: 30px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  gap: 10px;
  background: rgba(15, 23, 42, 0.55);
  padding: 8px 18px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active, .dot:hover {
  background: var(--primary);
  width: 32px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(122, 12, 13, 0.6);
}

/* Legacy Hero Fallback */
.hero-section {
  position: relative;
  padding: 100px 0 120px;
  background: linear-gradient(135deg, #0b1424 0%, #15253e 100%);
  color: #ffffff;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 80% 20%, rgba(139, 30, 34, 0.2) 0%, transparent 50%),
                    url('images/hero-villa.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: blur(2px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(139, 30, 34, 0.2);
  border: 1px solid rgba(139, 30, 34, 0.45);
  border-radius: var(--radius-full);
  color: #fca5a5;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Floating Card in Hero */
.hero-card-preview {
  background: rgba(21, 34, 56, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  position: relative;
}

.hero-card-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--slate-roof));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.preview-title {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-title i {
  color: var(--primary);
}

.keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.chip:hover {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}

/* ==========================================================================
   HOME PAGE - FIND YOUR SPACE SEARCH STRIP & FILTER CARD
   ========================================================================== */
.find-space-strip {
  margin-top: -35px;
  position: relative;
  z-index: 40;
  padding: 0 0 15px;
}

.search-filter-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.search-filter-card:hover {
  box-shadow: 0 25px 55px rgba(122, 12, 13, 0.15);
  border-color: rgba(122, 12, 13, 0.25);
}

.search-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.search-title i {
  color: var(--primary);
  font-size: 1.2rem;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 20px;
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}

.filter-group label i {
  color: var(--primary);
}

.filter-group select {
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  outline: none;
  transition: var(--transition);
  cursor: pointer;
}

.filter-group select:focus,
.filter-group select:hover {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(122, 12, 13, 0.12);
}

/* PROJECT FILTER TABS */
.project-filter-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 32px 0 45px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: #f1f5f9;
  color: var(--secondary);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--border-primary);
}

.tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(122, 12, 13, 0.3);
}

/* AMENITIES SECTION */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 45px;
}

.amenity-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 22px;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(122, 12, 13, 0.12);
  border-color: var(--border-primary);
}

.amenity-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #f1f5f9 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(122, 12, 13, 0.1);
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon-box {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.08);
}

.amenity-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--secondary);
}

.amenity-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* INVESTMENT CALCULATOR CARD */
.calculator-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 24px;
  padding: 45px 50px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 40px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.calc-input-group {
  margin-bottom: 24px;
}

.calc-input-group:last-child {
  margin-bottom: 0;
}

.calc-input-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.calc-input-group label i {
  color: #fca5a5;
}

.calc-input-group select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  transition: var(--transition);
}

.calc-input-group select option {
  background: #0f172a;
  color: #ffffff;
}

.calc-input-group select:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.14);
}

.calc-result-box {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 35px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.val-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.val-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.val-note {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* THE G9 DIFFERENCE & WHY CHOOSE US GRIDS */
.diff-grid, .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 45px;
}

.diff-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px 24px;
  transition: var(--transition);
}

.diff-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
  border-color: var(--primary);
}

.diff-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fca5a5;
  margin-bottom: 12px;
  line-height: 1;
}

.diff-card h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.diff-card p {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.65;
}

.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(122, 12, 13, 0.1);
  border-color: var(--border-primary);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: #ffffff;
}

.why-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   GOOGLE REVIEWS 3-COLUMN AUTO-SCROLLING MARQUEE
   ========================================================================== */
.google-reviews-wrapper {
  margin-top: 45px;
  position: relative;
  overflow: hidden;
  height: 580px;
  max-height: 80vh;
  /* Top and bottom soft gradient mask for continuous fade effect */
  mask-image: linear-gradient(to bottom, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 6%, black 94%, transparent 100%);
}

.reviews-marquee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  height: 100%;
}

.marquee-col {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.marquee-col:hover .marquee-track {
  animation-play-state: paused !important;
}

/* MARQUEE ANIMATIONS */
.track-up {
  animation: scrollMarqueeUp 26s linear infinite;
}

.track-down {
  animation: scrollMarqueeDown 30s linear infinite;
}

.track-up-fast {
  animation: scrollMarqueeUp 32s linear infinite;
}

@keyframes scrollMarqueeUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollMarqueeDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

/* GOOGLE REVIEW CARD STYLING (Matching User Screenshot) */
.g-review-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.g-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(122, 12, 13, 0.1);
  border-color: rgba(122, 12, 13, 0.3);
}

.g-user-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.g-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.g-user-meta strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
}

.g-user-meta span {
  font-size: 0.8rem;
  color: #64748b;
  display: block;
  margin-top: 2px;
}

.g-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.g-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.g-time {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
}

.g-review-text {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.6;
  margin: 0;
}

/* BLOG SECTION CARDS */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 26px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--border-primary);
}

.blog-category {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.blog-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-link {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.blog-link:hover {
  color: var(--primary-hover);
  transform: translateX(4px);
}

/* FAQ SECTION ACCORDIONS */
.faq-container {
  max-width: 840px;
  margin: 45px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.faq-item.active, .faq-item:hover {
  border-color: var(--border-primary);
  box-shadow: 0 8px 24px rgba(122, 12, 13, 0.08);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--secondary);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  color: var(--primary);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* LET'S BEGIN & QUICK ENQUIRY STRIP */
.lets-begin-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.lets-begin-content h2 {
  font-size: 2.6rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.lets-begin-content p {
  font-size: 1.08rem;
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 30px;
}

.quick-enquiry-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.quick-enquiry-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(122, 12, 13, 0.15);
}

/* Floating Stats Strip */
.stats-strip {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  border: 1px solid var(--border-light);
}

.stat-item {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.8rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   ABOUT STORY SECTION
   ========================================================================== */
.about-section {
  padding: 55px 0 20px;
}

.full-showcase-section {
  padding: 10px 0 35px;
}

/* ==========================================================================
   DEVELOPMENTS GRID & PROJECT CARDS
   ========================================================================== */
.developments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.dev-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.dev-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border-color: rgba(122, 12, 13, 0.3);
}

.dev-img-box {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: var(--dark);
}

.dev-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.dev-card:hover .dev-img {
  transform: scale(1.06);
}

.dev-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 2;
}

.dev-badge.completed {
  background: var(--secondary);
}

.dev-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  box-sizing: border-box;
}

.dev-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: var(--font-heading);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.dev-specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  min-height: 32px;
}

.spec-chip {
  background: var(--primary-light);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dev-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.dev-card .btn {
  white-space: nowrap;
  font-size: 0.88rem;
  padding: 12px 20px;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
  margin-top: auto;
  border-radius: var(--radius-full);
}

@media (max-width: 1024px) {
  .developments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .developments-grid {
    grid-template-columns: 1fr;
  }
}



.featured-section {
  padding: 50px 0;
}

.amenities-section {
  padding: 50px 0;
}

.calculator-section {
  padding: 55px 0;
}

.difference-section {
  padding: 50px 0;
}

.why-us-section {
  padding: 50px 0;
}

.testimonials-section {
  padding: 50px 0;
}

.insights-section {
  padding: 50px 0;
}

.faq-section {
  padding: 50px 0;
}

.lets-begin-section {
  padding: 55px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: stretch;
}

.about-image-wrapper {
  position: relative;
  height: 100%;
  display: flex;
}

.main-about-img {
  border-radius: 16px 60px 16px 16px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
}

.main-about-img:hover {
  transform: scale(1.02);
}

.footer-logo {
  max-height: 95px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
}

.about-content-box p {
  margin-bottom: 20px;
  color: var(--text-main);
  font-size: 1.05rem;
}

.highlight-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-weight: 600;
  color: var(--secondary);
}

/* Keyword Cloud Pill Bar */
.properties-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.prop-pill {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.prop-pill i {
  color: var(--primary);
  font-size: 0.8rem;
}

/* ==========================================================================
   VISION, MISSION & QUALITY POLICY SECTION
   ========================================================================== */
.vission-section {
  padding: 80px 0;
  background: #ffffff;
}

.vmq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.vmq-card {
  border-radius: 12px;
  padding: 35px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.vmq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.vmq-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.vmq-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.vmq-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* OUR VISION CARD - Deep Maroon Solid Box (Matching Screenshot) */
.vmq-card.card-vision,
.vmq-card:nth-child(1) {
  background: var(--primary);
  color: #ffffff;
  border: none;
}

.vmq-card.card-vision h3,
.vmq-card:nth-child(1) h3 {
  color: #ffffff;
}

.vmq-card.card-vision p,
.vmq-card:nth-child(1) p {
  color: #ffffff;
  opacity: 0.95;
}

.vmq-card.card-vision .vmq-icon,
.vmq-card:nth-child(1) .vmq-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

/* OUR MISSION CARD - Deep Slate Navy/Charcoal Box (No Orange) */
.vmq-card.card-mission,
.vmq-card:nth-child(2) {
  background: var(--secondary);
  color: #ffffff;
  border: none;
}

.vmq-card.card-mission h3,
.vmq-card:nth-child(2) h3 {
  color: #ffffff;
}

.vmq-card.card-mission p,
.vmq-card:nth-child(2) p {
  color: #ffffff;
  opacity: 0.95;
}

.vmq-card.card-mission .vmq-icon,
.vmq-card:nth-child(2) .vmq-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

/* QUALITY POLICY CARD */
.vmq-card.card-quality,
.vmq-card:nth-child(3) {
  background: #ffffff;
  color: var(--text-main);
  border-top: 5px solid var(--primary);
}

.vmq-card.card-quality .vmq-icon,
.vmq-card:nth-child(3) .vmq-icon {
  background: var(--primary-light);
  color: var(--primary);
}

/* Specialized Quality Policy Accordion / Feature List */
.policy-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--secondary);
}

.feature-pill i {
  color: var(--primary);
}

/* ==========================================================================
   CRAFTSMANSHIP & PROCESS SECTION
   ========================================================================== */
.process-section {
  padding: 90px 0;
  background: var(--secondary);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.process-section .section-title {
  color: #ffffff;
}

.process-section .section-subtitle {
  color: #94a3b8;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

.process-img-box {
  position: relative;
}

.process-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-card {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateX(8px);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-info h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.step-info p {
  color: #cbd5e1;
  font-size: 0.9rem;
}

/* ==========================================================================
   CALL TO ACTION BANNER
   ========================================================================== */
.cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #6e1518 100%);
  color: #ffffff;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.cta-text h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fca5a5;
}

.cta-buttons {
  display: flex;
  gap: 16px;
}

.btn-dark {
  background: var(--secondary);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-dark:hover {
  background: #ffffff;
  transform: translateY(-2px);
  color: var(--primary);
}

/* ==========================================================================
   FOOTER SECTION (Matching Official Website Light Footer)
   ========================================================================== */
.footer {
  background-color: #ffffff;
  color: var(--text-main);
  padding: 60px 0 20px;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin: 16px 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.footer-title {
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-main);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '•';
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: bold;
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.contact-item i {
  color: var(--primary);
  font-size: 1.05rem;
  margin-top: 3px;
}

.contact-item a {
  color: var(--text-main);
}

.contact-item a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* MODAL / POPUP */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 17, 30, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  width: 90%;
  max-width: 500px;
  padding: 35px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-backdrop.active .modal-box {
  transform: scale(1);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--secondary);
  transition: var(--transition);
}

.close-modal:hover {
  background: var(--primary);
  color: #0f1c2e;
}

.modal-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item {
    border-right: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .main-about-img {
    height: 480px;
  }

  .vmq-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 95px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 95px);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }


  .hero-content h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   FIND YOUR SPACE - PROPERTY SEARCH BAR
   ========================================================================== */
.find-space-strip {
  margin-top: -50px;
  position: relative;
  z-index: 20;
}

.search-filter-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  padding: 30px 35px;
  border: 1px solid var(--border-light);
}

.search-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

.search-title i {
  color: var(--primary);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 20px;
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group select {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: #f8f9fa;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  outline: none;
  transition: var(--transition);
  cursor: pointer;
}

.filter-group select:focus {
  border-color: var(--primary);
  background: #ffffff;
}

/* ==========================================================================
   FEATURED DEVELOPMENTS (Srinivasan Layout, G9 Vinyas, G9 Vistaara)
   ========================================================================== */
.featured-section {
  padding: 90px 0;
  background: #ffffff;
}

.dev-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* ==========================================================================
   THE G9 DIFFERENCE & WHY CHOOSE US
   ========================================================================== */
.difference-section {
  padding: 90px 0;
  background: var(--secondary);
  color: #ffffff;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.diff-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 24px;
  border-radius: 14px;
  transition: var(--transition);
}

.diff-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.diff-num {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #fca5a5;
  margin-bottom: 14px;
  line-height: 1;
}

.diff-card h4 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.diff-card p {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Why Choose Us Cards */
.why-section {
  padding: 90px 0;
  background: #f8f9fa;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.why-card {
  background: #ffffff;
  padding: 35px 24px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.why-icon {
  width: 55px;
  height: 55px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.why-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ==========================================================================
   CLIENT STORIES & TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  padding: 90px 0;
  background: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testi-card {
  background: #f8f9fa;
  padding: 35px 30px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 12px;
}

.testi-quote {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}

.user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
}

.user-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   INSIGHTS & BLOG SECTION
   ========================================================================== */
.blog-section {
  padding: 90px 0;
  background: #f8f9fa;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-category {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.4;
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-link {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-link:hover {
  transform: translateX(4px);
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  background: #ffffff;
}

.faq-container {
  max-width: 840px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  background: #f8f9fa;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
}

.faq-item.active {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(122, 12, 13, 0.1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 10px 24px 24px;
  opacity: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

/* ==========================================================================
   QUICK ENQUIRY BANNER & FLOATING WHATSAPP WIDGET
   ========================================================================== */
.lets-begin-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #0d1527 100%);
  color: #ffffff;
}

.lets-begin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lets-begin-content h2 {
  font-size: 2.6rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.lets-begin-content p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.quick-enquiry-card {
  background: #ffffff;
  color: var(--dark);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.quick-enquiry-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

/* Floating WhatsApp Widget */
.whatsapp-float-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float-widget:hover {
  background: #1eb956;
  transform: translateY(-4px) scale(1.03);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-widget i {
  font-size: 1.5rem;
}

/* Responsive Queries for New Sections */
@media (max-width: 1024px) {
  .filter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .developments-grid, .diff-grid, .why-grid, .testimonials-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lets-begin-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   AMENITIES & INFRASTRUCTURE SHOWCASE GRID
   ========================================================================== */
.amenities-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.amenity-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(122, 12, 13, 0.12);
  border-color: var(--border-primary);
}

.amenity-card:hover::before {
  opacity: 1;
}

.amenity-icon-box {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon-box {
  background: var(--primary);
  color: #ffffff;
}

.amenity-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.amenity-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   INTERACTIVE INVESTMENT & APPRECIATION ESTIMATOR
   ========================================================================== */
.calculator-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #0b1424 0%, #15253e 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.calculator-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  max-width: 960px;
  margin: 40px auto 0;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-input-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-input-group select, .calc-input-group input[type="range"] {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #1e293b;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  outline: none;
}

.calc-input-group select option {
  background-color: #1e293b;
  color: #ffffff;
  padding: 12px;
}

.calc-result-box {
  background: rgba(122, 12, 13, 0.35);
  border: 1px solid var(--primary);
  border-radius: 18px;
  padding: 35px;
  text-align: center;
}

.calc-result-box .val-label {
  font-size: 0.9rem;
  color: #fca5a5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.calc-result-box .val-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
  line-height: 1.1;
  margin-bottom: 12px;
}

.calc-result-box .val-note {
  font-size: 0.82rem;
  color: #cbd5e1;
}

/* Filter Tabs above Featured Developments */
.project-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: #f1f5f9;
  color: var(--dark);
  border: 1px solid var(--border-light);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(122, 12, 13, 0.3);
}

/* Floating Sticky Action Bar */
.sticky-action-bar {
  display: none !important;
}

@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .calc-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .sticky-action-bar {
    display: none;
  }
}

/* ==========================================================================
   PROJECTS PORTFOLIO PAGE STYLES
   ========================================================================== */
.projects-hero {
  padding: 85px 0 70px;
  background: linear-gradient(135deg, #0b1424 0%, #15253e 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
}

.projects-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.projects-hero .hero-sub {
  font-size: 1.35rem;
  color: #fca5a5;
  font-weight: 700;
  margin-bottom: 16px;
}

.projects-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
}

.portfolio-stats-section {
  padding: 60px 0 90px;
  background: #f8f9fa;
}

.portfolio-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.status-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.status-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary);
}

.status-card.ongoing::before {
  background: var(--secondary);
}

.status-card.upcoming::before {
  background: #0284c7;
}

.status-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border-color: rgba(122, 12, 13, 0.2);
}

.status-tag-badge {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  background: var(--primary-light);
  color: var(--primary);
}

.status-card.ongoing .status-tag-badge {
  background: #e2e8f0;
  color: var(--secondary);
}

.status-card.upcoming .status-tag-badge {
  background: #e0f2fe;
  color: #0369a1;
}

.status-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.status-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.upcoming-pill {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0369a1;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1024px) {
  .portfolio-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   COMPLETE MOBILE RESPONSIVE SYSTEM FOR G9 PROJECTS
   ========================================================================== */

/* Navigation Backdrop Overlay */
.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9995;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Floating Bottom Mobile Sticky Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 62px;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 9990;
}

.mobile-sticky-bar .sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: background 0.2s ease;
}

.mobile-sticky-bar .btn-call {
  background: #1e293b;
  color: #ffffff;
}

.mobile-sticky-bar .btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.mobile-sticky-bar .btn-enquire {
  background: var(--primary);
  color: #ffffff;
}

.mobile-sticky-bar .sticky-btn i {
  font-size: 1.15rem;
}

/* Contact Page Specific Styles */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 24px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(122, 12, 13, 0.1);
  border-color: var(--border-primary);
}

.contact-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.contact-info-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.contact-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form-box {
  background: #f8f9fa;
  border-radius: 24px;
  padding: 45px;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Breakpoint: Laptops & Tablets (Max Width: 1024px) */
@media (max-width: 1024px) {
  .container {
    width: 92%;
  }

  .nav-container {
    height: 85px;
  }

  .brand-logo {
    max-height: 65px;
  }

  .hero-slider-section {
    height: 400px;
  }

  .filter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .developments-grid,
  .amenities-grid,
  .diff-grid,
  .why-grid,
  .testimonials-grid,
  .reviews-marquee-grid,
  .blog-grid,
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .lets-begin-grid,
  .calc-grid,
  .portfolio-stats-grid,
  .contact-dual-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .main-about-img {
    height: 380px;
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* Breakpoint: Tablets & Mobile Devices (Max Width: 768px) */
@media (max-width: 768px) {
  body {
    padding-bottom: 62px; /* Space for mobile bottom sticky bar */
  }

  .container {
    width: 94%;
    padding: 0 12px;
  }

  /* Header & Mobile Navigation Drawer */
  .navbar {
    height: 70px;
  }

  .nav-container {
    height: 70px;
  }

  .brand-logo {
    max-height: 52px;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-size: 1.3rem;
    color: var(--secondary);
    transition: var(--transition);
  }

  .mobile-toggle:active {
    background: var(--primary-light);
    color: var(--primary);
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 85%;
    max-width: 340px;
    height: calc(100vh - 70px);
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px 100px;
    gap: 6px;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    z-index: 9999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 8px;
    width: 100%;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover, .nav-link.active {
    background: var(--primary-light);
    color: var(--primary);
  }

  /* Mobile Navigation Menu Dropdowns & Sub-menus */
  .nav-item-dropdown {
    width: 100%;
    position: relative;
  }

  .nav-item-dropdown .nav-link {
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-item-dropdown .nav-link i {
    transition: transform 0.3s ease;
  }

  .nav-item-dropdown.active .nav-link i {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin: 8px 0 10px;
    width: 100% !important;
    display: flex !important;
    flex-direction: column;
    background: #f8f9fa !important;
    padding: 10px;
    z-index: 1;
    transition: var(--transition);
  }

  .dropdown-group {
    margin-bottom: 6px;
  }

  .dropdown-group:last-child {
    margin-bottom: 0;
  }

  .dropdown-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--dark);
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: var(--transition);
  }

  .dropdown-group.active .dropdown-group-header {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--border-primary);
  }

  .dropdown-group-header .dropdown-arrow {
    font-size: 0.75rem;
    color: var(--primary);
    transition: transform 0.3s ease;
  }

  .dropdown-group.active .dropdown-group-header .dropdown-arrow {
    transform: rotate(90deg);
  }

  .dropdown-sub-items {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding-left: 10px;
    margin: 6px 0 4px;
  }

  .dropdown-group.active .dropdown-sub-items {
    display: flex !important;
  }

  .dropdown-sub-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: var(--transition);
  }

  .dropdown-sub-item:active, .dropdown-sub-item:hover {
    background: var(--primary-light);
    color: var(--primary);
  }

  /* About Us Page & Hero Section Mobile */
  .hero-section {
    padding: 40px 0 50px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 1.85rem;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-badge-pill {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 16px;
    white-space: normal;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

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

  .hero-card-preview {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .keyword-chips {
    gap: 6px;
  }

  .chip {
    font-size: 0.78rem;
    padding: 5px 10px;
  }

  /* Stats Strip Mobile */
  .stats-strip {
    margin-top: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px 16px;
    border-radius: 16px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 10px 5px;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .stat-number {
    font-size: 2.1rem;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 0.78rem;
  }

  /* Vision, Mission & Quality Policy Mobile */
  .vission-section {
    padding: 45px 0;
  }

  .vmq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 25px;
  }

  .vmq-card {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .vmq-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .vmq-card h3 {
    font-size: 1.25rem;
  }

  .vmq-card p {
    font-size: 0.9rem;
  }

  /* Craftsmanship Process Mobile */
  .process-section {
    padding: 50px 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }

  .process-img {
    height: 240px;
    border-radius: 14px;
  }

  .process-steps {
    gap: 16px;
  }

  .step-card {
    padding: 16px;
    gap: 14px;
    border-radius: 12px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .step-info h4 {
    font-size: 1.05rem;
  }

  .step-info p {
    font-size: 0.88rem;
  }

  /* CTA Section Mobile */
  .cta-section {
    padding: 45px 0;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-text h2 {
    font-size: 1.7rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Hero Slider Mobile - Fluid Aspect Ratio Responsiveness */
  .hero-slider-section {
    height: 54vw;
    min-height: 210px;
    max-height: 440px;
    aspect-ratio: 16 / 9;
  }

  .slide-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center center;
  }

  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .prev-btn {
    left: 6px;
  }

  .next-btn {
    right: 6px;
  }

  .slider-dots {
    bottom: 8px;
    padding: 4px 10px;
    gap: 5px;
  }

  .dot {
    width: 7px;
    height: 7px;
  }

  .dot.active {
    width: 18px;
  }

  /* Find Space Strip Mobile */
  .find-space-strip {
    margin-top: 15px;
    z-index: 10;
  }

  .search-filter-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .search-title {
    font-size: 1.1rem;
  }

  .filter-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .filter-group select {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .filter-grid .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }

  /* Section Typography Mobile */
  .section-tag {
    font-size: 0.78rem;
    padding: 5px 12px;
    margin-bottom: 8px;
  }

  .section-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  /* About Section Mobile */
  .about-section {
    padding: 40px 0 20px;
  }

  .main-about-img {
    height: 250px;
    min-height: auto;
    border-radius: 16px;
  }

  .about-content-box p {
    font-size: 0.95rem;
  }

  .highlight-box {
    padding: 16px;
    font-size: 0.9rem;
    margin: 18px 0;
  }

  /* Full Showcase Section Mobile */
  .full-showcase-section {
    padding: 10px 0 25px;
  }

  .full-showcase-section div[style*="border-radius: 24px"] {
    border-radius: 14px !important;
  }

  /* Featured Developments Filter Tabs Horizontal Scroll */
  .project-filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 6px 2px 12px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    margin-top: 20px;
  }

  .project-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  /* Grids to 1 Column */
  .developments-grid,
  .amenities-grid,
  .diff-grid,
  .why-grid,
  .testimonials-grid,
  .reviews-marquee-grid,
  .blog-grid,
  .contact-cards-grid,
  .contact-dual-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Contact Page Mobile Styles */
  .contact-info-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .contact-form-box {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .form-row-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-section {
    padding: 0 0 40px !important;
  }

  .dev-card {
    border-radius: 16px;
  }

  .dev-img-box {
    height: 200px;
  }

  .dev-body {
    padding: 20px 16px;
  }

  .dev-title {
    font-size: 1.25rem;
  }

  .dev-desc {
    font-size: 0.88rem;
    margin-bottom: 18px;
  }

  .spec-chip {
    font-size: 0.78rem;
    padding: 4px 10px;
  }

  /* Amenities Cards */
  .amenity-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .amenity-icon-box {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    margin-bottom: 14px;
    border-radius: 12px;
  }

  .amenity-card h4 {
    font-size: 1.05rem;
  }

  /* Investment Estimator Calculator */
  .calculator-section {
    padding: 45px 0;
  }

  .calculator-card {
    padding: 20px 16px;
    border-radius: 16px;
    margin-top: 24px;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .calc-result-box {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .calc-result-box .val-number {
    font-size: 2.1rem;
  }

  /* Quick Enquiry / Let's Begin */
  .lets-begin-section {
    padding: 50px 0;
  }

  .lets-begin-content h2 {
    font-size: 1.8rem;
  }

  .quick-enquiry-card {
    padding: 22px 16px;
    border-radius: 16px;
  }

  /* FAQ Section Mobile */
  .faq-section {
    padding: 40px 0;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 16px 16px;
    font-size: 0.88rem;
  }

  /* Testimonials & Google Reviews Mobile Responsiveness - 1 Column Auto-Scroll Up */
  .testimonials-section {
    padding: 45px 0;
  }

  .google-reviews-wrapper {
    height: 480px;
    max-height: 70vh;
    mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
    margin-top: 25px;
    overflow: hidden;
  }

  .reviews-marquee-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    height: 100%;
  }

  .marquee-col {
    height: 100%;
    overflow: hidden;
    position: relative;
  }

  .marquee-col:nth-child(2),
  .marquee-col:nth-child(3) {
    display: none;
  }

  .marquee-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: scrollMarqueeUp 24s linear infinite !important;
  }

  .g-review-card {
    padding: 18px 16px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  }

  .g-review-text {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  /* Floating WhatsApp Mobile Adjustments */
  .whatsapp-float-widget {
    bottom: 75px;
    right: 16px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .whatsapp-float-widget span {
    display: inline;
  }

  /* Footer Mobile */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    font-size: 0.82rem;
  }

  /* Mobile Sticky Bar Active */
  .mobile-sticky-bar {
    display: flex;
  }

  /* Modal Popup Mobile */
  .modal-box {
    width: 92%;
    max-height: 88vh;
    overflow-y: auto;
    padding: 24px 18px;
    border-radius: 16px;
  }
}

/* Breakpoint: Extra Small Mobile Phones (Max Width: 480px) */
@media (max-width: 480px) {
  .hero-slider-section {
    height: 56vw;
    min-height: 195px;
    aspect-ratio: 16 / 9;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-tagline {
    font-size: 0.6rem;
  }

  .calc-result-box .val-number {
    font-size: 1.85rem;
  }

  .whatsapp-float-widget span {
    display: none;
  }

  .whatsapp-float-widget {
    width: 46px;
    height: 46px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .whatsapp-float-widget i {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   TRUST COUNTER BAR & ABOUT CATEGORIES SHOWCASE
   ========================================================================== */
.trust-about-categories-section {
  width: 100%;
  background: #faf8f5;
  border-top: 1px solid #eae5dd;
  border-bottom: 1px solid #eae5dd;
  margin: 35px 0 50px;
}

.trust-counter-bar {
  background: #ffffff;
  padding: 24px 0;
  border-bottom: 1px solid #f0ebe1;
}

.trust-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}

.trust-counter-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 15px;
  border-right: 1px solid #e2e8f0;
}

.trust-counter-item:last-child {
  border-right: none;
}

.trust-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #c59b27;
  color: #c59b27;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  background: rgba(197, 155, 39, 0.05);
}

.trust-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
  font-family: var(--font-heading);
}

.trust-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 2px;
}

.about-categories-body {
  padding: 55px 0 65px;
}

.about-categories-grid {
  display: grid;
  grid-template-columns: 1fr 240px 1.55fr;
  gap: 28px;
  align-items: center;
}

.sec-tag-sm {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sec-title-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 14px;
  line-height: 1.25;
}

.sec-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.checklist-items {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checklist-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.checklist-items li i {
  color: #8b1e22;
  font-size: 0.85rem;
  font-weight: 900;
}

.about-action-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.signature-font {
  font-family: 'Alex Brush', 'Great Vibes', cursive;
  font-size: 2.7rem;
  color: #7a0c0d;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1;
}

.btn-know-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #7a0c0d;
  color: #ffffff;
  padding: 11px 20px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(122, 12, 13, 0.3);
}

.btn-know-more:hover {
  background: #5c090a;
  transform: translateY(-2px);
  color: #ffffff;
}

.arch-col {
  display: flex;
  align-self: center;
}

.arch-img-box {
  width: 100%;
  height: 390px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0,0,0,0.06);
}

.arch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.categories-col {
  display: flex;
  flex-direction: column;
}

.cat-2x2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.cat-card {
  background: #f5efe6;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid #e7ded2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  position: relative;
  box-sizing: border-box;
}

.cat-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(122, 12, 13, 0.12);
  border-color: #c59b27;
}

.cat-card-img {
  width: 96px;
  height: 76px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.cat-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  flex-grow: 1;
}

.cat-card-content h4 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 3px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  word-break: break-word;
}

.cat-card-content p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.35;
  margin: 0;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .trust-counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .trust-counter-item {
    border-right: none;
  }
  .about-categories-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .arch-img-box {
    height: 360px;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .trust-counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }

  .trust-counter-item {
    padding: 0 5px;
    border-right: none;
    gap: 12px;
  }

  .trust-icon-circle {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }

  .trust-number {
    font-size: 1.25rem;
  }

  .trust-label {
    font-size: 0.76rem;
  }

  .cat-2x2-grid {
    grid-template-columns: 1fr;
  }
}
