/* =========================================================
   BuildCraft Chennai — Construction Company Website
   Stylesheet: industrial-architectural, blue + safety orange
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --primary: #1db2ff;
  --primary-600: #0a8fd6;
  --primary-700: #0070ad;
  --primary-50: #e8f7ff;

  --accent: #ff7a18;
  --accent-600: #e65a00;

  /* Neutrals */
  --navy: #0a1929;
  --navy-2: #0f2238;
  --navy-3: #14304d;
  --ink: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  /* Type */
  --font-display: 'Archivo', 'Helvetica Neue', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(10, 25, 41, .06);
  --shadow: 0 8px 24px -8px rgba(10, 25, 41, .12);
  --shadow-lg: 0 24px 48px -16px rgba(10, 25, 41, .22);
  --shadow-blue: 0 14px 32px -10px rgba(29, 178, 255, .55);
  --shadow-orange: 0 14px 32px -10px rgba(255, 122, 24, .45);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --t: 240ms cubic-bezier(.2, .8, .2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  /* letter-spacing: -0.02em; */
}

h1 {
  font-size: clamp(2.25rem, 5.2vw, 4.25rem);
  font-weight: 600;
  letter-spacing: normal;
}

h2 {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  color: var(--slate-700);
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--slate-500);
  line-height: 1.7;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-tight {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary-700);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--primary);
}

.eyebrow.on-dark {
  color: var(--primary);
}

.eyebrow.on-dark::before {
  background: var(--accent);
}

.section-head {
  max-width: 720px;
  margin-bottom: 3.25rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  border-radius: var(--radius-sm);
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-accent:hover {
  background: var(--accent-600);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-3);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--slate-300);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.btn-ghost.on-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, .25);
}

.btn-ghost.on-dark:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .05);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--primary-700);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.link-arrow span {
  transition: transform var(--t);
}

.link-arrow:hover span {
  transform: translateX(4px);
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--slate-200);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--primary);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: var(--accent);
}

.brand small {
  color: var(--slate-500);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 4px;
  font-family: var(--font-body);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list a {
  font-weight: 600;
  font-size: .94rem;
  color: var(--slate-700);
  position: relative;
  padding: .25rem 0;
  transition: color var(--t);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--ink);
}

.nav-list a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-phone {
  display: none;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: .95rem;
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

@media (min-width: 1024px) {
  .nav-phone {
    display: inline-flex;
  }
}

/* Mobile toggle */
.menu-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--slate-200);
}

.menu-toggle span {
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform var(--t), opacity var(--t);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform var(--t);
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.menu-toggle.is-open span {
  background: transparent;
}

.menu-toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 960px) {
  .menu-toggle {
    display: grid;
  }

  .nav-list {
    position: fixed;
    inset: 12px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 1.25rem var(--gutter) 2rem;
    gap: .25rem;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    transition: transform var(--t);
  }

  .nav-list.is-open {
    transform: translateY(0);
  }

  .nav-list a {
    padding: .9rem 0;
    border-bottom: 1px solid var(--slate-100);
    font-size: 1rem;
  }

  .nav-list a.active::after {
    display: none;
  }

  .nav-cta .btn {
    display: none;
  }
}

@media (min-width: 961px) {
  .menu-toggle {
    display: none;
  }
}

/* =========================================================
   HERO (homepage)
   ========================================================= */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(29, 178, 255, .35), transparent 60%),
    radial-gradient(40% 40% at 10% 90%, rgba(255, 122, 24, .18), transparent 65%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.15fr .9fr;
    gap: 4rem;
  }
}

.hero-content {
  max-width: 640px;
}

.hero h1 {
  color: var(--white);
}

.hero h1 .highlight {
  color: var(--primary);
  position: relative;
  white-space: nowrap;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--accent);
  transform: skewX(-12deg);
}

.hero p {
  color: rgba(255, 255, 255, .78);
  font-size: 1.1rem;
  margin: 1.5rem 0 2rem;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--primary);
  letter-spacing: -0.02em;
}

.hero-stats .stat span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}

/* Hero visual: stacked frames */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  width: 100%;
  margin-inline: auto;
}

.hero-frame {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #1a3454;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame-1 {
  inset: 0 30% 30% 0;
  z-index: 2;
}

.hero-frame-2 {
  inset: 25% 0 5% 35%;
  z-index: 3;
  border: 6px solid var(--navy);
}

.hero-badge {
  position: absolute;
  bottom: -4px;
  left: -4px;
  z-index: 4;
  background: var(--accent);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  box-shadow: var(--shadow-lg);
}

.hero-badge strong {
  display: block;
  font-size: 1.6rem;
}

.hero-badge span {
  font-size: .78rem;
  opacity: .9;
  font-weight: 600;
}

