/* ============================================
   HOUSEBRICK — Premium Real Estate Website
   Luxe Maroon & Gold Aesthetic
   ============================================ */

:root {
  --maroon: #8B1A1A;
  --maroon-dark: #6B0F0F;
  --maroon-light: #A52A2A;
  --gold: #C9A14A;
  --gold-light: #E0BC6E;
  --gold-dark: #9C7A2E;
  --cream: #FBF7F0;
  --cream-dark: #F4EDDF;
  --ink: #1F1A17;
  --ink-soft: #4A3F37;
  --muted: #8A7E72;
  --white: #FFFFFF;
  --border: rgba(201, 161, 74, 0.25);
  --shadow-sm: 0 2px 8px rgba(30, 20, 10, 0.06);
  --shadow-md: 0 8px 24px rgba(30, 20, 10, 0.09);
  --shadow-lg: 0 20px 50px rgba(30, 20, 10, 0.12);
  --shadow-gold: 0 10px 30px rgba(201, 161, 74, 0.25);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ============= ANIMATIONS ============= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139, 26, 26, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(139, 26, 26, 0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============= NAVBAR ============= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(251, 247, 240, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.navbar.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 28px;
  color: var(--maroon);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}
.logo sup { font-size: 10px; opacity: 0.85; }
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--maroon); }
.nav-links a:hover::after { width: 100%; }

.nav-call {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 1px solid var(--gold);
  padding: 10px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.nav-call:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.nav-call .icon {
  width: 38px; height: 38px;
  background: var(--maroon);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  animation: pulse 2s infinite;
}
.nav-call .info { line-height: 1.2; }
.nav-call .info small { color: var(--maroon); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; }
.nav-call .info strong { display: block; font-size: 17px; color: var(--ink); font-weight: 700; }
.nav-call .info span { font-size: 10px; color: var(--muted); }

.mobile-toggle { display: none; font-size: 24px; color: var(--maroon); }

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 50px;
  background: linear-gradient(135deg, var(--cream) 0%, #F5E9D4 100%);
  overflow: hidden;
}
/* Temple bleeds from the very left page edge, fades into cream at ~42% */
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 65%;
  background: url('../images/hero-temple.png') center center / cover no-repeat;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 1;
}
/* 3-column grid: [temple space] [text] [form] */
.hero-grid {
  display: grid;
  grid-template-columns: 48% 30%;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}
/* First column is empty — reserved for the temple image background */

.hero-left { 
  min-width: 0;
  padding: 28px;
  background: rgba(251, 247, 240, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.lead-card { 
  width: 100%;
}
.hero-temple-img { display: none; }
.eyebrow {
  display: inline-flex;
  align-items: center; gap: 6px;
  background: rgba(201, 161, 74, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeUp 0.8s var(--ease);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--maroon) 0%, var(--maroon-light) 50%, var(--maroon) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  font-style: italic;
}
.hero .divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 14px 0;
}
.hero p.lead {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  animation: fadeUp 1s var(--ease) 0.2s both;
}
.trust-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
  animation: fadeUp 1.1s var(--ease) 0.3s both;
}
.trust-card {
  text-align: center;
  padding: 10px 6px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}
.trust-card .ico {
  width: 36px; height: 36px;
  margin: 0 auto 6px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-light);
  font-size: 14px;
}
.trust-card span {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  line-height: 1.3;
}
.trust-banner {
  background: var(--white);
  border-left: 4px solid var(--maroon);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  animation: fadeUp 1.2s var(--ease) 0.4s both;
}
.trust-banner h4 {
  color: var(--maroon);
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 2px;
}
.trust-banner p { font-size: 12px; color: var(--ink-soft); margin: 0; }

