/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #E85A1B;
  --orange-dark: #c94a12;
  --orange-light: #fef0ea;
  --dark: #2D2D2D;
  --darker: #1a1a1a;
  --light: #f0f0f2;
  --light-alt: #eaeaed;
  --white: #ffffff;
  --gray: #555555;
  --light-gray: #e0e0e0;
  --shadow: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--darker);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; color: var(--gray); }

.section-label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 20px; }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 48px;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(232, 90, 27, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--darker);
  padding: 6px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.topbar-left svg {
  width: 14px;
  height: 14px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}

.topbar-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: var(--transition);
}

.topbar-right a:hover { color: var(--orange); }

.topbar-right svg {
  width: 14px;
  height: 14px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--light-alt);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}

.nav-logo img {
  height: 90px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--light-alt);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--orange-light) 0%, rgba(232,90,27,0.08) 100%);
  z-index: 0;
}

.hero-split {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-logo {
  flex-shrink: 0;
}

.hero-logo img {
  width: 320px;
  height: auto;
  opacity: 0.95;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero h1 {
  color: var(--darker);
  margin-bottom: 20px;
}

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

.hero p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  border: 1px solid rgba(232,90,27,0.2);
  border-radius: 40px;
  padding: 8px 20px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Geometric accents in hero */
.hero-accent {
  position: absolute;
  z-index: 1;
}
.hero-accent-1 {
  top: 15%;
  right: 8%;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(232,90,27,0.1);
  border-radius: 50%;
}
.hero-accent-2 {
  bottom: 10%;
  right: 15%;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(232,90,27,0.06);
  border-radius: 50%;
}
.hero-accent-3 {
  top: 40%;
  right: 25%;
  width: 4px;
  height: 80px;
  background: rgba(232,90,27,0.1);
  transform: rotate(25deg);
}

/* ===== SECTIONS ===== */
section { padding: 96px 0; }

.section-light { background: var(--light); }
.section-dark { background: var(--darker); color: var(--white); }
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

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

.services-grid-center {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.services-grid-center > * {
  flex: 0 1 calc(33.333% - 22px);
  min-width: 250px;
}

@media (max-width: 640px) {
  .services-grid-center > * { flex: 1 1 100%; }
}

.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 968px) {
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .services-grid-4 { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; margin-bottom: 20px; }

.service-card .card-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card .card-link:hover { gap: 12px; }

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--light);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.stat-item {
  padding: 48px 24px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

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

.why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== SERVICE AREA ===== */
.counties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.county-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
  color: var(--dark);
  border-left: 3px solid transparent;
}

.county-tag:hover {
  transform: translateX(4px);
  border-left-color: var(--orange);
}

.county-tag svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ===== WAVE DIVIDERS ===== */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-divider.flip svg {
  transform: rotate(180deg);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  color: var(--orange);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
}

.testimonial-info strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--gray);
}

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

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--darker);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.15rem; margin-bottom: 32px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--darker);
  padding: 20px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-top: 8px;
  max-width: 320px;
}

.footer-brand img {
  height: 105px;
  width: auto;
}

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--orange);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 10px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== PAGE HERO (for inner pages) ===== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--light-alt);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; width: 40%; height: 100%;
  background: linear-gradient(135deg, var(--orange-light) 0%, rgba(232,90,27,0.05) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 { color: var(--darker); margin-bottom: 16px; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { color: var(--gray); font-size: 1.15rem; max-width: 600px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.breadcrumb a { color: var(--gray); transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--light-gray); }
.breadcrumb .current { color: var(--orange); }

/* ===== CONTENT SECTIONS (inner pages) ===== */
.content-section { padding: 80px 0; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-text h2 { margin-bottom: 16px; }
.content-text p { margin-bottom: 16px; }

.check-list { margin: 24px 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--gray);
  font-size: 0.95rem;
}
.check-list li svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Content images (replaced placeholders) */
.content-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: var(--light);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== PROJECT GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== PHOTO HERO (homepage) ===== */
.hero-photo {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-photo-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

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

.hero-photo-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.55) 50%, rgba(26,26,26,0.3) 100%);
}

.hero-photo .container {
  position: relative;
  z-index: 2;
}

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

.hero-photo h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-photo h1 span {
  color: var(--orange);
}

.hero-photo p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-photo .hero-badge {
  background: rgba(232,90,27,0.15);
  border-color: rgba(232,90,27,0.3);
  color: var(--orange);
}

/* ===== PHOTO PAGE HERO (service pages) ===== */
.page-hero-photo {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.page-hero-photo .hero-photo-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.page-hero-photo .hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-photo .hero-photo-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.6) 100%);
}

.page-hero-photo .page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-photo h1 { color: var(--white); margin-bottom: 16px; }
.page-hero-photo h1 span { color: var(--orange); }
.page-hero-photo p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 600px; }
.page-hero-photo .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero-photo .breadcrumb a:hover { color: var(--orange); }
.page-hero-photo .breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero-photo .breadcrumb .current { color: var(--orange); }

/* ===== CASE STUDY ===== */
.case-study {
  padding: 96px 0;
}

.case-study-header {
  text-align: center;
  margin-bottom: 56px;
}

.case-study-header .section-label {
  background: var(--orange-light);
  padding: 6px 16px;
  border-radius: 4px;
}

.case-study-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.case-study-story .content-text {
  padding-top: 8px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.before-after-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.before-after-item img {
  width: 100%;
  height: auto;
  display: block;
}

.before-after-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  z-index: 2;
}

.before-after-tag.before {
  background: rgba(0,0,0,0.7);
  color: var(--white);
}

.before-after-tag.after {
  background: var(--orange);
  color: var(--white);
}

.case-study-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-study-detail-grid .gallery-item img {
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 968px) {
  .case-study-story { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  .case-study-detail-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .case-study-detail-grid { grid-template-columns: 1fr; }
  .case-study { padding: 64px 0; }
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--light-gray);
  padding: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover { color: var(--orange); }

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .topbar-right { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar { font-size: 0.75rem; }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--light-alt);
    padding: 24px;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .nav-links.active a { color: var(--dark); }
  .hamburger { display: flex; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .content-grid.reverse { direction: ltr; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ===== STICKY MOBILE CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--orange);
  padding: 0;
}

.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.mobile-cta svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

/* Add bottom padding to footer when mobile CTA is visible */
@media (max-width: 968px) {
  .mobile-cta { display: block; }
  .footer-bottom { padding-bottom: 72px; }
}

@media (max-width: 640px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 32px 16px; }

  .footer-grid { grid-template-columns: 1fr; }

  .hero, .hero-photo { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
  .hero-split { flex-direction: column; gap: 32px; text-align: center; }
  .hero-logo img { width: 200px; margin: 0 auto; }
  .hero-content { max-width: 100%; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-photo .hero-buttons { align-items: stretch; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { aspect-ratio: 3/2; }

  .form-row { grid-template-columns: 1fr; }

  section { padding: 64px 0; }
}
