/* ============================================
   AL DENTE CONSTRUCTION — MAIN STYLESHEET
   Fonts: Outfit (Google Fonts)
   Primary: #f61b1b (red)
   Dark: #111111
   Accent: #205493 (blue)
   ============================================ */

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

:root {
  --red: #f61b1b;
  --red-dark: #c41414;
  --black: #111111;
  --dark: #1a1a1a;
  --dark-card: #222222;
  --neutral-dark: #444444;
  --neutral: #666666;
  --neutral-light: #999999;
  --neutral-ultra-light: #f5f5f5;
  --white: #ffffff;
  --blue: #205493;
  --border: rgba(255,255,255,0.08);
  --border-light: #e5e5e5;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --transition: all 0.25s ease;
  --font: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

.section { padding: 90px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.red { color: var(--red); }

/* --- TYPOGRAPHY --- */
h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.3rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.75; color: var(--neutral-dark); }
.section-dark p { color: rgba(255,255,255,0.7); }

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; font-size: 1.05rem; }
.section-header.centered p { margin: 0 auto; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  line-height: 1;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(246,27,27,0.35);
}

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

.btn-full { width: 100%; }
.center-cta { text-align: center; margin-top: 48px; }

/* --- NAVIGATION --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.site-header.scrolled {
  background: var(--white);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

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

.logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.logo-img-light {
  filter: brightness(0) invert(1);
}

.main-nav { margin-left: auto; }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
}

.main-nav a {
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--red);
  background: transparent;
}

.main-nav a.active { color: var(--red); background: transparent; }

.nav-cta { margin-left: 8px; padding: 10px 20px; font-size: 0.88rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  position: relative;
  z-index: 1200;        /* keep hamburger / X above the .main-nav.open overlay (1100) and the site-header (1000) */
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black);
  padding-bottom: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.88) 0%, rgba(17,17,17,0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 40px;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  background: rgba(246,27,27,0.2);
  border: 1px solid rgba(246,27,27,0.4);
  color: #ff6b6b;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
}

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

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

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

.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(246,27,27,0.92);
  margin-top: auto;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 32px 24px;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}

.stat:last-child { border-right: none; }

.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
  font-weight: 400;
}

/* --- INTRO SECTION --- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.image-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.image-block img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--red);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-num {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
}

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

.check-list {
  list-style: none;
  margin: 24px 0;
}

.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--neutral-dark);
  font-size: 0.95rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

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

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(246,27,27,0.15);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

/* Image slot for service cards — replaces .service-icon when a real photo is provided */
.service-image {
  position: relative;
  width: calc(100% + 56px);            /* bleed to card edges (cancel 28px L/R padding) */
  margin: -36px -28px 24px;            /* bleed to top edge (cancel 36px top padding) */
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  background: #111;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.04);
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.card-link {
  color: var(--red);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}

.card-link:hover { color: #ff5555; }

/* --- WHY US --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-card {
  text-align: center;
  padding: 32px 20px;
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.red-bg { background: rgba(246,27,27,0.1); color: var(--red); }

.why-card h4 { margin-bottom: 12px; }

/* --- TESTIMONIALS --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.review-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.93rem;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
}

.reviewer span {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

/* --- TEAM SECTION --- */
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.team-member-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.team-member-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(246,27,27,0.15);
}

.team-member-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.team-member-card:hover .team-member-photo img {
  transform: scale(1.04);
}

.team-member-info {
  padding: 18px 16px;
}

.team-member-info strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-member-info span {
  display: block;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- LOGOS / PARTNERS GRID --- */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.logo-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}


/* --- CTA BANNER --- */
.cta-banner {
  background: var(--red);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-text h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.cta-banner .btn-primary:hover {
  background: var(--neutral-ultra-light);
  border-color: var(--neutral-ultra-light);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
  text-align: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.75) 100%);
}

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

.page-hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero .section-tag { margin-bottom: 16px; }

/* --- ABOUT PAGE --- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

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

.value-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}

.value-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}

.value-card h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.value-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
}

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

.team-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.team-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}

.team-info {
  padding: 20px;
}

.team-info h3 { font-size: 1.05rem; margin-bottom: 4px; }

.team-role {
  display: block;
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 0.88rem;
  color: var(--neutral);
  line-height: 1.6;
}

.featured-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.featured-card .team-photo img {
  height: 100%;
  min-height: 260px;
}

.accred-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.accred-grid > .accred-item {
  flex: 0 1 calc((100% - 56px) / 3); /* 3 per row, accounts for 2 × 28px gap */
}

.accred-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}

.accred-icon { font-size: 2.2rem; margin-bottom: 16px; }

.accred-item h4 {
  color: var(--white);
  margin-bottom: 10px;
}

.accred-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}

/* --- SERVICES PAGE --- */
.service-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail-block:first-child { padding-top: 0; }
.service-detail-block:last-child { border-bottom: none; padding-bottom: 0; }

.service-detail-block.reverse {
  direction: rtl;
}

.service-detail-block.reverse > * {
  direction: ltr;
}

.service-detail-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.service-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}

.service-detail-text h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.service-detail-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.service-detail-text .check-list li {
  color: rgba(255,255,255,0.7);
}

.service-detail-text .btn { margin-top: 12px; }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 24px;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h4 { margin-bottom: 12px; }
.process-step p { font-size: 0.9rem; }

