/* 
  SN Properties - Mysore Real Estate 
  Design System & Fully Responsive Stylesheet
*/

:root {
  --primary-navy: #0b1424;
  --secondary-navy: #152238;
  --header-dark: #070d17;
  --gold-primary: #d4af37;
  --gold-hover: #b8860b;
  --gold-light: #fdf8eb;
  --gold-border: #ebdcb8;
  --gold-accent: #d4af37;
  --gold-glow: rgba(212, 175, 55, 0.35);

  --text-dark: #111111;
  --text-medium: #333333;
  --text-muted: #555555;
  --text-light: #888888;
  --text-white: #ffffff;

  --bg-light: #fbf8f3;
  --bg-card: #ffffff;
  --border-light: #eae5dc;


  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 18px 45px rgba(0, 0, 0, 0.14);
  --shadow-gold: 0 8px 25px rgba(197, 155, 39, 0.35);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 9999;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #c59b27, #f3d477, #d4af37);
  width: 0%;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px var(--gold-accent);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
}

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

ul {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  outline: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Typography Helpers - Unified Modern Title Design */
.section-tag,
.eyebrow {
  color: var(--gold-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title,
.font-display {
  font-family: var(--font-heading) !important;
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 36px;
  }
}

.heading-flourish {
  display: none !important;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 600px;
}

/* Animated Shimmer Text */
.shimmer-text {
  background: linear-gradient(90deg, #c59b27 0%, #ffe69c 50%, #c59b27 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 {
  transition-delay: 0.15s;
}

.animate-delay-2 {
  transition-delay: 0.3s;
}

.animate-delay-3 {
  transition-delay: 0.45s;
}

.animate-delay-4 {
  transition-delay: 0.6s;
}

.animate-delay-5 {
  transition-delay: 0.75s;
}

.animate-delay-6 {
  transition-delay: 0.9s;
}

.animate-delay-7 {
  transition-delay: 1.05s;
}

.scale-on-scroll {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scale-on-scroll.animated {
  opacity: 1;
  transform: scale(1);
}

.slide-left-on-scroll {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-right-on-scroll {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-left-on-scroll.animated,
.slide-right-on-scroll.animated {
  opacity: 1;
  transform: translateX(0);
}

.flip-on-scroll {
  opacity: 0;
  transform: perspective(600px) rotateY(60deg);
  transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.flip-on-scroll.animated {
  opacity: 1;
  transform: perspective(600px) rotateY(0deg);
}

.flip-up-on-scroll {
  opacity: 0;
  transform: perspective(600px) rotateX(-60deg);
  transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.flip-up-on-scroll.animated {
  opacity: 1;
  transform: perspective(600px) rotateX(0deg);
}

@media (prefers-reduced-motion: reduce) {

  .animate-on-scroll,
  .scale-on-scroll,
  .slide-left-on-scroll,
  .slide-right-on-scroll,
  .flip-on-scroll,
  .flip-up-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --- 1. Top Bar --- */
.top-bar {
  background-color: var(--header-dark);
  color: var(--text-light);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  transition: var(--transition);
}

.top-info-item:hover {
  color: var(--gold-primary);
}

.top-info-item i {
  color: var(--gold-primary);
  font-size: 15px;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-social span {
  color: #94a3b8;
  font-size: 12px;
  margin-right: 4px;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--gold-primary);
  color: var(--primary-navy);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 12px rgba(197, 155, 39, 0.4);
}

/* --- 2. Main Navigation --- */
.main-header {
  background-color: #000000;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.main-header.scrolled {
  box-shadow: 0 8px 30px rgba(11, 20, 36, 0.12);
  background-color: #000000 !important;
}

.main-header.scrolled .nav-link {
  color: #ffffff !important;
}

.main-header .brand-name, 
.main-header .brand-tagline {
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 102px;
  max-width: 100%;
}

/* Header Logo Brand Container */
.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  padding: 8px 0;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 96px;
  max-height: 96px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.logo-brand:hover .brand-logo-img {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary-navy) 0%, var(--gold-primary) 50%, var(--primary-navy) 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: brandShimmer 4s linear infinite;
  letter-spacing: 1px;
  line-height: 1.1;
  white-space: nowrap;
}

@keyframes brandShimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.brand-tagline {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--gold-primary);
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  font-style: italic;
  animation: taglineFade 2s ease-out infinite alternate;
}

@keyframes taglineFade {
  0% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(197, 155, 39, 0.3);
  }
}

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

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  padding: 8px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

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

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

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

.dropdown-icon {
  font-size: 10px;
  color: var(--text-muted);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 100;
  border: 1px solid rgba(226, 232, 240, 0.8);
  pointer-events: none;
}

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

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--gold-primary);
  padding-left: 24px;
}

.btn-list-property {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(197, 155, 39, 0.3);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-list-property:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(197, 155, 39, 0.45);
}

.hamburger-btn {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hamburger-btn:hover {
  background: var(--gold-light);
  color: var(--gold-primary);
}

/* Mobile Drawer Overlay Backdrop (Stays BEHIND Drawer) */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 13, 23, 0.65);
  /* Removed backdrop-filter to prevent rendering bugs on some mobile devices */
  backdrop-filter: none;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

/* --- 3. Hero Section (Full Left Aligned Text) --- */
.hero-section {
  position: relative;
  min-height: 560px;
  background-color: var(--primary-navy);
  display: flex;
  align-items: center;
  padding: 90px 0 130px 0;
  color: #ffffff;
  overflow: hidden;
  text-align: left;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(11, 20, 36, 0.82) 0%, rgba(11, 20, 36, 0.65) 100%),
    url('images/hero.png') center/cover no-repeat;
  z-index: 0;
  animation: heroKenBurns 20s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero-section>* {
  position: relative;
  z-index: 2;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-particle {
  position: absolute;
  background: var(--gold-accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 8s linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) scale(0.5);
    opacity: 0.2;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100px) scale(1.2);
    opacity: 0;
  }
}

.float-continuous {
  animation: floatSubtle 4s ease-in-out infinite alternate;
}

@keyframes floatSubtle {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 10;
  margin-left: 0;
  padding-left: 0;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(197, 155, 39, 0.2);
  }

  100% {
    box-shadow: 0 0 22px rgba(197, 155, 39, 0.6);
  }
}

.hero-badge i {
  color: var(--gold-accent);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #ffffff;
  text-align: left;
}

.hero-subtitle {
  font-size: 18px;
  color: #e2e8f0;
  margin-bottom: 34px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(197, 155, 39, 0.55);
}

/* --- 4. Floating Search Filter --- */
.search-filter-wrapper {
  margin-top: 40px;
  position: relative;
  z-index: 50;
  margin-bottom: 60px;
}

.search-filter-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  box-shadow: 0 16px 45px rgba(11, 20, 36, 0.14);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.search-filter-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.2fr;
  gap: 18px;
  align-items: flex-end;
}

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

.filter-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-label i {
  color: var(--gold-primary);
  font-size: 15px;
}

.filter-select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background-color: #f8fafc;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%27475569%27' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

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

.btn-search-properties {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-navy), #172640);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(11, 20, 36, 0.25);
}

.btn-search-properties:hover {
  background: linear-gradient(135deg, #172640, var(--primary-navy));
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(11, 20, 36, 0.35);
}

/* --- 5. Value Proposition Bar --- */
.value-props-section {
  padding: 0 0 50px 0;
  margin-top: -65px;
  position: relative;
  z-index: 50;
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.value-prop-card {
  background-color: #ffffff;
  padding: 22px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.value-prop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.value-icon-box {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background-color: var(--gold-light);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 14px;
  border: 1px solid var(--gold-border);
}

.value-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.value-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- 6. Featured Properties --- */
.featured-properties-section {
  padding: 40px 0 70px 0;
}

.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

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

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 18px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  transition: var(--transition);
}

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

.slider-nav {
  display: flex;
  gap: 8px;
}

.nav-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background-color: #ffffff;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.nav-arrow:hover {
  background-color: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.property-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}

.card-image-wrap {
  position: relative;
  height: 185px;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.property-card:hover .card-image-wrap img {
  transform: scale(1.08);
}

.badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;
}

.badge-featured {
  background: linear-gradient(135deg, var(--gold-primary), #aa821b);
}

.badge-new-launch {
  background: linear-gradient(135deg, #0284c7, #0369a1);
}

.badge-premium {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.badge-hot-deal {
  background: linear-gradient(135deg, #f97316, #c2410c);
}

.btn-favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: none;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-favorite:hover,
.btn-favorite.active {
  background: #ffffff;
  color: #ef4444;
}

.card-content {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-location {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-specs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--text-medium);
  padding: 10px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 12px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.spec-item i {
  color: var(--gold-primary);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.card-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary-navy);
}

.status-pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background-color: #f1f5f9;
  padding: 3px 10px;
  border-radius: 4px;
}

/* --- 7. Dark Stats Banner --- */
.stats-banner {
  background: linear-gradient(135deg, var(--primary-navy), #060c17);
  color: #ffffff;
  padding: 45px 0;
  border-top: 2px solid var(--gold-primary);
  width: min(1400px, calc(100% - 48px));
  margin: 42px auto;
  border-bottom: 2px solid var(--gold-primary);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(6, 12, 23, .16);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

@media (max-width: 800px) {
  .stats-banner {
    width: min(calc(100% - 28px), 1400px);
    margin: 28px auto;
    padding: 36px 0;
    border-radius: 22px;
  }
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.stat-icon {
  font-size: 36px;
  color: var(--gold-primary);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

/* --- 8. Discover / How We Can Help You Accordion Section --- */
.discover-help-section {
  padding: 40px 0;
  background-color: #ffffff;
}

.discover-help-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: flex-start;
}

.discover-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  margin-top: 20px;
  transition: var(--transition);
}

.discover-visual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(11, 20, 36, 0.16);
  border-color: var(--gold-border);
}

.discover-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.discover-card-overlay {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(11, 20, 36, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  justify-content: space-around;
  gap: 12px;
}

.discover-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.discover-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.discover-badge-item h5 {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.discover-badge-item p {
  font-size: 11px;
  color: var(--text-light);
  margin: 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-item.active {
  border-color: var(--gold-border);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-primary);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--gold-primary);
  color: #ffffff;
  border-color: var(--gold-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 0 24px 22px 24px;
}

/* --- 9. Why Mysore Section --- */
.why-mysore-section {
  padding: 40px 0;
  background-color: var(--bg-light);
}

.why-mysore-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.why-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

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

.feature-box {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition);
}

.feature-box:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-border);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--bg-light);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 4px;
}

.feature-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-navy);
}

.feature-box p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* --- 10. Services Section --- */
.services-section {
  padding: 40px 0;
  background-color: #ffffff;
  text-align: center;
}

.heading-flourish {
  width: 60px;
  height: 3px;
  background: var(--gold-primary);
  margin: 12px auto 40px auto;
  border-radius: 2px;
  position: relative;
}

.heading-flourish::before {
  content: 'â—†';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--gold-primary);
  background: #ffffff;
  padding: 0 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background-color: var(--gold-light);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 14px;
  border: 1px solid var(--gold-border);
}

.service-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.service-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- 11. Testimonials Section --- */
.testimonials-section {
  padding: 40px 0;
  background-color: var(--bg-light);
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.quote-icon {
  font-size: 38px;
  color: var(--gold-primary);
  opacity: 0.8;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.client-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
}

.client-loc {
  font-size: 12px;
  color: var(--text-muted);
}

.star-rating {
  color: #f59e0b;
  font-size: 15px;
  display: flex;
  gap: 3px;
}

/* --- 12. Standalone Blog & Insights Section --- */
.dedicated-blog-section {
  padding: 40px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
}

.blog-category-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 45px 0;
  flex-wrap: wrap;
}

.blog-filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  background: var(--bg-light);
  color: var(--text-medium);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--gold-primary);
  color: #ffffff;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 14px rgba(197, 155, 39, 0.35);
}

.blog-showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.featured-blog-card {
  grid-column: span 1;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.featured-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}

.featured-blog-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.featured-blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-blog-card:hover .featured-blog-img-wrap img {
  transform: scale(1.08);
}

.featured-blog-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-meta-item i {
  color: var(--gold-primary);
}

.blog-card-h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
  line-height: 1.35;
  transition: var(--transition);
}

.featured-blog-card:hover .blog-card-h3 {
  color: var(--gold-primary);
}

.blog-excerpt {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 14px;
  margin-top: auto;
  transition: var(--transition);
}

.blog-read-btn i {
  transition: transform 0.3s ease;
}

.blog-read-btn:hover i {
  transform: translateX(6px);
}

/* --- 13. CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 60%, #a87e22 100%);
  padding: 45px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  width: min(1400px, calc(100% - 48px));
  margin: 42px auto;
  border-radius: 30px;
  box-shadow: 0 18px 42px rgba(168, 126, 34, .18);
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #ffffff;
}

.cta-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
}

.btn-cta-navy {
  background-color: var(--primary-navy);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(11, 20, 36, 0.35);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-cta-navy:hover {
  background-color: #172640;
  transform: translateY(-3px) scale(1.02);
}

/* --- 14. Footer --- */
.site-footer {
  background-color: var(--header-dark);
  color: var(--text-light);
  padding: 70px 0 0 0;
  border-top: 3px solid var(--gold-primary);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.1fr 1.1fr 1.1fr 1.5fr;
  gap: 36px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-logo-lockup .brand-logo-img {
  height: 76px;
  max-height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  flex-shrink: 0;
}

.footer-logo-lockup .brand-name {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  white-space: nowrap;
}

.footer-logo-lockup .brand-tagline {
  font-size: 12px;
  color: var(--gold-primary);
  font-weight: 700;
  white-space: nowrap;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-light);
  margin: 12px 0 18px 0;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
}

.footer-col-title::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--gold-primary);
  margin-top: 6px;
}

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

.footer-links a {
  font-size: 13px;
  color: #cbd5e1;
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 6px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #cbd5e1;
}

.contact-item i {
  color: var(--gold-primary);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.site-footer .contact-item a {
  color: #cbd5e1;
  text-decoration: none;
}

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

.site-footer .footer-top-grid {
  align-items: start;
  column-gap: 58px;
  grid-template-columns: minmax(360px, 1.8fr) 1.1fr 1.1fr 1.1fr 1.5fr;
}

.site-footer .footer-brand p {
  max-width: 310px;
}

@media (max-width: 800px) {
  .site-footer .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer .footer-logo-lockup {
    align-items: flex-start;
  }

  .site-footer .footer-logo-lockup .brand-logo-img {
    height: 68px;
    max-height: 72px;
  }

  .site-footer .footer-logo-lockup .brand-name {
    font-size: 22px;
  }

  .site-footer .footer-logo-lockup .brand-tagline {
    font-size: 10px;
  }

  .site-footer .footer-brand p {
    max-width: 360px;
  }
}

.footer-bottom-bar {
  padding: 20px 0;
  background-color: #04080e;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--gold-primary);
}

/* Floating Action Button (FAB Widget) */
.fab-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 890;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.fab-main-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-hover));
  color: #ffffff;
  border: none;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.5);
  transition: var(--transition);
  animation: pulseFab 2.5s infinite;
}

@keyframes pulseFab {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 155, 39, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(197, 155, 39, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(197, 155, 39, 0);
  }
}

.fab-main-btn:hover {
  transform: scale(1.1) rotate(90deg);
}

.fab-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
}

.fab-widget.active .fab-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  color: var(--primary-navy);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}

.fab-item:hover {
  background: var(--gold-light);
  transform: translateX(-4px);
}

.fab-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modals & Interactivity */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 20, 36, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 16px;
}

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

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(0.95);
  transition: var(--transition);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--gold-light);
  color: var(--primary-navy);
}

/* Toast */
.toast-msg {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold-primary);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  max-width: calc(100vw - 40px);
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   ADVANCED MOBILE & RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* 1. Large Desktops & Laptops (max-width: 1200px) */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .properties-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .value-props-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 2. Tablets & Mobile Drawer Fixes (max-width: 992px) */
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  .top-bar {
    display: none;
  }

  .nav-container {
    height: 80px;
  }

  .brand-logo-img {
    height: 96px;
    max-height: 100px;
  }

  .brand-name {
    font-size: 24px;
  }

  .brand-tagline {
    font-size: 12px;
  }

  .hamburger-btn {
    display: flex;
  }

  /* Completely disable old nav on mobile - replaced by standalone sidebar */
  .nav-menu {
    display: none !important;
  }


  .nav-link {
    width: 100%;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-navy);
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
  }

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

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

  .btn-list-property {
    font-size: 13px;
    padding: 10px 16px;
  }

  .hero-section {
    min-height: 480px;
    padding: 70px 0 100px 0;
    text-align: left;
  }

  .hero-content {
    margin-left: 0;
    text-align: left;
  }

  .hero-title {
    font-size: 38px;
    text-align: left;
  }

  .hero-subtitle {
    font-size: 16px;
    text-align: left;
  }

  .search-filter-wrapper {
    margin-top: 20px;
  }

  .search-filter-card {
    padding: 22px;
  }

  .search-filter-form {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .btn-search-properties {
    grid-column: span 2;
  }

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

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

  .why-image-wrapper img {
    height: 360px;
  }

  .blog-showcase-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-item {
    justify-content: flex-start;
    padding-left: 20px;
  }

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

  .modal-grid-2col {
    grid-template-columns: 1fr !important;
  }
}

/* Shared guide-style header for every non-home page. */
.subpage .main-header,
.property-detail-page .main-header {
  position: sticky !important;
  top: 0;
  background: #0b1424 !important;
  box-shadow: 0 5px 22px rgba(4, 8, 14, .22) !important;
}

.subpage .nav-link,
.property-detail-page .nav-link {
  color: #ffffff !important;
}

.subpage .nav-link:hover,
.subpage .nav-link.active,
.property-detail-page .nav-link:hover,
.property-detail-page .nav-link.active {
  color: #ffffff !important;
}

.subpage .header-phone,
.property-detail-page .header-phone {
  color: #ffffff !important;
}

.subpage .logo-text,
.property-detail-page .logo-text {
  filter: brightness(0) invert(1);
}

.subpage .btn-theme-contact,
.property-detail-page .btn-theme-contact {
  border-color: rgba(255, 255, 255, .45) !important;
  background: transparent !important;
  color: #ffffff !important;
}

.subpage .btn-theme-contact:hover,
.property-detail-page .btn-theme-contact:hover {
  background: #ffffff !important;
  color: #0b1424 !important;
}

.subpage a.btn-theme-contact,
.property-detail-page a.btn-theme-contact,
body:not(.subpage) a.btn-theme-contact {
  background: rgba(11, 20, 36, .9) !important;
  border-color: rgba(255, 255, 255, .8) !important;
  color: #ffffff !important;
}

@media (max-width: 900px) {

  .subpage .nav-menu .nav-link.active,
  .property-detail-page .nav-menu .nav-link.active,
  .properties-page .nav-menu .nav-link.active,
  .home-loan-page .nav-menu .nav-link.active {
    color: #b58a22 !important;
  }
}

@media (max-width: 576px) {
  .main-header .logo-text {
    display: flex !important;
    min-width: 0;
  }

  .main-header .brand-name {
    display: block !important;
    font-size: 18px !important;
  }

  .main-header .brand-tagline {
    display: block !important;
    font-size: 10px !important;
    white-space: nowrap;
  }
}

@media (pointer: coarse) {

  .properties-page .property-detail-grid,
  .home-page .featured-properties-section .properties-grid {
    grid-template-columns: 1fr !important;
  }

  .properties-page .property-detail-card,
  .home-page .featured-properties-section .properties-grid>article {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 900px) {

  .nav-menu,
  .subpage .nav-menu,
  .property-detail-page .nav-menu {
    z-index: 1200 !important;
    background: #ffffff !important;
    box-shadow: 12px 0 35px rgba(7, 13, 23, .18);
  }

  .nav-menu .nav-link,
  .subpage .nav-menu .nav-link,
  .property-detail-page .nav-menu .nav-link,
  .properties-page .nav-menu .nav-link,
  .home-loan-page .nav-menu .nav-link {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #0b1424 !important;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: #b58a22 !important;
  }

  .nav-menu.active,
  .nav-menu.active:hover,
  .nav-menu.active:focus-within {
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }
}

/* 3. Small Tablets & Large Phones (max-width: 768px) */
@media (max-width: 768px) {
  .container {
    max-width: 540px;
    padding: 0 16px;
  }

  .brand-logo-img {
    height: 85px;
    max-height: 90px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-tagline {
    font-size: 11px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-title {
    font-size: 32px;
    text-align: left;
  }

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

  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

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

  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .section-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .header-controls {
    width: 100%;
    justify-content: space-between;
  }

  .fab-widget {
    bottom: 20px;
    right: 20px;
  }
}

/* 4. Mobile Phones (max-width: 576px) */
@media (max-width: 576px) {
  .nav-container {
    height: 74px;
  }

  .brand-logo-img {
    height: 75px;
    max-height: 80px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-tagline {
    display: none;
  }

  .btn-list-property span {
    display: none;
  }

  .btn-list-property {
    padding: 10px 12px;
    border-radius: 50%;
  }

  .hero-section {
    padding: 55px 0 80px 0;
    min-height: 420px;
    text-align: left;
  }

  .hero-badge {
    font-size: 10px;
    padding: 4px 12px;
  }

  .hero-title {
    font-size: 26px;
    text-align: left;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
    text-align: left;
  }

  .btn-hero-primary {
    width: auto;
    padding: 14px 28px;
  }

  .search-filter-card {
    padding: 18px 16px;
    border-radius: var(--radius-md);
  }

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

  .btn-search-properties {
    grid-column: span 1;
    height: 46px;
  }

  .properties-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    gap: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .properties-grid::-webkit-scrollbar {
    display: none;
  }

  .property-card {
    min-width: 85%;
    scroll-snap-align: center;
  }

  .value-props-grid {
    grid-template-columns: 1fr;
  }

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

  .why-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .why-image-wrapper img {
    height: 260px;
  }

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

  .stat-item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-left: 0;
    gap: 10px;
  }

  .stat-info {
    align-items: center;
  }

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

  .footer-bottom-bar .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .modal-card {
    padding: 24px 18px;
  }

  .cta-text h2 {
    font-size: 22px;
  }

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

/* ==================== PROPERTY DETAIL PAGES ==================== */
.property-detail-page {
  background: #faf8f3;
  color: #292620;
}

.property-detail-page .main-header {
  position: sticky !important;
  background: #fffdf8 !important;
  box-shadow: 0 4px 18px rgba(46, 39, 28, .08) !important;
}

.property-detail-page .nav-link {
  color: #292620 !important;
}

.property-detail-page .nav-link:hover,
.property-detail-page .nav-link.active {
  color: #8d6c32 !important;
}

.property-detail-page .header-phone {
  color: #292620 !important;
}

.property-detail-hero {
  padding: 28px 0 72px;
  background: linear-gradient(135deg, #fbf9f4, #f1e9db);
  border-bottom: 1px solid #e9dfd0;
}

.property-detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 32px;
  color: #777168;
  font-size: 12px;
}

.property-detail-breadcrumb a {
  color: #777168;
  text-decoration: none;
}

.property-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 42px;
  align-items: center;
}

.property-detail-hero-image {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 24px;
  background: #111923;
  box-shadow: 0 14px 30px rgba(47, 39, 26, .16);
}

.property-detail-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.property-detail-hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(22, 18, 12, .65), transparent 55%);
  content: '';
}

.property-detail-hero-price {
  display: none;
}

.property-detail-hero-copy .property-detail-type {
  margin: 0 0 15px;
  color: #8b6c37;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.property-detail-hero-copy h1 {
  margin: 0 0 17px;
  color: #302b25;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.02;
}

.property-detail-hero-copy h1 em {
  font-weight: 600;
}

.property-detail-hero-copy>p {
  margin: 0 0 22px;
  color: #625a4f;
  font-size: 15px;
  line-height: 1.65;
}

.property-detail-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.property-detail-badge-row span {
  padding: 8px 13px;
  border-radius: 999px;
  background: #34312c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.property-detail-badge-row span:first-child {
  background: #d2a426;
}

.property-detail-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.property-detail-hero-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 19px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.property-detail-hero-actions a:first-child {
  background: #302b25;
  color: #fff;
}

.property-detail-hero-actions a:last-child {
  border: 1px solid #d9cdbb;
  color: #51483c;
}

.property-detail-content {
  padding: 72px 0 90px;
}

.property-detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 45px;
  align-items: start;
}

