/* ═══════════════════════════════════════════════
   FUENTES CONSTRUCTION — Navy & White Theme
   ═══════════════════════════════════════════════ */

:root {
  /* Navy Blue Palette */
  --navy-900: #0a1628;
  --navy-800: #0f2044;
  --navy-700: #142a58;
  --navy-600: #1a3470;
  --navy-500: #1e3d82;
  --navy-400: #2d56b8;
  --navy-300: #4a72cc;
  --navy-100: #d6e4ff;
  --navy-50:  #eef3ff;

  /* Accent — Gold for premium feel */
  --gold: #c9922a;
  --gold-light: #e8b84b;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #f1f3f8;
  --gray-200: #e2e6f0;
  --gray-300: #c8cfe0;
  --gray-500: #7a88a8;
  --gray-700: #3d4d6b;
  --gray-900: #1a2438;

  /* Semantic */
  --color-bg: var(--white);
  --color-text: var(--navy-900);
  --color-primary: var(--navy-700);
  --color-primary-hover: var(--navy-800);
  --color-accent: var(--gold);

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  /* Scale */
  --text-xs:   clamp(0.75rem,  0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw,   1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem + 2.5vw,  3.5rem);
  --text-hero: clamp(2.75rem,  1rem + 5vw,      5.5rem);

  /* Space */
  --space-1: 0.25rem; --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4: 1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;   --space-20: 5rem;   --space-24: 6rem;

  --radius-sm: 0.375rem; --radius-md: 0.5rem;
  --radius-lg: 0.75rem;  --radius-xl: 1.25rem;

  --shadow-sm: 0 1px 3px rgba(10,22,40,0.08);
  --shadow-md: 0 4px 16px rgba(10,22,40,0.12);
  --shadow-lg: 0 12px 40px rgba(10,22,40,0.18);
  --shadow-xl: 0 24px 64px rgba(10,22,40,0.22);

  --content-default: 1160px;
  --transition: 200ms cubic-bezier(0.16,1,0.3,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
img, video { display: block; max-width: 100%; height: auto; }
ul[role="list"] { list-style: none; }
h1,h2,h3,h4,h5 { text-wrap: balance; line-height: 1.2; }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: color-mix(in oklab, var(--navy-700) 20%, transparent); }
:focus-visible { outline: 2px solid var(--navy-400); outline-offset: 3px; border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } }

/* ── Container ── */
.container { width: 100%; max-width: var(--content-default); margin-inline: auto; padding-inline: clamp(var(--space-5), 5vw, var(--space-10)); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--navy-700); color: var(--white);
  box-shadow: 0 2px 8px rgba(20,42,88,0.35);
}
.btn-primary:hover { background: var(--navy-800); box-shadow: 0 4px 16px rgba(20,42,88,0.45); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline {
  background: transparent; color: var(--navy-700);
  border: 2px solid var(--navy-700);
}
.btn-outline:hover { background: var(--navy-700); color: var(--white); }
.btn-lg { padding: 1rem 2.25rem; font-size: var(--text-base); }
.btn-full { width: 100%; justify-content: center; }

/* ── Eyebrows & Section Headers ── */
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy-400);
  margin-bottom: var(--space-3);
}
.eyebrow--gold { color: var(--gold-light); }
.section-header { text-align: center; margin-bottom: clamp(var(--space-10), 5vw, var(--space-16)); }
.section-header h2 {
  font-family: var(--font-display); font-size: var(--text-2xl);
  color: var(--navy-900); margin-bottom: var(--space-4);
}
.section-header--light h2 { color: var(--white); }
.section-intro { color: var(--gray-700); font-size: var(--text-base); max-width: 58ch; margin-inline: auto; }
.section-intro--light { color: rgba(255,255,255,0.75); }
.section { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); }

