/* =============================================
   ME N ANGLE PHOTOGRAPHY — Global Stylesheet
   Premium Edition · Navy & Steel Blue Theme
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --black:        #070b12;
  --navy:         #1e3a6e;
  --navy-deep:    #122447;
  --navy-mid:     #2a4f96;
  --steel:        #6ba3d6;
  --steel-light:  #a8c8eb;
  --white:        #ffffff;
  --off-white:    #f7f9fc;
  --cream:        #eef3fa;
  --gray-50:      #f5f8fc;
  --gray-100:     #edf1f7;
  --gray-200:     #d8e2ef;
  --gray-400:     #8fa3be;
  --gray-600:     #4e6480;
  --gray-800:     #1a2b3c;

  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;

  --nav-h:      88px;
  --max-w:      1440px;
  --radius:     3px;
  --radius-lg:  10px;
  --transition: 0.38s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(30,58,110,0.07);
  --shadow-md:  0 8px 32px rgba(30,58,110,0.11);
  --shadow-lg:  0 20px 60px rgba(30,58,110,0.15);
  --shadow-xl:  0 32px 80px rgba(30,58,110,0.18);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--gray-800);
}
h1 { font-size: clamp(3rem, 6.5vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
h4 { font-size: 1.15rem; }
p  { font-size: 1rem; color: var(--gray-600); line-height: 1.8; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5.5rem);
}
section { padding: clamp(5rem, 10vw, 10rem) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.6rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::before { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(30,58,110,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(30,58,110,0.4);
}
.btn-outline {
  border: 1.5px solid var(--gray-200);
  color: var(--gray-800);
  background: var(--white);
}
.btn-outline:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-white {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}
.btn-white:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

/* ---------- Section Labels ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--navy);
  flex-shrink: 0;
}
.section-title {
  margin-bottom: 1.5rem;
  color: var(--gray-800);
}
.section-subtitle {
  font-size: 1.05rem;
  max-width: 56ch;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ---------- Divider ---------- */
.divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--steel));
  margin: 1.8rem 0;
  border-radius: 2px;
}
.divider-center { margin: 1.8rem auto; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.nav.scrolled {
  height: 68px;
  background: rgba(7, 11, 18, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 8px 32px rgba(0,0,0,0.25);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 38px;
  width: auto;
  transition: opacity var(--transition);
}
.nav-logo:hover img { opacity: 0.8; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
.nav-links a {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--steel-light);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%) !important;
  padding: 0.65rem 1.6rem !important;
  border-radius: var(--radius) !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 12px rgba(30,58,110,0.35) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--steel) 100%) !important;
  box-shadow: 0 8px 24px rgba(30,58,110,0.5) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: var(--transition);
  border-radius: 1px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  font-weight: 300;
}
.nav-mobile a:hover { color: var(--steel-light); }

/* =============================================
   HERO — HOMEPAGE
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 8rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover .hero-bg img { transform: scale(1); }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(7,11,18,0.92) 0%,  rgba(7,11,18,0.4) 40%, rgba(7,11,18,0.1) 100%),
    linear-gradient(to right, rgba(7,11,18,0.5) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 1.8rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--steel-light);
  flex-shrink: 0;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.8rem;
  line-height: 1.05;
  font-weight: 300;
}
.hero-title em {
  font-style: italic;
  color: var(--steel-light);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  max-width: 52ch;
  margin-bottom: 2.8rem;
  line-height: 1.85;
  font-weight: 400;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.hero-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.38rem 1rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.hero-tag:hover {
  color: rgba(255,255,255,0.85);
  border-color: rgba(168,200,235,0.4);
  background: rgba(107,163,214,0.1);
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: clamp(1.5rem, 5vw, 5.5rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(107,163,214,0.6), transparent);
  display: block;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--navy-deep);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,79,150,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
}
.stats-grid > div {
  position: relative;
}
.stats-grid > div:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.07);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-light);
  opacity: 0.75;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services { background: var(--off-white); }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}
.services-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  padding: 2.8rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--steel));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}
.service-card:hover::before { opacity: 1; }
.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 1.8rem;
  transition: transform 0.7s ease;
  border-radius: var(--radius);
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(30,58,110,0.3);
}
.service-icon svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 1.5; }
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--gray-800);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 1.6rem;
  transition: gap var(--transition), color var(--transition);
}
.service-card-link:hover { gap: 0.9rem; color: var(--navy-mid); }

/* =============================================
   PORTFOLIO STRIP
   ============================================= */