.property-detail-article h2 {
  margin: 0 0 19px;
  color: #302b25;
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 1.12;
}

.property-detail-article h3 {
  margin: 42px 0 14px;
  color: #40382f;
  font-family: var(--font-heading);
  font-size: 27px;
  line-height: 1.2;
}

.property-detail-article p {
  margin: 0 0 25px;
  color: #625a4f;
  font-size: 16px;
  line-height: 1.85;
}

.property-detail-facts-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 25px 0 33px;
  border: 1px solid #e5dccd;
  border-radius: 17px;
  background: #e5dccd;
}

.property-detail-fact {
  padding: 18px;
  background: #fffefa;
}

.property-detail-fact span {
  display: block;
  margin-bottom: 9px;
  color: #8a806f;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.property-detail-fact strong {
  color: #302b25;
  font-family: var(--font-heading);
  font-size: 20px;
}

.property-detail-aside {
  position: sticky;
  top: 125px;
}

.property-detail-aside-card {
  margin-bottom: 18px;
  padding: 25px 22px;
  border: 1px solid #e5dccd;
  border-radius: 18px;
  background: #fffefa;
  box-shadow: 0 8px 20px rgba(47, 39, 26, .06);
}

.property-detail-aside-card.dark {
  background: #302b25;
  color: #fff;
}

.property-detail-aside-card h3 {
  margin: 0 0 13px;
  color: #302b25;
  font-family: var(--font-heading);
  font-size: 21px;
}

.property-detail-aside-card.dark h3 {
  color: #fff;
}

.property-detail-aside-card p {
  margin: 0 0 17px;
  color: #6b6256;
  font-size: 13px;
  line-height: 1.55;
}

.property-detail-aside-card.dark p {
  color: #eee7dc;
}

.property-detail-checks {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.property-detail-checks li {
  display: flex;
  gap: 10px;
  color: #625a4f;
  font-size: 14px;
  line-height: 1.55;
}

.property-detail-checks i {
  color: #a17b3e;
}

.property-detail-inline-checks {
  margin: 0 0 28px;
  padding: 0;
}

.property-detail-inline-checks li {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.property-detail-aside-card.dark a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  border-radius: 22px;
  background: #20b45c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.property-detail-disclaimer {
  margin-top: 23px !important;
  color: #857b6e !important;
  font-size: 11px !important;
}

@media (max-width:900px) {

  .property-detail-hero-grid,
  .property-detail-content-grid {
    grid-template-columns: 1fr;
  }

  .property-detail-aside {
    position: static;
  }
}

@media (max-width:576px) {
  .property-detail-hero {
    padding: 20px 0 48px;
  }

  .property-detail-hero-grid {
    gap: 28px;
  }

  .property-detail-hero-image {
    height: 300px;
  }

  .property-detail-hero-price {
    left: 20px;
    bottom: 20px;
    font-size: 30px;
  }

  .property-detail-hero-copy h1 {
    font-size: 40px;
  }

  .property-detail-content {
    padding: 48px 0 60px;
  }

  .property-detail-article h2 {
    font-size: 30px;
  }

  .property-detail-article h3 {
    font-size: 23px;
  }

  .property-detail-article p {
    font-size: 15px;
    line-height: 1.75;
  }
}

/* ==================== PROPERTIES PAGE ==================== */
.properties-page {
  background: #faf8f3;
  color: #292620;
}

.properties-page .main-header {
  position: sticky !important;
  background: #fffdf8 !important;
  box-shadow: 0 4px 18px rgba(46, 39, 28, .08) !important;
}

.properties-page .nav-link {
  color: #292620 !important;
}

.properties-page .nav-link:hover,
.properties-page .nav-link.active {
  color: #8d6c32 !important;
}

.properties-page .header-phone {
  color: #292620 !important;
}

.properties-hero {
  padding: 72px 0 76px;
  background: linear-gradient(135deg, #fbf9f4, #f1e9db);
}

.properties-page .page-breadcrumb {
  display: flex;
  gap: 9px;
  margin-bottom: 34px;
  color: #777168;
  font-size: 12px;
}

.properties-page .page-breadcrumb a {
  color: #777168;
  text-decoration: none;
}

.properties-kicker {
  display: block;
  margin-bottom: 14px;
  color: #8b6c37;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.properties-hero h1 {
  max-width: 780px;
  margin: 0 0 20px;
  color: #292620;
  font-family: var(--font-heading);
  font-size: clamp(44px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -2px;
}

.properties-hero h1 em {
  font-weight: 600;
}

.properties-hero p {
  max-width: 720px;
  margin: 0;
  color: #574f44;
  font-size: 17px;
  line-height: 1.65;
}

.property-listings-section {
  padding: 76px 0 84px;
}

.properties-page .section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.properties-page .section-heading h2 {
  margin: 0 0 12px;
  color: #302b25;
  font-family: var(--font-heading);
  font-size: 34px;
}

.properties-page .section-heading p {
  margin: 0;
  color: #6b6256;
  font-size: 14px;
  line-height: 1.6;
}

.property-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.property-detail-card {
  overflow: hidden;
  border: 1px solid #e5dccd;
  border-radius: 24px;
  background: #fffefa;
  box-shadow: 0 10px 26px rgba(47, 39, 26, .08);
}

.property-detail-media {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #111923;
}

.property-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .6s ease;
}

.property-detail-card:hover .property-detail-media img {
  transform: scale(1.04);
}

.property-detail-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(22, 18, 12, .68), transparent 54%);
  content: '';
}

.property-detail-badges {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.property-detail-badges span {
  padding: 8px 13px;
  border-radius: 999px;
  background: #33302b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.property-detail-badges span:first-child {
  background: #d2a426;
  color: #fff;
}

.property-detail-price {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 24px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
}

.property-detail-body {
  padding: 27px 28px 24px;
}

.property-detail-type {
  margin: 0 0 12px;
  color: #8b6c37;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.property-detail-body h3 {
  margin: 0 0 14px;
  color: #302b25;
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.15;
}

.property-detail-location {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 43px;
  margin: 0;
  color: #5f574d;
  font-size: 14px;
  line-height: 1.5;
}

.property-detail-location i {
  flex: 0 0 auto;
  color: #9a7943;
  font-size: 17px;
}

.property-detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid #e7ddce;
  color: #574f44;
  font-size: 13px;
}

.property-detail-facts span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.property-detail-facts i {
  color: #9a7943;
}

.property-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 23px;
}

.property-detail-footer a {
  color: #302b25;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.property-detail-map {
  display: inline-grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: #f0e9de;
  color: #302b25;
  font-size: 18px;
}

.property-detail-card:nth-child(2) .property-detail-map {
  background: #302b25;
  color: #fff;
}

.property-content-section {
  padding: 0 0 82px;
}

.property-content-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
}

.property-copy-card,
.property-points-card {
  padding: 34px;
  border: 1px solid #e5dccd;
  border-radius: 22px;
  background: #fffefa;
}

.property-copy-card h2,
.property-points-card h2 {
  margin: 0 0 15px;
  color: #302b25;
  font-family: var(--font-heading);
  font-size: 28px;
}

.property-copy-card p {
  margin: 0 0 16px;
  color: #625a4f;
  font-size: 14px;
  line-height: 1.7;
}

.property-points-card ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.property-points-card li {
  display: flex;
  gap: 11px;
  color: #625a4f;
  font-size: 13px;
  line-height: 1.55;
}

.property-points-card li i {
  color: #a17b3e;
  font-size: 17px;
}

.property-gallery-section {
  padding: 0 0 88px;
}

.property-gallery-heading {
  margin-bottom: 28px;
}

.property-gallery-heading h2 {
  margin: 0 0 10px;
  color: #302b25;
  font-family: var(--font-heading);
  font-size: 34px;
}

.property-gallery-heading p {
  margin: 0;
  color: #6b6256;
  font-size: 14px;
}

.property-gallery-group+.property-gallery-group {
  margin-top: 44px;
}

.property-gallery-group h3 {
  margin: 0 0 17px;
  color: #51483c;
  font-family: var(--font-heading);
  font-size: 22px;
}

.property-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.property-gallery-grid figure {
  height: 190px;
  overflow: hidden;
  margin: 0;
  border-radius: 14px;
  background: #eee7db;
}

.property-gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.property-gallery-grid figure:hover img {
  transform: scale(1.06);
}

@media (max-width: 800px) {

  .property-detail-grid,
  .property-content-grid {
    grid-template-columns: 1fr;
  }

  .property-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .properties-hero {
    padding: 48px 0 58px;
  }

  .properties-hero h1 {
    font-size: 44px;
  }

  .property-detail-media {
    height: 240px;
  }

  .property-detail-body {
    padding: 22px 20px;
  }

  .property-detail-body h3 {
    font-size: 23px;
  }

  .property-copy-card,
  .property-points-card {
    padding: 24px;
  }

  .property-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .property-gallery-grid figure {
    height: 135px;
  }
}

/* ==================== HOME LOAN PAGE ==================== */
.home-loan-page {
  background: #faf8f3;
  color: #292620;
}

.home-loan-page .main-header {
  position: sticky !important;
  background: #fffdf8 !important;
  box-shadow: 0 4px 18px rgba(46, 39, 28, .08) !important;
}

.home-loan-page .nav-link {
  color: #292620 !important;
}

.home-loan-page .nav-link.active,
.home-loan-page .nav-link:hover {
  color: #8d6c32 !important;
}

.home-loan-page .header-phone {
  color: #292620 !important;
}

.home-loan-page .btn-theme-contact {
  border-color: #292620;
  background: #292620;
  color: #fff;
}

.loan-hero {
  padding: 74px 0 82px;
  background: linear-gradient(135deg, #fbf9f4 0%, #f3ede2 100%);
  border-bottom: 1px solid #ebe3d5;
}

.loan-breadcrumb {
  display: flex;
  gap: 9px;
  margin-bottom: 35px;
  color: #777168;
  font-size: 12px;
}

.loan-breadcrumb a {
  color: #777168;
  text-decoration: none;
}

.loan-kicker {
  display: block;
  margin-bottom: 14px;
  color: #8b6c37;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.loan-hero h1 {
  max-width: 780px;
  margin: 0 0 22px;
  color: #292620;
  font-family: var(--font-heading);
  font-size: clamp(46px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -2px;
}

.loan-hero h1 em {
  font-weight: 600;
}

.loan-hero p {
  max-width: 720px;
  margin: 0;
  color: #514b42;
  font-size: 18px;
  line-height: 1.65;
}

.loan-calculator-section {
  padding: 76px 0 88px;
}

.loan-calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: stretch;
}

.loan-controls-card,
.loan-apply-card,
.loan-info-card {
  border: 1px solid #e7ddce;
  border-radius: 22px;
  background: #fffefa;
  box-shadow: 0 12px 30px rgba(48, 40, 26, .07);
}

.loan-controls-card {
  padding: 34px 38px;
}

.loan-control {
  margin-bottom: 31px;
}

.loan-control:last-of-type {
  margin-bottom: 26px;
}

.loan-control-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 13px;
  color: #514b42;
  font-size: 14px;
  font-weight: 600;
}

.loan-control-value {
  color: #292620;
  font-family: var(--font-heading);
  font-size: 18px;
}

.loan-range {
  width: 100%;
  height: 8px;
  appearance: none;
  border-radius: 10px;
  background: #e5d7bf;
  outline: none;
}

.loan-range::-webkit-slider-thumb {
  width: 19px;
  height: 19px;
  appearance: none;
  border: 3px solid #fffefa;
  border-radius: 50%;
  background: #4a433a;
  box-shadow: 0 2px 8px rgba(25, 20, 12, .3);
  cursor: pointer;
}

.loan-range::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border: 3px solid #fffefa;
  border-radius: 50%;
  background: #4a433a;
  box-shadow: 0 2px 8px rgba(25, 20, 12, .3);
  cursor: pointer;
}

.loan-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  color: #928a7d;
  font-size: 11px;
}

.loan-breakdown-bar {
  display: flex;
  height: 11px;
  overflow: hidden;
  margin-top: 9px;
  border-radius: 10px;
  background: #e7ddce;
}

.loan-breakdown-principal {
  background: #292620;
  transition: width .25s ease;
}

.loan-breakdown-interest {
  background: #b99656;
  transition: width .25s ease;
}

.loan-breakdown-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
  color: #6e665b;
  font-size: 11px;
}

.loan-legend-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 5px;
  border-radius: 50%;
  background: #292620;
}

.loan-legend-dot.interest {
  background: #b99656;
}

.loan-result-column {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.loan-emi-card {
  min-height: 163px;
  padding: 28px 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, #292620 0%, #453d33 100%);
  color: #fffefa;
  box-shadow: 0 12px 24px rgba(38, 32, 23, .18);
}

.loan-emi-label {
  display: block;
  margin-bottom: 9px;
  color: #e6d1a9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.loan-emi-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 39px;
  line-height: 1;
}

.loan-emi-subtitle {
  display: block;
  margin-top: 8px;
  color: #e8e0d4;
  font-size: 12px;
}

.loan-result-list {
  overflow: hidden;
  border: 1px solid #e7ddce;
  border-radius: 20px;
  background: #fffefa;
}

.loan-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  color: #61594d;
  font-size: 13px;
}

.loan-result-row+.loan-result-row {
  border-top: 1px solid #e7ddce;
}

.loan-result-row strong {
  color: #302b25;
  font-family: var(--font-heading);
  font-size: 17px;
}

.loan-note {
  margin: 0;
  color: #746b5e;
  font-size: 12px;
  line-height: 1.55;
}

.loan-apply-section {
  padding: 0 0 92px;
}

.loan-apply-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  padding: 48px;
}

.loan-apply-copy {
  align-self: center;
}

.loan-apply-copy h2 {
  margin: 0 0 15px;
  color: #302b25;
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1.1;
}

.loan-apply-copy p {
  margin: 0 0 25px;
  color: #635b50;
  font-size: 15px;
  line-height: 1.65;
}

.loan-apply-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.loan-dark-button,
.loan-light-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 21px;
  border-radius: 28px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.loan-dark-button {
  background: #292620;
  color: #fffefa;
}

.loan-light-button {
  border: 1px solid #d9cdbb;
  color: #4f473c;
}

.loan-form {
  padding: 28px;
  border: 1px solid #eadfce;
  border-radius: 20px;
  background: #fffefa;
}

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

.loan-form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #4e473e;
  font-size: 12px;
  font-weight: 600;
}

.loan-form-field.full {
  grid-column: 1 / -1;
}

.loan-form-field input,
.loan-form-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  border: 1px solid #e5d8c6;
  border-radius: 11px;
  background: #fffdfa;
  color: #302b25;
  font: inherit;
  font-weight: 400;
  outline: none;
}

.loan-form-field input:focus,
.loan-form-field textarea:focus {
  border-color: #b99656;
  box-shadow: 0 0 0 3px rgba(185, 150, 86, .13);
}

.loan-form-field textarea {
  min-height: 90px;
  resize: vertical;
}

.loan-form-submit {
  width: 100%;
  margin-top: 17px;
  padding: 14px;
  border: 0;
  border-radius: 25px;
  background: #292620;
  color: #fffefa;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.loan-form-disclaimer {
  margin: 13px 0 0;
  color: #81786b;
  font-size: 11px;
  line-height: 1.5;
}

.loan-info-section {
  padding: 0 0 86px;
}

.loan-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.loan-info-card {
  padding: 25px;
}

.loan-info-card i {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 12px;
  background: #f0e6d3;
  color: #896a35;
  font-size: 20px;
}

.loan-info-card h3 {
  margin: 0 0 9px;
  color: #302b25;
  font-family: var(--font-heading);
  font-size: 20px;
}

.loan-info-card p {
  margin: 0;
  color: #6c6357;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 900px) {

  .loan-calculator-grid,
  .loan-apply-card {
    grid-template-columns: 1fr;
  }

  .loan-result-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .loan-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .loan-hero {
    padding: 48px 0 58px;
  }

  .loan-hero h1 {
    font-size: 45px;
  }

  .loan-hero p {
    font-size: 15px;
  }

  .loan-controls-card,
  .loan-apply-card {
    padding: 24px;
  }

  .loan-result-column,
  .loan-info-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .loan-form-grid {
    grid-template-columns: 1fr;
  }

  .loan-form-field.full {
    grid-column: auto;
  }
}

/* Hide the legacy price overlays on the refreshed homepage listings. */
.featured-properties-section .properties-grid>article:nth-child(1) .bottom-4 p,
.featured-properties-section .properties-grid>article:nth-child(2) .bottom-4 p {
  display: none;
}

.featured-properties-section .properties-grid>article:nth-child(3) {
  display: none;
}

.featured-properties-section .properties-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.featured-properties-section .properties-grid>article>div:first-child {
  position: relative;
  height: 300px;
  aspect-ratio: auto !important;
  overflow: hidden;
}

.featured-properties-section .properties-grid>article>div:first-child img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-properties-section .properties-grid>article>div:first-child>.inset-0 {
  position: absolute;
  inset: 0;
}

.featured-properties-section .properties-grid>article>div:first-child>.left-4.top-4 {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
}

.featured-properties-section .properties-grid>article>div:first-child>.bottom-4.left-4 {
  position: absolute;
  z-index: 3;
  bottom: 16px;
  left: 16px;
}

.featured-properties-section .properties-grid>article>div:first-child>.bottom-4 {
  display: none !important;
}

.featured-properties-section .properties-grid>article>div:last-child {
  padding: 26px 26px 22px;
}

.featured-properties-section .properties-grid>article h3 {
  margin-top: 12px;
  font-size: 25px;
  line-height: 1.15;
}

.featured-properties-section .properties-grid>article .mt-5 {
  margin-top: 20px;
  padding-top: 18px;
}

.featured-properties-section .properties-grid>article .mt-6 {
  margin-top: 20px;
}

.featured-properties-section .properties-grid>article {
  overflow: hidden;
  border: 1px solid #e5dccd;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(47, 39, 26, .08);
}

.featured-properties-section .properties-grid>article .badge-gold,
.featured-properties-section .properties-grid>article .badge-dark {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
}

.featured-properties-section .properties-grid>article .text-xs {
  color: #8b6c37;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
}

.featured-properties-section .properties-grid>article .text-sm {
  font-size: 15px;
}

.featured-properties-section .properties-grid>article .circle-icon {
  display: inline-grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: #f4eee4;
  color: #302b25;
  font-size: 18px;
}

.featured-properties-section .properties-grid>article:nth-child(2) .circle-icon {
  background: #302b25;
  color: #fffefa;
}

.property-display-price {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 26px;
  color: #fffefa;
  font-family: var(--font-heading);
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 9px rgba(0, 0, 0, .45);
}

@media (max-width: 640px) {
  .featured-properties-section .properties-grid {
    grid-template-columns: 1fr;
  }

  .featured-properties-section .properties-grid>article>div:first-child {
    height: 220px;
  }

  .property-display-price {
    left: 18px;
    bottom: 18px;
    font-size: 25px;
  }
}

/* ==================== GUIDE ARTICLE PAGE ==================== */
.guide-article-page {
  background: #faf8f3;
  color: #292620;
}

.guide-article-page .main-header {
  position: sticky !important;
  background: #0b1424 !important;
}

.guide-article-hero {
  padding: 24px 0 56px;
  border-bottom: 1px solid #eee8df;
  background: #faf8f3;
}

.guide-article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 38px;
  color: #777168;
  font-size: 11px;
}

.guide-article-breadcrumb a {
  color: #777168;
  text-decoration: none;
}

.guide-article-kicker {
  display: block;
  margin-bottom: 13px;
  color: #777168;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.guide-article-heading {
  max-width: 720px;
  margin: 0 0 18px;
  color: #292620;
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -1.5px;
}

.guide-article-lead {
  max-width: 720px;
  margin: 0;
  color: #514c43;
  font-size: 14px;
  line-height: 1.65;
}

.guide-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 62px;
  padding: 52px 0 78px;
}

.guide-article-main {
  max-width: 780px;
}

.guide-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 42px;
  color: #777168;
  font-size: 11px;
}

.guide-article-main p,
.guide-article-main li {
  color: #544f47;
  font-size: 16px;
  line-height: 1.8;
}