/* ============= LEAD FORM CARD ============= */
.lead-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: fadeUp 1s var(--ease) 0.3s both;
}
.lead-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold) 0%, transparent 30%, transparent 70%, var(--maroon) 100%);
  z-index: -1;
  opacity: 0.4;
}
.lead-card h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  text-align: center;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}
.lead-card .sub {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}
.input-wrap {
  position: relative;
}
.input-wrap i {
  position: absolute;
  left: 10px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold-dark);
  font-size: 12px;
}
.lead-card input,
.lead-card select {
  width: 100%;
  padding: 12px 14px 12px 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: inherit;
  background: var(--cream);
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.lead-card select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239C7A2E' 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;
  padding-right: 32px;
  cursor: pointer;
}
.lead-card .input-wrap {
  margin-bottom: 10px;
}
.lead-card input:focus,
.lead-card select:focus {
  outline: none;
  border-color: var(--maroon);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.08);
}
.field-label {
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 8px;
  display: block;
}
.chips {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px;
}
.chip {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.chip:hover { border-color: var(--maroon); color: var(--maroon); }
.chip.active {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
  box-shadow: 0 3px 8px rgba(139, 26, 26, 0.3);
}
.btn-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--white);
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  box-shadow: 0 6px 18px rgba(139, 26, 26, 0.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.btn-primary:hover::before { opacity: 0.3; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(139, 26, 26, 0.45); }
.btn-primary span { position: relative; z-index: 2; }
.form-note {
  text-align: center;
  font-size: 11px;
  color: var(--gold-dark);
  margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ============= FLOATING ACTIONS ============= */
.floating-actions {
  position: fixed;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.floating-call {
  background: linear-gradient(180deg, var(--maroon), var(--maroon-dark));
  color: var(--white);
  padding: 16px 12px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 12px 30px rgba(139, 26, 26, 0.4);
  animation: float 3s ease-in-out infinite;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.floating-whatsapp {
  background: linear-gradient(180deg, #25D366, #128C7E);
  color: var(--white);
  padding: 16px 12px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  animation: float 3.2s ease-in-out infinite;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.floating-call:hover, .floating-whatsapp:hover { transform: scale(1.05); }
.floating-call i, .floating-whatsapp i { font-size: 22px; margin-bottom: 4px; display: block; }
.floating-call small, .floating-whatsapp small { font-size: 9px; letter-spacing: 1.5px; font-weight: 700; display: block; }
.floating-call strong, .floating-whatsapp strong { font-size: 12px; line-height: 1.2; display: block; margin-top: 4px; color: var(--white); }

/* ============= SECTION HEADING ============= */
section { padding: 90px 0; position: relative; }
.section-eyebrow {
  text-align: center;
  color: var(--maroon);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 680px;
  margin: 0 auto 50px;
}
.fancy-divider {
  width: 100px; height: 4px;
  margin: 0 auto 50px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}
.fancy-divider::before {
  content: '◆';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  background: var(--cream);
  padding: 0 8px;
  font-size: 10px;
}

/* ============= WHY CHOOSE ============= */
.why-choose { background: var(--white); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.feature-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .ico {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-radius: 18px;
  display: grid; place-items: center;
  color: var(--gold-light);
  font-size: 28px;
  transition: transform 0.5s var(--ease);
}
.feature-card:hover .ico { transform: rotate(-8deg) scale(1.08); }
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 10px;
}
.feature-card p { color: var(--ink-soft); font-size: 14.5px; }

/* ============= STATS STRIP ============= */
.stats-strip {
  background: linear-gradient(135deg, #1A0F0A 0%, #2A1810 100%);
  padding: 40px 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201, 161, 74, 0.15), transparent 40%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
.stat-item {
  display: flex; align-items: center; gap: 16px;
  color: var(--cream);
}
.stat-item .stat-ico {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  display: grid; place-items: center;
  color: var(--ink);
  font-size: 22px;
  flex-shrink: 0;
}
.stat-item .stat-num {
  font-family: var(--font-sans);
  font-size: 38px;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 12.5px;
  color: rgba(251, 247, 240, 0.7);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ============= WHY INVEST ============= */
.why-invest { background: var(--cream); }
.invest-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.invest-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  text-align: center;
  transition: all 0.4s var(--ease);
}
.invest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--maroon);
}
.invest-card .ico {
  font-size: 36px;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.invest-card h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.invest-card p { color: var(--ink-soft); font-size: 14px; }

/* ============= EXPLORE OPTIONS ============= */
.explore { background: var(--white); }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.explore-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease);
  cursor: pointer;
}
.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.explore-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.explore-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
}
.explore-card:hover .explore-img { transform: scale(1.05); }
.explore-body { padding: 26px 22px; text-align: center; }
.explore-body h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--ink);
}
.explore-body p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 20px; line-height: 1.5; }
.explore-body .btn-visit {
  display: inline-block;
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
  background: var(--white);
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}
.explore-body .btn-visit:hover {
  background: var(--maroon);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.2);
}

/* ============= BUILDERS ============= */
.builders { background: var(--cream); padding: 70px 0; }
.marquee-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 40px;
}
.marquee-wrap::before, .marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--cream), transparent); }
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

.builder-logo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 30px;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  transition: all 0.3s var(--ease);
  display: flex; align-items: center; justify-content: center;
  min-height: 80px;
  min-width: 200px;
}
.builder-logo:hover { transform: scale(1.05); border-color: var(--gold); box-shadow: var(--shadow-sm); z-index: 3; position: relative; }
.builder-logo span { color: var(--maroon); }

/* ============= BLOG ============= */
.blog-section { background: var(--white); }
.blog-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 40px;
}
.btn-outline {
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
  background: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}
