/* ==========================================================================
   Paradise Realty - Commercial Real Estate
   Design System: Pastel Luxury Aesthetic
   Primary Location: Connaught Place & Central Delhi, New Delhi 110001
   ========================================================================== */

:root {
  /* Pastel Luxury Color Tokens */
  --bg-main: #FAF8F5;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F3EFEA;
  --bg-sage-tint: #EEF4F0;
  --bg-gold-tint: #F9F5EC;
  --bg-rose-tint: #FAF2EE;
  
  /* Brand Accent Colors */
  --color-primary: #1E3A2F;         /* Deep Forest Green */
  --color-primary-light: #2D5A43;   /* Pastel Sage Dark */
  --color-accent-sage: #528265;     /* Sage */
  --color-gold: #C5A059;            /* Refined Champagne Gold */
  --color-gold-dark: #9E7D3B;       /* Antique Gold */
  --color-terracotta: #C87D65;      /* Warm Terracotta */
  
  /* Text & Neutrals */
  --text-dark: #121B24;             /* Slate Ink */
  --text-body: #334155;             /* Slate 700 */
  --text-muted: #64748B;            /* Slate 500 */
  --text-light: #94A3B8;            /* Slate 400 */
  --text-white: #FFFFFF;
  
  /* Borders & Shadows */
  --border-light: rgba(197, 160, 89, 0.2);
  --border-subtle: rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 2px 8px rgba(18, 27, 36, 0.04);
  --shadow-md: 0 10px 25px -4px rgba(18, 27, 36, 0.07), 0 4px 10px rgba(0,0,0,0.03);
  --shadow-lg: 0 20px 40px -8px rgba(18, 27, 36, 0.12), 0 8px 16px rgba(0,0,0,0.04);
  --shadow-gold: 0 8px 24px rgba(197, 160, 89, 0.25);
  
  /* Transitions & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul, ol {
  list-style: none;
}

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

.container-narrow {
  max-width: 960px;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1.2rem;
  color: var(--text-body);
}

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 400;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-primary-light);
  background: var(--bg-sage-tint);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid rgba(82, 130, 101, 0.2);
}

.section-tag.gold {
  color: var(--color-gold-dark);
  background: var(--bg-gold-tint);
  border-color: var(--border-light);
}

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

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Header & Topbar
   ========================================================================== */
.topbar {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.topbar-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
}

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

.topbar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--color-gold);
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-socials a {
  color: rgba(255, 255, 255, 0.8);
}

.topbar-socials a:hover {
  color: var(--color-gold);
  transform: translateY(-2px);
}

/* Main Navigation */
.main-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
}

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

.logo-symbol {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gold);
}

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

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-gold-dark);
  font-weight: 700;
}

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

.nav-link {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  font-size: 0.94rem;
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(30, 58, 47, 0.25);
}

.btn-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 47, 0.35);
  color: var(--text-white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), #b38e3f);
  color: var(--text-white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d4af37, #9e7d3b);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(197, 160, 89, 0.35);
  color: var(--text-white);
}

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

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

.btn-outline-white {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: var(--text-white);
  color: var(--color-primary);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 15px 34px;
  font-size: 1.05rem;
}

/* ==========================================================================
   Hero Slider (3 Connaught Place Landmarks)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  background: #0B141B;
  color: var(--text-white);
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
  width: 33.333333%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(1.15);
  transform: scale(1.04);
  transition: transform 6s ease-out;
}

.slide.active .slide-img {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    rgba(11, 20, 27, 0.82) 0%, 
    rgba(11, 20, 27, 0.5) 45%, 
    rgba(11, 20, 27, 0.15) 100%
  );
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  padding: 80px 0;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(197, 160, 89, 0.18);
  border: 1px solid rgba(197, 160, 89, 0.5);
  color: #F7E7C4;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.hero-title {
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

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

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

.stat-item h4 {
  color: var(--color-gold);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.slider-arrow:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--color-gold);
  transform: scale(1.2);
  border-color: #FFFFFF;
}

/* ==========================================================================
   Search & Quick Filter Bar
   ========================================================================== */
.quick-filter-section {
  position: relative;
  z-index: 30;
  margin-top: -45px;
  margin-bottom: 60px;
}

.quick-filter-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 24px 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 18px;
  align-items: end;
}

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

.filter-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.filter-select, .filter-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.filter-select:focus, .filter-input:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(45, 90, 67, 0.12);
}

/* ==========================================================================
   Sections Common
   ========================================================================== */
.section {
  padding: 90px 0;
}

.section-pastel-sage {
  background-color: var(--bg-sage-tint);
}

.section-pastel-gold {
  background-color: var(--bg-gold-tint);
}

.section-pastel-subtle {
  background-color: var(--bg-subtle);
}

.section-white {
  background-color: #FFFFFF;
}

