/* ========================================
   KELLER CONSTRUCTION GROUP – Main Styles
   ======================================== */

:root {
  --red: #cc0000;
  --red-dark: #a80000;
  --red-light: #e60000;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --mid: #444444;
  --light: #f5f5f5;
  --white: #ffffff;
  --text: #222222;
  --text-muted: #666666;
  --border: #e0e0e0;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-height: 76px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204,0,0,0.08);
  padding: 6px 16px;
  border-left: 3px solid var(--red);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.section-header .section-tag { display: inline-block; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

.section-header.light .section-title { color: var(--white); }
.section-header.light .section-desc { color: rgba(255,255,255,0.7); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid var(--red);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-dark);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 0;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary span, .btn-primary { z-index: 1; position: relative; }
.btn-primary:hover { color: var(--white); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-light {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-light::after { background: var(--light); }
.btn-light:hover { color: var(--red-dark); }

/* ---- HEADER / NAV ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(10,10,10,0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

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

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-keller {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  line-height: 1;
}
.logo-red { color: var(--red); }
.logo-sub {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 10px 24px;
  margin-left: 16px;
  transition: var(--transition);
  border: 2px solid var(--red);
}
.nav-cta:hover { background: var(--red-dark); border-color: var(--red-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.75) 60%, rgba(140,0,0,0.25) 100%);
  z-index: 1;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

/* Animated diagonal accent */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%;
  height: 120%;
  background: linear-gradient(135deg, transparent 40%, rgba(180,0,0,0.12) 100%);
  border-left: 2px solid rgba(204,0,0,0.2);
  transform: skewX(-8deg);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 50%, transparent 100%);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 6px 16px;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeInUp 0.7s 0.1s ease forwards;
  opacity: 0;
}

.hero-title .line1 {
  display: block;
  color: rgba(255,255,255,0.85);
}
.hero-title .line2 {
  display: block;
  color: var(--white);
}
.hero-title em {
  font-style: normal;
  color: var(--red);
  -webkit-text-stroke: 0px;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 44px;
  animation: fadeInUp 0.7s 0.2s ease forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.3s ease forwards;
  opacity: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

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

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: var(--red);
  padding: 0;
}
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
.strip-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.strip-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  margin: 20px 0;
}

/* ---- SERVICES PREVIEW ---- */
.services-preview { background: var(--light); }

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-bottom: 4px solid transparent;
  transition: var(--transition);
  display: block;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-bottom-color: var(--red);
}

.featured-card, .dark-card {
  background: var(--dark);
  border-color: var(--dark);
  border-bottom-color: var(--red);
}
.featured-card::before, .dark-card::before { transform: scaleX(1); }
.featured-card h3, .featured-card p,
.dark-card h3, .dark-card p { color: var(--white); }
.featured-card .card-num, .dark-card .card-num { color: rgba(255,255,255,0.15); }
.featured-card .card-link, .dark-card .card-link { color: var(--red); }
.featured-card .card-icon, .dark-card .card-icon { color: var(--red); }

.card-icon {
  width: 52px;
  height: 52px;
  color: var(--red);
  margin-bottom: 20px;
}
.card-icon svg { width: 100%; height: 100%; }

.card-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.card-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
}

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

/* ---- WHY US ---- */
.why-us { background: var(--white); }

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

.why-image-block {
  position: relative;
}
.why-image-placeholder {
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  border: 4px solid var(--dark);
}
.why-image-placeholder img,
.why-image-placeholder svg {
  width: 100%;
  display: block;
}
.why-accent-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--red);
  color: var(--white);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.accent-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.accent-text {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}

.why-content-col .section-title { text-align: left; }

.why-intro {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.point-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}
.point-text h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 4px;
}
.point-text p {
  font-size: 15px;
  color: var(--text-muted);
}

