/* ==========================================================================
   Naeem Azmir — Real Estate Research Specialist
   Brand: Navy Blue (#1B4B8C) + Coral (#FF6461), dark modern theme
   ========================================================================== */

:root {
  /* Brand */
  --navy-950: #050912;
  --navy-900: #0a1424;
  --navy-850: #0d1b30;
  --navy-800: #10233c;
  --navy-700: #163049;
  --navy-600: #1b4b8c;
  --navy-500: #2563b0;
  --navy-400: #4a86d4;
  --coral-600: #e8504e;
  --coral-500: #ff6461;
  --coral-400: #ff8b79;
  --coral-glow: rgba(255, 100, 97, 0.35);
  --blue-glow: rgba(37, 99, 176, 0.35);

  /* Neutrals */
  --white: #ffffff;
  --gray-100: #f3f6fb;
  --gray-200: #dbe2ee;
  --gray-300: #b6c1d6;
  --gray-400: #8a97b3;
  --gray-500: #6b7794;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --card-bg: rgba(255, 255, 255, 0.035);
  --card-bg-hover: rgba(255, 255, 255, 0.06);

  /* Type */
  --font-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-950);
  color: var(--gray-100);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section { position: relative; }

/* Background ambience — soft brand glows over a faint blueprint grid,
   evoking property surveys/floor plans rather than a plain dark canvas */
body {
  background-image:
    radial-gradient(700px 500px at 85% -5%, var(--coral-glow), transparent 60%),
    radial-gradient(900px 600px at -10% 20%, var(--blue-glow), transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, var(--navy-950), var(--navy-950));
  background-size: auto, auto, 46px 46px, 46px 46px, auto;
  background-repeat: no-repeat, no-repeat, repeat, repeat, no-repeat;
  background-attachment: fixed;
}

/* ---------- Decorative background shapes ---------- */
.shape-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.shape {
  position: absolute;
}
.shape-ring {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.shape-ring.accent { border-color: rgba(255, 100, 97, 0.22); }
.shape-square {
  border: 1px solid rgba(74, 134, 212, 0.22);
  border-radius: 14px;
}
.shape-square.accent { border-color: rgba(255, 100, 97, 0.25); }
.shape-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--coral-500);
  opacity: 0.55;
}
.shape-dot.blue { background: var(--navy-400); }
.shape-plus {
  width: 18px; height: 18px;
  opacity: 0.35;
}
.shape-plus::before, .shape-plus::after {
  content: '';
  position: absolute;
  background: var(--gray-300);
}
.shape-plus::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.shape-plus::after { left: 50%; top: 0; height: 100%; width: 1px; transform: translateX(-50%); }
.shape-dashed {
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
}
.skyline { position: absolute; opacity: 0.5; }
.skyline path, .skyline rect { stroke: rgba(255, 255, 255, 0.1); stroke-width: 1.5; fill: none; }
.skyline .accent-line { stroke: rgba(255, 100, 97, 0.3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(255, 100, 97, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(255, 100, 97, 0.7); }
.btn-glow { animation: btnGlow 2.6s ease-in-out infinite; }
.btn-glow:hover { animation-play-state: paused; }
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 8px 24px -8px rgba(255, 100, 97, 0.55); }
  50% { box-shadow: 0 8px 40px -2px rgba(255, 100, 97, 0.9); }
}
.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  border-color: var(--border-strong);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ---------- Header / Nav (floating pill, detached from the edge) ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 24px 0;
  transition: padding 0.3s var(--ease);
}
.site-header.scrolled { padding-top: 12px; }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: rgba(10, 16, 28, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 10px 12px 10px 26px;
  box-shadow: 0 16px 36px -18px rgba(0,0,0,0.65);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled .container {
  background: rgba(7, 12, 21, 0.88);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 44px -18px rgba(0,0,0,0.75);
}

.brand { display: flex; align-items: center; }
.brand img { height: 40px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-200);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--coral-500), var(--navy-400));
  transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn { padding: 11px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 168px 0 120px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.hero-byline {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 16px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral-400);
  background: rgba(255, 100, 97, 0.1);
  border: 1px solid rgba(255, 100, 97, 0.25);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--coral-500);
  box-shadow: 0 0 0 4px rgba(255,100,97,0.25);
  animation: dotPulse 2.2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,100,97,0.25); }
  50% { box-shadow: 0 0 0 9px rgba(255,100,97,0.12); }
}

.hero h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--coral-400), var(--navy-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1.08rem;
  color: var(--gray-300);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero photo — large frame with two badges peeking over its edges */
.hero-photo-wrap { position: relative; }
.hero-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  aspect-ratio: 4 / 4.6;
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.6);
  transition: transform .2s ease-out;
}
.hero-photo-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  filter: saturate(1.05) contrast(1.02);
}
.hero-photo-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-photo-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5,9,18,0.75) 100%);
}
.hero-float {
  position: absolute;
  z-index: 3;
  background: rgba(9, 14, 24, 0.92);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 16px 34px -16px rgba(0,0,0,0.65);
}
.hero-float--top { top: -18px; left: 24px; display: flex; flex-direction: column; }
.hero-float--bottom { bottom: -18px; right: 24px; display: flex; align-items: center; gap: 10px; }
.hero-float-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-400); }
.hero-float-value { font-size: 0.92rem; color: var(--white); font-weight: 700; display: block; margin-top: 2px; }
.status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #34d399; flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(52,211,153,0.22);
  animation: dotPulse 2.2s ease-in-out infinite;
}