/* Trust bar below hero */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 1.5rem 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.trust-bar-label {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate-500);
}

.trust-bar-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--slate-700);
  font-size: .95rem;
}

.trust-bar-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  letter-spacing: -0.01em;
}

.trust-bar-list svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

/* =========================================================
   PAGE HEADER (interior pages)
   ========================================================= */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(3.5rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 90% 10%, rgba(29, 178, 255, .3), transparent 60%),
    radial-gradient(40% 50% at 0% 100%, rgba(255, 122, 24, .15), transparent 65%);
  z-index: -1;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255, 255, 255, .78);
  max-width: 640px;
  font-size: 1.08rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 1.25rem;
}

.breadcrumbs a {
  color: var(--primary);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs .sep {
  color: rgba(255, 255, 255, .3);
}

/* =========================================================
   ABOUT SUMMARY (homepage)
   ========================================================= */
.about-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-summary {
    grid-template-columns: .9fr 1.1fr;
    gap: 4rem;
  }
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 5 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--slate-100);
}

.no-radius-bottom {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;

}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 50%;
  aspect-ratio: 1;
  border: 4px solid var(--primary);
  border-radius: var(--radius);
  z-index: -1;
}

.about-experience {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  width: 100px;
  line-height: 1;
}

.about-experience strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  padding-bottom: 6px;
}

.about-experience span {
  font-size: 11px;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 2rem;
  display: grid;
  gap: .9rem;
}

.about-features li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-weight: 500;
  color: var(--slate-700);
}

.about-features svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--primary);
  margin-top: 2px;
}

/* =========================================================
   SERVICES GRID
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms cubic-bezier(.2, .8, .2, 1);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--primary-50);
  color: var(--primary-700);
  margin-bottom: 1.25rem;
  transition: background var(--t), color var(--t);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card h3 {
  margin-bottom: .65rem;
}

.service-card p {
  margin-bottom: 1.25rem;
  font-size: .95rem;
}

.service-card .link-arrow {
  margin-top: auto;
}

.service-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--slate-200);
  letter-spacing: -0.02em;
  transition: color var(--t);
}

.service-card:hover .service-number {
  color: var(--accent);
}

/* =========================================================
   PROJECT GALLERY
   ========================================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--slate-900);
  aspect-ratio: 4 / 5;
  isolation: isolate;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, .8, .2, 1);
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 25, 41, .92) 100%);
}

.project-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  color: var(--white);
  z-index: 2;
}

.project-info .tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .35rem;
}

.project-info h3 {
  color: var(--white);
  font-size: 1.25rem;
}

.project-info p {
  color: rgba(255, 255, 255, .75);
  font-size: .88rem;
  margin-top: .25rem;
}

.project-card.feature {
  aspect-ratio: 4 / 3;
  grid-column: span 2;
}

@media (max-width: 640px) {
  .project-card.feature {
    grid-column: span 1;
    aspect-ratio: 4/5;
  }
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section {
  background: var(--slate-50);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--slate-200);
  position: relative;
}

.why-card .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.why-card h3 {
  margin-bottom: .5rem;
  font-size: 1.2rem;
}

.why-card p {
  font-size: .95rem;
  color: var(--slate-500);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: border-color var(--t), box-shadow var(--t);
}

.testimonial:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary-50);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
}

.testimonial .stars {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial p {
  font-size: .98rem;
  color: var(--slate-700);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--slate-100);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}

.author-info strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: .98rem;
}

.author-info span {
  font-size: .82rem;
  color: var(--slate-500);
}

/* =========================================================
   CONTACT SECTION (homepage block + contact page)
   ========================================================= */
.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-section .eyebrow {
  color: var(--primary);
}

.contact-section .eyebrow::before {
  background: var(--accent);
}

.contact-section h2 {
  color: var(--white);
}

.contact-section .lead {
  color: rgba(255, 255, 255, .7);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.contact-info-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
}

.contact-info-item .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--white);
}

.contact-info-item .icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-item h4 {
  color: var(--white);
  margin-bottom: .25rem;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--font-display);
  font-weight: 700;
}

.contact-info-item p,
.contact-info-item a {
  color: rgba(255, 255, 255, .78);
  font-size: .95rem;
  line-height: 1.5;
}

.contact-info-item a:hover {
  color: var(--primary);
}

/* Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.contact-form-card h3 {
  margin-bottom: .5rem;
}

.contact-form-card .form-sub {
  color: var(--slate-500);
  margin-bottom: 1.5rem;
  font-size: .95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-field label {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate-700);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: .98rem;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(29, 178, 255, .15);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

/* =========================================================
   "AS USERS VIEWED US" — review/recognition section
   ========================================================= */