/* ════════════════════════════════
   TOP BAR
════════════════════════════════ */
.topbar {
  background: var(--navy-900); color: rgba(255,255,255,0.8);
  font-size: var(--text-xs); font-weight: 500;
  padding-block: var(--space-2);
}
.topbar-inner {
  max-width: var(--content-default); margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-10));
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
}
.topbar-phone { color: var(--gold-light); font-weight: 700; transition: color var(--transition); }
.topbar-phone:hover { color: var(--white); }

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-800);
  box-shadow: 0 2px 16px rgba(10,22,40,0.25);
  transition: box-shadow var(--transition);
}
.nav-inner {
  max-width: var(--content-default); margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-10));
  padding-block: var(--space-3);
  display: flex; align-items: center; gap: var(--space-6);
}
.logo-link { flex-shrink: 0; }
.logo-img { height: 72px; width: auto; object-fit: contain; }
.nav-links {
  display: flex; gap: var(--space-2); margin-left: auto; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.82); font-size: var(--text-sm); font-weight: 500;
  padding: var(--space-2) var(--space-3); border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta { margin-left: var(--space-2); background: var(--gold); color: var(--navy-900); font-weight: 700; }
.nav-cta:hover { background: var(--gold-light); box-shadow: 0 4px 14px rgba(201,146,42,0.4); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: var(--space-2); border-radius: var(--radius-sm); transition: background var(--transition); margin-left: auto; }
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--navy-900); padding: 6rem var(--space-6) var(--space-6);
  display: none; flex-direction: column; align-items: flex-start;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav ul { list-style: none; width: 100%; }
.mobile-nav li + li { margin-top: var(--space-2); }
.mobile-link {
  display: block; color: var(--white); font-size: var(--text-xl);
  font-family: var(--font-display); padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--gold-light); }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(9,18,36,0.88) 0%, rgba(14,32,68,0.72) 55%, rgba(20,42,88,0.45) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--content-default); margin-inline: auto;
  padding: clamp(var(--space-10), 8vw, var(--space-20)) clamp(var(--space-5), 5vw, var(--space-10));
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: var(--space-4);
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--gold-light); }
.hero-headline {
  font-family: var(--font-display); font-size: var(--text-hero); font-weight: 800;
  color: var(--white); line-height: 1.05; margin-bottom: var(--space-6);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  max-width: 12ch;
}
.hero-sub {
  color: rgba(255,255,255,0.85); font-size: var(--text-lg); max-width: 50ch;
  margin-bottom: var(--space-8); font-weight: 400; line-height: 1.55;
}
.hero-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-12); }
.hero-stats {
  display: flex; align-items: center; gap: var(--space-5); flex-wrap: nowrap;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); padding: var(--space-4) var(--space-5);
  width: 100%; max-width: 100%; box-sizing: border-box;
}
.stat { text-align: center; flex: 1; min-width: 0; }
.stat-num { display: block; font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--white); line-height: 1; }
.stat-label { display: block; font-size: var(--text-xs); color: rgba(255,255,255,0.7); margin-top: var(--space-1); white-space: nowrap; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* ════════════════════════════════
   TRUST BAR
════════════════════════════════ */
.trust-bar {
  background: var(--navy-700); padding-block: var(--space-5);
  border-bottom: 3px solid var(--gold);
}
.trust-inner {
  max-width: var(--content-default); margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-10));
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-6); flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: var(--space-2); color: var(--white); font-size: var(--text-sm); font-weight: 500; white-space: nowrap; }
.trust-item svg { color: var(--gold-light); flex-shrink: 0; }
.trust-div { width: 1px; height: 20px; background: rgba(255,255,255,0.2); }