.guide-article-main p {
  margin: 0 0 22px;
}

.guide-article-main h2 {
  margin: 36px 0 12px;
  color: #302c27;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.2;
}

.guide-article-main h3 {
  margin: 26px 0 8px;
  color: #38332c;
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.3;
}

.guide-article-main ul,
.guide-article-main ol {
  margin: 0 0 24px;
  padding-left: 22px;
}

.guide-article-main li {
  margin-bottom: 8px;
}

.guide-article-sidebar {
  position: sticky;
  top: 126px;
  align-self: start;
}

.guide-sidebar-card {
  margin-bottom: 18px;
  padding: 22px 20px;
  border: 1px solid #e7e1d8;
  border-radius: 14px;
  background: #fffefa;
  box-shadow: 0 7px 18px rgba(45, 38, 27, .06);
}

.guide-sidebar-card.dark {
  border-color: #29251f;
  background: #29251f;
  color: #fffefa;
}

.guide-sidebar-card h3 {
  margin: 0 0 15px;
  color: #302c27;
  font-family: var(--font-heading);
  font-size: 16px;
}

.guide-sidebar-card.dark h3,
.guide-sidebar-card.dark p {
  color: #fffefa;
}

.guide-sidebar-card p {
  margin: 0 0 15px;
  color: #5e584f;
  font-size: 12px;
  line-height: 1.55;
}

.guide-takeaway-list,
.guide-related-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-takeaway-list li {
  position: relative;
  padding-left: 17px;
  color: #5e584f;
  font-size: 11px;
  line-height: 1.45;
}

.guide-takeaway-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #85745a;
  content: 'âœ“';
  font-weight: 700;
}

.guide-related-list a {
  display: flex;
  gap: 7px;
  color: #514c43;
  font-size: 11px;
  line-height: 1.4;
  text-decoration: none;
}

.guide-related-list a:hover {
  color: #a67c2e;
}

.guide-contact-actions {
  display: flex;
  gap: 8px;
}

.guide-contact-actions a {
  flex: 1;
  padding: 9px 7px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 20px;
  color: #fffefa;
  font-size: 11px;
  text-align: center;
  text-decoration: none;
}

.guide-contact-actions a:first-child {
  border-color: #25b35b;
  background: #25b35b;
}

.guide-faq-item {
  padding: 18px 0;
  border-top: 1px solid #e7e1d8;
}

.guide-faq-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 16px;
}

.guide-faq-item p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .guide-article-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .guide-article-main {
    max-width: none;
  }

  .guide-article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .guide-sidebar-card {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .guide-article-hero {
    padding: 18px 0 42px;
  }

  .guide-article-breadcrumb {
    margin-bottom: 28px;
  }

  .guide-article-heading {
    font-size: 38px;
  }

  .guide-article-layout {
    padding: 38px 0 52px;
  }

  .guide-article-sidebar {
    display: block;
  }

  .guide-sidebar-card {
    margin-bottom: 18px;
  }
}

/* ==================== GUIDES PAGE ==================== */
.guides-page {
  background: #f8f6f1;
  color: #25231f;
}

.guides-page .main-header {
  position: sticky !important;
  background: #0b1424 !important;
}

.guides-page .guides-main {
  min-height: calc(100vh - 102px);
  padding: 22px 0 72px;
}

.guides-page .guides-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 42px;
  color: #77736a;
  font-size: 11px;
}

.guides-page .guides-breadcrumb a {
  color: #77736a;
  text-decoration: none;
}

.guides-page .guides-intro {
  max-width: 690px;
  margin-bottom: 62px;
}

.guides-page .guides-kicker {
  display: block;
  margin-bottom: 12px;
  color: #6d695f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.guides-page .guides-title {
  max-width: 620px;
  margin: 0 0 15px;
  color: #26231f;
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -1.6px;
}

.guides-page .guides-subtitle {
  max-width: 620px;
  margin: 0;
  color: #514d46;
  font-size: 14px;
  line-height: 1.55;
}

.guides-page .guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.guides-page .guide-article-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 24px 24px 20px;
  border: 1px solid #e7e1d8;
  border-radius: 13px;
  background: #fffefa;
  box-shadow: 0 7px 18px rgba(45, 38, 27, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.guides-page .guide-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(45, 38, 27, .11);
}

.guides-page .guide-article-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #f1f0eb;
  color: #666158;
  font-size: 17px;
}

.guides-page .guide-article-title {
  margin: 0 0 13px;
  color: #302c27;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.15;
}

.guides-page .guide-article-description {
  margin: 0;
  color: #6a665e;
  font-size: 15px;
  line-height: 1.6;
}

.guides-page .guide-article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
  color: #777168;
  font-size: 12px;
}

.guides-page .guide-article-read,
.guides-page .guide-article-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.guides-page .guide-article-read {
  color: #403b34;
  text-decoration: none;
}

.guides-page .guide-article-read i {
  font-size: 12px;
  transition: transform .2s ease;
}

.guides-page .guide-article-read:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .guides-page .guides-main {
    padding-top: 18px;
  }

  .guides-page .guides-intro {
    margin-bottom: 40px;
  }

  .guides-page .guides-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .guides-page .guides-main {
    padding-bottom: 48px;
  }

  .guides-page .guides-breadcrumb {
    margin-bottom: 30px;
  }

  .guides-page .guides-title {
    font-size: 38px;
  }

  .guides-page .guides-grid {
    grid-template-columns: 1fr;
  }
}

/* 5. Extra Small Devices (max-width: 380px) */
@media (max-width: 380px) {
  .hero-title {
    font-size: 23px;
  }

  .why-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== SERVICES OVERVIEW (HOME) ==================== */
.services-overview-section {
  padding: 40px 0;
  background-color: #ffffff;
}

.service-overview-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-images-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-images-grid img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.service-images-grid img:nth-child(1) {
  grid-column: 1 / 3;
  height: 300px;
}

@media (max-width: 992px) {
  .service-overview-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-overview-row.reverse .service-content {
    order: 1;
  }

  .service-overview-row.reverse .service-images-grid {
    order: 2;
  }
}


/* ==================== BUYERS GUIDE ==================== */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  position: relative;
}

.guide-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.guide-step-num {
  position: absolute;
  top: -15px;
  right: -5px;
  font-family: var(--font-heading);
  font-size: 90px;
  font-weight: 800;
  color: rgba(197, 155, 39, 0.06);
  z-index: -1;
  transition: all 0.4s ease;
  line-height: 1;
}

.guide-card:hover .guide-step-num {
  color: rgba(197, 155, 39, 0.12);
  transform: scale(1.1);
}

.guide-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px auto;
  background: rgba(197, 155, 39, 0.1);
  color: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: all 0.4s ease;
}

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

.guide-title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--primary-navy);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.guide-desc {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

  .client-info {
    flex-wrap: wrap;
    gap: 12px;
  }

  section {
    padding: 25px 0 !important;
  }

  .hero-section {
    padding: 45px 0 65px 0 !important;
  }
}


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

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

@media (max-width: 768px) {
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
  }

  .testimonial-card {
    min-width: 85%;
    scroll-snap-align: center;
  }
}


/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 250px;
  right: 28px;
  background-color: #25D366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 895;
  transition: transform 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #ffffff;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 220px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
}

/* ==================== THEME HEADER OVERRIDES ==================== */
.main-header {
  background-color: transparent !important;
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: none !important;
}

.main-header.scrolled {
  position: fixed !important;
  background-color: rgba(5, 7, 8, 0.95) !important;
  box-shadow: 0 8px 30px rgba(10, 10, 10, 0.3) !important;
  backdrop-filter: none;
}

@media (min-width: 993px) {
  .nav-link {
    color: #ffffff !important;
  }

  .nav-link:hover,
  .nav-link.active {
    color: #ffffff !important;
  }

  .nav-link::after {
    background-color: #ffffff !important;
  }
}

.btn-theme-contact {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
  background: transparent;
}

.btn-theme-contact:hover {
  background: #ffffff;
  color: var(--primary-navy);
}

.hero-section {
  padding-top: 150px !important;
}

@media (max-width: 992px) {
  .header-phone {
    display: none !important;
  }

  .btn-theme-contact {
    display: none !important;
  }
}

/* ==================== HERO THEME OVERRIDES ==================== */
.hero-content {
  max-width: 900px;
}

.hero-badge-theme {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero-badge-theme .badge-dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
}

.hero-title-theme {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-title-theme em {
  font-style: italic;
  font-weight: 700;
}

.hero-subtitle-theme {
  font-size: 22px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.4;
  opacity: 0.9;
}

.hero-btn-group {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.btn-theme-white {
  background-color: #ffffff;
  color: #111;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-theme-white:hover {
  background-color: #f0f0f0;
}

.btn-theme-outline {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-theme-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.hero-stats-theme {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}

.hero-stats-theme .stat-box {
  padding-left: 20px;
}

.hero-stats-theme .stat-box.divider {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-stats-theme .stat-box h3,
.hero-stats-bottom-theme .stat-box-large h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
  line-height: 1;
}

.hero-stats-theme .stat-box h3 .plus,
.hero-stats-bottom-theme .stat-box-large h3 .plus {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 32px;
}

.hero-stats-theme .stat-box p,
.hero-stats-bottom-theme .stat-box-large p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0;
}

.hero-stats-bottom-theme {
  display: flex;
}

.hero-stats-bottom-theme .stat-box-large {
  padding-left: 20px;
}

.hero-stats-bottom-theme .stat-box-large.divider {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .hero-title-theme {
    font-size: 48px;
  }

  .hero-subtitle-theme {
    font-size: 16px;
  }

  .hero-stats-theme {
    flex-direction: column;
    gap: 20px;
  }

  .hero-stats-theme .stat-box.divider {
    border-left: none;
    padding-left: 0;
  }

  .hero-stats-bottom-theme .stat-box-large.divider {
    border-left: none;
    padding-left: 0;
  }

  .hero-btn-group {
    flex-direction: column;
  }
}

/* ==================== REDUCE BANNER HEIGHT ==================== */
.hero-section {
  padding-top: 130px !important;
  padding-bottom: 50px !important;
  min-height: auto !important;
}

/* ==================== THEME VALUE PROPS ==================== */
.value-props-theme-section {
  position: relative;
  z-index: 10;
  margin-top: -30px;
  /* Pull it up slightly over the hero if wanted, or 0 */
  padding-bottom: 60px;
}

.value-props-theme-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #ffffff;
  border-radius: 12px 12px 0 0;
  /* Or full radius if they want */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  border-bottom: 4px solid #eae5dc;
  /* Slight theme color accent */
}

.value-prop-theme-item {
  display: flex;
  gap: 16px;
  padding: 30px 24px;
  border-right: 1px solid #eaeaea;
}

.value-prop-theme-item:last-child {
  border-right: none;
}

.theme-icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: #f4f1ed;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-icon-box i {
  font-size: 24px;
  color: #222222;
}

.theme-text-box h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.theme-text-box p {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .value-props-theme-container {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 12px;
  }

  .value-prop-theme-item:nth-child(2) {
    border-right: none;
  }

  .value-prop-theme-item:nth-child(3),
  .value-prop-theme-item:nth-child(4) {
    border-top: 1px solid #eaeaea;
  }
}

@media (max-width: 576px) {
  .value-props-theme-container {
    grid-template-columns: 1fr;
  }

  .value-prop-theme-item {
    border-right: none;
    border-top: 1px solid #eaeaea;
  }

  .value-prop-theme-item:first-child {
    border-top: none;
  }
}

/* ==================== NEW LUXURY THEME CLASSES ==================== */
.bg-gradient-cream {
  background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}

.container-luxe {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.text-gradient-gold {
  background: linear-gradient(to right, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-luxe {
  background-color: var(--bg-card);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease;
}

.card-luxe:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.badge-gold {
  background: linear-gradient(to right, var(--gold-primary), var(--gold-hover));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 10px var(--gold-glow);
}

.badge-dark {
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
}

.circle-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f4f1ed;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.card-luxe:hover .circle-icon {
  background: linear-gradient(to right, var(--gold-primary), var(--gold-hover));
  color: #fff;
}

.card-luxe:hover .circle-icon i {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

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

.sm\:flex-row {
  @media (min-width: 640px) {
    flex-direction: row;
  }
}

.sm\:items-end {
  @media (min-width: 640px) {
    align-items: flex-end;
  }
}

.sm\:justify-between {
  @media (min-width: 640px) {
    justify-content: space-between;
  }
}

.gap-6 {
  gap: 1.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-8 {
  margin-top: 2rem;
}

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

.text-3xl {
  font-size: 1.875rem;
}

.sm\:text-4xl {
  @media (min-width: 640px) {
    font-size: 2.25rem;
  }
}

.lg\:text-\[2\.85rem\] {
  @media (min-width: 1024px) {
    font-size: 2.85rem;
  }
}

.leading-tight {
  line-height: 1.25;
}

.text-base {
  font-size: 1rem;
}

.sm\:text-lg {
  @media (min-width: 640px) {
    font-size: 1.125rem;
  }
}

.text-pretty {
  text-wrap: pretty;
}

.text-ink-900 {
  color: #111111;
}

.text-ink-500 {
  color: #555555;
}

.text-ink-600 {
  color: #444444;
}

.hidden {
  display: none;
}

.sm\:inline-flex {
  @media (min-width: 640px) {
    display: inline-flex;
  }
}

.sm\:hidden {
  @media (min-width: 640px) {
    display: none;
  }
}

.shrink-0 {
  flex-shrink: 0;
}

.btn-theme-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
  background: transparent;
  text-decoration: none;
}

.btn-theme-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* ==================== ABOUT & SERVICES LAYOUT ==================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-image-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

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

.years-badge {
  position: absolute;
  top: 1.5rem;
  left: -1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px var(--gold-glow);
}

@media (min-width: 1024px) {
  .years-badge {
    left: -2rem;
  }
}

.years-badge .font-display {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.years-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-desc {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.about-features-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

@media (min-width: 640px) {
  .about-features-list {
    grid-template-columns: 1fr 1fr;
  }
}

.about-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.about-features-list .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--gold-light);
  color: var(--gold-primary);
  border-radius: 50%;
}

.services-luxe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

@media (min-width: 640px) {
  .services-luxe-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-luxe-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card-luxe {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 1.75rem;
  transition: all 0.5s ease;
}

.service-card-luxe:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: var(--gold-light);
  color: var(--gold-primary);
  font-size: 24px;
  transition: transform 0.5s ease;
}

.service-card-luxe:hover .service-icon {
  transform: scale(1.05);
}

.service-card-luxe h3 {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.service-card-luxe p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Homepage consultation call-to-action. */
.home-consultation-cta {
  width: min(1400px, calc(100% - 48px));
  margin: 42px auto;
  padding: 58px 0;
  background: linear-gradient(120deg, #0b1424, #17263b);
  border-top: 3px solid #d2a426;
  border-bottom: 3px solid #d2a426;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(11, 20, 36, .16);
}

.home-consultation-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.home-consultation-inner h2 {
  max-width: 760px;
  margin: 10px 0 10px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.08;
}

.home-consultation-inner h2 em {
  color: #e3bd55;
  font-weight: 600;
}

.home-consultation-inner p {
  max-width: 680px;
  margin: 0;
  color: #d7dee8;
  font-size: 14px;
  line-height: 1.65;
}

.home-consultation-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.home-consultation-primary,
.home-consultation-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 26px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.home-consultation-primary {
  padding: 14px 22px;
  background: #d2a426;
  color: #1c2430;
  box-shadow: 0 8px 20px rgba(210, 164, 38, .2);
}

.home-consultation-primary:hover {
  background: #e5bd45;
}

.home-consultation-phone {
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .25);
  color: #ffffff;
}

.home-consultation-phone i {
  color: #37c96f;
  font-size: 17px;
}

.home-consultation-phone span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-consultation-phone small {
  color: #aeb8c7;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 800px) {
  .home-consultation-cta {
    width: min(calc(100% - 28px), 1400px);
    margin: 28px auto;
    padding: 42px 0;
    border-radius: 22px;
  }

  .home-consultation-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-consultation-actions {
    width: 100%;
    max-width: 360px;
  }
}

/* Homepage callback section */
.homepage-contact-section {
  width: min(1400px, calc(100% - 48px));
  margin: 42px auto;
  padding: 52px 0;
  background: #fffdfa;
  border: 1px solid #e7dccb;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(30, 24, 18, .09);
}

.homepage-contact-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 52px;
  align-items: center;
}

.homepage-contact-copy h2 {
  margin: 12px 0 20px;
  color: var(--primary-navy);
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: .98;
}

.homepage-contact-copy h2 em {
  color: var(--gold-primary);
  font-weight: 600;
}

.homepage-contact-copy>p {
  max-width: 610px;
  color: var(--text-medium);
  font-size: 18px;
  line-height: 1.7;
}

.homepage-contact-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.homepage-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--text-dark);
  text-decoration: none;
}

.homepage-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #302b25;
  color: #fff;
  font-size: 23px;
  box-shadow: 0 10px 22px rgba(48, 43, 37, .18);
}

.homepage-contact-item small,
.homepage-contact-item strong {
  display: block;
}

.homepage-contact-item small {
  margin-bottom: 4px;
  color: var(--text-medium);
  font-size: 13px;
}

.homepage-contact-item strong {
  font-family: var(--font-heading);
  font-size: 18px;
}

.homepage-contact-form-wrap {
  padding: 38px;
  background: #f8f4ed;
  border: 1px solid #e7dccb;
  border-radius: 24px;
}

.homepage-contact-form-wrap h3 {
  margin: 12px 0 25px;
  color: var(--primary-navy);
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.15;
}

.homepage-contact-form {
  display: grid;
  gap: 17px;
}

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

.homepage-contact-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 700;
}

.homepage-contact-form input,
.homepage-contact-form select,
.homepage-contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid #e2d3be;
  border-radius: 14px;
  background: #fffdfa;
  color: var(--text-dark);
  font: inherit;
  font-size: 14px;
  outline: none;
}

.homepage-contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.homepage-contact-form input:focus,
.homepage-contact-form select:focus,
.homepage-contact-form textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(197, 155, 39, .14);
}

.homepage-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 28px;
  background: #171411;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.homepage-contact-submit:hover {
  background: #2f2922;
}

.homepage-contact-note {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 800px) {
  .homepage-contact-section {
    width: min(calc(100% - 28px), 1400px);
    margin: 28px auto;
    padding: 36px 0;
    border-radius: 22px;
  }

  .homepage-contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .homepage-contact-copy>p {
    font-size: 16px;
  }

  .homepage-contact-form-wrap {
    margin: 0 16px;
    padding: 26px 20px;
  }

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

@media (max-width: 800px) {
  .cta-banner {
    width: min(calc(100% - 28px), 1400px);
    margin: 28px auto;
    padding: 36px 0;
    border-radius: 22px;
  }
}

/* Sell page FAQ: clean rounded accordion treatment. */
.sell-section-cream#faq {
  padding: 82px 0 92px;
  background: #faf8f3;
}

.sell-section-cream#faq>.container>div:first-child {
  max-width: 780px !important;
  margin: 0 auto;
  text-align: center;
}

.sell-section-cream#faq>.container>div:first-child h2 {
  margin: 14px 0 0;
  color: #302b25;
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
}

.sell-section-cream#faq .faq-accordion-container {
  max-width: 900px;
  margin: 38px auto 0;
}

.sell-section-cream#faq .faq-item {
  margin-bottom: 10px;
  padding: 0;
  border: 1px solid #e5dccd;
  border-radius: 13px;
  background: #fffefa;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(47, 39, 26, .03);
}

.sell-section-cream#faq .faq-header {
  min-height: 72px;
  padding: 17px 20px;
}

.sell-section-cream#faq .faq-question-text {
  color: #302b25;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.sell-section-cream#faq .faq-item.active .faq-question-text,
.sell-section-cream#faq .faq-header:hover .faq-question-text {
  color: #d2a426;
}

.sell-section-cream#faq .faq-toggle-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  background: #f3f6fa;
  color: #302b25;
}

.sell-section-cream#faq .faq-item.active .faq-toggle-icon {
  background: #d2a426;
}

.sell-section-cream#faq .faq-answer {
  padding: 0 20px;
  color: #665d50;
  font-size: 14px;
  line-height: 1.7;
}

.sell-section-cream#faq .faq-item.active .faq-answer {
  padding: 0 20px 20px;
}

@media (max-width: 576px) {
  .sell-section-cream#faq {
    padding: 58px 0 65px;
  }

  .sell-section-cream#faq .faq-question-text {
    font-size: 15px;
  }

  .sell-section-cream#faq .faq-header {
    min-height: 66px;
    padding: 15px;
  }
}

/* About page: properties-page visual system. */
.about-page .page-hero {
  min-height: 250px;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, rgba(7, 17, 32, .94), rgba(18, 30, 49, .78)), url('images/mysore_heritage.png') center/cover;
}

.about-page .page-title {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
}

.about-page .about-overview-section {
  padding: 78px 0 88px;
  background: #fffefa;
}

.about-page .about-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: center;
}

.about-page .about-img-box {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(47, 39, 26, .13);
}

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

.about-page .about-content h2 {
  max-width: 680px;
  margin: 15px 0 20px;
  color: #302b25;
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
}

.about-page .about-content>p {
  max-width: 680px;
  color: #625a4f !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.about-page .about-content .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  border-radius: 25px;
  background: #d2a426;
  box-shadow: 0 8px 18px rgba(178, 135, 35, .2);
}

.about-page .vision-section {
  padding: 62px 0 68px;
  background: #faf8f3;
}

.about-page .vm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-page .vm-card {
  min-height: 190px;
  padding: 29px;
  border: 1px solid #e5dccd;
  border-radius: 18px;
  background: #fffefa;
  box-shadow: 0 8px 20px rgba(47, 39, 26, .06);
}

.about-page .living-banner {
  padding: 78px 0;
  background: #0b1424;
}

.about-page .living-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-page .living-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.about-page .living-feature-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  background: rgba(255, 255, 255, .07);
  color: #f7f1e7;
  font-size: 12px;
}

.about-page .living-feature-item i {
  color: #d2a426;
}

.about-page .why-choose-section {
  padding: 80px 0 88px;
  background: #fffefa;
  text-align: center;
}

.about-page .why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
  text-align: left;
}

