/* =========================================
   GLC Contracting — Clean & Corporate Style
   Option B: White/light gray, charcoal, steel blue
   ========================================= */

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

:root {
  --charcoal:    #1e2a38;
  --charcoal-lt: #2c3e50;
  --steel-blue:  #2a6496;
  --steel-hover: #1e4d74;
  --light-gray:  #f5f6f8;
  --mid-gray:    #e2e5ea;
  --text:        #333;
  --text-light:  #666;
  --white:       #ffffff;
  --nav-height:  80px;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.content-max { max-width: 860px; margin: 0 auto; }
.section-pad { padding: 80px 0; }
.pt-0 { padding-top: 0; }
.bg-light { background: var(--light-gray); }
.bg-dark  { background: var(--charcoal); color: var(--white); }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--steel-blue);
  color: var(--white);
  border-color: var(--steel-blue);
}
.btn-primary:hover { background: var(--steel-hover); border-color: var(--steel-hover); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--charcoal); }
.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); }
.btn-full { width: 100%; text-align: center; }

/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.75); }

/* =========================================
   NAVIGATION
   ========================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--mid-gray);
  height: var(--nav-height);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.1); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--steel-blue);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-links a.active { color: var(--steel-blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,42,56,0.75) 0%, rgba(30,42,56,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  max-width: 760px;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-content .btn { margin-right: 12px; margin-bottom: 12px; }

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 48px;
  z-index: 2;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.hero-dot.active { background: var(--white); border-color: var(--white); }

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar { background: var(--charcoal); padding: 32px 0; }
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* =========================================
   SECTORS GRID
   ========================================= */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sector-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.sector-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.sector-card:hover .sector-img { transform: scale(1.04); }
.sector-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,42,56,0.92) 0%, transparent 100%);
  padding: 40px 20px 20px;
  color: var(--white);
}
.sector-info h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.sector-info span {
  font-size: 0.8rem;
  opacity: 0.8;
  letter-spacing: 0.04em;
}

/* 5 sectors: 3+2 layout */
.sectors-grid .sector-card:nth-child(4),
.sectors-grid .sector-card:nth-child(5) {
  grid-column: span 1;
}
.sectors-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* =========================================
   ABOUT SNIPPET
   ========================================= */
.about-snippet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-snippet-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}
.about-snippet-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.about-snippet-text p {
  color: var(--text-light);
  margin-bottom: 16px;
}
.about-snippet-text .btn { margin-top: 12px; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--light-gray);
  border-radius: 4px;
  padding: 32px;
  border-left: 4px solid var(--steel-blue);
}
.testimonial-card p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}
.testimonial-card cite {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--steel-blue);
  letter-spacing: 0.04em;
  font-style: normal;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: var(--steel-blue);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--white); }
.footer-contact p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  position: relative;
  height: 380px;
  background-size: cover;
  background-position: center;
  margin-top: var(--nav-height);
  display: flex;
  align-items: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,42,56,0.65);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 48px;
  color: var(--white);
}
.page-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.page-hero-content p {
  font-size: 1rem;
  opacity: 0.85;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.body-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.founder-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
}
.founder-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.founder-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.founder-card h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-blue);
  margin-bottom: 16px;
}
.founder-card p { color: var(--text-light); font-size: 0.95rem; }

.founders-philosophy {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-light);
  font-style: italic;
}
.founders-philosophy strong { color: var(--charcoal); font-style: normal; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.approach-card { text-align: center; padding: 32px 20px; }
.approach-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--mid-gray);
  margin-bottom: 12px;
  line-height: 1;
}
.approach-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.approach-card p { color: var(--text-light); font-size: 0.95rem; }

.drivers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.driver-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
}
.driver-icon {
  font-size: 2rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.driver-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.driver-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.drivers-note {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}

/* =========================================
   PROJECTS / GALLERY
   ========================================= */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}
.filter-tab {
  padding: 10px 22px;
  border: 2px solid var(--mid-gray);
  background: var(--white);
  border-radius: 3px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,42,56,0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.gallery-overlay p {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.gallery-item.hidden { display: none; }

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-top: 12px;
  font-family: var(--font-head);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 12px;
  transition: opacity 0.2s;
  opacity: 0.75;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 16px; right: 24px; font-size: 2.5rem; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* =========================================
   SERVICES PAGE
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
  padding: 36px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  color: var(--steel-blue);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.service-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }

.markets-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.market-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}
.market-item span { color: var(--steel-blue); font-size: 1.1rem; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.8;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  color: var(--steel-blue);
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-detail h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-detail a,
.contact-detail p { color: var(--charcoal); font-size: 0.95rem; }
.contact-detail a:hover { color: var(--steel-blue); }

.contact-form-wrap { background: var(--light-gray); border-radius: 4px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--mid-gray);
  border-radius: 3px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--steel-blue);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 48px;
}
.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--steel-blue);
  margin-bottom: 12px;
}
.form-success p { color: var(--text-light); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-list { grid-template-columns: repeat(3, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--mid-gray);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 24px;
    font-size: 0.88rem;
  }
  .nav-links a::after { display: none; }

  .hero { height: 90vh; }
  .hero-content { padding: 0 24px; }
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .about-snippet-grid { grid-template-columns: 1fr; }
  .about-snippet-img img { height: 280px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .drivers-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .markets-list { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero-content { padding: 0 24px; }
}

@media (max-width: 480px) {
  .sectors-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-container { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 1.8rem; }
  .contact-form-wrap { padding: 24px; }
}

/* SERVICE AREA SECTION */
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.service-area-block h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8d5a3;
}
.service-area-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-area-block ul li {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: #444;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
}
.service-area-block ul li:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .service-area-grid { grid-template-columns: 1fr; gap: 28px; }
}