/* ════════════════════════════════
   SERVICES
════════════════════════════════ */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}
.service-card {
  background: var(--white); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.service-img-wrap { position: relative; height: 240px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-tag {
  position: absolute; top: var(--space-4); left: var(--space-4);
  background: var(--navy-700); color: var(--white);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: var(--space-1) var(--space-3); border-radius: var(--radius-full);
}
.service-body { padding: var(--space-6); flex: 1; display: flex; flex-direction: column; }
.service-body h3 { font-family: var(--font-display); font-size: var(--text-lg); color: var(--navy-900); margin-bottom: var(--space-3); }
.service-body p { color: var(--gray-700); margin-bottom: var(--space-4); }
.service-list { list-style: none; margin-bottom: var(--space-6); flex: 1; }
.service-list li {
  font-size: var(--text-sm); color: var(--gray-700); padding: var(--space-2) 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; gap: var(--space-2);
}
.service-list li::before { content: '✓'; color: var(--navy-500); font-weight: 700; flex-shrink: 0; }

/* ════════════════════════════════
   OUR WORK / PORTFOLIO
════════════════════════════════ */
.work-section { background: var(--navy-900); }
.work-section .section-header h2 { color: var(--white); }

.work-filters {
  display: flex; gap: var(--space-2); flex-wrap: wrap; justify-content: center;
  margin-bottom: var(--space-10);
}
.filter-btn {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 600;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--transition);
}
.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
.filter-btn.active { background: var(--gold); color: var(--navy-900); border-color: var(--gold); box-shadow: 0 2px 12px rgba(201,146,42,0.4); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: var(--space-4);
}
.work-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.work-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}
.work-img-wrap { width: 100%; height: 100%; }
.work-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.work-card:hover .work-img-wrap img { transform: scale(1.06); }

.work-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,18,36,0.9) 0%, rgba(9,18,36,0.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-5);
  opacity: 0; transition: opacity var(--transition);
}
.work-card:hover .work-overlay { opacity: 1; }
.work-cat {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: var(--space-1);
}
.work-overlay h3 { font-family: var(--font-display); color: var(--white); font-size: var(--text-lg); margin-bottom: var(--space-1); }
.work-overlay p { color: rgba(255,255,255,0.7); font-size: var(--text-xs); }

/* Upload Placeholder Slots */
.work-card--upload {
  border: 2px dashed rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), background var(--transition);
}
.work-card--upload:hover { border-color: rgba(201,146,42,0.5); background: rgba(201,146,42,0.04); }
.work-upload-slot {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-2); padding: var(--space-4); text-align: center;
  color: rgba(255,255,255,0.35);
}
.work-upload-slot svg { opacity: 0.5; }
.work-upload-slot p { font-size: var(--text-sm); font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 0; }
.work-upload-slot span { font-size: var(--text-xs); color: rgba(255,255,255,0.3); max-width: 16ch; line-height: 1.4; }

.work-cta {
  text-align: center; margin-top: var(--space-12);
  display: flex; flex-direction: column; align-items: center; gap: var(--space-4);
}
.work-cta p { color: rgba(255,255,255,0.7); font-size: var(--text-base); }

