/* ============================================
   KWANACH CONSTRUCTION – UPDATED STYLESHEET
   Typography: Oswald (headings) + DM Sans (body)
   Colors: Navy #0d1b3e | Gold #c8901a (from logo)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

:root {
  --navy: #0d1b3e;
  --gold: #c8901a;
  --gold-light: #e8a82a;
  --white: #ffffff;
  --light-gray: #f4f5f7;
  --text-dark: #1a1a2e;
  --text-gray: #555566;
  --border: rgba(200,144,26,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ---- BLACK IMAGE FILTER ---- */
.img-black { filter: grayscale(100%) brightness(0.55) contrast(1.1); }

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,27,62,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  animation: slideDown 0.8s ease;
  transition: background 0.3s;
}
nav.scrolled { background: rgba(13,27,62,1); }
@keyframes slideDown { from { transform:translateY(-100%); opacity:0; } to { transform:translateY(0); opacity:1; } }

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration:none; }
.nav-logo img { height: 54px; width: auto; filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(200,144,26,0.5)); mix-blend-mode: screen; }
.nav-brand { display: flex; flex-direction: column; }
.nav-brand-main {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.1;
}
.nav-brand-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav-links { display:flex; gap:36px; list-style:none; }
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:2px; background:var(--gold); transform:scaleX(0); transition:transform 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 24px !important;
  border: 2px solid var(--gold) !important;
  font-weight: 700 !important;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: transparent !important; color: var(--gold) !important; }
.nav-cta::after { display:none !important; }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:8px; }
.hamburger span { display:block; width:26px; height:2px; background:var(--white); transition:all 0.3s; }

/* ---- HERO ---- */
.hero { position:relative; height:100vh; min-height:600px; display:flex; align-items:center; overflow:hidden; }

.hero-slides { position:absolute; inset:0; }
.slide { position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transition:opacity 1.2s ease; }
.slide.active { opacity:1; }
.slide-overlay { position:absolute; inset:0; background:linear-gradient(135deg, rgba(13,27,62,0.92) 0%, rgba(13,27,62,0.6) 60%, rgba(0,0,0,0.4) 100%); }

.hero-content { position:relative; z-index:5; padding:0 5%; max-width:820px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,144,26,0.15);
  border: 1px solid var(--border);
  padding: 8px 20px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s 0.3s both;
}
.hero-badge::before { content:''; width:6px; height:6px; background:var(--gold); border-radius:50%; }
.hero-badge span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.5s both;
}
.hero-title em {
  color: var(--gold);
  font-style: normal;
}

.hero-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.7s both;
}
.hero-cta-group { display:flex; gap:16px; flex-wrap:wrap; animation:fadeInUp 0.8s 0.9s both; }

.hero-slide-controls { position:absolute; bottom:100px; right:5%; z-index:10; display:flex; align-items:center; gap:16px; }
.slide-btn { width:46px; height:46px; border:2px solid rgba(255,255,255,0.4); background:transparent; color:var(--white); cursor:pointer; font-size:1rem; transition:all 0.3s; display:flex; align-items:center; justify-content:center; }
.slide-btn:hover { background:var(--gold); border-color:var(--gold); }
.slide-dots { display:flex; gap:8px; }
.dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,0.4); cursor:pointer; transition:all 0.3s; border:none; padding:0; }
.dot.active { background:var(--gold); width:24px; border-radius:4px; }

.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(200,144,26,0.25);
  padding: 24px 5%;
  display: flex; z-index: 5;
}
.stat-item { flex:1; border-right:1px solid rgba(200,144,26,0.2); padding:0 32px; text-align:center; }
.stat-item:first-child { padding-left:0; }
.stat-item:last-child { border-right:none; }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  letter-spacing: 1px;
}
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

@keyframes fadeInUp { from { transform:translateY(40px); opacity:0; } to { transform:translateY(0); opacity:1; } }