.section-dark {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: #FFFFFF;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   Property Cards
   ========================================================================== */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.property-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.property-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.property-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-primary);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.property-badge.sale {
  background: var(--color-gold-dark);
}

.property-price-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(18, 27, 36, 0.85);
  backdrop-filter: blur(6px);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(197, 160, 89, 0.4);
}

.property-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--color-accent-sage);
  font-weight: 600;
  margin-bottom: 8px;
}

.property-location svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.property-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

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

.property-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 16px;
  margin-bottom: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-body);
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-item span:first-child {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.feature-item span:last-child {
  font-weight: 700;
  color: var(--text-dark);
}

.property-card-actions {
  display: flex;
  gap: 10px;
}

.property-card-actions .btn {
  flex: 1;
}

/* ==========================================================================
   Micro-Location Grid & Cards
   ========================================================================== */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.location-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

.location-card:hover::before {
  width: 8px;
}

.location-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-gold-tint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  margin-bottom: 18px;
}

.location-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.location-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.location-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.location-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.location-tag {
  font-size: 0.75rem;
  background: var(--bg-subtle);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-weight: 600;
}

/* ==========================================================================
   About & Expertise Highlights
   ========================================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-stack {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-floating-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  max-width: 260px;
}

.about-floating-card h4 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.about-floating-card p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0;
  text-transform: uppercase;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.about-feature-box {
  background: #FFFFFF;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.about-feature-box h4 {
  font-size: 1.05rem;
  color: var(--color-primary-light);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-feature-box p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   Testimonials (Indian Faces)
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 34px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-stars {
  color: #F59E0B;
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

.author-info h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   Contact Section & Google Maps
   ========================================================================== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.contact-info-panel {
  padding: 44px;
  background: linear-gradient(145deg, var(--color-primary), #13271F);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-panel h3 {
  color: #FFFFFF;
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.contact-info-panel p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 30px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(197, 160, 89, 0.2);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-item-text h5 {
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-item-text p, .contact-item-text a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  margin: 0;
}

.contact-form-panel {
  padding: 44px;
}

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

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(45, 90, 67, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.map-container {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Page Headers (Inner Subpages)
   ========================================================================== */
.inner-hero {
  background: linear-gradient(145deg, #102019, #1E3A2F);
  color: #FFFFFF;
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.inner-hero h1 {
  color: #FFFFFF;
  margin-bottom: 14px;
}

.inner-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  line-height: 1.7;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.breadcrumbs a {
  color: var(--color-gold);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Content Rich Articles & Guide Layout
   ========================================================================== */
.content-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-body);
}

.content-body h2 {
  margin: 36px 0 16px;
  color: var(--text-dark);
}

.content-body h3 {
  margin: 28px 0 12px;
  color: var(--color-primary);
}

.content-body ul, .content-body ol {
  margin: 16px 0 24px 20px;
}

.content-body ul {
  list-style: disc;
}

.content-body ol {
  list-style: decimal;
}

.content-body li {
  margin-bottom: 8px;
}

.content-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  margin-bottom: 30px;
}

.info-callout {
  background: var(--bg-sage-tint);
  border-left: 4px solid var(--color-primary-light);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}

.info-callout.gold {
  background: var(--bg-gold-tint);
  border-left-color: var(--color-gold);
}

.info-callout h4 {
  color: var(--color-primary);
  margin-bottom: 6px;
}

.info-callout p:last-child {
  margin-bottom: 0;
}

/* Table styles */
.data-table-wrapper {
  overflow-x: auto;
  margin: 28px 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  text-align: left;
}

.data-table th, .data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.94rem;
}

.data-table th {
  background: var(--bg-subtle);
  color: var(--text-dark);
  font-weight: 700;
  font-family: var(--font-heading);
}

.data-table tr:hover {
  background: var(--bg-main);
}

/* ==========================================================================
   FAQ Accordion (SEO & AEO)
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

.faq-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--color-gold-dark);
  font-size: 1.4rem;
  font-weight: 400;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 22px;
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
}

/* ==========================================================================
   Blog Page Styles
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.blog-img-wrapper {
  height: 220px;
  position: relative;
  overflow: hidden;
}

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

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-primary);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

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

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

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--text-dark);
}

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

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

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

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-float-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-tooltip {
  background: #FFFFFF;
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  animation: floatTooltip 3s ease-in-out infinite;
  white-space: nowrap;
  pointer-events: none;
}

.whatsapp-btn {
  width: 62px;
  height: 62px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

.whatsapp-btn svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseRipple 2s linear infinite;
  pointer-events: none;
}

@keyframes pulseRipple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes floatTooltip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #0D1714;
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--color-gold);
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-keywords-cloud {
  background: rgba(255, 255, 255, 0.04);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 30px;
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
}

.footer-keywords-cloud strong {
  color: var(--color-gold);
}