.hero-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-pill {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  transition: transform .2s ease-out;
}
.stat-pill.accent {
  background: linear-gradient(160deg, var(--coral-500), var(--navy-700));
  border-color: transparent;
}
.stat-pill .num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-pill .label { font-size: 0.82rem; color: var(--gray-300); margin-top: 8px; display: block; }
.stat-pill.accent .label { color: rgba(255,255,255,0.85); }

/* ---------- Section shared ---------- */
.section { padding: 110px 0; }
.section-tight { padding: 90px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin: 14px 0 16px; }
.section-head p { color: var(--gray-300); font-size: 1.02rem; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-400);
}
.tag::before { content: ''; width: 22px; height: 2px; background: var(--coral-500); display: inline-block; border-radius: 2px; }

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02) 15%, rgba(255,255,255,0.02) 85%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-visual-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform .2s ease-out;
}
.about-visual-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(320px 220px at 15% 10%, var(--coral-glow), transparent 70%);
}
.about-visual-icon {
  position: relative; z-index: 1;
  width: 88px; height: 88px;
  border-radius: 22px;
  background: #fff;
  padding: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px -10px rgba(255, 100, 97, 0.5), 0 0 0 1px rgba(255,255,255,0.06);
}
.about-visual-icon img { width: 100%; height: 100%; object-fit: contain; }
.about-visual-metric { position: relative; z-index: 1; display: flex; align-items: baseline; gap: 8px; }
.about-visual-metric .num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, var(--white), var(--gray-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about-visual-metric .unit { font-size: 1.1rem; color: var(--gray-300); font-weight: 600; }
.about-visual-role { position: relative; z-index: 1; color: var(--gray-300); font-size: 0.95rem; margin-top: 12px; }
.about-visual-divider {
  position: relative; z-index: 1;
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--coral-500), var(--navy-400));
  margin: 26px 0;
  border-radius: 2px;
}
.about-visual-tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.about-visual-tags li {
  font-size: 0.78rem; font-weight: 600; color: var(--gray-200);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}
.about-copy p { color: var(--gray-300); margin-bottom: 18px; font-size: 1.02rem; }
.about-copy strong { color: var(--white); }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.stat-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: border-color .25s, transform .25s var(--ease);
}
.stat-box:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.stat-box .stat-num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--white), var(--gray-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-box .stat-label { font-size: 0.82rem; color: var(--gray-400); margin-top: 6px; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(255,100,97,0.35); background: var(--card-bg-hover); }
.service-card:hover .icon { box-shadow: 0 0 0 1px rgba(255,100,97,0.3), 0 0 28px -4px rgba(255,100,97,0.55); }
.service-card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  border: 1px solid var(--border-strong);
  margin-bottom: 22px;
}
.service-card .icon svg { width: 24px; height: 24px; stroke: var(--coral-400); }
.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.service-card p { color: var(--gray-400); font-size: 0.92rem; }

/* ---------- Why choose me ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-item {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.why-item .n {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--coral-400);
}
.why-item h4 { font-size: 1rem; color: var(--white); }

/* ---------- Experience ---------- */
.experience-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.experience-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--coral-500), var(--navy-600));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.experience-icon svg { width: 28px; height: 28px; stroke: #fff; }
.experience-role { font-size: 1.25rem; color: var(--white); margin-bottom: 6px; }
.experience-meta { color: var(--coral-400); font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; }
.experience-list { display: grid; gap: 10px; }
.experience-list li { color: var(--gray-300); font-size: 0.96rem; padding-left: 22px; position: relative; }
.experience-list li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--coral-500);
  transform: rotate(45deg);
}

/* ---------- Portfolio ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}
.portfolio-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.portfolio-body { padding: 30px; }
.portfolio-body .tag-pill {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--coral-400);
  background: rgba(255,100,97,0.1);
  border: 1px solid rgba(255,100,97,0.25);
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 14px;
}
.portfolio-body h3 { font-size: 1.08rem; margin-bottom: 10px; }
.portfolio-body p { color: var(--gray-400); font-size: 0.9rem; }

/* ---------- Testimonials (sliding carousel) ---------- */
.testimonial-carousel-wrap { display: flex; align-items: center; gap: 16px; }
.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars .star { width: 16px; height: 16px; fill: var(--coral-400); }
.testimonial-card p { color: var(--gray-200); font-size: 1rem; font-style: italic; flex-grow: 1; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-person .name { font-size: 0.9rem; color: var(--white); font-weight: 600; }
.testimonial-person .role { font-size: 0.78rem; color: var(--gray-500); }

.carousel-arrow {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border-strong);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.carousel-arrow:hover { background: var(--card-bg-hover); border-color: var(--coral-500); transform: translateY(-2px); }
.carousel-arrow svg { width: 20px; height: 20px; stroke: currentColor; }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.carousel-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  border: none; padding: 0;
  cursor: pointer;
  transition: background .2s, width .2s, border-radius .2s;
}
.carousel-dots button.active { background: var(--coral-500); width: 22px; border-radius: 4px; }