/* ---- INTRO STRIP ---- */
.intro-strip { background:var(--gold); padding:18px 5%; }
.strip-inner { max-width:1400px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.strip-item i { font-size:1.1rem; }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 34px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-primary:hover { background: transparent; color: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 34px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { border-color:var(--gold); color:var(--gold); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  padding: 12px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--navy);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-dark:hover { background:var(--navy); color:var(--white); }

/* ---- SECTION HEADERS ---- */
.section-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before { content:''; width:32px; height:2px; background:var(--gold); flex-shrink:0; }

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-title span { color: var(--gold); }

/* ---- ABOUT SNAP ---- */
.about-snap { padding:100px 5%; }
.about-snap-inner { max-width:1400px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-visual { position:relative; }
.about-img-wrap { position:relative; }
.about-img-wrap img:first-child { width:100%; height:480px; object-fit:cover; display:block; }
.about-img-small { position:absolute; bottom:-30px; right:-30px; width:220px; height:180px; object-fit:cover; border:6px solid var(--white); box-shadow:0 20px 60px rgba(0,0,0,0.2); }
.about-badge { position:absolute; top:30px; left:-20px; background:var(--gold); color:var(--navy); padding:24px 28px; text-align:center; box-shadow:0 20px 50px rgba(200,144,26,0.3); }
.about-badge-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  letter-spacing: 1px;
}
.about-badge-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.about-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--text-gray);
  margin-bottom: 18px;
  margin-top: 20px;
}
.values-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:28px; }
.value-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--light-gray);
  border-left: 3px solid var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.value-chip i { color:var(--gold); }

/* ---- SERVICES OVERVIEW ---- */
.services-overview { background:var(--navy); padding:100px 5%; position:relative; overflow:hidden; }
.services-overview::before { content:''; position:absolute; top:0; right:0; width:500px; height:500px; background:radial-gradient(circle, rgba(200,144,26,0.08) 0%, transparent 70%); pointer-events:none; }
.services-header { max-width:1400px; margin:0 auto 60px; }
.services-grid { max-width:1400px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.service-card { background:rgba(255,255,255,0.04); border:1px solid rgba(200,144,26,0.12); padding:44px 36px; position:relative; transition:all 0.4s; cursor:default; overflow:hidden; }
.service-card::before { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--gold); transform:scaleX(0); transition:transform 0.4s; }
.service-card:hover { background:rgba(200,144,26,0.08); transform:translateY(-4px); }
.service-card:hover::before { transform:scaleX(1); }
.service-icon { font-size:2.2rem; margin-bottom:20px; display:block; color:var(--gold); }
.service-num {
  position: absolute; top: 28px; right: 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(200,144,26,0.06);
  line-height: 1;
}
.service-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.service-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.service-link:hover { gap:14px; }

/* ---- FEATURED PROJECTS ---- */
.featured-projects { padding:100px 5%; background:var(--light-gray); }
.fp-header { max-width:1400px; margin:0 auto 50px; display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:20px; }
.fp-grid { max-width:1400px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; grid-template-rows:auto auto; gap:4px; }
.fp-card { position:relative; overflow:hidden; cursor:pointer; }
.fp-card.large { grid-row:span 2; }
.fp-card img { width:100%; height:100%; min-height:280px; object-fit:cover; display:block; transition:transform 0.6s; }
.fp-card.large img { min-height:560px; }
.fp-card:hover img { transform:scale(1.05); }
.fp-info { position:absolute; bottom:0; left:0; right:0; padding:28px 28px; background:linear-gradient(to top, rgba(13,27,62,0.95) 0%, transparent 100%); transition:all 0.3s; }
.fp-cat {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.fp-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.fp-info p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.fp-link { position:absolute; top:20px; right:20px; width:42px; height:42px; background:var(--gold); color:var(--navy); display:flex; align-items:center; justify-content:center; font-size:0.9rem; text-decoration:none; opacity:0; transform:scale(0.8); transition:all 0.3s; }
.fp-card:hover .fp-link { opacity:1; transform:scale(1); }

/* ---- WHY CHOOSE US ---- */
.why { padding:100px 5%; background:var(--white); }
.why-inner { max-width:1400px; margin:0 auto; display:grid; grid-template-columns:1fr 1.4fr; gap:80px; align-items:start; }
.why-left { position:sticky; top:120px; }
.why-left p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-gray);
  margin-top: 20px;
  margin-bottom: 28px;
}
.why-img { width:100%; height:280px; object-fit:cover; margin-top:10px; }
.why-items { display:flex; flex-direction:column; gap:0; }
.why-item { display:flex; gap:24px; padding:28px 0; border-bottom:1px solid rgba(13,27,62,0.08); transition:all 0.3s; align-items:flex-start; }
.why-item:hover { padding-left:12px; }
.why-icon { width:56px; height:56px; flex-shrink:0; background:var(--navy); display:flex; align-items:center; justify-content:center; font-size:1.3rem; color:var(--gold); transition:background 0.3s; }
.why-item:hover .why-icon { background:var(--gold); color:var(--navy); }
.why-text h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.why-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-gray);
}

