/* ===== Faridabad Homes - Luxury Real Estate | Poppins ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0a1525;
  --navy-2: #0f2035;
  --navy-deep: #060d18;
  --ink: #0b1420;
  --text: #2c3640;
  --muted: #5e6b78;
  --gold: #b8944a;
  --gold-light: #d4af6a;
  --gold-deep: #9a7b38;
  --cream: #faf8f3;
  --white: #ffffff;
  --border: #e8e3d8;
  --shadow-sm: 0 6px 20px rgba(11, 20, 32, 0.05);
  --shadow: 0 16px 40px rgba(11, 20, 32, 0.08);
  --shadow-lg: 0 30px 70px rgba(11, 20, 32, 0.15);
  --shadow-xl: 0 40px 100px rgba(11, 20, 32, 0.22);
  --dark-grad: linear-gradient(145deg, #0a1525 0%, #0f1f38 60%, #142540 100%);
  --gold-grad: linear-gradient(140deg, #d4af6a 0%, #b8944a 45%, #9a7b38 100%);
  --gold-text: linear-gradient(140deg, #e8cc8a 0%, #b8944a 55%, #9a7b38 100%);
  --radius: 20px;
  --maxw: 1240px;
}

html { scroll-behavior: smooth; font-size: 100%; }

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.22;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.4px;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

/* ===== Section ===== */
.section { padding: 120px 0; }
.section-alt { background: var(--cream); }

/* ===== Section Heading ===== */
.section-head { text-align: center; max-width: 800px; margin: 0 auto 64px; }
.section-head .eyebrow {
  background: var(--gold-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-weight: 600; letter-spacing: 5px; text-transform: uppercase; font-size: 0.78rem;
  display: inline-flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.section-head .eyebrow::before,
.section-head .eyebrow::after { content: ''; width: 44px; height: 1.5px; background: var(--gold-grad); }
.section-head h2 { font-size: 3rem; margin-bottom: 20px; letter-spacing: -0.8px; font-weight: 700; }
.section-head p { color: var(--muted); font-size: 1.1rem; font-weight: 300; max-width: 600px; margin: 0 auto; }

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(10, 21, 37, 0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
}
.header.scrolled { background: rgba(6, 13, 24, 0.98); box-shadow: 0 8px 40px rgba(0,0,0,0.35); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 92px; transition: height 0.5s cubic-bezier(0.22,1,0.36,1); }
.header.scrolled .container { height: 76px; }
.brand {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--white); letter-spacing: 0.2px;
}
.brand-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--gold-grad); color: #1a1205;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800;
  box-shadow: 0 8px 28px rgba(184, 148, 74, 0.4);
  transition: all 0.4s ease;
}
.brand:hover .brand-icon { transform: rotate(-8deg) scale(1.05); box-shadow: 0 12px 36px rgba(184, 148, 74, 0.55); }
.brand-text { display: flex; align-items: baseline; gap: 6px; }
.brand-accent {
  background: var(--gold-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: rgba(255,255,255,0.82); font-size: 0.92rem; font-weight: 500; letter-spacing: 0.5px;
  padding: 10px 19px; border-radius: 10px; transition: all 0.3s ease; position: relative;
}
.nav a::after {
  content: ''; position: absolute; left: 19px; right: 19px; bottom: 6px; height: 2px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.nav a:hover, .nav a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.btn-cta {
  background: var(--gold-grad); color: #1a1205; border-radius: 32px; font-weight: 600;
  margin-left: 12px; box-shadow: 0 8px 28px rgba(184, 148, 74, 0.4);
  padding: 12px 28px;
}
.nav a.btn-cta::after { display: none; }
.nav a.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(184, 148, 74, 0.6); color: #1a1205; background: linear-gradient(140deg, #dcc48a 0%, #c4a35a 45%, #a68840 100%); }
.hamburger { display: none; font-size: 1.5rem; color: var(--white); cursor: pointer; transition: transform 0.3s; }
.hamburger:hover { transform: scale(1.1); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 38px; border-radius: 44px; font-weight: 600; letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1); cursor: pointer; border: none; font-size: 0.96rem; font-family: 'Poppins', sans-serif;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gold-grad); color: #1a1205; box-shadow: 0 14px 34px rgba(184, 148, 74, 0.45);
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent); transform: skewX(-20deg); transition: left 0.7s ease;
}
.btn-primary:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 48px rgba(184, 148, 74, 0.65); }
.btn-primary:hover::after { left: 140%; }
.btn-outline {
  background: rgba(255,255,255,0.06); color: var(--white); border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); background: rgba(255,255,255,0.1); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