.about-page .why-choose-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid #e5dccd;
  border-radius: 15px;
  background: #f8fafc;
}

.about-page .why-choose-title {
  margin: 13px 0 9px;
  font-size: 15px;
}

.about-page .why-choose-desc {
  color: #6b6256;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 800px) {

  .about-page .about-grid,
  .about-page .living-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-page .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-page .about-overview-section {
    padding: 52px 0 62px;
  }

  .about-page .about-img-box {
    height: 310px;
  }

  .about-page .vm-grid,
  .about-page .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .about-page .living-features-list {
    grid-template-columns: 1fr;
  }
}

/* Homepage About Us sizing and action alignment. */
.about-content h2 {
  margin-top: 20px;
  max-width: 700px;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.08;
}

.about-content .about-desc {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.75;
}

.about-features-list {
  gap: 18px 42px;
}

.about-features-list li {
  font-size: 16px;
}

.about-features-list .icon-wrap {
  width: 32px;
  height: 32px;
}

.about-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 30px;
}

.about-actions a {
  width: fit-content;
}

.about-actions a:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px !important;
  border: 0 !important;
  border-radius: 25px;
  background: #20b45c;
  color: #ffffff !important;
  box-shadow: 0 7px 16px rgba(32, 180, 92, .22);
}

.about-actions a:last-child:hover {
  background: #168d47;
  color: #ffffff !important;
}

@media (max-width: 576px) {
  .about-content h2 {
    font-size: 36px;
  }

  .about-content .about-desc {
    font-size: 16px;
  }

  .about-features-list li {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .site-footer .footer-top-grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .site-footer .footer-brand {
    padding-bottom: 8px;
  }
}

@media (max-width: 768px) {
  .home-page .hero-section {
    padding: 92px 18px 34px !important;
  }

  .home-page .hero-stats-theme {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    margin-bottom: 14px;
  }

  .home-page .hero-stats-theme .stat-box {
    width: 100%;
    padding-left: 0;
    border-left: none;
  }

  .home-page .hero-stats-theme .stat-box-legal {
    border-left: none;
  }

  .home-page .hero-stats-theme .stat-box h3,
  .home-page .hero-stats-bottom-theme .stat-box-large h3 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 5px;
  }

  .home-page .hero-stats-theme .stat-box h3 .plus {
    font-size: 22px;
  }

  .home-page .hero-stats-theme .stat-box p,
  .home-page .hero-stats-bottom-theme .stat-box-large p {
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .home-page .featured-properties-section .properties-grid {
    grid-template-columns: 1fr !important;
    gap: 22px;
  }

  .home-page .featured-properties-section .properties-grid>article>div:first-child {
    height: 240px;
  }

  .home-page .featured-properties-section .properties-grid>article>div:last-child {
    padding: 22px 20px 24px;
  }

  .home-page .featured-properties-section .properties-grid>article h3 {
    font-size: 24px;
  }
}

@media (max-width: 900px) {

  .home-page .featured-properties-section .properties-grid,
  .properties-page .property-detail-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .home-page .featured-properties-section .properties-grid>article,
  .properties-page .property-detail-card {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .guides-page .guides-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .guides-page .guide-article-card {
    min-height: 0;
    padding: 22px 20px 18px;
  }

  .guides-page .guide-article-title {
    font-size: 21px;
    line-height: 1.2;
  }

  .guides-page .guide-article-description {
    font-size: 15px;
  }

  .guides-page .guide-article-footer {
    padding-top: 20px;
  }

  .guide-article-page .guide-article-layout {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .guide-article-page .guide-article-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .guide-article-page {
    overflow-x: hidden;
  }

  .guide-article-page .container,
  .guide-article-page .guide-article-layout,
  .guide-article-page .guide-article-main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .guide-article-page .guide-article-main,
  .guide-article-page .guide-article-main p,
  .guide-article-page .guide-article-main li,
  .guide-article-page .guide-article-main h2,
  .guide-article-page .guide-article-main h3 {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .guide-article-page .guide-article-main p,
  .guide-article-page .guide-article-main li {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 576px) {
  .guide-article-page .guide-article-heading {
    font-size: 31px;
    letter-spacing: -0.7px;
  }

  .guide-article-page .guide-article-layout {
    padding-left: 0;
    padding-right: 0;
  }

  .guide-article-page .guide-article-main h2 {
    font-size: 22px;
  }

  .guide-article-page .guide-article-main h3,
  .guide-article-page .guide-faq-item h3 {
    font-size: 16px;
  }
}

/* Tighter homepage section rhythm. */
.home-page #about,
.home-page #services {
  padding: 60px 0 !important;
}

.home-page .value-props-theme-section {
  padding-bottom: 0;
}

.home-page #about {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.home-page #services {
  padding-top: 20px !important;
}

.home-page .featured-properties-section {
  padding: 30px 0 48px;
}

.home-page .home-consultation-cta,
.home-page .stats-banner,
.home-page .cta-banner,
.home-page .homepage-contact-section {
  margin-top: 22px;
  margin-bottom: 22px;
}

.home-page .homepage-property-showcase {
  margin-top: 36px;
  padding-top: 28px;
}

/* Shared editorial heading treatment for homepage sections. */
.home-page .section-title,
.home-page #about h2,
.home-page #services>.container-luxe>h2,
.home-page .featured-properties-section h2,
.home-page .homepage-showcase-heading h3,
.home-page .buyers-guide-section h2,
.home-page .discover-help-section h2,
.home-page .why-mysore-section h2,
.home-page .services-section h2,
.home-page .testimonials-section h2 {
  color: #171411;
  font-family: var(--font-heading) !important;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.home-page .section-title,
.home-page #about h2,
.home-page .featured-properties-section h2,
.home-page .buyers-guide-section h2,
.home-page .discover-help-section h2,
.home-page .why-mysore-section h2,
.home-page .services-section h2,
.home-page .testimonials-section h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.home-page .section-tag,
.home-page .eyebrow {
  color: var(--gold-primary);
}

.home-page #about,
.home-page #services,
.home-page .featured-properties-section,
.home-page .areas-we-serve-section,
.home-page .buyers-guide-section,
.home-page .discover-help-section,
.home-page .why-mysore-section,
.home-page .services-section,
.home-page .testimonials-section,
.home-page .homepage-contact-section {
  background: #faf8f3 !important;
}

.home-page .section-title,
.home-page .homepage-showcase-heading h3,
.home-page .guide-title,
.home-page .service-title,
.home-page .blog-card-h3 {
  color: #171411;
}

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

.mobile-single-column {
  grid-template-columns: 1fr !important;
}

.force-single-column {
  grid-template-columns: minmax(0, 1fr) !important;
}

/* Larger guide sidebar text across all guide articles. */
.guide-article-page .guide-sidebar-card {
  padding: 26px 23px;
}

.guide-article-page .guide-sidebar-card h3 {
  font-size: 20px;
}

.guide-article-page .guide-sidebar-card p {
  font-size: 15px;
  line-height: 1.65;
}

.guide-article-page .guide-takeaway-list li {
  font-size: 14px;
  line-height: 1.55;
}

.guide-article-page .guide-related-list {
  gap: 15px;
}

.guide-article-page .guide-related-list a {
  font-size: 14px;
  line-height: 1.5;
}

.guide-article-page .guide-contact-actions a {
  font-size: 13px;
  padding: 11px 8px;
}

/* Property cards: keep the narrow mobile presentation one card per row. */
.properties-page .property-detail-grid,
.home-page .featured-properties-section .properties-grid {
  grid-template-columns: minmax(0, 1fr) !important;
}

.mobile-properties-stack {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  overflow-x: visible !important;
  scroll-snap-type: none !important;
  gap: 22px !important;
}

.mobile-properties-stack>article {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  height: auto !important;
  max-height: none !important;
  flex: 0 0 auto !important;
}

@media (min-width: 901px) {

  .properties-page .property-detail-grid.mobile-properties-stack,
  .home-page .featured-properties-section .properties-grid.mobile-properties-stack {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 26px !important;
    overflow: visible !important;
  }

  .mobile-properties-stack>article {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  .properties-page .mobile-properties-stack>article {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
    align-items: stretch;
  }

  .properties-page .mobile-properties-stack .property-detail-media {
    height: 100%;
    min-height: 320px;
  }

  .properties-page .mobile-properties-stack .property-detail-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }

  .properties-page .mobile-properties-stack .property-detail-footer {
    margin-top: auto;
    padding-top: 24px;
  }
}

/* Keep the header Contact Us action readable over every hero image. */
.btn-theme-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  background: rgba(11, 20, 36, .9) !important;
  border: 1px solid rgba(255, 255, 255, .8) !important;
  color: #ffffff !important;
  text-shadow: none;
}

.btn-theme-contact:hover {
  background: var(--gold-primary) !important;
  border-color: var(--gold-primary) !important;
  color: #171411 !important;
}

@media (max-width: 768px) {
  .muda-guide-page .guide-article-hero {
    padding: 20px 0 38px;
  }

  .muda-guide-page .guide-article-hero .container,
  .muda-guide-page .guide-article-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .muda-guide-page .guide-article-heading {
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.6px;
  }

  .muda-guide-page .guide-article-lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .muda-guide-page .guide-article-layout {
    display: block;
    padding-top: 30px;
  }

  .muda-guide-page .guide-article-main {
    width: 100%;
  }

  .muda-guide-page .guide-article-sidebar {
    width: 100%;
    margin-top: 32px;
  }

  .muda-guide-page .guide-sidebar-card {
    width: 100%;
    box-sizing: border-box;
  }

  .ekhata-guide-page .guide-article-hero {
    padding: 20px 0 38px;
  }

  .ekhata-guide-page .guide-article-hero .container,
  .ekhata-guide-page .guide-article-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ekhata-guide-page .guide-article-heading {
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.6px;
  }

  .ekhata-guide-page .guide-article-lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .ekhata-guide-page .guide-article-layout {
    display: block;
    padding-top: 30px;
  }

  .ekhata-guide-page .guide-article-main {
    width: 100%;
  }

  .ekhata-guide-page .guide-article-sidebar {
    width: 100%;
    margin-top: 32px;
  }

  .ekhata-guide-page .guide-sidebar-card {
    width: 100%;
    box-sizing: border-box;
  }

  .home-loan-guide-page .guide-article-hero {
    padding: 20px 0 38px;
  }

  .home-loan-guide-page .guide-article-hero .container,
  .home-loan-guide-page .guide-article-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-loan-guide-page .guide-article-heading {
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.6px;
  }

  .home-loan-guide-page .guide-article-lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .home-loan-guide-page .guide-article-layout {
    display: block;
    padding-top: 30px;
  }

  .home-loan-guide-page .guide-article-main {
    width: 100%;
  }

  .home-loan-guide-page .guide-article-sidebar {
    width: 100%;
    margin-top: 32px;
  }

  .home-loan-guide-page .guide-sidebar-card {
    width: 100%;
    box-sizing: border-box;
  }

  .documents-guide-page .guide-article-hero {
    padding: 20px 0 38px;
  }

  .documents-guide-page .guide-article-hero .container,
  .documents-guide-page .guide-article-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .documents-guide-page .guide-article-heading {
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.6px;
  }

  .documents-guide-page .guide-article-lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .documents-guide-page .guide-article-layout {
    display: block;
    padding-top: 30px;
  }

  .documents-guide-page .guide-article-main {
    width: 100%;
  }

  .documents-guide-page .guide-article-sidebar {
    width: 100%;
    margin-top: 32px;
  }

  .documents-guide-page .guide-sidebar-card {
    width: 100%;
    box-sizing: border-box;
  }

  .stamp-duty-guide-page .guide-article-hero {
    padding: 20px 0 38px;
  }

  .stamp-duty-guide-page .guide-article-hero .container,
  .stamp-duty-guide-page .guide-article-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .stamp-duty-guide-page .guide-article-heading {
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.6px;
  }

  .stamp-duty-guide-page .guide-article-lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .stamp-duty-guide-page .guide-article-layout {
    display: block;
    padding-top: 30px;
  }

  .stamp-duty-guide-page .guide-article-main {
    width: 100%;
  }

  .stamp-duty-guide-page .guide-article-sidebar {
    width: 100%;
    margin-top: 32px;
  }

  .stamp-duty-guide-page .guide-sidebar-card {
    width: 100%;
    box-sizing: border-box;
  }

  .best-areas-guide-page .guide-article-hero {
    padding: 20px 0 38px;
  }

  .best-areas-guide-page .guide-article-hero .container,
  .best-areas-guide-page .guide-article-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .best-areas-guide-page .guide-article-heading {
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.6px;
  }

  .best-areas-guide-page .guide-article-lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .best-areas-guide-page .guide-article-layout {
    display: block;
    padding-top: 30px;
  }

  .best-areas-guide-page .guide-article-main {
    width: 100%;
  }

  .best-areas-guide-page .guide-article-sidebar {
    width: 100%;
    margin-top: 32px;
  }

  .best-areas-guide-page .guide-sidebar-card {
    width: 100%;
    box-sizing: border-box;
  }

  .site-apartment-guide-page .guide-article-hero {
    padding: 20px 0 38px;
  }

  .site-apartment-guide-page .guide-article-hero .container,
  .site-apartment-guide-page .guide-article-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-apartment-guide-page .guide-article-heading {
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.6px;
  }

  .site-apartment-guide-page .guide-article-lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .site-apartment-guide-page .guide-article-layout {
    display: block;
    padding-top: 30px;
  }

  .site-apartment-guide-page .guide-article-main {
    width: 100%;
  }

  .site-apartment-guide-page .guide-article-sidebar {
    width: 100%;
    margin-top: 32px;
  }

  .site-apartment-guide-page .guide-sidebar-card {
    width: 100%;
    box-sizing: border-box;
  }

  .nri-guide-page .guide-article-hero {
    padding: 20px 0 38px;
  }

  .nri-guide-page .guide-article-hero .container,
  .nri-guide-page .guide-article-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nri-guide-page .guide-article-heading {
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.6px;
  }

  .nri-guide-page .guide-article-lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .nri-guide-page .guide-article-layout {
    display: block;
    padding-top: 30px;
  }

  .nri-guide-page .guide-article-main {
    width: 100%;
  }

  .nri-guide-page .guide-article-sidebar {
    width: 100%;
    margin-top: 32px;
  }

  .nri-guide-page .guide-sidebar-card {
    width: 100%;
    box-sizing: border-box;
  }

  .vastu-guide-page .guide-article-hero {
    padding: 20px 0 38px;
  }

  .vastu-guide-page .guide-article-hero .container,
  .vastu-guide-page .guide-article-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .vastu-guide-page .guide-article-heading {
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.6px;
  }

  .vastu-guide-page .guide-article-lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .vastu-guide-page .guide-article-layout {
    display: block;
    padding-top: 30px;
  }

  .vastu-guide-page .guide-article-main {
    width: 100%;
  }

  .vastu-guide-page .guide-article-sidebar {
    width: 100%;
    margin-top: 32px;
  }

  .vastu-guide-page .guide-sidebar-card {
    width: 100%;
    box-sizing: border-box;
  }
}

/* Homepage showcase rows below featured properties. */
.homepage-property-showcase {
  margin-top: 62px;
  padding-top: 42px;
  border-top: 1px solid #e5dccd;
}

/* Blog/news section removed from the homepage layout. */
.dedicated-blog-section {
  display: none !important;
}

.homepage-property-showcase--properties {
  margin-top: 48px;
}

.homepage-showcase-heading {
  max-width: 650px;
  margin-bottom: 25px;
}

.homepage-showcase-heading h3 {
  margin: 9px 0 9px;
  color: #302b25;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.1;
}

.homepage-showcase-heading p {
  margin: 0;
  color: #6b6256;
  font-size: 14px;
  line-height: 1.6;
}

.homepage-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.homepage-showcase-card {
  overflow: hidden;
  border: 1px solid #e5dccd;
  border-radius: 18px;
  background: #fffefa;
  box-shadow: 0 7px 18px rgba(47, 39, 26, .06);
}

.homepage-showcase-card img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.homepage-showcase-card>div {
  padding: 19px 20px 21px;
}

.homepage-showcase-card span {
  color: #8b6c37;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.homepage-showcase-card h4 {
  margin: 9px 0 8px;
  color: #302b25;
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.2;
}

.homepage-showcase-card p {
  margin: 0;
  color: #6b6256;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 800px) {
  .homepage-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .homepage-property-showcase {
    margin-top: 42px;
    padding-top: 32px;
  }

  .homepage-showcase-grid {
    grid-template-columns: 1fr;
  }

  .homepage-showcase-card img {
    height: 210px;
  }
}

/* Shared guide-style header for every non-home page. */
.subpage .main-header,
.property-detail-page .main-header {
  position: sticky !important;
  top: 0;
  background: #0b1424 !important;
  box-shadow: 0 5px 22px rgba(4, 8, 14, .22) !important;
}

.subpage .nav-link,
.property-detail-page .nav-link,
.subpage .header-phone,
.property-detail-page .header-phone {
  color: #ffffff !important;
}

.subpage .nav-link:hover,
.subpage .nav-link.active,
.property-detail-page .nav-link:hover,
.property-detail-page .nav-link.active {
  color: #ffffff !important;
}

.subpage .btn-theme-contact,
.property-detail-page .btn-theme-contact {
  border-color: rgba(255, 255, 255, .45) !important;
  background: transparent !important;
  color: #ffffff !important;
}

.subpage .btn-theme-contact:hover,
.property-detail-page .btn-theme-contact:hover {
  background: #ffffff !important;
  color: #0b1424 !important;
}

/* ================= HOMEPAGE REFERENCE RESTYLE ================= */
.home-page {
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', Arial, sans-serif;
  --ref-ink: #211e1a;
  --ref-dark: #1c1916;
  --ref-taupe: #4b463f;
  --ref-paper: #fbf8f2;
  --ref-cream: #f5efe6;
  --ref-card: #fffdf9;
  --ref-line: #e8ded1;
  --ref-muted: #756d63;
  background: var(--ref-paper);
  color: var(--ref-ink);
  font-family: var(--font-body);
}

.home-page .container,
.home-page .container-luxe {
  width: min(100% - 40px, 1160px);
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 0;
}

.home-page :is(h1, h2, h3, h4, .font-display, .section-title) {
  font-family: var(--font-heading) !important;
}

.home-page :is(.section-title, section h2, .homepage-showcase-heading h3) {
  color: var(--ref-ink) !important;
  font-size: clamp(38px, 4.25vw, 56px) !important;
  font-weight: 600 !important;
  letter-spacing: -.035em;
  line-height: .94 !important;
}

.home-page .text-gradient-gold {
  display: inline;
  background: none !important;
  color: inherit !important;
  font-style: italic;
  -webkit-text-fill-color: currentColor !important;
}

.home-page :is(.eyebrow, .section-tag) {
  margin: 0 0 14px;
  color: #8a7760 !important;
  font: 700 9px/1.3 var(--font-body);
  letter-spacing: .24em !important;
  text-transform: uppercase;
}

.home-page .heading-flourish {
  display: none;
}

.home-page :is(.section-subtitle, .about-desc) {
  color: var(--ref-muted);
}

/* Header and hero */
.home-page .main-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  height: 82px;
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  box-shadow: none;
}

.home-page .nav-container {
  height: 82px;
}

.home-page .brand-logo-img {
  object-fit: contain;
}

.home-page .brand-name {
  font-family: var(--font-heading);
  letter-spacing: .08em;
}

.home-page :is(.nav-link, .header-phone) {
  font-size: 12px !important;
}

.home-page .btn-theme-contact {
  min-height: 38px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  font-size: 12px;
}

.home-page .hero-section {
  min-height: 760px !important;
  padding: 175px 0 82px !important;
  background: var(--ref-dark);
}

.home-page .hero-section::before {
  background: linear-gradient(90deg, rgba(24, 21, 18, .96), rgba(24, 21, 18, .82) 45%, rgba(24, 21, 18, .26)), url('images/hero.png') center/cover no-repeat;
  filter: saturate(.62) sepia(.08);
  animation: none;
}

.home-page .hero-content {
  max-width: 760px;
}

.home-page .hero-badge-theme {
  margin-bottom: 28px;
  padding: 0;
  border: 0;
  color: #d7cfc2;
  font-size: 9px;
  letter-spacing: .24em;
}

.home-page .hero-badge-theme .badge-dot {
  width: 5px;
  height: 5px;
  background: #b99b70;
}

.home-page .hero-title-theme {
  max-width: 720px;
  margin: 0 0 26px;
  color: #fffaf1;
  font-size: clamp(62px, 7vw, 92px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .88;
}

.home-page .hero-title-theme em {
  color: #e8ded0;
  font-weight: 500;
}

.home-page .hero-subtitle-theme {
  margin: 0 0 34px;
  color: rgba(255, 250, 242, .72);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.home-page .hero-btn-group {
  margin: 0 0 58px;
  gap: 10px;
}

.home-page :is(.btn-theme-white, .hero-btn-group .btn-theme-outline) {
  min-height: 45px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.home-page .btn-theme-white {
  background: #fffaf2;
  color: #26221e;
}

.home-page .hero-btn-group .btn-theme-outline {
  border-color: rgba(255, 255, 255, .42);
  color: #fff !important;
}

.home-page .hero-stats-theme {
  gap: 0;
  margin: 0;
}

.home-page .hero-stats-theme .stat-box {
  min-width: 145px;
  padding: 0 26px;
}

.home-page .hero-stats-theme .stat-box:first-child {
  padding-left: 0;
}

.home-page .hero-stats-theme .stat-box h3 {
  color: #fffaf2;
  font-size: 34px;
  font-weight: 600;
}

.home-page .hero-stats-theme .stat-box p {
  margin-top: 7px;
  color: rgba(255, 255, 255, .55);
  font-size: 8px;
  letter-spacing: .16em;
}

/* Advantage block */
.home-page .value-props-theme-section {
  position: relative;
  margin: 0;
  padding: 88px 0 96px;
  background: var(--ref-dark);
}

.home-page .value-props-theme-section::before {
  content: 'WHY CHOOSE US';
  display: block;
  margin: 0 auto 10px;
  color: #9d8c75;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .24em;
  text-align: center;
}

.home-page .value-props-theme-section::after {
  content: 'The SN Properties Advantage';
  position: absolute;
  top: 108px;
  left: 50%;
  width: 100%;
  color: #fffaf1;
  font: 600 clamp(34px, 4vw, 50px)/1 var(--font-heading);
  letter-spacing: -.03em;
  text-align: center;
  transform: translateX(-50%);
}

.home-page .value-props-theme-container {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 82px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-page .value-prop-theme-item {
  display: block;
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .06) !important;
  border-radius: 14px;
  background: #302d29;
}

.home-page .theme-icon-box {
  width: 34px;
  height: 34px;
  min-width: 34px;
  margin-bottom: 24px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .06);
}

.home-page .theme-icon-box i {
  color: #d6cbbd;
  font-size: 16px;
}

.home-page .theme-text-box h4 {
  margin: 0 0 9px;
  color: #fffaf2;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.05;
}

.home-page .theme-text-box p {
  color: #a9a199;
  font-size: 10px;
  line-height: 1.65;
}

/* Section rhythm */
.home-page :is(#about, #services, .featured-properties-section, .areas-we-serve-section, .buyers-guide-section, .discover-help-section, .why-mysore-section, .services-section, .dedicated-blog-section) {
  background: var(--ref-paper) !important;
}

.home-page :is(#about, #services, .featured-properties-section, .buyers-guide-section, .discover-help-section, .why-mysore-section, .services-section, .testimonials-section, .dedicated-blog-section) {
  padding: 108px 0 !important;
}

.home-page #about .about-grid {
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
}

.home-page .about-image-wrap {
  aspect-ratio: 4/3;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(50, 42, 31, .11);
}

.home-page .years-badge {
  top: auto;
  bottom: -18px;
  left: 22px;
  border-color: var(--ref-line);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(50, 42, 31, .08);
}

.home-page .about-desc {
  font-size: 13px;
  line-height: 1.8;
}

.home-page .about-features-list {
  gap: 11px;
  margin-top: 26px;
}

.home-page .about-features-list li {
  color: #524b43;
  font-size: 11px;
}

.home-page .about-features-list .icon-wrap {
  width: 24px;
  height: 24px;
  background: #eee7dc;
  color: #66594a;
}

.home-page .about-actions {
  margin-top: 28px;
}

.home-page :is(.about-actions .btn-theme-outline, .featured-properties-section .btn-theme-outline) {
  border-color: #d8cec0;
  background: var(--ref-card);
  color: #3f3932;
  font-size: 10px;
}

/* Service and listing cards */
.home-page #services .max-w-2xl {
  max-width: 650px;
}

.home-page #services>.container-luxe>div:first-child {
  text-align: center;
}

.home-page #services .services-luxe-grid {
  gap: 14px;
  margin-top: 50px;
}