/* ---- CTA BANNER ---- */
.cta-banner { position:relative; padding:120px 5%; text-align:center; overflow:hidden; }
.cta-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.cta-overlay { position:absolute; inset:0; background:rgba(13,27,62,0.88); }
.cta-content { position:relative; z-index:2; max-width:700px; margin:0 auto; }
.cta-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 16px 0;
}
.cta-content h2 span { color: var(--gold); }
.cta-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 40px;
}
.cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ---- FOOTER ---- */
.footer { background:var(--navy); padding:80px 5% 0; }
.footer-inner { max-width:1400px; margin:0 auto; display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:60px; padding-bottom:60px; border-bottom:1px solid rgba(200,144,26,0.15); }
.footer-brand p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}
.footer-social { display:flex; gap:12px; margin-top:24px; }
.footer-social a { width:38px; height:38px; background:rgba(255,255,255,0.06); border:1px solid rgba(200,144,26,0.2); color:rgba(255,255,255,0.6); display:flex; align-items:center; justify-content:center; font-size:0.85rem; text-decoration:none; transition:all 0.3s; }
.footer-social a:hover { background:var(--gold); color:var(--navy); border-color:var(--gold); }

.footer-links h4, .footer-contact h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-links ul, .footer-contact ul { list-style:none; display:flex; flex-direction:column; gap:12px; }
.footer-links li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.footer-links li a i { font-size:0.65rem; color:var(--gold); }
.footer-links li a:hover { color:var(--gold); }
.footer-contact li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-contact li i { color:var(--gold); margin-top:3px; flex-shrink:0; }
.footer-bottom { max-width:1400px; margin:0 auto; padding:24px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero { position:relative; padding:160px 5% 100px; background:var(--navy); overflow:hidden; }
.page-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.page-hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg, rgba(13,27,62,0.95), rgba(13,27,62,0.75)); }
.page-hero-content { position:relative; z-index:2; max-width:800px; }
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 16px 0;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 520px;
}
.breadcrumb { display:flex; align-items:center; gap:10px; margin-top:24px; }
.breadcrumb a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.breadcrumb span { font-size:0.78rem; color:rgba(255,255,255,0.4); }

/* ---- ABOUT PAGE ---- */
.about-full { padding:100px 5%; }
.about-full-inner { max-width:1400px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.about-full p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-gray);
  margin-bottom: 20px;
}
.team-section { padding:100px 5%; background:var(--light-gray); }
.team-grid { max-width:1400px; margin:40px auto 0; display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.team-card { background:var(--white); overflow:hidden; transition:transform 0.3s; }
.team-card:hover { transform:translateY(-6px); }
.team-card img { width:100%; height:260px; object-fit:cover; display:block; }
.team-info { padding:20px; }
.team-info h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.team-info span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}
.mission-vision { padding:100px 5%; }
.mv-grid { max-width:1400px; margin:40px auto 0; display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.mv-card { padding:52px 44px; border:1px solid rgba(13,27,62,0.1); position:relative; overflow:hidden; }
.mv-card::before { content:''; position:absolute; top:0; left:0; width:4px; height:100%; background:var(--gold); }
.mv-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mv-label i { font-size:1rem; }
.mv-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mv-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-gray);
}
.mv-bg {
  position: absolute; bottom: 16px; right: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(13,27,62,0.04);
  line-height: 1;
  text-transform: uppercase;
}

/* ---- SERVICES PAGE ---- */
.services-page { padding:100px 5%; }
.services-page-grid { max-width:1400px; margin:60px auto 0; display:grid; grid-template-columns:repeat(2,1fr); gap:32px; }
.svc-card { display:flex; gap:32px; padding:44px; border:1px solid rgba(13,27,62,0.1); transition:all 0.3s; align-items:flex-start; }
.svc-card:hover { border-color:var(--gold); box-shadow:0 20px 60px rgba(200,144,26,0.1); }
.svc-icon-wrap { width:72px; height:72px; flex-shrink:0; background:var(--navy); display:flex; align-items:center; justify-content:center; font-size:1.8rem; color:var(--gold); transition:background 0.3s; }
.svc-card:hover .svc-icon-wrap { background:var(--gold); color:var(--navy); }
.svc-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.svc-info p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-gray);
}
.svc-features { list-style:none; margin-top:16px; display:flex; flex-direction:column; gap:6px; }
.svc-features li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-features li::before { content:''; width:6px; height:6px; background:var(--gold); border-radius:50%; flex-shrink:0; }