.btn-dark {
  background: linear-gradient(145deg, var(--ink) 0%, var(--navy) 100%); color: var(--white); box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}
.btn-dark:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-xl); background: linear-gradient(145deg, var(--navy-2) 0%, var(--navy) 100%); }

/* ===== Hero ===== */
.hero {
  min-height: 80vh; position: relative; overflow: hidden;
  display: flex; align-items: center; color: var(--white); padding-top: 92px; padding-bottom: 40px;
  background:
    linear-gradient(180deg, rgba(6,13,24,0.92) 0%, rgba(10,21,37,0.85) 50%, rgba(6,13,24,0.95) 100%),
    url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.45;
  will-change: transform;
}
.hero-orb-1 {
  width: 700px; height: 700px; top: -280px; right: -180px;
  background: radial-gradient(circle, rgba(184,148,74,0.35), transparent 70%);
}
.hero-orb-2 {
  width: 500px; height: 500px; bottom: -200px; right: 15%;
  background: radial-gradient(circle, rgba(212,175,106,0.25), transparent 70%);
}
.hero-orb-3 {
  width: 350px; height: 350px; top: 40%; left: -5%;
  background: radial-gradient(circle, rgba(154,123,56,0.2), transparent 70%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px 200px;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 3;
}
.hero-layout { display: grid; grid-template-columns: 1fr; gap: 0; align-items: center; position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }
.hero-content { max-width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212, 175, 106, 0.1); border: 1px solid rgba(212, 175, 106, 0.45);
  color: var(--gold-light); padding: 10px 24px; border-radius: 48px;
  font-size: 0.82rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 32px; font-weight: 500;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light);
  box-shadow: 0 0 12px rgba(212, 175, 106, 0.6); animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
.hero h1 {
  font-size: 4rem; color: var(--white); margin-bottom: 26px;
  letter-spacing: -1.8px; font-weight: 800; line-height: 1.08;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title-accent {
  background: var(--gold-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-weight: 800; display: inline-block;
  filter: drop-shadow(0 2px 8px rgba(184,148,74,0.3));
}
.hero-lead {
  font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px;
  max-width: 640px; margin-left: auto; margin-right: auto; font-weight: 300; line-height: 1.75;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin-bottom: 50px; }
.hero-stats {
  display: flex; gap: 0; align-items: center; flex-wrap: wrap;
  padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { padding: 0 36px; position: relative; }
.hero-stat-divider {
  width: 1px; height: 48px; background: rgba(255,255,255,0.15);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { padding-right: 0; }
.hero-stat-number {
  font-size: 2.6rem; font-weight: 800; color: var(--gold-light);
  letter-spacing: -0.8px; line-height: 1; margin-bottom: 6px;
  background: var(--gold-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stat-label {
  font-size: 0.84rem; color: rgba(255,255,255,0.65);
  letter-spacing: 0.8px; font-weight: 400; text-transform: uppercase;
}
.hero-visual { position: relative; height: 600px; display: flex; align-items: center; justify-content: center; }
.hero-image-showcase { position: relative; width: 100%; height: 100%; }
.hero-image-primary {
  position: relative; width: 100%; height: 100%; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 50px 120px rgba(11, 20, 32, 0.5), 0 0 0 1px rgba(255,255,255,0.1);
}
.hero-image-primary img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22,1,0.36,1);
}
.hero-image-primary:hover img { transform: scale(1.05); }
.hero-image-border {
  position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius);
  pointer-events: none; margin: 16px; opacity: 0.5;
}
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 22px 26px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.5);
  animation: floatCard 7s ease-in-out infinite;
  z-index: 2;
}
.hero-float-card-1 { top: 60px; right: -20px; }
.hero-float-card-2 { bottom: 80px; left: -10px; animation-delay: 3s; }
.hero-float-card .hfc-icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--gold-grad); color: #1a1205;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  box-shadow: 0 8px 22px rgba(184, 148, 74, 0.4);
  flex-shrink: 0;
}
.hero-float-card .hfc-text strong {
  display: block; color: var(--ink); font-size: 1rem; font-weight: 600; margin-bottom: 2px;
}
.hero-float-card .hfc-text span {
  color: var(--muted); font-size: 0.82rem; font-weight: 400;
}
.hero-glow {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,148,74,0.15), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  filter: blur(60px); pointer-events: none;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}
.hero-scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 2px;
  text-transform: uppercase; z-index: 4; font-weight: 400;
  transition: opacity 0.5s ease;
}
.hero-scroll-line {
  width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 50%;
  background: var(--gold-light);
  animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* ===== Page Banner ===== */
.page-banner {
  position: relative;
  background:
    radial-gradient(ellipse 1000px 450px at 50% 0%, rgba(184,148,74,0.2), transparent 55%),
    linear-gradient(175deg, rgba(10,21,37,0.82) 0%, rgba(6,13,24,0.92) 100%),
    url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: 196px 0 100px; color: var(--white); text-align: center;
}
.page-banner h1 { font-size: 3.6rem; color: var(--white); margin-bottom: 14px; font-weight: 800; letter-spacing: -0.6px; }
.breadcrumb { font-size: 0.94rem; color: rgba(255,255,255,0.7); letter-spacing: 0.5px; font-weight: 300; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xl); position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 1s ease; }
.about-img:hover img { transform: scale(1.06); }
.about-img::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius); margin: 20px; pointer-events: none; }
.about-text .eyebrow { background: var(--gold-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; font-size: 0.78rem; display: block; margin-bottom: 18px; }
.about-text h2 { font-size: 2.6rem; margin-bottom: 22px; letter-spacing: -0.7px; font-weight: 700; }
.about-text p { color: var(--muted); margin-bottom: 18px; font-weight: 300; }
.about-list { margin: 26px 0; }
.about-list li { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; color: var(--text); font-weight: 300; }
.about-list i { color: var(--gold-deep); margin-top: 4px; background: rgba(184, 148, 74, 0.14); width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.why-card {
  background: var(--white); border-radius: var(--radius); padding: 48px 34px;
  box-shadow: var(--shadow); transition: all 0.5s cubic-bezier(0.22,1,0.36,1); border: 1px solid var(--border); position: relative; overflow: hidden;
}
.why-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.why-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-xl); border-color: rgba(184, 148, 74, 0.45); }
.why-card:hover::before { transform: scaleX(1); }
.why-card .icon {
  width: 72px; height: 72px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  background: linear-gradient(135deg, rgba(212, 175, 106, 0.2), rgba(184, 148, 74, 0.1)); color: var(--gold-deep); margin-bottom: 24px;
  transition: all 0.4s ease;
}
.why-card:hover .icon { transform: scale(1.08); background: linear-gradient(135deg, rgba(212, 175, 106, 0.28), rgba(184, 148, 74, 0.18)); box-shadow: 0 8px 24px rgba(184, 148, 74, 0.2); }
.why-card h3 { font-size: 1.45rem; margin-bottom: 12px; font-weight: 600; }
.why-card p { color: var(--muted); font-size: 0.98rem; font-weight: 300; }