/* Empty project slots */
.work-card--empty {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.work-empty-slot {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  padding: var(--space-5);
}
.work-empty-slot h3 { font-family: var(--font-display); color: rgba(255,255,255,0.5); font-size: var(--text-lg); margin-bottom: var(--space-1); }
.work-empty-slot p { color: rgba(255,255,255,0.3); font-size: var(--text-xs); margin: 0; }

/* Hidden cards for filter */
.work-card.hidden { display: none; }

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.about-section { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-16));
  align-items: center;
}
.about-img-stack { position: relative; }
.about-img-main {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3; object-fit: cover;
}
.about-badge {
  position: absolute; bottom: -var(--space-6); right: -var(--space-6);
  background: var(--navy-700); color: var(--white);
  border-radius: var(--radius-xl); padding: var(--space-5) var(--space-6);
  text-align: center; box-shadow: var(--shadow-lg);
  bottom: -1.5rem; right: -1.5rem;
}
.badge-num { display: block; font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 800; color: var(--gold-light); line-height: 1; }
.badge-text { display: block; font-size: var(--text-xs); color: rgba(255,255,255,0.8); margin-top: var(--space-1); line-height: 1.4; }
.about-text-col .eyebrow { margin-bottom: var(--space-3); }
.about-text-col h2 { font-family: var(--font-display); font-size: var(--text-2xl); color: var(--navy-900); margin-bottom: var(--space-5); }
.about-text-col p { color: var(--gray-700); margin-bottom: var(--space-4); }
.about-values { display: flex; flex-direction: column; gap: var(--space-4); margin-block: var(--space-6); }
.value-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.value-icon {
  width: 42px; height: 42px; border-radius: var(--radius-md);
  background: var(--navy-50); color: var(--navy-700);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.value-item strong { display: block; color: var(--navy-900); font-weight: 600; margin-bottom: var(--space-1); }
.value-item p { color: var(--gray-700); font-size: var(--text-sm); margin: 0; }

/* ════════════════════════════════
   WHY US
════════════════════════════════ */
.why-section { background: var(--navy-800); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl); padding: var(--space-8);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,146,42,0.3); transform: translateY(-4px); }
.why-num { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 800; color: rgba(201,146,42,0.25); line-height: 1; margin-bottom: var(--space-4); }
.why-card h3 { font-size: var(--text-lg); color: var(--white); font-weight: 600; margin-bottom: var(--space-3); }
.why-card p { color: rgba(255,255,255,0.65); font-size: var(--text-sm); }

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testimonials-section { background: var(--gray-100); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: var(--space-8); box-shadow: var(--shadow-md);
  border-top: 4px solid var(--navy-700);
  display: flex; flex-direction: column; gap: var(--space-5);
}
.stars { color: var(--gold); font-size: var(--text-base); letter-spacing: 2px; }
.testimonial-card > p { color: var(--gray-700); font-style: italic; line-height: 1.7; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-700); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--navy-900); font-weight: 700; font-size: var(--text-sm); }
.testimonial-author span { display: block; color: var(--gray-500); font-size: var(--text-xs); }

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.contact-section { background: var(--navy-900); overflow: hidden; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(var(--space-10), 6vw, var(--space-16));
  align-items: start;
}
.contact-info .eyebrow { margin-bottom: var(--space-3); }
.contact-info h2 { font-family: var(--font-display); font-size: var(--text-2xl); color: var(--white); margin-bottom: var(--space-5); }
.contact-info > p { color: rgba(255,255,255,0.7); margin-bottom: var(--space-8); }
.contact-details { display: flex; flex-direction: column; gap: var(--space-4); }
.contact-item {
  display: flex; gap: var(--space-4); align-items: flex-start;
  text-decoration: none; transition: opacity var(--transition);
}
.contact-item:hover { opacity: 0.85; }
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-label { display: block; font-size: var(--text-xs); color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-1); }
.contact-item strong { display: block; color: var(--white); font-size: var(--text-base); }

/* Form */
.contact-form {
  background: var(--white); border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-xl);
  min-width: 0; width: 100%; box-sizing: border-box;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); }