.portfolio-strip { background: var(--white); padding: clamp(5rem, 10vw, 10rem) 0; }
.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}
.portfolio-masonry {
  columns: 3;
  column-gap: 1.2rem;
}
.portfolio-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.portfolio-item:hover { box-shadow: var(--shadow-xl); transform: scale(1.01); }
.portfolio-item img {
  width: 100%;
  transition: transform 0.7s ease;
  display: block;
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,18,0) 0%, rgba(7,11,18,0) 100%);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-item:hover .portfolio-item-overlay {
  background: linear-gradient(to top, rgba(18,36,71,0.55) 0%, rgba(18,36,71,0.2) 100%);
}
.portfolio-item-overlay svg {
  opacity: 0;
  color: var(--white);
  transform: scale(0.6);
  transition: var(--transition);
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.portfolio-item:hover .portfolio-item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(7,11,18,0.97);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-height: 88vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.lightbox-close {
  position: absolute;
  top: 1.8rem; right: 2rem;
  color: rgba(255,255,255,0.5);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition);
  font-weight: 300;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 2.2rem;
  cursor: pointer;
  transition: color var(--transition);
  padding: 1rem;
  font-weight: 300;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--white); }

/* =============================================
   WHY US / PROCESS
   ============================================= */
.why-us {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--black) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(107,163,214,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.why-us::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(42,79,150,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 8vw, 9rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-content .section-label { color: var(--steel-light); }
.why-content .section-label::before { background: var(--steel-light); }
.why-content .section-title { color: var(--white); font-weight: 300; }
.why-content .section-subtitle { color: rgba(255,255,255,0.55); }
.why-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.why-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  transition: background var(--transition), border-color var(--transition);
}
.why-item:hover {
  background: rgba(107,163,214,0.06);
  border-color: rgba(107,163,214,0.15);
}
.why-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--steel-light), var(--steel));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 2.8rem;
  font-weight: 300;
}
.why-item-text { flex: 1; }
.why-item h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.why-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.why-image {
  position: relative;
}
.why-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.why-image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 1.8rem 2.2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(7,11,18,0.5);
  border: 1px solid rgba(107,163,214,0.15);
}
.why-image-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 300;
}
.why-image-badge span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-light);
  opacity: 0.85;
  display: block;
  margin-top: 0.3rem;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process { background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--navy), var(--steel), var(--navy));
  opacity: 0.2;
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  box-shadow: 0 0 0 8px var(--gray-50), var(--shadow-md);
  font-weight: 400;
  transition: var(--transition);
}
.process-step:hover .process-step-num {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 0 0 8px var(--gray-50), 0 8px 24px rgba(30,58,110,0.3);
  transform: scale(1.08);
}
.process-step h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gray-800);
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.process-step p {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 5rem; }
.testimonials-header .divider { margin: 1.5rem auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--gray-50);
  padding: 2.8rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--steel));
  opacity: 0;
  transition: opacity var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gray-200);
}
.testimonial-card:hover::before { opacity: 1; }
.quote-mark {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--navy);
  line-height: 0.6;
  opacity: 0.08;
  margin-bottom: 1.5rem;
  display: block;
  font-weight: 400;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
}
.testimonial-stars span { color: var(--navy-mid); font-size: 0.85rem; }
.testimonial-text {
  font-size: 0.96rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.8rem;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.testimonial-role {
  font-size: 0.76rem;
  color: var(--gray-400);
  margin-top: 0.2rem;
}

/* =============================================
   SERVICE AREAS
   ============================================= */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.areas-group {
  background: var(--white);
  border-radius: 12px;
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--gray-100);
}
.areas-group-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.1rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--cream);
}
.areas-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.areas-list li {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}
.areas-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--steel);
}
.areas-group--more {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-color: transparent;
}
.areas-group--more .areas-group-title {
  color: var(--steel-light);
  border-bottom-color: rgba(255,255,255,0.08);
}
.areas-more-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}
.areas-more-text a {
  color: var(--steel-light) !important;
}
@media (max-width: 900px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(ellipse, rgba(107,163,214,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(ellipse, rgba(168,200,235,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
}
.cta-band p {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq { background: var(--off-white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-heading { margin: 0; font-size: inherit; font-weight: inherit; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.97rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--gray-800);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.faq-question:hover { color: var(--navy); }
.faq-icon {
  width: 26px; height: 26px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--navy);
  border-color: var(--navy);
}
.faq-icon span {
  font-size: 1rem;
  line-height: 1;
  color: var(--navy);
  transition: transform var(--transition), color var(--transition);
}
.faq-item.open .faq-icon span {
  transform: rotate(45deg);
  color: var(--white);
}
.faq-answer {
  display: none;
  padding-bottom: 1.5rem;
  font-size: 0.94rem;
  color: var(--gray-600);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 6rem 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy), transparent);
  opacity: 0.5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo {
  height: 34px;
  width: auto;
  margin-bottom: 1.4rem;
}
.footer-about {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
  max-width: 28ch;
  margin-bottom: 1.8rem;
}
.footer-social {
  display: flex;
  gap: 0.7rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
  background: rgba(255,255,255,0.03);
}
.footer-social a:hover {
  border-color: var(--navy-mid);
  color: var(--steel-light);
  background: rgba(30,58,110,0.3);
}
.footer-social svg { width: 15px; height: 15px; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 1.6rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.footer-col ul li a:hover { color: var(--steel-light); }
.footer-contact-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.footer-contact-item svg {
  width: 15px; height: 15px;
  stroke: var(--steel);
  fill: none;
  flex-shrink: 0;
  margin-top: 4px;
}
.footer-contact-item span {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
}
.footer-bottom {
  padding: 1.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.2);
  transition: color var(--transition);
  letter-spacing: 0.04em;
}
.footer-bottom-links a:hover { color: var(--steel-light); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  height: 52vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7,11,18,0.95) 0%, rgba(7,11,18,0.25) 100%),
    linear-gradient(to right, rgba(18,36,71,0.4) 0%, transparent 60%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-hero-content .section-label {
  color: var(--steel-light);
}
.page-hero-content .section-label::before {
  background: var(--steel-light);
}
.page-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--white);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 8vw, 9rem);
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-values { background: var(--off-white); }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4.5rem;
}
.value-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gray-200);
}
.value-icon {
  width: 62px; height: 62px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(30,58,110,0.08) 0%, rgba(107,163,214,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.6rem;
}
.value-icon svg {
  width: 28px; height: 28px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
}
.value-card h3, .value-card h4 {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
}
.filter-btn {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  color: var(--gray-600);
  background: var(--white);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(30,58,110,0.3);
}
.gallery-grid {
  columns: 3;
  column-gap: 1.2rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.gallery-item:hover { box-shadow: var(--shadow-xl); transform: scale(1.01); }
.gallery-item img {
  width: 100%;
  transition: transform 0.7s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,11,18,0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay {
  background: linear-gradient(to top, rgba(18,36,71,0.5) 0%, rgba(18,36,71,0.15) 100%);
}
.gallery-item-overlay svg {
  opacity: 0;
  color: var(--white);
  width: 40px; height: 40px;
  transform: scale(0.6);
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(30,58,110,0.08) 0%, rgba(107,163,214,0.08) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(30,58,110,0.1);
}
.contact-detail-icon svg {
  width: 18px; height: 18px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
}
.contact-detail-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
}
.contact-detail-value {
  font-size: 0.95rem;
  color: var(--gray-800);
  font-weight: 500;
}
.turnaround-box {
  background: linear-gradient(135deg, rgba(30,58,110,0.04) 0%, rgba(107,163,214,0.04) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--navy);
}
.turnaround-box h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.2rem;
}
.turnaround-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.88rem;
}
.turnaround-row:last-child { border-bottom: none; }
.turnaround-row span:first-child { color: var(--gray-600); }
.turnaround-row span:last-child { font-weight: 700; color: var(--navy); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.55rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,58,110,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.service-checkbox {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  cursor: pointer;
  padding: 0.55rem 0.9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
  background: var(--white);
  user-select: none;
  position: relative;
}
.service-checkbox:hover {
  border-color: var(--navy);
  color: var(--navy);
}
/* Hide native checkbox completely */
.service-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
/* Custom tick box */
.service-checkbox::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 3px;
  background: var(--white);
  transition: background 0.15s, border-color 0.15s;
}
.service-checkbox.checked {
  border-color: var(--navy);
  background: rgba(30,58,110,0.05);
  color: var(--navy);
  font-weight: 500;
}
/* Checkmark when selected */
.service-checkbox.checked::before {
  background: var(--navy);
  border-color: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.form-note {
  font-size: 0.78rem;
  color: var(--gray-400);
}
.form-success {
  display: none;
  background: rgba(30,58,110,0.05);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  color: var(--gray-800);
  font-size: 0.95rem;
  margin-top: 1rem;
}
.form-success.show { display: block; }

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gray-200);
}
.blog-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-card-tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--navy);
  flex-shrink: 0;
}
.blog-card h3 {
  font-size: 1.25rem;
  color: var(--gray-800);
  margin-bottom: 0.7rem;
  line-height: 1.35;
  transition: color var(--transition);
}
.blog-card:hover h3 { color: var(--navy); }
.blog-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  flex: 1;
}
.blog-card-meta {
  font-size: 0.74rem;
  color: var(--gray-400);
  display: flex;
  gap: 1rem;
  letter-spacing: 0.02em;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gray-100);
}
.blog-coming-soon {
  text-align: center;
  padding: 6rem 0;
  grid-column: 1 / -1;
}
.blog-coming-soon h3 {
  font-size: 1.6rem;
  color: var(--gray-800);
  margin-bottom: 0.8rem;
}
.blog-coming-soon p {
  font-size: 1rem;
  color: var(--gray-400);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.32s; }
.fade-up-delay-4 { transition-delay: 0.44s; }
.fade-up-delay-5 { transition-delay: 0.55s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .about-intro { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .portfolio-masonry, .gallery-grid { columns: 2; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-header-right { align-items: flex-start; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-services { grid-template-columns: 1fr; }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .portfolio-masonry, .gallery-grid { columns: 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}