/* ---- PROJECTS PAGE ---- */
.projects-page { padding:100px 5%; }
.projects-filter { max-width:1400px; margin:0 auto 50px; display:flex; gap:12px; flex-wrap:wrap; }
.filter-btn {
  padding: 10px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid rgba(13,27,62,0.2);
  background: transparent;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover { background:var(--navy); color:var(--white); border-color:var(--navy); }
.projects-grid { max-width:1400px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.proj-card { background:var(--white); overflow:hidden; transition:transform 0.3s; box-shadow:0 4px 24px rgba(0,0,0,0.06); }
.proj-card:hover { transform:translateY(-6px); }
.proj-card img { width:100%; height:240px; object-fit:cover; display:block; transition:transform 0.5s; }
.proj-card:hover img { transform:scale(1.05); }
.proj-info { padding:24px; }
.proj-cat {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.proj-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.proj-info p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.6;
}
.proj-meta { display:flex; gap:16px; margin-top:14px; padding-top:14px; border-top:1px solid rgba(13,27,62,0.07); }
.proj-meta span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 6px;
}
.proj-meta i { color:var(--gold); }

/* ---- CONTACT PAGE ---- */
.contact-page { padding:100px 5%; }
.contact-inner { max-width:1400px; margin:0 auto; display:grid; grid-template-columns:1fr 1.5fr; gap:80px; align-items:start; }
.contact-info-cards { display:flex; flex-direction:column; gap:16px; margin-top:32px; }
.contact-card { display:flex; gap:20px; align-items:flex-start; padding:24px; background:var(--light-gray); border-left:3px solid var(--gold); transition:box-shadow 0.3s; }
.contact-card:hover { box-shadow:0 10px 40px rgba(200,144,26,0.1); }
.contact-card-icon { width:48px; height:48px; flex-shrink:0; background:var(--navy); display:flex; align-items:center; justify-content:center; font-size:1.1rem; color:var(--gold); }
.contact-card-text h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.contact-card-text p, .contact-card-text a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-gray);
  text-decoration: none;
  line-height: 1.6;
}
.contact-card-text a:hover { color:var(--gold); }
.contact-form { background:var(--light-gray); padding:52px 44px; }
.contact-form h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.form-group label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 18px;
  border: 1px solid rgba(13,27,62,0.15);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--gold); }
.form-group textarea { resize:vertical; min-height:140px; }
.map-section { background:var(--navy); padding:0; }
.map-placeholder { height:420px; background:url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1600&q=80') center/cover; filter:grayscale(100%) brightness(0.5); }

/* ---- REVEAL ANIMATIONS ---- */
.reveal { opacity:0; transform:translateY(32px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ---- MOBILE NAV ---- */
@media (max-width: 900px) {
  .hamburger { display:flex; }
  .nav-links { display:none; position:fixed; top:80px; left:0; right:0; background:rgba(13,27,62,0.99); flex-direction:column; padding:32px 5%; gap:0; z-index:999; }
  .nav-links.open { display:flex; }
  .nav-links li a { display:block; padding:14px 0; border-bottom:1px solid rgba(255,255,255,0.06); font-size:1rem; }
  .nav-cta { margin-top:16px; text-align:center; }
  .hero-stats { display:none; }
  .hero-slide-controls { bottom:40px; right:5%; }
  .about-snap-inner, .why-inner, .about-full-inner, .contact-inner { grid-template-columns:1fr; gap:40px; }
  .services-grid, .projects-grid { grid-template-columns:1fr; }
  .fp-grid { grid-template-columns:1fr; }
  .fp-card.large { grid-row:span 1; }
  .mv-grid, .services-page-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .footer-inner { grid-template-columns:1fr 1fr; gap:40px; }
  .about-img-small { display:none; }
  .about-badge { left:0; }
  .why-left { position:static; }
  .form-row { grid-template-columns:1fr; }
}

@media (max-width: 560px) {
  .hero-title { font-size:2.4rem; }
  .team-grid { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; }
  .stat-num { font-size:2rem; }
  .strip-inner { justify-content:center; }
}