.home-page .service-card-luxe {
  min-height: 235px;
  padding: 24px;
  border-color: var(--ref-line);
  border-radius: 14px;
  background: var(--ref-card);
  box-shadow: 0 7px 18px rgba(52, 44, 34, .045);
}

.home-page .service-card-luxe:hover {
  transform: translateY(-3px);
  border-color: #d6c9b7;
  box-shadow: 0 12px 26px rgba(52, 44, 34, .08);
}

.home-page .service-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #eee8df;
  color: #544d45;
  font-size: 17px;
}

.home-page .service-card-luxe h3 {
  margin-top: 38px;
  color: var(--ref-ink);
  font-size: 20px;
  font-weight: 600;
}

.home-page .service-card-luxe p {
  color: var(--ref-muted);
  font-size: 10px;
  line-height: 1.65;
}

.home-page .featured-properties-section {
  background: var(--ref-cream) !important;
}

.home-page .featured-properties-section>.container-luxe>div:first-child {
  justify-content: center;
}

.home-page .featured-properties-section .max-w-2xl {
  max-width: 720px;
  text-align: center;
}

.home-page .featured-properties-section .properties-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 790px;
  margin: 48px auto 0;
  gap: 16px;
}

.home-page :is(.featured-properties-section .card-luxe, .homepage-showcase-card) {
  border: 1px solid var(--ref-line);
  border-radius: 14px;
  background: var(--ref-card);
  box-shadow: 0 8px 22px rgba(52, 44, 34, .06);
}

.home-page .featured-properties-section .properties-grid>article>div:first-child {
  height: 220px;
  border-radius: 13px 13px 0 0;
}

.home-page .featured-properties-section .properties-grid>article>div:last-child {
  padding: 22px;
}

.home-page .featured-properties-section .properties-grid>article h3 {
  color: var(--ref-ink);
  font-size: 22px;
}

.home-page .featured-properties-section .properties-grid>article :is(p, span, a) {
  font-size: 10px;
}

.home-page .homepage-property-showcase {
  margin-top: 78px;
  padding-top: 0;
  border-top: 0;
}

.home-page .homepage-showcase-heading {
  max-width: 620px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-page .homepage-showcase-heading h3 {
  margin: 8px 0 12px;
}

.home-page .homepage-showcase-heading p {
  color: var(--ref-muted);
  font-size: 12px;
  line-height: 1.7;
}

.home-page .homepage-showcase-grid {
  gap: 16px;
}

.home-page .homepage-showcase-card {
  overflow: hidden;
}

.home-page .homepage-showcase-card img {
  height: 180px;
}

.home-page .homepage-showcase-card>div {
  padding: 20px;
}

.home-page .homepage-showcase-card h4 {
  color: var(--ref-ink);
  font-size: 20px;
  font-weight: 600;
}

.home-page .homepage-showcase-card p {
  color: var(--ref-muted);
  font-size: 10px;
}

/* Consultation and figures */
.home-page .home-consultation-cta {
  width: min(100% - 40px, 1120px);
  margin: 52px auto;
  padding: 46px 0;
  border: 0;
  border-radius: 18px;
  background: var(--ref-taupe);
  box-shadow: 0 12px 28px rgba(48, 42, 35, .13);
}

.home-page .home-consultation-inner {
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.home-page .home-consultation-inner h2 {
  max-width: 760px;
  margin: 5px auto 10px;
  color: #fffaf3 !important;
  font-size: clamp(32px, 3.4vw, 46px) !important;
}

.home-page .home-consultation-inner h2 em {
  color: #fffaf3;
}

.home-page .home-consultation-inner p {
  max-width: 680px;
  color: #d6cfc7;
  font-size: 10px;
}

.home-page .home-consultation-actions {
  flex-direction: row;
  gap: 8px;
}

.home-page :is(.home-consultation-primary, .home-consultation-phone) {
  min-height: 38px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fffdfa;
  color: #3e3933;
  font-size: 9px;
}

.home-page .home-consultation-phone small {
  color: #81786d;
  font-size: 7px;
}

.home-page .stats-banner {
  padding: 38px 0;
  background: var(--ref-dark);
}

.home-page .stats-grid {
  gap: 0;
}

.home-page .stat-item {
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.home-page .stat-item:last-child {
  border-right: 0;
}

.home-page .stat-icon {
  color: #b9aa98;
  font-size: 24px;
}

.home-page .stat-number {
  color: #fffaf1;
  font-family: var(--font-heading);
  font-size: 30px;
}

.home-page .stat-label {
  color: #9d958c;
  font-size: 9px;
  letter-spacing: .08em;
}

/* Locations and guide */
.home-page .areas-we-serve-section {
  padding: 98px 0 84px !important;
}

.home-page :is(.areas-we-serve-section, .buyers-guide-section)>.container>div:first-child {
  max-width: 690px;
  margin: 0 auto 44px !important;
}

.home-page .areas-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
}

.home-page .area-card {
  padding: 20px !important;
  border-color: var(--ref-line) !important;
  border-radius: 12px !important;
  background: var(--ref-card) !important;
  box-shadow: 0 5px 14px rgba(52, 44, 34, .04) !important;
}

.home-page .area-card>div>div {
  width: 32px !important;
  height: 32px !important;
  background: #eee8df !important;
  color: #62584d !important;
}

.home-page .area-card h3 {
  color: var(--ref-ink) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

.home-page .area-card p {
  color: var(--ref-muted) !important;
  font-size: 9px !important;
  line-height: 1.65 !important;
}

.home-page .buyers-guide-section {
  background: var(--ref-cream) !important;
}

.home-page .guide-timeline {
  gap: 12px;
}

.home-page .guide-step {
  border: 1px solid var(--ref-line);
  border-radius: 13px;
  background: var(--ref-card);
  box-shadow: 0 6px 16px rgba(52, 44, 34, .045);
}

.home-page .guide-step-num {
  color: #b0a394;
}

.home-page .guide-icon {
  background: #eee8df;
  color: #5c544b;
}

.home-page .guide-title {
  color: var(--ref-ink);
  font-size: 19px;
}

.home-page .guide-desc {
  color: var(--ref-muted);
  font-size: 10px;
}

/* FAQ and Mysuru feature */
.home-page .discover-help-grid {
  gap: 64px;
  align-items: start;
}

.home-page .discover-help-section .section-title {
  font-size: clamp(40px, 4.2vw, 54px) !important;
}

.home-page .discover-help-section .btn-hero-primary {
  border-radius: 999px;
  background: var(--ref-dark);
  box-shadow: none;
  font-size: 10px !important;
}

.home-page .discover-visual-card {
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(52, 44, 34, .08);
}

.home-page .faq-accordion {
  gap: 8px;
}

.home-page .faq-item {
  border: 1px solid var(--ref-line);
  border-radius: 10px;
  background: var(--ref-card);
  box-shadow: 0 4px 11px rgba(52, 44, 34, .035);
}

.home-page .faq-question {
  padding: 17px 18px;
  color: #3d3832;
  font-size: 11px;
  font-weight: 600;
}

.home-page .faq-icon {
  width: 24px;
  height: 24px;
  background: #f0e9df;
  color: #62584d;
}

.home-page .faq-answer {
  color: var(--ref-muted);
  font-size: 10px;
  line-height: 1.7;
}

.home-page .faq-item.active .faq-answer {
  padding: 0 18px 18px;
}

.home-page .why-mysore-section {
  background: var(--ref-cream) !important;
}

.home-page .why-mysore-grid {
  gap: 66px;
}

.home-page .why-image-wrapper {
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(52, 44, 34, .09);
}

.home-page .why-features-grid {
  gap: 10px;
}

.home-page .feature-box {
  padding: 17px;
  border: 1px solid var(--ref-line);
  border-radius: 11px;
  background: var(--ref-card);
}

.home-page .feature-icon {
  background: #eee8df;
  color: #5e554c;
}

.home-page .feature-box h4 {
  color: var(--ref-ink);
  font-size: 16px;
}

.home-page .feature-box p {
  color: var(--ref-muted);
  font-size: 9px;
}

/* Dark six-card services and reviews */
.home-page .services-section {
  background: var(--ref-dark) !important;
  text-align: center;
}

.home-page .services-section .section-title {
  color: #fffaf2 !important;
}

.home-page .services-section .section-tag {
  color: #9e8c75 !important;
}

.home-page .services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 46px;
}

.home-page .service-card {
  min-height: 178px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 13px;
  background: #302d29;
  box-shadow: none;
  text-align: left;
}

.home-page .service-icon-wrap {
  width: 34px;
  height: 34px;
  margin-bottom: 25px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: #d7cab9;
}

.home-page .service-title {
  color: #fffaf2;
  font-size: 18px;
  font-weight: 600;
}

.home-page .service-desc {
  color: #aaa199;
  font-size: 10px;
  line-height: 1.55;
}

.home-page .testimonials-section {
  background: var(--ref-cream);
}

.home-page .testimonials-section .section-header-flex {
  display: block;
  max-width: 690px;
  margin: 0 auto 46px;
  text-align: center;
}

.home-page .slider-nav {
  display: none;
}

.home-page .testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.home-page .testimonial-card {
  padding: 28px;
  border: 1px solid var(--ref-line);
  border-radius: 14px;
  background: var(--ref-card);
  box-shadow: 0 9px 22px rgba(52, 44, 34, .055);
}

.home-page .quote-icon {
  color: #b2a493;
}

.home-page .testimonial-text {
  color: #3e3832;
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.4;
}

.home-page .client-avatar {
  width: 34px;
  height: 34px;
}

.home-page .client-name {
  color: var(--ref-ink);
  font-size: 13px;
}

.home-page .client-loc {
  color: var(--ref-muted);
  font-size: 8px;
}

.home-page .star-rating {
  color: #887057;
  font-size: 10px;
}

/* Journal, final CTA and enquiry */
.home-page .dedicated-blog-section>.container>div:first-child {
  max-width: 690px !important;
  margin-bottom: 32px !important;
}

.home-page .blog-category-filter {
  gap: 7px;
  margin-bottom: 34px;
}

.home-page .blog-filter-btn {
  padding: 8px 14px;
  border-color: var(--ref-line);
  background: var(--ref-card);
  color: #5c554d;
  font-size: 9px;
}

.home-page .blog-filter-btn.active {
  background: var(--ref-dark);
  color: #fff;
}

.home-page .blog-showcase-grid {
  gap: 14px;
}

.home-page .featured-blog-card {
  border: 1px solid var(--ref-line);
  border-radius: 14px;
  background: var(--ref-card);
  box-shadow: 0 7px 18px rgba(52, 44, 34, .05);
}

.home-page .featured-blog-img-wrap {
  height: 190px;
}

.home-page .featured-blog-body {
  padding: 22px;
}

.home-page .blog-card-h3 {
  color: var(--ref-ink);
  font-size: 21px;
  font-weight: 600;
}

.home-page .blog-excerpt {
  color: var(--ref-muted);
  font-size: 10px;
}

.home-page .blog-read-btn {
  color: #4f473f;
  font-size: 9px;
}

.home-page .cta-banner {
  width: min(100% - 40px, 1120px);
  margin: 0 auto 72px;
  padding: 42px 0;
  border-radius: 17px;
  background: var(--ref-taupe);
}

.home-page .cta-container {
  flex-direction: column;
  gap: 22px;
  text-align: center;
}

.home-page .cta-text h2 {
  color: #fffaf3 !important;
  font-size: 36px !important;
}

.home-page .cta-text p {
  color: #d8d0c8;
  font-size: 10px;
}

.home-page .btn-cta-navy {
  border-radius: 999px;
  background: #fffdfa;
  color: #3d3832;
  font-size: 9px;
}

.home-page .homepage-contact-section {
  width: 100%;
  margin: 0;
  padding: 104px 0;
  border: 0;
  border-radius: 0;
  background: var(--ref-paper);
  box-shadow: none;
}

.home-page .homepage-contact-grid {
  gap: 72px;
  align-items: start;
}

.home-page .homepage-contact-copy h2 {
  margin: 12px 0 20px;
  color: var(--ref-ink);
  font-size: clamp(42px, 5vw, 62px);
}

.home-page .homepage-contact-copy>p {
  color: var(--ref-muted);
  font-size: 12px;
  line-height: 1.8;
}

.home-page .homepage-contact-list {
  gap: 11px;
}

.home-page .homepage-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--ref-taupe);
  font-size: 15px;
  box-shadow: none;
}

.home-page .homepage-contact-item small {
  font-size: 8px;
}

.home-page .homepage-contact-item strong {
  color: #3d3832;
  font-family: var(--font-body);
  font-size: 10px;
}

.home-page .homepage-contact-form-wrap {
  padding: 28px;
  border-color: var(--ref-line);
  border-radius: 14px;
  background: var(--ref-card);
  box-shadow: 0 9px 24px rgba(52, 44, 34, .055);
}

.home-page .homepage-contact-form-wrap h3 {
  color: var(--ref-ink);
  font-size: 24px;
  font-weight: 600;
}

.home-page .homepage-contact-form {
  gap: 13px;
}

.home-page .homepage-contact-form label {
  color: #534c44;
  font-size: 9px;
}

.home-page .homepage-contact-form :is(input, select, textarea) {
  padding: 11px 12px;
  border-color: var(--ref-line);
  border-radius: 8px;
  background: #fffdfa;
  font-size: 10px;
}

.home-page .homepage-contact-form textarea {
  min-height: 88px;
}

.home-page .homepage-contact-submit {
  min-height: 42px;
  border-radius: 999px;
  background: var(--ref-dark);
  font-size: 9px;
}

.home-page .homepage-contact-note {
  color: var(--ref-muted);
  font-size: 8px;
}

.home-page .site-footer {
  background: var(--ref-dark);
}

.home-page .footer-col-title {
  font-family: var(--font-body) !important;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-page :is(.footer-brand p, .footer-links a, .contact-item) {
  color: #9f9890;
  font-size: 9px;
}

@media (max-width: 992px) {
  .home-page .value-props-theme-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-page :is(#about .about-grid, .discover-help-grid, .why-mysore-grid, .homepage-contact-grid) {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-page .areas-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .home-page .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-page .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .home-page .header-phone {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .home-page :is(.container, .container-luxe) {
    width: min(100% - 28px, 1160px);
  }

  .home-page :is(.main-header, .nav-container) {
    height: 70px;
  }

  .home-page .hero-section {
    min-height: 690px !important;
    padding: 132px 0 60px !important;
  }

  .home-page .hero-section::before {
    background: linear-gradient(rgba(24, 21, 18, .83), rgba(24, 21, 18, .88)), url('images/hero.png') center/cover no-repeat;
  }

  .home-page .hero-title-theme {
    font-size: clamp(49px, 15vw, 68px);
    line-height: .9;
  }

  .home-page .hero-subtitle-theme br {
    display: none;
  }

  .home-page .hero-btn-group {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .home-page .hero-stats-theme {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 0;
  }

  .home-page .hero-stats-theme .stat-box {
    min-width: 0;
    padding: 0 16px;
    border-left: 1px solid rgba(255, 255, 255, .2) !important;
  }

  .home-page .hero-stats-theme .stat-box:nth-child(odd) {
    padding-left: 0;
    border-left: 0 !important;
  }

  .home-page :is(#about, #services, .featured-properties-section, .buyers-guide-section, .discover-help-section, .why-mysore-section, .services-section, .testimonials-section, .dedicated-blog-section) {
    padding: 76px 0 !important;
  }

  .home-page .featured-properties-section .properties-grid {
    grid-template-columns: 1fr !important;
  }

  .home-page .homepage-showcase-grid {
    grid-template-columns: 1fr;
  }

  .home-page .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .home-page .stat-item:nth-child(2) {
    border-right: 0;
  }

  .home-page .home-consultation-actions {
    flex-direction: column;
    width: min(100%, 320px);
  }

  .home-page .homepage-contact-section {
    padding: 76px 0;
  }
}

@media (max-width: 576px) {
  .home-page :is(.section-title, section h2, .homepage-showcase-heading h3) {
    font-size: 38px !important;
  }

  .home-page .brand-tagline {
    display: none;
  }

  .home-page .brand-logo-img {
    width: 40px;
    height: 40px;
  }

  .home-page .value-props-theme-section {
    padding: 72px 0 76px;
  }

  .home-page .value-props-theme-section::after {
    top: 93px;
    font-size: 37px;
  }

  .home-page .value-props-theme-container {
    grid-template-columns: 1fr;
    margin-top: 75px;
  }

  .home-page .value-prop-theme-item {
    min-height: 155px;
  }

  .home-page #about .about-grid {
    display: flex;
    flex-direction: column;
  }

  .home-page .about-image-wrap {
    aspect-ratio: 1/1;
  }

  .home-page :is(.services-luxe-grid, .services-grid) {
    grid-template-columns: 1fr !important;
  }

  .home-page .areas-grid {
    grid-template-columns: 1fr !important;
  }

  .home-page .homepage-showcase-card img {
    height: 205px;
  }

  .home-page :is(.home-consultation-cta, .cta-banner) {
    width: calc(100% - 28px);
  }

  .home-page .home-consultation-cta {
    padding: 38px 0;
  }

  .home-page .homepage-contact-form-wrap {
    margin: 0;
    padding: 22px 18px;
  }

  .home-page .homepage-form-row {
    grid-template-columns: 1fr;
  }
}

/* Header alignment correction: balanced logo, navigation and actions. */
@media (min-width: 993px) {

  .main-header .nav-container,
  .home-page .nav-container {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) auto minmax(228px, 1fr);
    align-items: center;
    gap: 28px;
    height: 86px;
  }

  .main-header .logo-brand {
    min-width: 0;
    height: 86px;
    gap: 14px;
    padding: 6px 0;
  }

  .main-header .brand-logo-img,
  .home-page .brand-logo-img {
    width: 72px;
    height: 72px;
    max-height: 72px;
    flex: 0 0 72px;
  }

  .main-header .logo-text {
    min-width: 0;
    justify-content: center;
  }

  .main-header .brand-name,
  .home-page .brand-name {
    font-size: 28px !important;
    line-height: 1;
    letter-spacing: .055em;
  }

  .main-header .brand-tagline,
  .home-page .brand-tagline {
    margin-top: 6px;
    font-size: 11px !important;
    line-height: 1.15;
    letter-spacing: .07em;
  }

  .main-header .nav-menu {
    justify-content: center;
    gap: 20px;
    min-width: 0;
  }

  .main-header .nav-link,
  .home-page .nav-link {
    padding: 10px 0;
    font-size: 12px !important;
    line-height: 1;
  }

  .main-header .nav-container>div:last-child {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end;
    gap: 14px !important;
    min-width: 0;
  }

  .main-header .header-phone {
    flex: 0 0 auto;
    gap: 6px !important;
    font-size: 11px !important;
    line-height: 1;
    white-space: nowrap;
  }

  .main-header .header-phone span {
    white-space: nowrap;
  }

  .main-header .btn-theme-contact,
  .home-page .btn-theme-contact {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 9px 17px;
    white-space: nowrap;
  }
}

@media (min-width: 993px) and (max-width: 1180px) {

  .main-header .nav-container,
  .home-page .nav-container {
    grid-template-columns: minmax(250px, .9fr) auto minmax(112px, .45fr);
    gap: 18px;
  }

  .main-header .brand-logo-img,
  .home-page .brand-logo-img {
    width: 62px;
    height: 62px;
    max-height: 62px;
    flex-basis: 62px;
  }

  .main-header .brand-name,
  .home-page .brand-name {
    font-size: 23px !important;
  }

  .main-header .brand-tagline,
  .home-page .brand-tagline {
    font-size: 9px !important;
  }

  .main-header .nav-menu {
    gap: 14px;
  }

  .main-header .nav-link,
  .home-page .nav-link {
    font-size: 11px !important;
  }

  .main-header .header-phone {
    display: none !important;
  }
}