/* ===== Stats Bar ===== */
.stats-bar { background: var(--dark-grad); color: var(--white); padding: 80px 0; position: relative; overflow: hidden; }
.stats-bar::before { content: ''; position: absolute; top: -50%; left: -10%; width: 40%; height: 200%; background: rgba(184,148,74,0.1); transform: rotate(20deg); }
.stats-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; position: relative; }
.stats-bar .stat { position: relative; padding: 10px 0; }
.stats-bar .stat::after { content: ''; position: absolute; right: -15px; top: 50%; transform: translateY(-50%); width: 1px; height: 70px; background: linear-gradient(to bottom, transparent, rgba(212, 175, 106, 0.35), transparent); }
.stats-bar .stat:last-child::after { display: none; }
.stats-bar .stat h3 { font-size: 3.6rem; color: var(--white); font-weight: 800; letter-spacing: -1px; }
.stats-bar .stat h3 .counter { background: var(--gold-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stats-bar .stat p { color: rgba(255,255,255,0.8); letter-spacing: 0.6px; margin-top: 8px; font-size: 0.96rem; font-weight: 300; }

/* ===== Properties ===== */
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.prop-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.5s cubic-bezier(0.22,1,0.36,1); border: 1px solid var(--border);
}
.prop-card:hover { transform: translateY(-14px) scale(1.01); box-shadow: var(--shadow-xl); border-color: rgba(184, 148, 74, 0.5); }
.prop-media { position: relative; height: 250px; overflow: hidden; }
.prop-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.prop-card:hover .prop-media img { transform: scale(1.14); }
.prop-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,21,37,0.5), transparent 55%); }
.prop-tag {
  position: absolute; top: 18px; left: 18px; background: var(--gold-grad); color: #1a1205;
  padding: 7px 18px; border-radius: 34px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.7px; z-index: 2;
  box-shadow: 0 4px 14px rgba(184, 148, 74, 0.35);
}
.prop-fav { position: absolute; top: 18px; right: 18px; background: rgba(255,255,255,0.94); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-deep); z-index: 2; transition: all 0.3s; cursor: pointer; }
.prop-fav:hover { background: var(--white); transform: scale(1.12) rotate(8deg); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }
.prop-body { padding: 28px; }
.prop-body h3 { font-size: 1.45rem; margin-bottom: 8px; font-weight: 600; }
.prop-loc { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; font-weight: 300; }
.prop-feat { display: flex; gap: 20px; margin-bottom: 22px; font-size: 0.86rem; color: var(--muted); flex-wrap: wrap; font-weight: 300; }
.prop-feat span { display: flex; align-items: center; gap: 7px; }
.prop-feat i { color: var(--gold-deep); }
.prop-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 22px; }
.prop-price { font-size: 1.5rem; font-weight: 700; background: var(--gold-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-family: 'Poppins', sans-serif; }
.btn-details { border: 1.5px solid var(--gold); color: var(--gold-deep); padding: 10px 24px; border-radius: 32px; font-size: 0.86rem; font-weight: 600; transition: all 0.3s; }
.btn-details:hover { background: var(--gold-grad); color: #1a1205; border-color: transparent; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(184,148,74,0.35); }

/* ===== Videos ===== */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.video-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.5s cubic-bezier(0.22,1,0.36,1); border: 1px solid var(--border); }
.video-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-xl); border-color: rgba(184, 148, 74, 0.45); }
.video-thumb { position: relative; height: 220px; overflow: hidden; cursor: pointer; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.video-card:hover .video-thumb img { transform: scale(1.15); }
.play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(10,21,37,0.32); transition: all 0.4s ease; }
.video-card:hover .play-btn { background: rgba(184, 148, 74, 0.45); }
.play-btn i { font-size: 3.6rem; color: var(--white); opacity: 0.95; transition: all 0.4s ease; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
.video-card:hover .play-btn i { transform: scale(1.15); filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4)); }
.video-dur { position: absolute; bottom: 16px; right: 16px; background: rgba(0,0,0,0.82); color: var(--white); padding: 5px 14px; border-radius: 8px; font-size: 0.8rem; font-weight: 600; backdrop-filter: blur(6px); }
.video-body { padding: 24px 26px; }
.video-body h3 { font-size: 1.28rem; margin-bottom: 6px; font-weight: 600; }
.video-body p { color: var(--muted); font-size: 0.94rem; font-weight: 300; }
.video-meta { display: flex; align-items: center; gap: 10px; margin-top: 14px; color: var(--gold-deep); font-size: 0.84rem; font-weight: 600; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 60px; }
.contact-info h2 { font-size: 2.5rem; margin-bottom: 18px; letter-spacing: -0.7px; font-weight: 700; }
.contact-info p { color: var(--muted); margin-bottom: 32px; font-weight: 300; }
.contact-item { display: flex; gap: 20px; margin-bottom: 26px; }
.contact-item .ci-icon { width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(135deg, rgba(212, 175, 106, 0.24), rgba(184, 148, 74, 0.12)); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; box-shadow: 0 6px 16px rgba(184, 148, 74, 0.15); }
.contact-item h4 { font-size: 1.08rem; margin-bottom: 4px; font-weight: 600; }
.contact-item p { color: var(--muted); margin: 0; font-size: 0.98rem; font-weight: 300; }
.contact-form { background: var(--white); padding: 48px; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 15px 20px; border: 1px solid var(--border); border-radius: 14px; font-size: 0.96rem; font-family: 'Poppins', sans-serif; background: var(--cream); transition: all 0.35s ease; font-weight: 300; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 5px rgba(184, 148, 74, 0.14); }
.contact-form textarea { resize: vertical; }
.form-note { font-size: 0.84rem; color: var(--muted); margin-top: 16px; text-align: center; font-weight: 300; }