.recognition-section {
  background: var(--white);
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.recognition-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  transition: transform var(--t), box-shadow var(--t);
}

.recognition-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.recognition-card .rating {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}

.recognition-card .rating em {
  font-style: normal;
  font-size: 1.2rem;
  color: var(--slate-500);
  font-weight: 700;
}

.recognition-card .platform {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--slate-700);
  font-size: 1.05rem;
  margin: .35rem 0;
}

.recognition-card .stars {
  color: var(--accent);
  font-size: 1rem;
  margin: .25rem 0;
  letter-spacing: 2px;
}

.recognition-card .reviews-count {
  font-size: .82rem;
  color: var(--slate-500);
}

.recognition-cta {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-50), var(--white));
  border: 1px solid var(--slate-200);
}

.recognition-cta strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  display: block;
  margin-bottom: .5rem;
}

.recognition-cta p {
  color: var(--slate-700);
  margin-bottom: 1rem;
}

/* =========================================================
   SERVICE DETAIL PAGE
   ========================================================= */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1fr 320px;
    gap: 3.5rem;
  }
}

.service-content h2 {
  margin: 2rem 0 1rem;
}

.service-content h2:first-child {
  margin-top: 0;
}

.service-content p {
  margin-bottom: 1.25rem;
}

.service-content ul {
  display: grid;
  gap: .75rem;
  margin: 1rem 0 1.5rem;
}

.service-content ul li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding-left: 0;
}

.service-content ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 10px;
}

.service-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--slate-100);
  margin-bottom: 2rem;
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sticky sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 1.5rem;
}

.sidebar-card {
  padding: 1.75rem;
  background: var(--slate-50);
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
}

.sidebar-card.dark {
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
}

.sidebar-card.dark h3 {
  color: var(--white);
}

.sidebar-card.dark p {
  color: rgba(255, 255, 255, .75);
}

.sidebar-card h3 {
  margin-bottom: .5rem;
  font-size: 1.15rem;
}

.sidebar-card .other-services {
  display: grid;
  gap: .25rem;
  margin-top: 1rem;
}

.sidebar-card .other-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  border-bottom: 1px solid var(--slate-200);
  font-weight: 600;
  font-size: .95rem;
  transition: color var(--t), padding var(--t);
}

.sidebar-card .other-services a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.sidebar-card .other-services a:last-child {
  border-bottom: 0;
}

.sidebar-card .other-services a span {
  color: var(--primary);
}

/* =========================================================
   PROJECTS PAGE — filters & grid
   ========================================================= */
.project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 3rem;
}

.project-filters button {
  padding: .6rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--white);
  color: var(--slate-700);
  border: 1.5px solid var(--slate-200);
  transition: background var(--t), color var(--t), border-color var(--t);
}

.project-filters button:hover {
  border-color: var(--ink);
}

.project-filters button.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--slate-200);
  position: relative;
  overflow: hidden;
}

.value-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}

.value-card .icon svg {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  margin-bottom: .5rem;
  font-size: 1.2rem;
}

.value-card p {
  color: var(--slate-500);
  font-size: .95rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  text-align: center;
}

.team-photo {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--slate-100);
  margin-bottom: 1rem;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  font-size: 1.1rem;
}

.team-card span {
  font-size: .88rem;
  color: var(--primary-700);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip {
  background: var(--primary);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, transparent 60%, rgba(255, 122, 24, .25));
}

.cta-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

@media (min-width: 800px) {
  .cta-strip-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 720px;
}

.cta-strip .btn-accent {
  background: var(--ink);
  color: var(--white);
  box-shadow: none;
}

.cta-strip .btn-accent:hover {
  background: var(--navy-3);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-2);
  color: rgba(255, 255, 255, .72);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-brand .brand {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: .95rem;
  line-height: 1.65;
  max-width: 320px;
  color: #98acca;
}

.footer-social {
  display: flex;
  gap: .65rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  display: grid;
  place-items: center;
  transition: background var(--t), color var(--t);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: grid;
  gap: .65rem;
}

.footer-col a {
  font-size: .94rem;
  transition: color var(--t), padding var(--t);
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact {
  display: grid;
  gap: .85rem;
  font-size: .94rem;
}

.footer-contact p {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, .72);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  font-size: .85rem;
}

@media (min-width: 700px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* =========================================================
   UTILITY
   ========================================================= */
.bg-light {
  background: var(--slate-50);
}

.bg-dark {
  background: var(--navy);
  color: var(--white);
}

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: .5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: .5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.flex {
  display: flex;
}

.gap-1 {
  gap: .5rem;
}

.gap-2 {
  gap: 1rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.marginTop {
  margin-top: 16px;
}