/* Keep the complete brand lockup flush left in the desktop header. */
@media (min-width: 993px) {

  .main-header .nav-container,
  .home-page .nav-container {
    width: calc(100% - 40px);
    max-width: none;
    margin-inline: 20px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 30px;
  }

  .main-header .logo-brand {
    justify-self: start;
    gap: 11px;
  }

  .main-header .nav-menu {
    justify-self: center;
  }

  .main-header .nav-container>div:last-child {
    justify-self: end;
  }
}

@media (min-width: 993px) and (max-width: 1180px) {

  .main-header .nav-container,
  .home-page .nav-container {
    width: calc(100% - 28px);
    margin-inline: 14px;
    gap: 18px;
  }
}

/* Enlarge only the logo; preserve the original header and text sizes. */
@media (min-width: 1280px) {

  .main-header,
  .home-page .main-header,
  .main-header .nav-container,
  .home-page .nav-container,
  .main-header .logo-brand {
    height: 86px;
  }

  .main-header .brand-logo-img,
  .home-page .brand-logo-img {
    width: 84px;
    height: 84px;
    max-height: 84px;
    flex-basis: 84px;
    transform: scale(1.18);
    transform-origin: center;
  }

  .main-header .brand-name,
  .home-page .brand-name {
    font-size: 28px !important;
  }

  .main-header .brand-tagline,
  .home-page .brand-tagline {
    margin-top: 6px;
    font-size: 11px !important;
  }

  .main-header .logo-brand:hover .brand-logo-img {
    transform: scale(1.22);
  }
}



/* White four-column advantage panel overlapping the hero. */
.home-page .value-props-theme-section {
  z-index: 20;
  margin-top: -104px;
  padding: 0 0 84px;
  background: linear-gradient(to bottom, transparent 0 104px, var(--ref-paper) 104px 100%);
}

.home-page .value-props-theme-section::before,
.home-page .value-props-theme-section::after {
  display: none;
}

.home-page .value-props-theme-section .container {
  width: min(100% - 60px, 1320px);
  max-width: 1320px;
}

.home-page .value-props-theme-container {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #ddd2c4;
  border-radius: 24px;
  background: #fffefc;
  box-shadow: 0 18px 42px rgba(39, 32, 25, .1);
}

.home-page .value-prop-theme-item {
  display: flex;
  min-height: 190px;
  gap: 18px;
  padding: 34px 30px;
  border: 0 !important;
  border-right: 1px solid #ddd2c4 !important;
  border-radius: 0;
  background: #fffefc;
}

.home-page .value-prop-theme-item:last-child {
  border-right: 0 !important;
}

.home-page .theme-icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  margin: 0;
  border-radius: 13px;
  background: #f2efea;
}

.home-page .theme-icon-box i {
  color: #36312c;
  font-size: 23px;
}

.home-page .theme-text-box {
  padding-top: 3px;
}

.home-page .theme-text-box h4 {
  margin: 0 0 8px;
  color: #211e1a;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
}

.home-page .theme-text-box p {
  color: #625a52;
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 992px) {
  .home-page .value-props-theme-section {
    margin-top: -70px;
    padding-bottom: 64px;
    background: linear-gradient(to bottom, transparent 0 70px, var(--ref-paper) 70px 100%);
  }

  .home-page .value-props-theme-section .container {
    width: min(100% - 28px, 1320px);
  }

  .home-page .value-props-theme-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 20px;
  }

  .home-page .value-prop-theme-item {
    min-height: 160px;
    padding: 26px 22px;
  }

  .home-page .value-prop-theme-item:nth-child(2) {
    border-right: 0 !important;
  }

  .home-page .value-prop-theme-item:nth-child(n+3) {
    border-top: 1px solid #ddd2c4 !important;
  }
}

@media (max-width: 576px) {
  .home-page .value-props-theme-section {
    margin-top: -34px;
    padding: 0 0 54px;
    background: linear-gradient(to bottom, transparent 0 34px, var(--ref-paper) 34px 100%);
  }

  .home-page .value-props-theme-container {
    grid-template-columns: 1fr;
    margin: 0;
    border-radius: 18px;
  }

  .home-page .value-prop-theme-item {
    min-height: 0;
    padding: 23px 20px;
    border-right: 0 !important;
    border-top: 1px solid #ddd2c4 !important;
  }

  .home-page .value-prop-theme-item:first-child {
    border-top: 0 !important;
  }
}

/* Larger hero composition positioned slightly higher. */
@media (min-width: 993px) {
  .home-page .hero-content {
    position: relative;
    top: -30px;
    max-width: 980px;
  }

  .home-page .hero-badge-theme {
    margin-bottom: 30px;
    font-size: 10px;
  }

  .home-page .hero-title-theme {
    max-width: 960px;
    margin-bottom: 30px;
    font-size: clamp(76px, 7.8vw, 112px);
    line-height: .86;
  }

  .home-page .hero-subtitle-theme {
    max-width: 640px;
    margin-bottom: 36px;
    font-size: 17px;
  }

  .home-page :is(.btn-theme-white, .hero-btn-group .btn-theme-outline) {
    min-height: 49px;
    padding: 13px 24px;
    font-size: 12px;
  }

  .home-page .hero-stats-theme .stat-box h3 {
    font-size: 40px;
  }

  .home-page .hero-stats-theme .stat-box p {
    font-size: 9px;
  }
}

/* Align the complete hero composition to the far left. */
@media (min-width: 993px) {
  .home-page .hero-section>.container {
    width: calc(100% - 64px);
    max-width: none;
    margin-left: 32px;
    margin-right: 32px;
  }
}

/* Reference-style desktop navigation spacing. */
@media (min-width: 1280px) {
  .home-page .main-header .nav-container {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 26px;
  }

  .home-page .main-header .nav-menu {
    justify-self: start;
    gap: 28px;
    margin-left: 18px;
  }

  .home-page .main-header .nav-link {
    padding: 15px 0;
    font-size: 14px !important;
    font-weight: 600;
  }

  .home-page .main-header .nav-link::after {
    bottom: 4px;
    height: 2px;
  }

  .home-page .main-header .nav-container>div:last-child {
    gap: 24px !important;
  }

  .home-page .main-header .header-phone {
    font-size: 14px !important;
  }

  .home-page .main-header .btn-theme-contact {
    min-height: 48px;
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* Compact and evenly aligned hero statistics. */
@media (min-width: 993px) {
  .home-page .hero-stats-theme {
    display: flex;
    align-items: stretch;
    width: max-content;
    gap: 0;
  }

  .home-page .hero-stats-theme .stat-box {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 20px;
  }

  .home-page .hero-stats-theme .stat-box:first-child {
    padding-left: 0;
  }

  .home-page .hero-stats-theme .stat-box:last-child {
    padding-right: 0;
  }
}

/* Left-aligned reference layout for Featured Listings. */
.home-page .featured-properties-section {
  padding: 104px 0 112px !important;
  background: #fbf8f2 !important;
}

.home-page .featured-properties-section>.container-luxe {
  width: min(100% - 64px, 1320px);
  max-width: 1320px;
}

.home-page .featured-properties-section>.container-luxe>div:first-child {
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  text-align: left;
}

.home-page .featured-properties-section .max-w-2xl {
  max-width: 760px;
  text-align: left;
}

.home-page .featured-properties-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #3c3935 !important;
  font-size: 11px !important;
}

.home-page .featured-properties-section .eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: #b8afa3;
}

.home-page .featured-properties-section h2 {
  max-width: 720px;
  margin: 0 !important;
  font-size: clamp(48px, 5vw, 68px) !important;
  line-height: .9 !important;
}

.home-page .featured-properties-section .max-w-2xl p {
  max-width: 760px;
  margin-top: 26px;
  color: #4f4942;
  font-size: 16px;
  line-height: 1.7;
}

.home-page .featured-properties-section>.container-luxe>div:first-child>.btn-theme-outline {
  min-height: 54px;
  padding: 14px 28px;
  border-color: #d4cbc0;
  background: #fffdf9;
  color: #211e1a;
  font-size: 12px;
  white-space: nowrap;
}

.home-page .featured-properties-section .properties-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: none;
  margin: 54px 0 0;
  gap: 28px;
}

.home-page .featured-properties-section .properties-grid>article>div:first-child {
  height: 340px;
}

.home-page .featured-properties-section .properties-grid>article>div:last-child {
  padding: 26px;
}

@media (max-width: 768px) {
  .home-page .featured-properties-section {
    padding: 76px 0 82px !important;
  }

  .home-page .featured-properties-section>.container-luxe {
    width: min(100% - 28px, 1320px);
  }

  .home-page .featured-properties-section>.container-luxe>div:first-child {
    align-items: flex-start;
    gap: 26px;
  }

  .home-page .featured-properties-section h2 {
    font-size: 42px !important;
  }

  .home-page .featured-properties-section .max-w-2xl p {
    margin-top: 20px;
    font-size: 14px;
  }

  .home-page .featured-properties-section .properties-grid {
    grid-template-columns: 1fr !important;
    margin-top: 38px;
    gap: 20px;
  }

  .home-page .featured-properties-section .properties-grid>article>div:first-child {
    height: 250px;
  }
}

/* Readable aligned text inside featured property cards. */
.home-page .featured-properties-section .properties-grid>article>div:last-child {
  display: flex;
  flex-direction: column;
  min-height: 265px;
  padding: 28px 28px 24px;
}

.home-page .featured-properties-section .properties-grid>article>div:last-child>.text-xs {
  margin: 0;
  color: #8b6c37;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.4;
}

.home-page .featured-properties-section .properties-grid>article h3 {
  margin: 11px 0 0;
  font-size: 25px !important;
  line-height: 1.12;
}

.home-page .featured-properties-section .properties-grid>article h3 a {
  color: #211e1a;
  font-size: inherit !important;
  line-height: inherit;
}

.home-page .featured-properties-section .properties-grid>article h3+p {
  margin: 13px 0 0;
  color: #665f57;
  font-size: 13px !important;
  line-height: 1.55;
}

.home-page .featured-properties-section .properties-grid>article .mt-5 {
  margin-top: 24px;
  padding-top: 18px;
  color: #514b44;
  font-size: 12px !important;
  line-height: 1.55;
}

.home-page .featured-properties-section .properties-grid>article .mt-5>span {
  font-size: 12px !important;
}

.home-page .featured-properties-section .properties-grid>article .mt-6 {
  margin-top: auto;
  padding-top: 24px;
}

.home-page .featured-properties-section .properties-grid>article .mt-6>a {
  color: #211e1a;
  font-size: 12px !important;
  font-weight: 700;
}

.home-page .featured-properties-section .property-display-price {
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 768px) {
  .home-page .featured-properties-section .properties-grid>article>div:last-child {
    min-height: 245px;
    padding: 24px 21px 22px;
  }

  .home-page .featured-properties-section .properties-grid>article h3 {
    font-size: 23px !important;
  }
}

/* Reference treatment shared by both featured property cards. */
.home-page .featured-properties-section .properties-grid>article {
  border: 1px solid #ded6cb;
  border-radius: 22px;
  background: #fffefb;
  box-shadow: 0 7px 20px rgba(48, 40, 31, .06);
}

.home-page .featured-properties-section .properties-grid>article>div:first-child {
  border-bottom: 1px solid #ded6cb;
}

.home-page .featured-properties-section .properties-grid>article>div:last-child {
  min-height: 275px;
  padding: 29px 28px 22px;
  background: #fffefb;
}

.home-page .featured-properties-section .properties-grid>article>div:last-child>.text-xs {
  color: #50483f;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: .24em;
}

.home-page .featured-properties-section .properties-grid>article h3 {
  margin-top: 12px;
  color: #3d3731;
  font-size: 26px !important;
  font-weight: 600;
  line-height: 1.1;
}

.home-page .featured-properties-section .properties-grid>article h3 a {
  color: #3d3731;
}

.home-page .featured-properties-section .properties-grid>article h3+p {
  margin-top: 13px;
  color: #625b54;
  font-size: 14px !important;
}

.home-page .featured-properties-section .properties-grid>article h3+p i {
  color: #8b7f70;
  font-size: 17px;
}

.home-page .featured-properties-section .properties-grid>article .mt-5 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 23px;
  padding: 20px 0 0;
  border-top: 1px solid #ded6cb;
  color: #504a43;
}

.home-page .featured-properties-section .properties-grid>article .mt-5>span {
  color: #504a43;
  font-size: 13px !important;
}

.home-page .featured-properties-section .properties-grid>article .mt-5 i {
  color: #8b7f70;
  font-size: 17px;
}

.home-page .featured-properties-section .properties-grid>article .mt-6 {
  min-height: 52px;
  margin-top: auto;
  padding-top: 24px;
}

.home-page .featured-properties-section .properties-grid>article .mt-6>a {
  color: #211e1a;
  font-size: 13px !important;
  font-weight: 700;
}

.home-page .featured-properties-section .properties-grid>article .circle-icon,
.home-page .featured-properties-section .properties-grid>article:nth-child(2) .circle-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background: #302b25;
  color: #ffffff;
  font-size: 18px;
}

.home-page .featured-properties-section .properties-grid>article .circle-icon i,
.home-page .featured-properties-section .properties-grid>article:hover .circle-icon i {
  transform: none;
}

.home-page .featured-properties-section .properties-grid>article:hover .circle-icon {
  background: #4b433b;
  color: #ffffff;
}

@media (max-width: 768px) {
  .home-page .featured-properties-section .properties-grid>article>div:last-child {
    min-height: 265px;
    padding: 25px 21px 20px;
  }

  .home-page .featured-properties-section .properties-grid>article h3 {
    font-size: 23px !important;
  }
}

/* Show complete featured property images without cropping. */
.home-page .featured-properties-section .properties-grid>article>div:first-child {
  background: #eee9e1;
}

.home-page .featured-properties-section .properties-grid>article>div:first-child img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.home-page .featured-properties-section .properties-grid>article:hover>div:first-child img {
  transform: none;
}

/* Match featured card frames to the source image ratio (4:3). */
.home-page .featured-properties-section .properties-grid {
  align-items: stretch;
}

.home-page .featured-properties-section .properties-grid>article {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.home-page .featured-properties-section .properties-grid>article>div:first-child {
  width: 100%;
  height: auto !important;
  aspect-ratio: 4 / 3 !important;
  flex: 0 0 auto;
}

.home-page .featured-properties-section .properties-grid>article>div:last-child {
  flex: 1 1 auto;
}

/* Clean featured images without badges or overlay prices. */
.home-page .featured-properties-section .properties-grid>article>div:first-child>.left-4.top-4,
.home-page .featured-properties-section .properties-grid>article .property-display-price {
  display: none !important;
}

/* Reduced desktop size for both featured cards. */
@media (min-width: 901px) {
  .home-page .featured-properties-section .properties-grid {
    width: 100%;
    max-width: 960px;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 26px;
    margin-left: 0;
    margin-right: 0;
  }

  .home-page .featured-properties-section .properties-grid>article>div:last-child {
    min-height: 250px;
    padding: 25px 24px 20px;
  }

  .home-page .featured-properties-section .properties-grid>article h3 {
    font-size: 23px !important;
  }

  .home-page .featured-properties-section .properties-grid>article h3+p {
    font-size: 13px !important;
  }

  .home-page .featured-properties-section .properties-grid>article .mt-5 {
    margin-top: 20px;
    padding-top: 17px;
  }

  .home-page .featured-properties-section .properties-grid>article .mt-6 {
    padding-top: 20px;
  }

  .home-page .featured-properties-section .properties-grid>article .circle-icon,
  .home-page .featured-properties-section .properties-grid>article:nth-child(2) .circle-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}

/* Clickable property arrows pinned to the card footer right edge. */
.home-page .featured-properties-section .properties-grid>article .mt-6 {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.home-page .featured-properties-section .properties-grid>article .mt-6 .circle-icon {
  position: relative;
  z-index: 4;
  margin-left: auto;
  text-decoration: none;
}

.home-page .featured-properties-section .properties-grid>article .mt-6 .circle-icon:focus-visible {
  outline: 3px solid rgba(139, 108, 55, .35);
  outline-offset: 3px;
}

/* Keep Featured Listings directly beneath the advantage panel. */
.home-page .value-props-theme-section {
  padding-bottom: 0 !important;
}

.home-page .featured-properties-section {
  padding-top: 32px !important;
}

@media (max-width: 768px) {
  .home-page .featured-properties-section {
    padding-top: 28px !important;
  }
}

/* Large editorial About section matching the supplied reference. */
.home-page #about {
  padding: 112px 0 !important;
  background: #fffefb !important;
}

.home-page #about>.container-luxe {
  width: min(100% - 56px, 1420px);
  max-width: 1420px;
}

.home-page #about .about-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(54px, 6vw, 92px);
  align-items: center;
}

.home-page #about .about-grid>.relative {
  min-height: 650px;
  align-self: stretch;
}

.home-page #about .about-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 650px;
  aspect-ratio: auto;
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(43, 35, 27, .13);
}

.home-page #about .about-image-wrap img {
  object-fit: cover;
  object-position: center;
}

.home-page #about .years-badge {
  top: 20px;
  bottom: auto;
  left: -36px;
  min-width: 198px;
  padding: 24px 26px 21px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 18px;
  background: rgba(250, 250, 248, .88);
  box-shadow: 0 15px 34px rgba(42, 35, 28, .19);
  backdrop-filter: blur(12px);
}

.home-page #about .years-badge .font-display {
  color: #27221d;
  font-size: 38px;
  font-style: italic;
  line-height: 1;
}

.home-page #about .years-text {
  margin-top: 10px;
  color: #4e4841;
  font-size: 11px;
  letter-spacing: .24em;
}

.home-page #about .about-content .eyebrow {
  color: #745f44;
  font-size: 11px;
  letter-spacing: .27em;
}

.home-page #about .about-content h2 {
  max-width: 720px;
  margin-top: 20px;
  color: #171411;
  font-size: clamp(48px, 4.5vw, 66px) !important;
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.045em;
}

.home-page #about .about-content h2 .about-trusted-word {
  color: inherit;
  background: none;
  font-style: italic;
  -webkit-text-fill-color: currentColor;
}

.home-page #about .about-desc {
  max-width: 760px;
  margin-top: 30px;
  gap: 22px;
  color: #39342e;
  font-size: 17px;
  line-height: 1.72;
}

.home-page #about .about-features-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
  margin-top: 34px;
}

.home-page #about .about-features-list li {
  color: #25211d;
  font-size: 15px;
  font-weight: 600;
}

.home-page #about .about-features-list .icon-wrap {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  background: #f0ede7;
  color: #3f3932;
  font-size: 16px;
}

.home-page #about .about-actions {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

@media (max-width: 992px) {
  .home-page #about .about-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .home-page #about .about-grid>.relative,
  .home-page #about .about-image-wrap {
    min-height: 540px;
  }

  .home-page #about .years-badge {
    left: 18px;
  }
}

@media (max-width: 576px) {
  .home-page #about {
    padding: 72px 0 !important;
  }

  .home-page #about>.container-luxe {
    width: min(100% - 28px, 1420px);
  }

  .home-page #about .about-grid {
    gap: 44px;
  }

  .home-page #about .about-grid>.relative,
  .home-page #about .about-image-wrap {
    min-height: 430px;
  }

  .home-page #about .about-image-wrap {
    border-radius: 21px;
  }

  .home-page #about .years-badge {
    top: 14px;
    left: 14px;
    min-width: 160px;
    padding: 18px 20px;
  }

  .home-page #about .years-badge .font-display {
    font-size: 31px;
  }

  .home-page #about .about-content h2 {
    font-size: 42px !important;
    line-height: .98;
  }

  .home-page #about .about-desc {
    font-size: 16px;
    line-height: 1.68;
  }

  .home-page #about .about-features-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Keep the About years badge visible and gently moving. */
@keyframes aboutYearsBadgeFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -11px, 0);
  }
}

.home-page #about .years-badge {
  left: -18px;
  animation: aboutYearsBadgeFloat 3.8s ease-in-out infinite;
  will-change: transform;
}

@media (max-width: 992px) {
  .home-page #about .years-badge {
    left: 18px;
  }
}

@media (max-width: 576px) {
  .home-page #about .years-badge {
    left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page #about .years-badge {
    animation: none;
  }
}

/* Larger, higher-contrast About action buttons. */
.home-page #about .about-actions a {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 16px 30px !important;
  border-radius: 999px;
  font-size: 13px !important;
  font-weight: 700;
  line-height: 1;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
}

.home-page #about .about-actions a:first-child {
  border: 1px solid #bda57d !important;
  background: #f7f0e5 !important;
  color: #3c3124 !important;
  box-shadow: 0 8px 20px rgba(111, 86, 49, .12);
}

.home-page #about .about-actions a:first-child:hover {
  border-color: #8c7048 !important;
  background: #eadcc6 !important;
  color: #211a13 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(111, 86, 49, .18);
}

.home-page #about .about-actions a:last-child {
  border: 1px solid #117d45 !important;
  background: #13894c !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(19, 137, 76, .24);
}

.home-page #about .about-actions a:last-child:hover {
  border-color: #0c6537 !important;
  background: #0e713e !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(14, 113, 62, .3);
}

.home-page #about .about-actions a:focus-visible {
  outline: 3px solid rgba(139, 108, 55, .32);
  outline-offset: 3px;
}

@media (max-width: 576px) {
  .home-page #about .about-actions {
    width: 100%;
  }

  .home-page #about .about-actions a {
    min-height: 54px;
    padding: 15px 24px !important;
  }
}

/* Enlarged Construction Highlights section only. */
.home-page .featured-extras-section {
  padding: 1px 0 112px;
  background: #fbf8f2;
}

.home-page .featured-extras-section>.container-luxe {
  width: min(100% - 56px, 1420px);
  max-width: 1420px;
}

.home-page .featured-extras-section .homepage-property-showcase:first-child {
  margin-top: 96px;
  padding-top: 0;
  border-top: 0;
}

.home-page .featured-extras-section .homepage-property-showcase:first-child .homepage-showcase-heading {
  max-width: 840px;
  margin-bottom: 42px;
}

.home-page .featured-extras-section .homepage-property-showcase:first-child .eyebrow {
  font-size: 12px;
  letter-spacing: .26em;
}