.btn-outline:hover { background: var(--maroon); color: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease);
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-body { padding: 22px; }
.blog-body h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.3;
}
.blog-body p {
  color: var(--ink-soft);
  font-size: 13.5px;
  margin-bottom: 14px;
}
.blog-meta {
  display: flex; gap: 10px; align-items: center;
  font-size: 11.5px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.blog-meta .cat {
  color: var(--maroon);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ============= TESTIMONIALS ============= */
.testimonials { background: var(--cream); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.4s var(--ease);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px; left: 24px;
  font-size: 80px;
  color: var(--gold);
  font-family: var(--font-serif);
  line-height: 1;
  opacity: 0.5;
}
.testi-card .stars { color: var(--gold); margin-bottom: 16px; }
.testi-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}
.testi-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testi-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 700;
}
.testi-author .name {
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}
.testi-author small { color: var(--muted); font-size: 12px; }

.cta-banner {
  background: var(--maroon-dark);
  padding: 80px 0;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
/* Dark overlay on top of the section background */
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(80, 10, 10, 0.25) 0%, rgba(80, 10, 10, 0.4) 40%, rgba(80, 10, 10, 0.7) 60%, var(--maroon-dark) 100%);
  pointer-events: none;
  z-index: 1;
}
.cta-banner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 55%;
  background: url('../images/cta-temple.png') top center / cover no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.cta-text h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--cream);
  margin-bottom: 8px;
}
.cta-text p { color: rgba(251, 247, 240, 0.75); font-size: 15px; }
.cta-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 3;
  gap: 24px;
  padding-left: 45%;
}
.cta-text {
  text-align: left;
}
.cta-phone {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 20px 32px;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-lg);
}
.cta-phone .icon {
  width: 48px; height: 48px;
  background: var(--maroon);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 22px;
}
.cta-phone .label { font-size: 11px; font-weight: 700; color: var(--maroon-dark); letter-spacing: 1.5px; }
.cta-phone .num { font-size: 24px; font-weight: 700; color: var(--ink); line-height: 1; margin-top: 2px; }
.cta-phone .sub { font-size: 11px; color: var(--maroon-dark); display: block; margin-top: 4px; }

/* ============= FOOTER CTA STRIP ============= */
.footer-cta {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  padding: 28px 0;
  border-top: 3px solid var(--gold);
}
.footer-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-cta-text {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}
.footer-cta-text i {
  font-size: 32px;
  color: var(--gold);
}
.footer-cta-text strong {
  font-family: var(--font-serif);
  font-size: 20px;
  display: block;
}
.footer-cta-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.footer-cta-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  box-shadow: var(--shadow-md);
}
.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.footer-cta-btn i { margin-right: 6px; }

/* ============= FOOTER ============= */
.footer {
  background: linear-gradient(180deg, #1a0a0a 0%, #0d0505 100%);
  padding: 60px 0 30px;
  color: rgba(255,255,255,0.7);
}
.footer .logo {
  color: var(--gold) !important;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  margin-top: 16px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-badges {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,161,74,0.12);
  border: 1px solid rgba(201,161,74,0.25);
  color: var(--gold);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}
.footer-badge i { font-size: 12px; }
.footer h5 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer ul { list-style: none; }
.footer ul li {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.footer ul li:hover { color: var(--gold); transform: translateX(4px); }
.footer ul li a { color: inherit !important; }
.footer-contact strong {
  color: var(--white);
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}
.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-phone i {
  color: var(--gold);
  font-size: 16px;
}
.footer-phone strong {
  color: var(--white);
  font-size: 20px;
  letter-spacing: 0.5px;
}
.footer-address {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-address i {
  color: var(--gold);
  font-size: 13px;
  width: 16px;
}
.social {
  display: flex; gap: 10px; margin-top: 20px;
}
.social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s var(--ease);
}
.social a:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-crafted { font-size: 12px; }
.footer-bottom a { color: var(--gold); }

/* ============= TOAST ============= */
.partner-slide {
  flex-shrink: 0;
  width: 180px;
  height: 90px;
  background: var(--white);
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 15px;
}
.partner-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.5s var(--ease);
  display: flex; align-items: center; gap: 12px;
  max-width: 360px;
}
.toast.show { transform: translateX(0); }
.toast.success { border-left-color: #2EA84F; }
.toast i { font-size: 22px; color: var(--gold); }
.toast.success i { color: #2EA84F; }
.toast p { font-size: 14px; color: var(--ink); margin: 0; }

/* ============= LEAD POPUP MODAL ============= */
.lead-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: all 0.4s var(--ease);
}
.lead-popup-overlay.active { opacity: 1; pointer-events: auto; }
.lead-popup-content {
  background: var(--white);
  border-radius: 20px;
  width: 90%; max-width: 850px;
  position: relative;
  overflow: visible;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s var(--ease);
}
.lead-popup-overlay.active .lead-popup-content { transform: translateY(0) scale(1); }
.lead-popup-close {
  position: absolute; top: -15px; right: -15px;
  width: 40px; height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  z-index: 10;
  font-size: 18px; color: var(--ink);
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  cursor: pointer; transition: all 0.2s;
}
.lead-popup-close:hover { background: var(--maroon); color: var(--white); }
.lead-popup-grid { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 20px 20px 0 0; }
.lead-popup-left {
  background: url('../images/popup-bg.png') center/cover no-repeat;
  position: relative;
  padding: 40px 30px;
  color: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.lead-popup-overlay-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(139, 26, 26, 0.85) 0%, rgba(201, 161, 74, 0.9) 100%),
              url('../images/popup-bg.png') center/cover no-repeat;
}
.lead-popup-left-content { position: relative; z-index: 2; text-align: center; }
.lead-popup-left h3 { font-family: var(--font-serif); font-size: 28px; line-height: 1.2; margin-bottom: 16px; }
.lead-popup-left h3 span { font-size: 34px; color: var(--gold-light); }
.lead-popup-left p { font-size: 14px; margin-bottom: 30px; opacity: 0.9; }
.lead-popup-features { list-style: none; text-align: left; }
.lead-popup-features li { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.lead-popup-features .icon-wrap {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  display: grid; place-items: center;
  font-size: 18px; color: var(--gold-light);
}
.lead-popup-features .text-wrap { font-size: 15px; font-weight: 600; line-height: 1.3; }
.lead-popup-features .text-wrap small { font-weight: 400; font-size: 12px; opacity: 0.8; }
.lead-popup-right { padding: 40px; background: var(--white); text-align: center; }
.lead-popup-right h4 { font-family: var(--font-serif); font-size: 26px; color: var(--ink); line-height: 1.2; }
.separator { margin: 16px 0 24px; color: var(--gold); }
.icon-input { position: relative; margin-bottom: 16px; }
.icon-input i {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: 14px;
}
.icon-input input, .icon-input select {
  width: 100%; padding: 14px 16px 14px 44px;
  border: 1px solid var(--border);
  border-radius: 8px; font-family: inherit; font-size: 14px;
  background: var(--cream); color: var(--ink);
  transition: all 0.3s;
}
.icon-input input:focus, .icon-input select:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.1);
}
.icon-input select { appearance: none; cursor: pointer; }
.btn-submit-popup {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink); border-radius: 8px;
  font-weight: 700; font-size: 15px;
  margin-top: 10px; margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(201, 161, 74, 0.3);
  transition: all 0.3s;
}
.btn-submit-popup:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(201, 161, 74, 0.4); }
.guarantee-text { font-size: 12px; color: var(--muted); font-weight: 500; }
.guarantee-text i { color: #2EA84F; margin-right: 4px; }
.lead-popup-footer {
  background: #111; color: var(--muted);
  text-align: center; padding: 12px; font-size: 11px;
  border-radius: 0 0 20px 20px;
}
.lead-popup-footer i { color: var(--gold); margin-right: 6px; }

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; padding-left: 0; }
  .lead-card { width: 100%; }
  .hero::before { width: 100%; height: 300px; bottom: auto; opacity: 0.12; -webkit-mask-image: none; mask-image: none; }
  .feature-grid, .invest-grid, .blog-grid, .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-call { display: none; }
  .mobile-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; padding-left: 0; }
  .hero-grid::before { display: none; }
  .hero-left, .lead-card { max-width: 100%; width: 100%; }
  .hero h1 { font-size: 30px; }
  .hero::before { display: none; }
  .feature-grid, .invest-grid, .blog-grid, .explore-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-wrap { flex-direction: column; text-align: center; justify-content: center; padding-left: 0; }
  .cta-text { text-align: center; }
  .cta-banner::before { width: 100%; opacity: 0.15; }
  .cta-banner::after { background: rgba(80,10,10,0.8); }
  .floating-actions { 
    right: 0; bottom: 0; top: auto; left: 0; 
    transform: none; 
    flex-direction: row; 
    gap: 0; 
    width: 100%; 
    z-index: 1000;
  }
  body { padding-bottom: 54px; }
  .floating-call, .floating-whatsapp { 
    width: 50%; 
    border-radius: 0; 
    padding: 14px 0; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 8px; 
    box-shadow: none; 
    animation: none;
  }
  .floating-call strong, .floating-whatsapp strong { display: none; }
  .floating-call small, .floating-whatsapp small { font-size: 13px; font-weight: 700; letter-spacing: 0.5px; }
  .floating-call i, .floating-whatsapp i { margin: 0; font-size: 20px; display: inline-block; }
  .trust-icons { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  
  .lead-popup-grid { grid-template-columns: 1fr; }
  .lead-popup-left { display: none; }
  .lead-popup-right { padding: 30px 20px; }
  .lead-popup-close { top: 10px; right: 10px; position: absolute; }
}