.process-arrow {
  font-size: 1.6rem;
  color: var(--red);
  padding-top: 20px;
  flex-shrink: 0;
}

/* --- GALLERY PAGE --- */
.filter-section {
  padding: 32px 0;
  background: var(--neutral-ultra-light);
  border-bottom: 1px solid var(--border-light);
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 40px;
  border: 2px solid var(--border-light);
  background: var(--white);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--neutral-dark);
}

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

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

.gallery-item--wide { grid-column: span 2; }

.gallery-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item--wide .gallery-image { aspect-ratio: 16/7; }

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17,17,17,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.gallery-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.gallery-info h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.gallery-info p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
}

.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-big {
  padding: 40px 20px;
  border-right: 1px solid var(--border);
}

.stat-big:last-child { border-right: none; }

.stat-big .stat-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-big .stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}

/* --- CONTACT PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; }

.contact-cards { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--neutral-ultra-light);
}

.contact-card-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }

.contact-card h4 { margin-bottom: 4px; font-size: 0.92rem; }

.contact-card a {
  display: block;
  color: var(--red);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-card a:hover { text-decoration: underline; }

.contact-card address,
.contact-card span {
  color: var(--neutral);
  font-size: 0.85rem;
  line-height: 1.5;
}

.hours-table { width: 100%; font-size: 0.85rem; color: var(--neutral); }
.hours-table td { padding: 2px 0; }
.hours-table td:last-child { text-align: right; font-weight: 500; color: var(--neutral-dark); }

.social-links h4 { margin-bottom: 14px; }

.social-icons { display: flex; gap: 12px; }

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--neutral-ultra-light);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-dark);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}

.form-card h3 { margin-bottom: 8px; }
.form-card > p { margin-bottom: 32px; font-size: 0.92rem; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(246,27,27,0.1);
}

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

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input { width: auto; margin-top: 3px; flex-shrink: 0; }

.form-checkbox label {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--neutral);
  cursor: pointer;
}

.form-checkbox label a { color: var(--red); }

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #22c55e;
  color: var(--white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h4 { font-size: 1.3rem; margin-bottom: 10px; }
.form-success p { color: var(--neutral); }

.map-section { background: var(--neutral-ultra-light); }

.map-header {
  text-align: center;
  padding: 56px 24px 40px;
}

.map-header h3 { margin-bottom: 8px; }

.map-embed { line-height: 0; }

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

.faq-item {
  padding: 28px 28px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--neutral-ultra-light);
}

.faq-item h4 {
  color: var(--black);
  margin-bottom: 12px;
  font-size: 1rem;
}

.faq-item p { font-size: 0.92rem; }

/* --- FOOTER --- */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo-light .logo-mark { color: var(--white); }
.footer-brand .logo-light .logo-sub { color: var(--red); }

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin: 16px 0 20px;
  line-height: 1.7;
}

.footer-contact p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-contact a:hover { color: var(--red); }

.footer-nav h4 {
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-nav ul { list-style: none; }

.footer-nav li { margin-bottom: 10px; }

.footer-nav a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-nav a:hover { color: var(--red); }

.hours-list li {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 8px;
  gap: 16px;
  white-space: nowrap;
}

.hours-list li span:last-child { color: rgba(255,255,255,0.75); }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-legal a:hover { color: var(--red); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 20px; }
  .stats-row .stat:last-child, .stats-row .stat:nth-child(3) { border-bottom: none; }
}

@media (max-width: 900px) {
  .team-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid,
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-image { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-block { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .service-detail-block.reverse { direction: ltr; }
  .service-detail-image { order: -1; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); padding: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
  .cta-inner { flex-direction: column; text-align: center; }
  .accred-grid > .accred-item { flex-basis: calc((100% - 28px) / 2); }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .stats-banner { grid-template-columns: repeat(2, 1fr); }
  .stat-big { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-big:last-child, .stat-big:nth-child(3) { border-bottom: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .main-nav, .nav-cta {
    display: none;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--black);
    z-index: 1100;        /* above .site-header (1000) */
    align-items: center;
    justify-content: center;
    padding: 40px;
  }

  .main-nav.open ul {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .main-nav.open a {
    font-size: 1.4rem;
    padding: 14px 24px;
    display: block;
    color: var(--red);          /* every menu link red on mobile */
    background: transparent;
  }
  .main-nav.open a:hover,
  .main-nav.open a:focus,
  .main-nav.open a.active {
    color: var(--red);          /* no hover/focus/active color change */
    background: transparent;
  }

  .menu-toggle { display: flex; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; max-width: 280px; }

  .team-grid { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; grid-column: span 1; }
  .featured-card .team-photo img { height: 260px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--wide .gallery-image { aspect-ratio: 4/3; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr; }
  .accred-grid > .accred-item { flex-basis: 100%; }
  .stats-banner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; text-align: center; }
  .filter-bar { justify-content: center; }
}

/* "Get a Quote" inside the mobile nav — hidden on desktop, visible only when the mobile menu is open */
.nav-mobile-only { display: none; }
@media (max-width: 768px) {
  .main-nav.open .nav-mobile-only { display: block; margin-top: 12px; }
  .main-nav.open .nav-mobile-only a {
    background: var(--red);
    color: var(--white);
    border-radius: 999px;
    padding: 14px 36px;
  }
}