.home-page .featured-extras-section .homepage-property-showcase:first-child .homepage-showcase-heading h3 {
  margin: 14px 0 16px;
  color: #1d1915;
  font-size: clamp(48px, 4.5vw, 66px) !important;
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.04em;
}

.home-page .featured-extras-section .homepage-property-showcase:first-child .homepage-showcase-heading p {
  max-width: 760px;
  color: #5a5148;
  font-size: 18px;
  line-height: 1.7;
}

.home-page .featured-extras-section .homepage-property-showcase:first-child .homepage-showcase-grid {
  gap: 28px;
}

.home-page .featured-extras-section .homepage-property-showcase:first-child .homepage-showcase-card {
  border-radius: 25px;
  box-shadow: 0 15px 34px rgba(47, 39, 26, .1);
}

.home-page .featured-extras-section .homepage-property-showcase:first-child .homepage-showcase-card img {
  height: 310px;
}

.home-page .featured-extras-section .homepage-property-showcase:first-child .homepage-showcase-card>div {
  min-height: 225px;
  padding: 30px 29px 32px;
}

.home-page .featured-extras-section .homepage-property-showcase:first-child .homepage-showcase-card span {
  font-size: 11px;
  letter-spacing: .22em;
}

.home-page .featured-extras-section .homepage-property-showcase:first-child .homepage-showcase-card h4 {
  margin: 13px 0 12px;
  font-size: 26px;
  line-height: 1.12;
}

.home-page .featured-extras-section .homepage-property-showcase:first-child .homepage-showcase-card p {
  color: #62594f;
  font-size: 15px;
  line-height: 1.68;
}

@media (max-width: 992px) {
  .home-page .featured-extras-section .homepage-property-showcase:first-child {
    margin-top: 78px;
  }

  .home-page .featured-extras-section .homepage-property-showcase:first-child .homepage-showcase-card img {
    height: 270px;
  }
}

@media (max-width: 576px) {
  .home-page .featured-extras-section {
    padding-bottom: 76px;
  }

  .home-page .featured-extras-section>.container-luxe {
    width: min(100% - 28px, 1420px);
  }

  .home-page .featured-extras-section .homepage-property-showcase:first-child {
    margin-top: 64px;
  }

  .home-page .featured-extras-section .homepage-property-showcase:first-child .homepage-showcase-heading {
    margin-bottom: 30px;
  }

  .home-page .featured-extras-section .homepage-property-showcase:first-child .homepage-showcase-heading h3 {
    font-size: 42px !important;
  }

  .home-page .featured-extras-section .homepage-property-showcase:first-child .homepage-showcase-heading p {
    font-size: 16px;
  }

  .home-page .featured-extras-section .homepage-property-showcase:first-child .homepage-showcase-card img {
    height: 245px;
  }

  .home-page .featured-extras-section .homepage-property-showcase:first-child .homepage-showcase-card>div {
    min-height: 0;
    padding: 25px 23px 27px;
  }

  .home-page .featured-extras-section .homepage-property-showcase:first-child .homepage-showcase-card h4 {
    font-size: 23px;
  }
}

/* Larger scale for all homepage sections following Construction Highlights. */
.home-page :is(#services, .areas-we-serve-section, .buyers-guide-section, .discover-help-section, .why-mysore-section, .services-section, .testimonials-section, .homepage-contact-section) {
  padding: 124px 0 !important;
}

.home-page :is(#services, .areas-we-serve-section, .buyers-guide-section, .discover-help-section, .why-mysore-section, .services-section, .testimonials-section, .homepage-contact-section)> :is(.container, .container-luxe) {
  width: min(100% - 56px, 1420px);
  max-width: 1420px;
}

.home-page :is(.areas-we-serve-section, .buyers-guide-section, .discover-help-section, .why-mysore-section, .services-section, .testimonials-section) .section-title,
.home-page #services>.container-luxe h2 {
  font-size: clamp(48px, 4.6vw, 66px) !important;
  line-height: .98;
  letter-spacing: -.04em;
}

.home-page :is(.section-tag, .eyebrow) {
  font-size: 11px;
  letter-spacing: .23em;
}

/* Larger More Properties showcase. */
.home-page .featured-extras-section .homepage-property-showcase--properties {
  margin-top: 118px;
  padding-top: 82px;
  border-top: 1px solid #ddd4c8;
}

.home-page .featured-extras-section .homepage-property-showcase--properties .homepage-showcase-heading {
  max-width: 820px;
  margin-bottom: 40px;
}

.home-page .featured-extras-section .homepage-property-showcase--properties .homepage-showcase-heading h3 {
  margin: 14px 0 15px;
  font-size: clamp(46px, 4.2vw, 62px) !important;
  line-height: 1;
}

.home-page .featured-extras-section .homepage-property-showcase--properties .homepage-showcase-heading p {
  font-size: 17px;
  line-height: 1.7;
}

.home-page .featured-extras-section .homepage-property-showcase--properties .homepage-showcase-grid {
  gap: 26px;
}

.home-page .featured-extras-section .homepage-property-showcase--properties .homepage-showcase-card {
  border-radius: 23px;
}

.home-page .featured-extras-section .homepage-property-showcase--properties .homepage-showcase-card img {
  height: 280px;
}

.home-page .featured-extras-section .homepage-property-showcase--properties .homepage-showcase-card>div {
  min-height: 205px;
  padding: 28px 27px 30px;
}

.home-page .featured-extras-section .homepage-property-showcase--properties .homepage-showcase-card h4 {
  font-size: 24px;
}

.home-page .featured-extras-section .homepage-property-showcase--properties .homepage-showcase-card p {
  font-size: 14px;
  line-height: 1.65;
}

/* Large overview service cards. */
.home-page #services .max-w-2xl {
  max-width: 820px;
}

.home-page #services .max-w-2xl>p {
  font-size: 17px !important;
  line-height: 1.72;
}

.home-page #services .services-luxe-grid {
  gap: 26px;
  margin-top: 64px;
}

.home-page #services .service-card-luxe {
  min-height: 320px;
  padding: 34px;
  border-radius: 21px;
}

.home-page #services .service-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  font-size: 23px;
}

.home-page #services .service-card-luxe h3 {
  margin-top: 54px;
  font-size: 26px;
}

.home-page #services .service-card-luxe p {
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.7;
}

/* Consultation and statistics. */
.home-page .home-consultation-cta {
  width: min(100% - 56px, 1320px);
  margin: 72px auto;
  padding: 68px 0;
  border-radius: 26px;
}

.home-page .home-consultation-inner {
  gap: 32px;
}

.home-page .home-consultation-inner h2 {
  max-width: 940px;
  font-size: clamp(44px, 4.2vw, 60px) !important;
}

.home-page .home-consultation-inner p {
  max-width: 820px;
  font-size: 15px;
  line-height: 1.75;
}

.home-page .home-consultation-actions {
  gap: 12px;
}

.home-page :is(.home-consultation-primary, .home-consultation-phone) {
  min-height: 54px;
  padding: 14px 24px;
  font-size: 13px;
}

.home-page .home-consultation-phone small {
  font-size: 9px;
}

.home-page .stats-banner {
  padding: 58px 0;
}

.home-page .stat-item {
  min-height: 92px;
  gap: 17px;
}

.home-page .stat-icon {
  font-size: 34px;
}

.home-page .stat-number {
  font-size: 43px;
}

.home-page .stat-label {
  font-size: 12px;
}

/* Locations. */
.home-page :is(.areas-we-serve-section, .buyers-guide-section)>.container>div:first-child {
  max-width: 850px;
  margin-bottom: 58px !important;
}

.home-page .areas-we-serve-section>.container>div:first-child p {
  font-size: 17px !important;
  line-height: 1.72 !important;
}

.home-page .areas-grid {
  gap: 22px !important;
}

.home-page .area-card {
  min-height: 205px;
  padding: 29px !important;
  border-radius: 18px !important;
}

.home-page .area-card>div>div {
  width: 46px !important;
  height: 46px !important;
  font-size: 21px !important;
}

.home-page .area-card h3 {
  margin-top: 24px !important;
  font-size: 23px !important;
}

.home-page .area-card p {
  margin-top: 10px !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
}

.home-page .areas-we-serve-section>.container>div:last-child p {
  font-size: 16px !important;
  line-height: 1.75 !important;
}

/* Buyer's guide. */
.home-page .buyers-guide-section>.container>div:first-child p {
  max-width: 850px !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
}

.home-page .buyers-guide-section .btn-hero-primary {
  min-height: 54px;
  padding: 14px 26px;
  font-size: 13px !important;
}

.home-page .guide-grid {
  gap: 22px;
}

.home-page .guide-card {
  min-height: 350px;
  padding: 32px 28px;
  border-radius: 19px;
}

.home-page .guide-step-num {
  font-size: 39px;
}

.home-page .guide-icon {
  width: 50px;
  height: 50px;
  font-size: 22px;
}

.home-page .guide-title {
  margin-top: 26px;
  font-size: 23px;
}

.home-page .guide-desc {
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.7;
}

/* Discover and FAQ. */
.home-page .discover-help-grid {
  gap: 88px;
}

.home-page .discover-help-section .section-title {
  font-size: clamp(48px, 4.6vw, 64px) !important;
  line-height: 1 !important;
}

.home-page .discover-help-grid>div:first-child>div:first-child>p {
  font-size: 17px !important;
  line-height: 1.75 !important;
}

.home-page .discover-help-section .btn-hero-primary {
  min-height: 54px;
  padding: 14px 27px !important;
  font-size: 13px !important;
}

.home-page .discover-visual-card {
  min-height: 480px;
  border-radius: 24px;
}

.home-page .discover-card-img {
  min-height: 480px;
  object-fit: cover;
}

.home-page .discover-badge-item {
  padding: 18px;
}

.home-page .discover-badge-item h5 {
  font-size: 16px;
}

.home-page .discover-badge-item p {
  font-size: 12px;
}

.home-page .faq-accordion {
  gap: 13px;
}

.home-page .faq-item {
  border-radius: 15px;
}

.home-page .faq-question {
  min-height: 70px;
  padding: 21px 23px;
  font-size: 15px;
}

.home-page .faq-icon {
  width: 31px;
  height: 31px;
}

.home-page .faq-answer {
  font-size: 13px;
  line-height: 1.75;
}

.home-page .faq-item.active .faq-answer {
  padding: 0 23px 23px;
}

/* Why Mysuru. */
.home-page .why-mysore-grid {
  gap: 88px;
}

.home-page .why-image-wrapper {
  min-height: 680px;
  border-radius: 25px;
}

.home-page .why-image-wrapper img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.home-page .why-content .section-subtitle {
  font-size: 17px;
  line-height: 1.75;
}

.home-page .why-features-grid {
  gap: 17px;
  margin-top: 36px;
}

.home-page .feature-box {
  min-height: 135px;
  padding: 24px;
  border-radius: 17px;
}

.home-page .feature-icon {
  width: 43px;
  height: 43px;
  font-size: 19px;
}

.home-page .feature-box h4 {
  margin-top: 17px;
  font-size: 20px;
}

.home-page .feature-box p {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.55;
}

/* Dark services. */
.home-page .services-section .section-title {
  max-width: 900px;
  margin-inline: auto;
}

.home-page .services-grid {
  gap: 22px;
  margin-top: 62px;
}

.home-page .service-card {
  min-height: 250px;
  padding: 34px;
  border-radius: 20px;
}

.home-page .service-icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 36px;
  border-radius: 12px;
  font-size: 21px;
}

.home-page .service-title {
  font-size: 24px;
}

.home-page .service-desc {
  margin-top: 11px;
  font-size: 14px;
  line-height: 1.65;
}

/* Testimonials. */
.home-page .testimonials-section .section-header-flex {
  max-width: 900px;
  margin-bottom: 62px;
}

.home-page .testimonials-grid {
  gap: 26px;
}

.home-page .testimonial-card {
  min-height: 355px;
  padding: 38px;
  border-radius: 21px;
}

.home-page .quote-icon {
  font-size: 38px;
}

.home-page .testimonial-text {
  margin-top: 30px;
  font-size: 22px;
  line-height: 1.48;
}

.home-page .client-info {
  margin-top: 36px;
}

.home-page .client-avatar {
  width: 48px;
  height: 48px;
}

.home-page .client-name {
  font-size: 16px;
}

.home-page .client-loc {
  font-size: 11px;
}

.home-page .star-rating {
  font-size: 13px;
}

/* Final CTA and contact. */
.home-page .cta-banner {
  width: min(100% - 56px, 1320px);
  margin: 0 auto 96px;
  padding: 64px 0;
  border-radius: 25px;
}

.home-page .cta-container {
  gap: 30px;
}

.home-page .cta-text h2 {
  font-size: clamp(43px, 4vw, 58px) !important;
}

.home-page .cta-text p {
  margin-top: 13px;
  font-size: 15px;
}

.home-page .btn-cta-navy {
  min-height: 54px;
  padding: 14px 26px;
  font-size: 13px;
}

.home-page .homepage-contact-grid {
  gap: 96px;
}

.home-page .homepage-contact-copy h2 {
  font-size: clamp(54px, 5.4vw, 76px);
  line-height: .93;
}

.home-page .homepage-contact-copy>p {
  max-width: 700px;
  font-size: 17px;
  line-height: 1.75;
}

.home-page .homepage-contact-list {
  gap: 17px;
  margin-top: 34px;
}

.home-page .homepage-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  font-size: 20px;
}

.home-page .homepage-contact-item small {
  font-size: 10px;
}

.home-page .homepage-contact-item strong {
  font-size: 14px;
}

.home-page .homepage-contact-form-wrap {
  padding: 40px;
  border-radius: 21px;
}

.home-page .homepage-contact-form-wrap h3 {
  font-size: 32px;
  line-height: 1.2;
}

.home-page .homepage-contact-form {
  gap: 18px;
  margin-top: 28px;
}

.home-page .homepage-contact-form label {
  font-size: 12px;
}

.home-page .homepage-contact-form :is(input, select, textarea) {
  min-height: 52px;
  padding: 14px 15px;
  border-radius: 11px;
  font-size: 13px;
}

.home-page .homepage-contact-form textarea {
  min-height: 130px;
}

.home-page .homepage-contact-submit {
  min-height: 56px;
  font-size: 13px;
}

.home-page .homepage-contact-note {
  font-size: 10px;
}

/* Larger footer typography. */
.home-page .site-footer {
  padding-top: 74px;
}

.home-page .footer-col-title {
  font-size: 13px;
}

.home-page :is(.footer-brand p, .footer-links a, .contact-item) {
  font-size: 12px;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .home-page :is(#services, .areas-we-serve-section, .buyers-guide-section, .discover-help-section, .why-mysore-section, .services-section, .testimonials-section, .homepage-contact-section) {
    padding: 94px 0 !important;
  }

  .home-page .guide-card {
    min-height: 310px;
  }

  .home-page .why-image-wrapper,
  .home-page .why-image-wrapper img {
    min-height: 540px;
  }

  .home-page .testimonial-card {
    min-height: 320px;
  }
}

@media (max-width: 576px) {
  .home-page :is(#services, .areas-we-serve-section, .buyers-guide-section, .discover-help-section, .why-mysore-section, .services-section, .testimonials-section, .homepage-contact-section) {
    padding: 76px 0 !important;
  }

  .home-page :is(#services, .areas-we-serve-section, .buyers-guide-section, .discover-help-section, .why-mysore-section, .services-section, .testimonials-section, .homepage-contact-section)> :is(.container, .container-luxe) {
    width: min(100% - 28px, 1420px);
  }

  .home-page .featured-extras-section .homepage-property-showcase--properties {
    margin-top: 78px;
    padding-top: 58px;
  }

  .home-page .featured-extras-section .homepage-property-showcase--properties .homepage-showcase-heading h3,
  .home-page :is(.areas-we-serve-section, .buyers-guide-section, .discover-help-section, .why-mysore-section, .services-section, .testimonials-section) .section-title,
  .home-page #services>.container-luxe h2 {
    font-size: 42px !important;
  }

  .home-page .featured-extras-section .homepage-property-showcase--properties .homepage-showcase-card img {
    height: 245px;
  }

  .home-page #services .service-card-luxe,
  .home-page .guide-card,
  .home-page .service-card,
  .home-page .testimonial-card {
    min-height: 0;
  }

  .home-page .home-consultation-cta,
  .home-page .cta-banner {
    width: calc(100% - 28px);
    padding: 52px 18px;
  }

  .home-page .home-consultation-inner h2,
  .home-page .cta-text h2 {
    font-size: 40px !important;
  }

  .home-page .home-consultation-actions {
    flex-direction: column;
    width: min(100%, 330px);
  }

  .home-page :is(.home-consultation-primary, .home-consultation-phone) {
    width: 100%;
  }

  .home-page .stats-banner {
    padding: 48px 0;
  }

  .home-page .stat-number {
    font-size: 36px;
  }

  .home-page .area-card {
    min-height: 0;
  }

  .home-page .discover-visual-card,
  .home-page .discover-card-img {
    min-height: 380px;
  }

  .home-page .why-image-wrapper,
  .home-page .why-image-wrapper img {
    min-height: 430px;
  }

  .home-page .homepage-contact-copy h2 {
    font-size: 48px;
  }

  .home-page .homepage-contact-form-wrap {
    padding: 28px 22px;
  }
}

/* Compact spacing between homepage sections without reducing content size. */
.home-page .value-props-theme-section {
  padding-bottom: 0 !important;
}

.home-page .featured-properties-section {
  padding: 32px 0 64px !important;
}

.home-page #about {
  padding: 64px 0 !important;
}

.home-page .featured-extras-section {
  padding-bottom: 64px !important;
}

.home-page .featured-extras-section .homepage-property-showcase:first-child {
  margin-top: 64px;
}

.home-page .featured-extras-section .homepage-property-showcase--properties {
  margin-top: 72px;
  padding-top: 52px;
}

.home-page :is(#services, .areas-we-serve-section, .buyers-guide-section, .discover-help-section, .why-mysore-section, .services-section, .testimonials-section, .homepage-contact-section) {
  margin: 0 !important;
  padding: 64px 0 !important;
}

.home-page .home-consultation-cta {
  margin: 32px auto !important;
}

.home-page .stats-banner {
  margin: 0 !important;
}

.home-page .cta-banner {
  margin: 32px auto !important;
}

.home-page .site-footer {
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  .home-page .featured-properties-section {
    padding: 28px 0 48px !important;
  }

  .home-page #about,
  .home-page .featured-extras-section,
  .home-page :is(#services, .areas-we-serve-section, .buyers-guide-section, .discover-help-section, .why-mysore-section, .services-section, .testimonials-section, .homepage-contact-section) {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .home-page .featured-extras-section .homepage-property-showcase:first-child {
    margin-top: 0;
  }

  .home-page .featured-extras-section .homepage-property-showcase--properties {
    margin-top: 54px;
    padding-top: 42px;
  }

  .home-page .home-consultation-cta,
  .home-page .cta-banner {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
}

/* Larger solid-black homepage contact typography. */
.home-page .homepage-contact-copy h2 {
  max-width: 820px;
  margin: 16px 0 28px;
  color: #000000 !important;
  font-size: clamp(66px, 6.4vw, 92px) !important;
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.05em;
}

.home-page .homepage-contact-copy h2 em {
  color: #000000 !important;
  background: none !important;
  font-weight: 600;
  -webkit-text-fill-color: #000000 !important;
}

.home-page .homepage-contact-copy>p {
  max-width: 760px;
  color: #514b45;
  font-size: 20px;
  line-height: 1.72;
}

.home-page .homepage-contact-list {
  gap: 20px;
  margin-top: 40px;
}

.home-page .homepage-contact-item {
  gap: 20px;
}

.home-page .homepage-contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  background: #292622;
  font-size: 24px;
}

.home-page .homepage-contact-item small {
  margin-bottom: 6px;
  color: #625b54;
  font-size: 13px;
}

.home-page .homepage-contact-item strong {
  color: #211e1a;
  font-size: 17px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .home-page .homepage-contact-copy h2 {
    font-size: clamp(52px, 12vw, 68px) !important;
    line-height: .94;
  }

  .home-page .homepage-contact-copy>p {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .home-page .homepage-contact-copy h2 {
    font-size: 48px !important;
  }

  .home-page .homepage-contact-copy>p {
    font-size: 17px;
  }
}

/* Visible solid-black title for the six-card services section. */
.home-page .services-section .section-title {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

.home-page .services-section .section-title em {
  color: #000000 !important;
  font-style: italic;
  -webkit-text-fill-color: #000000 !important;
}

/* Remove the thin divider beneath the site header. */
.main-header,
.home-page .main-header,
.subpage .main-header,
.property-detail-page .main-header {
  border-bottom: 0 !important;
}

/* Larger homepage header contents without increasing header height. */
@media (min-width: 1280px) {

  .home-page .main-header,
  .home-page .main-header .nav-container,
  .home-page .main-header .logo-brand {
    height: 86px;
  }

  .home-page .main-header .brand-logo-img {
    width: 94px;
    height: 94px;
    max-height: 94px;
    flex-basis: 94px;
    transform: scale(1.16);
    transform-origin: center;
  }

  .home-page .main-header .logo-brand:hover .brand-logo-img {
    transform: scale(1.2);
  }

  .home-page .main-header .brand-name {
    font-size: 32px !important;
    line-height: .95;
  }

  .home-page .main-header .brand-tagline {
    margin-top: 7px;
    font-size: 12px !important;
  }

  .home-page .main-header .nav-menu {
    gap: 30px;
  }

  .home-page .main-header .nav-link {
    font-size: 15px !important;
  }

  .home-page .main-header .header-phone {
    font-size: 15px !important;
  }

  .home-page .main-header .btn-theme-contact {
    min-height: 50px;
    padding: 13px 30px;
    font-size: 15px;
  }
}

@media (min-width: 993px) and (max-width: 1279px) {
  .home-page .main-header .brand-logo-img {
    width: 70px;
    height: 70px;
    max-height: 70px;
    flex-basis: 70px;
  }

  .home-page .main-header .brand-name {
    font-size: 26px !important;
  }

  .home-page .main-header .nav-link {
    font-size: 12px !important;
  }
}

/* Sharp high-resolution header logo without transform upscaling. */
.home-page .main-header .brand-logo-img {
  image-rendering: auto;
  filter: none;
  backface-visibility: visible;
}

@media (min-width: 1280px) {
  .home-page .main-header .brand-logo-img {
    width: 110px;
    height: 110px;
    max-height: 110px;
    flex-basis: 110px;
    transform: none;
  }

  .home-page .main-header .logo-brand:hover .brand-logo-img {
    transform: none;
  }
}

/* Center the complete statistics panel and its four columns. */
.home-page .stats-banner {
  margin-left: auto !important;
  margin-right: auto !important;
}

.home-page .stats-banner>.container,
.home-page .stats-banner .stats-grid {
  margin-left: auto;
  margin-right: auto;
}

.home-page .stats-banner .stats-grid {
  width: 100%;
  align-items: center;
  justify-items: stretch;
}

.home-page .stats-banner .stat-item {
  align-self: center;
  justify-content: center;
}

/* Investment opportunities section. */
.investment-opportunities-section {
  padding: 100px 0;
  background: #faf8f3;
}

.investment-opportunities-heading {
  max-width: 810px;
  margin: 0 auto 46px;
  text-align: center;
}

.investment-opportunities-heading .section-tag {
  margin-bottom: 18px;
}

.investment-opportunities-heading .section-title {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.03;
}

.investment-opportunities-heading .section-title em {
  font-style: italic;
}

.investment-opportunities-heading p {
  max-width: 760px;
  margin: 22px auto 0;
  color: #5f564a;
  font-size: 17px;
  line-height: 1.7;
}

.investment-opportunities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.investment-opportunity-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  border: 1px solid #e5dccd;
  border-radius: 26px;
  background: #fffefa;
  box-shadow: 0 12px 28px rgba(47, 39, 26, .08);
}

.investment-image-wrap {
  position: relative;
  height: 228px;
  overflow: hidden;
  background: #302b25;
}

.investment-image-wrap::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(0deg, rgba(20, 17, 13, .45), transparent 58%);
  pointer-events: none;
}

