/* ============================================
   COASTSIDE CONCRETE & CIVIL — Main Stylesheet
   Mobile-first, responsive
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --charcoal: #1a1a1a;
  --charcoal-mid: #2c2c2c;
  --charcoal-light: #3d3d3d;
  --orange: #00BBDD;
  --orange-dark: #0099BB;
  --orange-light: #33CCEE;
  --white: #ffffff;
  --light-grey: #f4f4f4;
  --mid-grey: #e0e0e0;
  --text-dark: #222222;
  --text-mid: #555555;
  --text-light: #888888;
  --max-width: 1200px;
  --radius: 4px;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-heavy: 0 8px 40px rgba(0,0,0,0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

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

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--orange);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: var(--radius);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,187,221,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 15px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: var(--radius);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ============================================
   NAV
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 0;
  padding: 4px 0;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-cta {
  display: none;
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--orange-dark);
  color: var(--white) !important;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.nav-mobile {
  display: none;
  background: var(--charcoal);
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.nav-mobile a:hover {
  color: var(--orange);
}

.nav-mobile .mobile-cta {
  margin-top: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 20px;
  text-align: center;
  border-radius: var(--radius);
  font-weight: 600;
  border-bottom: none;
  letter-spacing: 2px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.7) 60%, rgba(0,187,221,0.15) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
}

.hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(0,187,221,0.08), transparent);
  pointer-events: none;
}

.hero-stripe {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-logo-wrap {
  margin-bottom: 32px;
  display: inline-block;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.hero-logo-img {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-eyebrow-line {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--orange);
}

.hero-eyebrow span {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
}

.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
}

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

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================
   INTRO STRIP
   ============================================ */

.intro-strip {
  background: var(--orange);
  padding: 20px;
}

.intro-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.intro-strip p {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
}

.intro-strip-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   SERVICES
   ============================================ */

.services {
  padding: 80px 20px;
  background: var(--light-grey);
}

.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-header {
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-heavy);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,187,221,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--orange);
  fill: var(--orange);
}

.service-card h3 {
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================
   INDUSTRIAL FEATURE
   ============================================ */

.industrial {
  background: var(--charcoal);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.industrial::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(to left, rgba(0,187,221,0.06), transparent);
  pointer-events: none;
}

.industrial-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.industrial .section-title {
  color: var(--white);
}

.industrial .section-subtitle {
  color: rgba(255,255,255,0.65);
}

.industrial-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.industrial-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}

.industrial-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.industrial-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.industrial-feature {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  border-radius: var(--radius);
}

.industrial-feature-title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.industrial-feature p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
  padding: 80px 20px;
  background: var(--white);
}

.gallery-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery-header {
  margin-bottom: 40px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 9px 20px;
  border: 2px solid var(--mid-grey);
  background: transparent;
  color: var(--text-mid);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal-light);
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--charcoal-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.2);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-placeholder svg {
  width: 32px;
  height: 32px;
  opacity: 0.2;
}

/* ============================================
   WHY US
   ============================================ */

.why-us {
  background: var(--charcoal);
  padding: 80px 20px;
}

.why-us-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-subtitle {
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-number {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.3;
  line-height: 1;
  min-width: 48px;
}

.why-item h4 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.why-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ============================================
   CONTACT / QUOTE
   ============================================ */

.contact {
  padding: 80px 20px;
  background: var(--light-grey);
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.contact-item h4 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
}

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

.call-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--white);
  padding: 18px 28px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.call-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,187,221,0.4);
}

.call-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  animation: ring 2s ease infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
}

/* QUOTE FORM */

.quote-form {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-form h3 {
  font-size: 24px;
  color: var(--charcoal);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.quote-form p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--mid-grey);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

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

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

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

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,187,221,0.4);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #111111;
  padding: 48px 20px 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.footer-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.footer-contact-line svg {
  width: 14px;
  height: 14px;
  fill: var(--orange);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-bottom span {
  color: var(--orange);
}

/* ============================================
   STICKY CALL BUTTON (mobile only)
   ============================================ */

.sticky-call {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  display: flex;
}

.sticky-call a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(0,187,221,0.5);
  transition: all 0.2s ease;
  animation: pulse 2.5s ease infinite;
}

.sticky-call a:hover {
  background: var(--orange-dark);
  transform: scale(1.05);
}

.sticky-call svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(0,187,221,0.5); }
  50% { box-shadow: 0 6px 36px rgba(0,187,221,0.8); }
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .intro-strip-inner {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    text-align: left;
  }

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

/* ============================================
   RESPONSIVE — DESKTOP
   ============================================ */

@media (min-width: 960px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .nav-hamburger {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industrial-inner {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-inner {
    grid-template-columns: 1fr 1.5fr;
  }

  .sticky-call {
    display: none;
  }
}

/* Success state for form */
.form-success {
  display: none;
  padding: 20px;
  background: #e8f5e9;
  border: 2px solid #4caf50;
  border-radius: var(--radius);
  text-align: center;
  color: #2e7d32;
  font-weight: 600;
  margin-top: 16px;
}