.video-testimonials { margin-top: 64px; }
.video-testimonials-head { text-align: center; margin-bottom: 32px; }
.video-testimonials-head h3 { font-size: 1.5rem; margin-top: 12px; }
.video-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.video-testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s, transform .25s var(--ease);
}
.video-testimonial-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.video-testimonial-card video { width: 100%; max-height: 420px; display: block; background: #000; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info h2 { font-size: clamp(1.9rem, 3vw, 2.4rem); margin-bottom: 6px; }
.contact-info > p { color: var(--gray-300); margin-bottom: 12px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: border-color .25s, transform .25s var(--ease);
}
.contact-method:hover { border-color: var(--border-strong); transform: translateX(4px); }
.contact-method .icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  display: flex; align-items: center; justify-content: center;
}
.contact-method .icon svg { width: 20px; height: 20px; fill: var(--coral-400); }
.contact-method .label { font-size: 0.78rem; color: var(--gray-500); }
.contact-method .value { font-size: 0.98rem; color: var(--white); font-weight: 600; word-break: break-word; }

.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; color: var(--gray-300); font-weight: 500; }
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color .2s, background .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral-500);
  background: rgba(255,255,255,0.06);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(52, 199, 89, 0.12); border: 1px solid rgba(52,199,89,0.35); color: #6fdb92; }
.form-status.error { background: rgba(255, 69, 58, 0.12); border: 1px solid rgba(255,69,58,0.35); color: #ff8f88; }

/* ---------- Footer CTA band ---------- */
.footer-cta { padding: 0 0 100px; }
.footer-cta-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900) 70%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
}
.footer-cta-content { position: relative; z-index: 1; max-width: 560px; }
.footer-cta-content h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 12px 0 12px; }
.footer-cta-content p { color: var(--gray-300); }
.footer-cta-card > .btn { position: relative; z-index: 1; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
  background: #000000;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 34px; margin-bottom: 18px; }
.footer-brand p { color: var(--gray-400); font-size: 0.92rem; max-width: 360px; }
.footer-stats { display: flex; gap: 28px; margin-top: 24px; }
.footer-stats div { display: flex; flex-direction: column; }
.footer-stats strong {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}
.footer-stats span { font-size: 0.76rem; color: var(--gray-500); margin-top: 2px; }
.footer-col h5 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-300); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--gray-400); font-size: 0.92rem; transition: color .2s; }
.footer-col a:hover { color: var(--coral-400); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--gray-500); font-size: 0.85rem; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s, transform .2s;
}
.socials a:hover { border-color: var(--coral-500); background: rgba(255,100,97,0.1); transform: translateY(-3px); }
.socials svg { width: 16px; height: 16px; stroke: var(--gray-200); }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-500), var(--navy-600));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s;
  z-index: 900;
  border: none; cursor: pointer;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; stroke: #fff; }

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  left: 24px; bottom: 24px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -6px rgba(37, 211, 102, 0.55);
  z-index: 900;
  transition: transform .2s;
  animation: waPulse 2.6s ease-in-out infinite;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.06); }
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 26px -6px rgba(37, 211, 102, 0.55); }
  50% { box-shadow: 0 10px 34px -2px rgba(37, 211, 102, 0.85); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-wrap { max-width: 420px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual-card { max-width: 380px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { flex-basis: 300px; }
  .video-testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-cta-card { padding: 44px; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--navy-900);
    border-left: 1px solid var(--border);
    padding: 100px 32px 32px;
    gap: 26px;
    z-index: 1050;
    align-items: flex-start;
  }

  .hero { padding: 130px 0 80px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stat-row { grid-template-columns: 1fr; gap: 12px; }
  .hero-float { padding: 10px 14px; }
  .hero-float--top { top: -14px; left: 16px; }
  .hero-float--bottom { bottom: -14px; right: 16px; }
  .hero-float-value { font-size: 0.85rem; }

  .stat-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-box { padding: 16px 10px; }
  .stat-box .stat-num { font-size: 1.4rem; }

  .services-grid, .why-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex-basis: 82vw; }
  .video-testimonial-grid { grid-template-columns: 1fr; }
  .experience-card { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-cta { padding-bottom: 70px; }
  .footer-cta-card { flex-direction: column; align-items: flex-start; padding: 36px 28px; }
  .footer-cta-card .btn { width: 100%; justify-content: center; }
  .footer-stats { gap: 20px; }
  .section { padding: 76px 0; }
}