.investment-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.investment-opportunity-card:hover .investment-image-wrap img {
  transform: scale(1.06);
}

.investment-image-tag,
.investment-return-tag {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  font-weight: 800;
}

.investment-image-tag {
  top: 18px;
  left: 18px;
  padding: 8px 14px;
  background: #302b25;
  color: #fff;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.investment-return-tag {
  left: 18px;
  bottom: 18px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .9);
  color: #302b25;
  font-size: 13px;
}

.investment-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.investment-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  background: #302b25;
  color: #fff;
  font-size: 27px;
  box-shadow: 0 9px 18px rgba(47, 39, 26, .18);
}

.investment-card-content h3 {
  margin: 24px 0 12px;
  color: #302b25;
  font-family: var(--font-heading);
  font-size: 27px;
  line-height: 1.14;
}

.investment-card-content p {
  margin: 0;
  color: #5f564a;
  font-size: 15px;
  line-height: 1.6;
}

.investment-card-content ul {
  display: grid;
  gap: 11px;
  margin: 25px 0 28px;
  padding: 0;
  list-style: none;
  color: #39342d;
  font-size: 14px;
}

.investment-card-content li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.investment-card-content li::before {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border-radius: 50%;
  background: #eeeae1;
  color: #8b6c37;
  content: '✓';
  font-size: 12px;
  font-weight: 800;
}

.investment-enquire-btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
  border: 1px solid #d7d0c4;
  border-radius: 999px;
  color: #302b25;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: .25s ease;
}

.investment-enquire-btn:hover {
  border-color: #302b25;
  background: #302b25;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .investment-opportunities-section {
    padding: 76px 0;
  }

  .investment-opportunities-grid {
    gap: 22px;
  }

  .investment-card-content {
    padding: 24px;
  }
}

@media (max-width: 760px) {
  .investment-opportunities-heading {
    text-align: left;
  }

  .investment-opportunities-heading p {
    margin-left: 0;
  }

  .investment-opportunities-grid {
    grid-template-columns: 1fr;
  }

  .investment-image-wrap {
    height: 220px;
  }
}

/* Client stories review section */
.testimonials-section {
  padding: 120px 0 108px;
  background: #f8f2e8;
}

.client-stories-heading {
  max-width: 840px;
  margin: 0 auto 52px;
  text-align: center;
}

.client-stories-heading .section-tag {
  margin-bottom: 16px;
}

.client-stories-heading .section-title {
  margin: 0;
  font-size: clamp(44px, 5vw, 66px);
  line-height: .94;
}

.client-stories-heading .section-title em {
  font-style: italic;
}

.client-stories-heading .section-subtitle {
  max-width: 760px;
  margin: 24px auto 0;
  color: #514a3f;
  font-size: 18px;
  line-height: 1.65;
}

.client-stories-shell {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) 66px;
  align-items: center;
  gap: 18px;
}

.client-story-card {
  min-width: 0;
  padding: 56px 56px 44px;
  border-radius: 28px;
  background: #fffdf8;
  border: 1px solid rgba(198, 176, 141, .35);
  box-shadow: 0 18px 40px rgba(60, 47, 28, .08);
}

.client-story-quote {
  color: #dbd2c1;
  font-size: 78px;
  line-height: 1;
}

.client-story-rating {
  display: flex;
  gap: 4px;
  margin: 10px 0 18px;
  color: #1e1914;
  font-size: 18px;
}

.client-story-text {
  margin: 0;
  color: #2f2922;
  font-family: var(--font-heading);
  font-size: clamp(27px, 2.4vw, 44px);
  font-weight: 700;
  line-height: 1.25;
}

.client-story-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
}

.client-story-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-story-avatar {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #443930 0%, #2f271f 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .04em;
}

.client-story-profile h4 {
  margin: 0;
  color: #2d271f;
  font-size: 20px;
  font-weight: 700;
}

.client-story-profile p {
  margin: 4px 0 0;
  color: #6a6154;
  font-size: 15px;
}

.review-source {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid #d9cfbd;
  border-radius: 999px;
  color: #6e6659;
  font-size: 13px;
}

.story-nav-btn {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid #e0d5c1;
  border-radius: 50%;
  background: #fffdf8;
  color: #2e281f;
  font-size: 20px;
  box-shadow: 0 10px 22px rgba(56, 43, 24, .07);
}

.story-pager {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}

.story-dot {
  width: 34px;
  height: 12px;
  border-radius: 999px;
  background: #d6ccbf;
}

.story-dot.active {
  width: 34px;
  background: #322920;
}

@media (max-width: 960px) {
  .client-stories-heading {
    margin-bottom: 58px;
  }

  .client-stories-shell {
    grid-template-columns: 1fr;
  }

  .story-nav-btn {
    display: none;
  }

  .client-story-card {
    padding: 34px 24px 28px;
  }

  .client-story-text {
    font-size: clamp(22px, 5.8vw, 34px);
  }

  .client-story-footer {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 28px;
  }
}

@media (max-width: 640px) {
  .testimonials-section {
    padding: 88px 0 82px;
  }

  .client-stories-heading {
    text-align: left;
  }

  .client-stories-heading .section-subtitle {
    margin-left: 0;
  }

  .client-story-card {
    padding: 28px 20px 24px;
  }

  .client-story-quote {
    font-size: 58px;
  }

  .client-story-profile h4 {
    font-size: 18px;
  }
}

/* Contact page redesign */
.contact-hero-split {
  padding: 54px 0 42px;
  background: linear-gradient(180deg, #f8f2e8 0%, #faf8f4 100%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.02fr;
  gap: 54px;
  align-items: start;
}

.contact-hero-copy {
  padding-top: 10px;
}

.contact-hero-copy .breadcrumbs {
  margin-bottom: 22px;
}

.contact-hero-copy .section-tag {
  margin-bottom: 16px;
}

.contact-hero-title {
  margin: 0;
  color: #1f1913;
  font-family: var(--font-heading);
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: .94;
  letter-spacing: -0.03em;
}

.contact-hero-title em,
.contact-details-title em {
  font-style: italic;
}

.contact-hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: #4e4538;
  font-size: 20px;
  line-height: 1.55;
}

.contact-hero-actions {
  display: grid;
  gap: 18px;
  margin-top: 50px;
}

.contact-hero-action {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 420px;
  color: #221b15;
  text-decoration: none;
}

.contact-hero-action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(180deg, #494038 0%, #2f281f 100%);
  color: #ffffff !important;
  font-size: 24px;
  box-shadow: 0 10px 22px rgba(47, 40, 31, .15);
  flex-shrink: 0;
}

.contact-hero-action-icon i {
  color: #ffffff !important;
}


.contact-hero-action div span {
  display: block;
  font-size: 14px;
  color: #5d5447;
}

.contact-hero-action strong {
  display: block;
  margin-top: 2px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.2;
}

.contact-hero-action-plain {
  pointer-events: none;
}

.contact-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn-hero-dark,
.btn-hero-green,
.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-hero-dark,
.contact-pill.dark,
.btn-submit-dark {
  background: #1f1914;
  color: #fff;
  box-shadow: 0 10px 24px rgba(26, 20, 15, .2);
}

.btn-hero-green,
.contact-pill.green,
.btn-submit-green {
  background: #1f9c52;
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 156, 82, .18);
}

.justdial-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #3f3428;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.contact-hero-form {
  padding: 34px 34px 28px;
  border: 1px solid #e0d4c4;
  border-radius: 28px;
  background: #fffdf8;
  box-shadow: 0 18px 38px rgba(59, 47, 31, .08);
}

.contact-hero-form h2,
.contact-details-title {
  margin: 0;
  color: #2b231b;
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.02;
}

.contact-hero-form p {
  margin: 10px 0 0;
  color: #6b6155;
}

.contact-modern-form {
  margin-top: 22px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.contact-field label {
  color: #44372b;
  font-size: 14px;
  font-weight: 700;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #e2d3bf;
  border-radius: 16px;
  background: #fff;
  color: #2b231b;
  font-size: 16px;
  padding: 16px 18px;
  outline: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #8d8171;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #c99f2e;
  box-shadow: 0 0 0 3px rgba(201, 159, 46, .14);
}

.contact-two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.btn-submit-dark,
.btn-submit-green {
  flex: 1 1 220px;
}

.contact-form-note {
  margin: 14px 0 0;
  color: #84786b;
  font-size: 13px;
  text-align: center;
}

.contact-details-slab {
  padding: 34px 0 18px;
  background: #fff;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: start;
}

.contact-details-copy p {
  max-width: 630px;
  margin: 22px 0 0;
  color: #4e4538;
  font-size: 20px;
  line-height: 1.58;
}

.contact-details-panel {
  padding-left: 8px;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-detail-row i {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  flex: 0 0 56px;
  border-radius: 16px;
  background: linear-gradient(180deg, #494038 0%, #2f281f 100%);
  color: #fff;
  font-size: 20px;
}

.contact-detail-row span {
  display: block;
  color: #6d6254;
  font-size: 14px;
}

.contact-detail-row strong {
  display: block;
  margin-top: 2px;
  color: #2a221a;
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.38;
}

.contact-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 22px 0 18px;
}

.justdial-link-bottom {
  margin-top: 8px;
}

.contact-map-section {
  padding: 18px 0 94px;
  background: #fff;
}

.contact-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: 28px;
  align-items: start;
}

.contact-map-card {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #e7dccb;
  box-shadow: 0 16px 34px rgba(54, 43, 26, .08);
}

.contact-map-card .map-iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.office-hours-box {
  border-radius: 26px;
}

.contact-hero-split .breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6a5e4f;
  margin-bottom: 22px;
}

.contact-hero-split .breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.contact-hero-split .breadcrumbs a:hover {
  color: #c99f2e;
}

@media (max-width: 1080px) {

  .contact-hero-grid,
  .contact-details-grid,
  .contact-map-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-form,
  .contact-details-panel {
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .contact-hero-split {
    padding: 42px 0 28px;
  }

  .contact-hero-copy {
    padding-top: 0;
  }

  .contact-hero-text,
  .contact-details-copy p {
    font-size: 17px;
  }

  .contact-two-cols {
    grid-template-columns: 1fr;
  }

  .contact-hero-buttons,
  .contact-inline-actions {
    flex-direction: column;
  }

  .btn-submit-dark,
  .btn-submit-green,
  .contact-pill {
    width: 100%;
  }

  .contact-map-card .map-iframe {
    height: 300px;
  }
}

.contact-top-banner {
  padding: 86px 0 74px;
  background: linear-gradient(180deg, #f8f2e8 0%, #fbf9f5 100%);
}

.contact-top-banner .breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #6b6051;
  font-size: 14px;
}

.contact-top-banner .breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.contact-top-banner .breadcrumbs a:hover {
  color: #c99f2e;
}

.contact-top-banner .section-tag {
  margin-bottom: 16px;
}

.contact-banner-title {
  margin: 0;
  color: #1e1813;
  font-family: var(--font-heading);
  font-size: clamp(48px, 5.9vw, 78px);
  line-height: .92;
  letter-spacing: -0.03em;
}

.contact-banner-title em {
  font-style: italic;
}

.contact-banner-text {
  max-width: 760px;
  margin: 24px 0 0;
  color: #4f4638;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-top-banner {
    padding: 64px 0 48px;
  }

  .contact-banner-title {
    font-size: clamp(38px, 11vw, 54px);
  }

  .contact-banner-text {
    font-size: 16px;
    margin-top: 18px;
  }
}

/* Homepage services redesign */
.home-services-new {
  background: #fff;
  padding: 112px 0 108px;
}

.home-services-heading {
  max-width: 760px;
  margin: 0 auto 92px;
  text-align: center;
}

.home-services-heading .section-tag {
  margin-bottom: 16px;
}

.home-services-heading .section-title {
  margin: 0;
  color: #181411;
  font-family: var(--font-heading);
  font-size: clamp(44px, 4.8vw, 66px);
  line-height: 1.02;
}

.home-services-heading p {
  max-width: 860px;
  margin: 20px auto 0;
  color: #51483d;
  font-size: 18px;
  line-height: 1.6;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.home-service-card {
  min-height: 255px;
  padding: 28px;
  border: 1px solid #e8dcc9;
  border-radius: 28px;
  background: #fffdf8;
  box-shadow: 0 11px 26px rgba(54, 43, 26, .05);
}

.home-service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #4d4338 0%, #2e271f 100%);
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 20px rgba(47, 39, 26, .14);
}

.home-service-card h3 {
  margin: 30px 0 12px;
  color: #201913;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.15;
}

.home-service-card p {
  margin: 0;
  color: #5e5548;
  font-size: 15px;
  line-height: 1.7;
}

.home-services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 36px;
  padding: 34px 40px;
  border-radius: 26px;
  background: #181412;
  color: #fff;
}

.home-services-cta h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.12;
}

.home-services-cta p {
  max-width: 740px;
  margin: 10px 0 0;
  color: #c9beb0;
  font-size: 16px;
  line-height: 1.6;
}

.home-services-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.home-services-cta-primary,
.home-services-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.home-services-cta-primary {
  background: #fff;
  color: #191411;
}

.home-services-cta-secondary {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04);
  color: #fff;
}

@media (max-width: 1180px) {
  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-services-new {
    padding: 84px 0 80px;
  }

  .home-services-heading {
    text-align: left;
    margin-bottom: 58px;
  }

  .home-services-heading p {
    margin-left: 0;
  }

  .home-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-service-card {
    min-height: 0;
  }

  .home-services-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
  }

  .home-services-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .home-services-cta-primary,
  .home-services-cta-secondary {
    width: 100%;
  }
}

/* Areas we serve redesign */
.areas-we-serve-modern {
  padding: 96px 0 84px;
  background: #f8f2e8;
}

.areas-we-serve-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.areas-we-serve-heading .section-tag {
  margin-bottom: 16px;
}

.areas-we-serve-heading .section-title {
  margin: 0;
  color: #191613;
  font-family: var(--font-heading);
  font-size: clamp(48px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -0.03em;
}

.areas-we-serve-heading .section-title em {
  font-style: italic;
}

.areas-we-serve-heading p {
  max-width: 770px;
  margin: 18px auto 0;
  color: #4f4638;
  font-size: 18px;
  line-height: 1.65;
}

.areas-we-serve-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.area-modern-card {
  min-height: 186px;
  padding: 20px 18px 18px;
  border: 1px solid #e5d5bc;
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 12px 24px rgba(62, 50, 30, .05);
}

.area-modern-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.area-modern-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #f4efe7;
  color: #51463b;
  font-size: 18px;
}

.area-modern-arrow {
  color: #6a6255;
  font-size: 17px;
}

.area-modern-card h3 {
  margin: 0;
  color: #181410;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.18;
}

.area-modern-card p {
  margin: 10px 0 0;
  color: #4f4638;
  font-size: 15px;
  line-height: 1.65;
}

.areas-we-serve-footnote {
  max-width: 980px;
  margin: 34px auto 0;
  color: #3e382f;
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 1100px) {
  .areas-we-serve-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .areas-we-serve-modern {
    padding: 78px 0 70px;
  }

  .areas-we-serve-heading {
    text-align: left;
    margin-bottom: 32px;
  }

  .areas-we-serve-heading p {
    margin-left: 0;
  }

  .areas-we-serve-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .areas-we-serve-footnote {
    text-align: left;
    font-size: 16px;
  }
}

/* Dark advantage section */
.value-props-dark-section {
  margin: 0;
  padding: 112px 0 126px;
  background: #000000;
  color: #f6f0e5;
}

.value-props-dark-heading {
  max-width: 860px;
  margin: 0 auto 92px;
  text-align: center;
}

.value-props-dark-heading .section-tag {
  margin-bottom: 16px;
  color: #d1be9f;
}

.value-props-dark-heading .section-title {
  margin: 0;
  color: #fffaf2;
  font-family: var(--font-heading);
  font-size: clamp(48px, 4.8vw, 72px);
  line-height: .95;
  letter-spacing: -.03em;
}

.value-props-dark-heading .section-title em {
  font-style: italic;
}

.value-props-dark-heading p {
  max-width: 900px;
  margin: 18px auto 0;
  color: #d9d0c4;
  font-size: 19px;
  line-height: 1.65;
}

.value-props-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.value-prop-dark-card {
  position: relative;
  min-height: 274px;
  padding: 34px 30px 30px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 28px;
  background: #302926;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
}

.value-prop-dark-number {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(255, 255, 255, .08);
  font-family: var(--font-heading);
  font-size: 58px;
  line-height: 1;
  font-weight: 700;
}

.value-prop-dark-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
  color: #d8ccbd;
  font-size: 24px;
}

.value-prop-dark-card h3 {
  margin: 88px 0 14px;
  color: #fffaf2;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.18;
}

.value-prop-dark-card p {
  margin: 0;
  color: #beb6ab;
  font-size: 17px;
  line-height: 1.62;
}

@media (max-width: 1100px) {
  .value-props-dark-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .value-props-dark-section {
    padding: 94px 0 96px;
  }

  .value-props-dark-heading {
    margin-bottom: 58px;
    text-align: left;
  }

  .value-props-dark-heading p {
    margin-left: 0;
    font-size: 16px;
  }

  .value-props-dark-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-prop-dark-card {
    min-height: 0;
    padding: 28px 22px 24px;
    border-radius: 22px;
  }

  .value-prop-dark-card h3 {
    margin-top: 74px;
    font-size: 22px;
  }

  .value-prop-dark-card p {
    font-size: 15px;
  }

  .value-prop-dark-number {
    font-size: 46px;
  }
}

/* Force Mobile Logo Sizes */
@media (max-width: 992px) {
  .main-header .brand-logo-img,
  .home-page .main-header .brand-logo-img,
  .brand-logo-img {
    height: 90px !important;
    max-height: 90px !important;
    width: auto !important;
    flex: 0 0 auto !important;
    flex-basis: auto !important;
  }
  .main-header .brand-name,
  .home-page .main-header .brand-name,
  .brand-name {
    font-size: 26px !important;
  }
  .main-header .nav-container,
  .home-page .main-header .nav-container,
  .nav-container {
    height: 100px !important;
  }
  .main-header .logo-brand,
  .home-page .main-header .logo-brand,
  .logo-brand {
    height: 100px !important;
  }

  /* Force sidebar visibility and colors on all pages */
  .nav-menu,
  .home-page .nav-menu,
  .main-header .nav-menu,
  .home-page .main-header .nav-menu {
    background: #ffffff !important;
    background-color: #ffffff !important;
  }
  
  .nav-menu .nav-link,
  .home-page .nav-menu .nav-link,
  .main-header .nav-menu .nav-link,
  .home-page .main-header .nav-menu .nav-link {
    color: #0b1424 !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
  }
  
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active,
  .home-page .nav-menu .nav-link:hover,
  .home-page .nav-menu .nav-link.active {
    color: #b58a22 !important;
  }
}

@media (max-width: 768px) {
  .main-header .brand-logo-img,
  .home-page .main-header .brand-logo-img,
  .brand-logo-img {
    height: 80px !important;
    max-height: 80px !important;
  }
  .main-header .brand-name,
  .home-page .main-header .brand-name,
  .brand-name {
    font-size: 22px !important;
  }
  .main-header .nav-container,
  .home-page .main-header .nav-container,
  .nav-container {
    height: 90px !important;
  }
  .main-header .logo-brand,
  .home-page .main-header .logo-brand,
  .logo-brand {
    height: 90px !important;
  }
}

@media (max-width: 576px) {
  .main-header .brand-logo-img,
  .home-page .main-header .brand-logo-img,
  .brand-logo-img {
    height: 70px !important;
    max-height: 70px !important;
  }
  .main-header .brand-name,
  .home-page .main-header .brand-name,
  .brand-name {
    font-size: 20px !important;
  }
  .main-header .nav-container,
  .home-page .main-header .nav-container,
  .nav-container {
    height: 80px !important;
  }
  .main-header .logo-brand,
  .home-page .main-header .logo-brand,
  .logo-brand {
    height: 80px !important;
  }
}

/* ==================== NEW STANDALONE MOBILE SIDEBAR ==================== */
.mobile-sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 999999;
  transition: left 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.active {
  left: 0;
}

.mobile-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-sidebar-logo {
  height: 35px;
  width: auto;
}

.mobile-sidebar-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #0b1424;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}

.mobile-sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
}

.mobile-sidebar-link {
  width: 100%;
  font-size: 17px;
  font-weight: 700;
  color: #0b1424;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-sidebar-link:hover,
.mobile-sidebar-link.active {
  color: #c59b27;
}

.mobile-sidebar-link:last-child {
  border-bottom: none;
}