.form-group label { font-size: var(--text-sm); font-weight: 600; color: var(--navy-900); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; max-width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-300); border-radius: var(--radius-md);
  font-size: var(--text-sm); background: var(--white); color: var(--gray-900);
  transition: border-color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--navy-500);
  box-shadow: 0 0 0 3px rgba(26,52,112,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: flex; align-items: center; gap: var(--space-3);
  background: #e8f5e9; border-radius: var(--radius-md); padding: var(--space-4);
  color: #2e7d32; margin-top: var(--space-4); font-weight: 600;
}
.form-success[hidden] { display: none; }
.form-disclaimer { font-size: var(--text-xs); color: var(--gray-500); text-align: center; margin-top: var(--space-3); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { background: var(--navy-900); padding-top: clamp(var(--space-16), 6vw, var(--space-24)); }
.footer-inner {
  max-width: var(--content-default); margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-10));
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--space-10); padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 52px; width: auto; margin-bottom: var(--space-4); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: var(--text-sm); max-width: 30ch; line-height: 1.6; margin-bottom: var(--space-4); }
.footer-phone { display: inline-block; color: var(--gold-light); font-weight: 700; font-size: var(--text-lg); transition: color var(--transition); }
.footer-phone:hover { color: var(--white); }
.footer-links h4, .footer-contact-col h4 { color: var(--white); font-size: var(--text-sm); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-5); }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links a { color: rgba(255,255,255,0.55); font-size: var(--text-sm); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact-col p, .footer-contact-col a { display: block; color: rgba(255,255,255,0.55); font-size: var(--text-sm); margin-bottom: var(--space-2); }
.footer-contact-col a:not(.btn) { transition: color var(--transition); }
.footer-contact-col a:not(.btn):hover { color: var(--white); }
.footer-bottom {
  max-width: var(--content-default); margin-inline: auto;
  padding: var(--space-5) clamp(var(--space-5), 5vw, var(--space-10));
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: var(--text-xs); }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1100px) {
  .work-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
  .work-card--featured { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-col { display: none; }
  .contact-grid { grid-template-columns: 1fr; width: 100%; }
  .contact-info { width: 100%; }
  .contact-form { width: 100%; box-sizing: border-box; }
  .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .work-card--featured { grid-column: span 2; }
}

@media (max-width: 640px) {
  .hero-headline { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-stats { gap: var(--space-4); padding: var(--space-4); }
  .hero-actions { flex-direction: column; }
  .trust-inner { gap: var(--space-4); }
  .trust-div { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .work-card--featured { grid-column: span 1; grid-row: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .hero-stats { flex-direction: row; align-items: center; flex-wrap: nowrap; padding: var(--space-3) var(--space-4); gap: var(--space-3); }
  .stat-div { width: 1px; height: 30px; }
  .stat-num { font-size: var(--text-lg); }
  .stat-label { font-size: 0.65rem; white-space: normal; line-height: 1.3; }
}

/* ═══ FAQ SECTION ═══ */
.faq-section { background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.faq-item {
  background: var(--navy-50, #f0f4fa);
  border-left: 4px solid var(--navy-800);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--space-6);
}
.faq-item h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--navy-900);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}
.faq-item p {
  color: var(--navy-700);
  line-height: 1.7;
  font-size: var(--text-base);
  margin: 0;
}
.faq-item p a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.faq-item p a:hover { text-decoration: underline; }

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

/* ═══ SERVICE AREAS SECTION ═══ */
.service-areas-section {
  background: var(--navy-50, #f0f4fa);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-10);
}
.area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border-top: 3px solid var(--gold, #c9922a);
  box-shadow: 0 2px 12px rgba(10,22,40,0.06);
}
.area-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--navy-900);
  margin-bottom: var(--space-2);
}
.area-card p {
  color: var(--navy-600);
  font-size: var(--text-sm);
  line-height: 1.65;
  margin: 0;
}
.areas-note {
  text-align: center;
  margin-top: var(--space-8);
  color: var(--navy-700);
  font-size: var(--text-base);
}
.areas-note a {
  color: var(--gold, #c9922a);
  font-weight: 600;
  text-decoration: none;
}
.areas-note a:hover { text-decoration: underline; }

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

/* ═══ PHOTO UPLOAD FIELD ═══ */
.label-optional {
  font-size: var(--text-sm);
  color: var(--navy-500, #6b7c9a);
  font-weight: 400;
  margin-left: 0.25rem;
}
.upload-hint {
  font-size: var(--text-sm);
  color: var(--navy-600);
  margin: 0 0 var(--space-3) 0;
  line-height: 1.5;
}
.upload-zone {
  position: relative;
  border: 2px dashed var(--navy-300, #8fa3c0);
  border-radius: var(--radius-lg);
  background: var(--navy-50, #f0f4fa);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--gold, #c9922a);
  background: #fdf8f0;
}
.upload-icon {
  color: var(--navy-400, #7b93b5);
  margin-bottom: var(--space-3);
}
.upload-zone:hover .upload-icon,
.upload-zone.drag-over .upload-icon {
  color: var(--gold, #c9922a);
}
.upload-label {
  font-size: var(--text-base);
  color: var(--navy-700);
  margin: 0 0 var(--space-1) 0;
  font-weight: 500;
}
.upload-browse {
  color: var(--gold, #c9922a);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.upload-meta {
  font-size: var(--text-xs, 0.75rem);
  color: var(--navy-500, #6b7c9a);
  margin: 0;
}
.upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

/* Preview thumbnails */
.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.preview-thumb {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
  border: 2px solid var(--navy-200, #c2d0e0);
  flex-shrink: 0;
}
.preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.preview-remove {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  background: rgba(10,22,40,0.75);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.preview-remove:hover { background: #c0392b; }
.upload-error {
  font-size: var(--text-sm);
  color: #c0392b;
  margin-top: var(--space-2);
}