/* ===== Testimonials ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testi-card { background: var(--white); border-radius: var(--radius); padding: 44px 36px; box-shadow: var(--shadow); border: 1px solid var(--border); position: relative; transition: all 0.5s cubic-bezier(0.22,1,0.36,1); }
.testi-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: rgba(184, 148, 74, 0.4); }
.testi-card .quote { font-size: 3.2rem; background: var(--gold-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-family: 'Poppins', sans-serif; line-height: 1; margin-bottom: 14px; font-weight: 800; }
.testi-card p { color: var(--muted); font-size: 1rem; margin-bottom: 24px; font-weight: 300; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-author .avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--dark-grad); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Poppins', sans-serif; font-size: 1.1rem; box-shadow: 0 6px 18px rgba(10, 21, 37, 0.25); }
.testi-author h4 { font-size: 1.05rem; margin-bottom: 3px; font-weight: 600; }
.testi-author span { font-size: 0.84rem; color: var(--muted); font-weight: 300; }

/* ===== CTA ===== */
.cta {
  background: var(--dark-grad); border-radius: 32px; padding: 80px 70px; text-align: center; color: var(--white); position: relative; overflow: hidden;
  box-shadow: 0 40px 100px rgba(10, 21, 37, 0.3);
}
.cta::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gold-grad); }
.cta::after { content: ''; position: absolute; bottom: -60%; right: -10%; width: 50%; height: 200%; background: rgba(184,148,74,0.1); transform: rotate(20deg); }
.cta .eyebrow { background: var(--gold-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; font-size: 0.78rem; display: inline-block; margin-bottom: 18px; }
.cta h2 { font-size: 2.8rem; color: var(--white); margin-bottom: 18px; font-weight: 800; letter-spacing: -0.7px; }
.cta p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; max-width: 620px; margin-left: auto; margin-right: auto; font-weight: 300; }
.cta .hero-actions { justify-content: center; }
.cta .btn-outline { border-color: rgba(255,255,255,0.7); }