/* ---- GALLERY PREVIEW ---- */
.gallery-preview { background: var(--light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-bottom: 48px;
}

.gallery-item { overflow: hidden; position: relative; }
.gi-large { grid-row: span 2; }
.gi-wide { grid-column: span 2; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: var(--dark2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
  border: 1px dashed rgba(255,255,255,0.1);
  cursor: pointer;
}
.gallery-placeholder span {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.gallery-placeholder p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}
.gallery-item:hover .gallery-placeholder { background: var(--dark3); }

/* Actual images when added */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--dark); }
.testimonials .section-tag { background: rgba(204,0,0,0.2); }

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

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
}

.featured-testimonial {
  background: var(--red);
  border-color: var(--red);
}
.featured-testimonial:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.stars {
  color: #ffcc00;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 20px;
}
.client-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.featured-testimonial .client-name { color: rgba(255,255,255,0.7); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--red);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'KCG';
  position: absolute;
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 20px;
  white-space: nowrap;
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-links, .footer-services, .footer-contact {
  display: flex;
  flex-direction: column;
}
.footer-links h4, .footer-services h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.footer-links a, .footer-services a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 5px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.footer-links a:hover, .footer-services a:hover {
  color: var(--white);
  border-bottom-color: var(--red);
  padding-left: 8px;
}
.footer-contact p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.footer-contact strong { color: rgba(255,255,255,0.7); }
.footer-contact a { color: rgba(255,255,255,0.5); transition: var(--transition); font-size: 12px; }
.footer-contact a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ========================================
   SERVICES PAGE
   ======================================== */
.page-hero {
  background: var(--dark);
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--red);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto;
}

.services-full { background: var(--white); }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.service-block:nth-child(even) .service-block-content { order: -1; }
.service-block:nth-child(even) .service-block-image { order: 1; }

.service-block-image {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-block-image-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.3);
  padding: 40px;
}
.service-block-image-placeholder svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  color: rgba(204,0,0,0.4);
}
.service-block-image-placeholder p {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.service-block-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-block:nth-child(odd) .service-block-content { background: var(--light); }
.service-block:nth-child(even) .service-block-content { background: var(--white); }

.service-block-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--red);
  display: inline-block;
}
.service-block-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.service-list li::before {
  content: '▸';
  color: var(--red);
  font-size: 14px;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-story { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 90px 0;
}
.about-image {
  background: var(--dark2);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.about-text .section-title { text-align: left; }
.about-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: var(--light);
  padding: 90px 0;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-bottom: 4px solid var(--red);
}
.value-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================
   GALLERY PAGE
   ======================================== */
.gallery-full { background: var(--light); padding: 80px 0; }
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-full-item {
  background: var(--dark2);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-full-item:hover img { transform: scale(1.08); }
.gallery-placeholder-full {
  text-align: center;
  color: rgba(255,255,255,0.3);
}
.gallery-placeholder-full span {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gallery-placeholder-full p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section { background: var(--white); padding: 90px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--red);
}
.contact-info p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  overflow: hidden;
}
.detail-text h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
}
.detail-text p, .detail-text a {
  font-size: 15px;
  color: var(--text-muted);
  transition: var(--transition);
  margin-bottom: 0;
}
.detail-text a:hover { color: var(--red); }

.contact-form-wrap {
  background: var(--light);
  padding: 48px 40px;
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  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(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group textarea { height: 130px; resize: vertical; }

.form-submit { width: 100%; padding: 18px; font-size: 16px; border: none; cursor: pointer; }
.g-recaptcha { margin-bottom: 16px; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 60px; }
  .why-image-col { display: none; }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-block-content { order: 1; }
  .service-block-content { padding: 48px 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { min-height: 300px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0; bottom: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .nav-link { font-size: 24px; padding: 12px 24px; }
  .nav-cta { margin-left: 0; margin-top: 16px; font-size: 16px; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(44px, 12vw, 72px); }
  .strip-inner { flex-wrap: wrap; }
  .strip-divider { display: none; }
  .strip-stat { width: 50%; border-bottom: 1px solid rgba(255,255,255,0.15); }

  .service-cards { grid-template-columns: 1fr; }
  .testimonial-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gi-large { grid-row: span 1; }
  .gi-wide { grid-column: span 1; }
  .gallery-full-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
}