/* ===== Footer ===== */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.6); padding: 90px 0 30px; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gold-grad); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 60px; }
.footer-brand .brand { margin-bottom: 22px; }
.footer-brand p { font-size: 0.96rem; line-height: 1.9; color: rgba(255,255,255,0.55); max-width: 320px; font-weight: 300; }
.footer h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 24px; font-weight: 600; letter-spacing: 0.5px; position: relative; padding-bottom: 14px; }
.footer h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--gold-grad); }
.footer-links li { margin-bottom: 14px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.94rem; transition: all 0.3s; font-weight: 300; }
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact li { display: flex; gap: 14px; margin-bottom: 16px; font-size: 0.92rem; color: rgba(255,255,255,0.6); font-weight: 300; align-items: flex-start; }
.footer-contact i { color: var(--gold-light); margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; text-align: center; font-size: 0.9rem; color: rgba(255,255,255,0.45); font-weight: 300; }
.footer-social { display: flex; gap: 14px; margin-top: 22px; }
.footer-social a { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--white); transition: all 0.4s ease; border: 1px solid rgba(255,255,255,0.12); }
.footer-social a:hover { background: var(--gold-grad); color: #1a1205; transform: translateY(-5px); box-shadow: 0 10px 28px rgba(184, 148, 74, 0.5); border-color: transparent; }

/* ===== WhatsApp Sticky Button ===== */
.whatsapp-float {
  position: fixed; right: 28px; bottom: 28px; z-index: 1500;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; box-shadow: 0 14px 36px rgba(37,211,102,0.5);
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.whatsapp-float:hover { transform: translateY(-5px) scale(1.08); box-shadow: 0 20px 46px rgba(37,211,102,0.65); color: #fff; }
.whatsapp-float::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: waPulse 2s infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.6); opacity: 0; } }

/* ===== Animations ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; }
.reveal.in { animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) forwards; }

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-grid, .prop-grid, .video-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .stat::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-layout { max-width: 100%; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero h1 { font-size: 3rem; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-scroll-indicator { display: none; }
  .container { padding: 0 32px; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav { position: absolute; top: 92px; left: 0; width: 100%; background: rgba(6, 13, 24, 0.98); flex-direction: column; align-items: stretch; gap: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; backdrop-filter: blur(24px); }
  .nav.open { max-height: 450px; }
  .nav a { padding: 18px 32px; border-radius: 0; }
  .nav a::after { display: none; }
  .nav a.btn-cta { margin: 14px 32px; text-align: center; }
  .hamburger { display: block; }
  .hero { padding-top: 92px; min-height: auto; padding-bottom: 50px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; }
  .hero-stats { flex-direction: column; gap: 18px; padding: 22px 0; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0; }
  .why-grid, .prop-grid, .video-grid, .testi-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section-head h2, .page-banner h1, .cta h2 { font-size: 2.2rem; }
  .cta { padding: 56px 30px; }
  .contact-form { padding: 34px 24px; }
  .whatsapp-float { width: 56px; height: 56px; font-size: 1.75rem; right: 20px; bottom: 20px; }
  .container { padding: 0 24px; }
}

/* ===== Premium Texture Overlay ===== */
.section, .section-alt, .stats-bar, .cta { position: relative; }
.section::before, .section-alt::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px 200px;
}

/* ===== Selection ===== */
::selection { background: rgba(184, 148, 74, 0.3); color: var(--ink); }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }