/* ============================================================
   SafeShift Packers and Movers — Main Stylesheet
   File: css/style.css
   ============================================================ */

/* ========== CSS VARIABLES ========== */
:root {
  --blue: #0a2d6e;
  --blue-mid: #1648b0;
  --blue-light: #1e5fd4;
  --orange: #f47920;
  --orange-dark: #d9640e;
  --orange-light: #ffa040;
  --white: #ffffff;
  --off-white: #f6f8fc;
  --gray-light: #eef1f7;
  --gray: #a0aec0;
  --text: #1a2340;
  --text-muted: #5a6480;
  --shadow: 0 4px 24px rgba(10,45,110,0.12);
  --shadow-lg: 0 12px 40px rgba(10,45,110,0.18);
  --radius: 10px;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Lato', sans-serif;
}

/* ========== RESET ========== */
*, *::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);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== UTILITY ========== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }
.text-center { text-align: center; }

.tag {
  display: inline-block;
  background: rgba(244,121,32,0.12);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-title span { color: var(--orange); }

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(244,121,32,0.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,121,32,0.4); }
.btn-full { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 6px;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--blue);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--orange); color: var(--white); }

/* ========== TOP BAR ========== */
.topbar {
  background: var(--blue);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 7px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--orange-light); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { flex-shrink: 0; }

/* ========== HEADER / NAV ========== */
header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,45,110,0.09);
  position: sticky;
  top: 0;
  z-index: 999;
}
nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 50px; width: auto; }
.logo-text { font-family: var(--font-head); }
.logo-name { font-size: 26px; font-weight: 800; color: var(--blue); line-height: 1; }
.logo-name span { color: var(--orange); }
.logo-tagline { font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 5px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--orange); background: rgba(244,121,32,0.07); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  display: flex; align-items: center; gap: 7px;
}
.nav-phone:hover { color: var(--orange); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--blue); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 2px solid var(--gray-light);
  padding: 16px 20px;
  gap: 4px;
}
.mobile-menu a {
  font-weight: 700;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 16px;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu.open { display: flex; }

/* ========== STICKY CALL BUTTON ========== */
.sticky-call {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 9998;
  background: var(--blue);
  color: var(--white);
  border-radius: 50px;
  padding: 10px 18px 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(10,45,110,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sticky-call:hover { transform: scale(1.05); box-shadow: 0 10px 28px rgba(10,45,110,0.5); color: var(--white); }
.sticky-call svg { flex-shrink: 0; }

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, #0f3d8f 55%, #1648b0 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0 70px;
  min-height: 600px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,121,32,0.2);
  border: 1px solid rgba(244,121,32,0.4);
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 18px;
}
.hero-title span { color: var(--orange-light); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin-bottom: 30px;
  line-height: 1.7;
}
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 8px; }
.hero-stat { text-align: left; }
.hero-stat-num { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--orange-light); line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 3px; }

/* ========== ENQUIRY FORM ========== */
.enquiry-form-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.enquiry-form-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}
.enquiry-form-card .form-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #dde3f0;
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(30,95,212,0.1);
  background: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-honeypot { display: none !important; }
.enquiry-form-card .btn-primary { width: 100%; font-size: 18px; padding: 15px; margin-top: 4px; }

.form-wa-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  justify-content: center;
}
.form-wa-hint a {
  color: #25d366;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.form-wa-hint a:hover { text-decoration: underline; }

/* ========== TRUST BAR ========== */
.trust-bar { background: var(--orange); padding: 16px 0; }
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}
.trust-item svg { flex-shrink: 0; }

/* ========== SERVICES ========== */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.service-body { padding: 22px 22px 26px; }
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(244,121,32,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-body h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.service-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.service-link { font-size: 14px; font-weight: 700; color: var(--orange); display: flex; align-items: center; gap: 5px; }
.service-link:hover { color: var(--orange-dark); }

/* ========== ABOUT ========== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about-badge strong { font-family: var(--font-head); font-size: 28px; font-weight: 800; line-height: 1; }
.about-badge span { font-size: 11px; font-weight: 700; text-align: center; }
.about-content .tag { margin-bottom: 10px; }
.about-content p { font-size: 15.5px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }
.about-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.about-check { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--text); }
.check-icon {
  width: 20px;
  height: 20px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 11px; height: 11px; }

/* ========== WHY CHOOSE US ========== */
.why { background: linear-gradient(135deg, var(--blue) 0%, #0f3d8f 100%); }
.why .section-title { color: var(--white); }
.why .section-sub { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: background 0.25s, transform 0.25s;
}
.why-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(244,121,32,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 13.5px; color: rgba(255,255,255,0.68); line-height: 1.65; }

/* ========== MOVING PROCESS ========== */
.process { background: var(--off-white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--blue));
  z-index: 0;
}
.step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-num {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  margin: 0 auto 16px;
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s;
}
.step:hover .step-num { background: var(--orange); color: var(--white); }
.step h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  border-left: 4px solid var(--orange);
  transition: box-shadow 0.2s;
}
.testi-card:hover { box-shadow: var(--shadow); }
.testi-quote { font-size: 48px; color: var(--orange); font-family: Georgia, serif; line-height: 1; margin-bottom: 10px; opacity: 0.5; }
.testi-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-stars { color: #f5a623; font-size: 16px; margin-bottom: 12px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 15px; color: var(--blue); }
.testi-location { font-size: 12px; color: var(--text-muted); }

/* ========== AREAS WE SERVE ========== */
.areas { background: var(--off-white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.area-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(10,45,110,0.07);
  border-top: 3px solid var(--orange);
  transition: transform 0.2s, box-shadow 0.2s;
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.area-card svg { margin: 0 auto 10px; color: var(--orange); }
.area-card h3 { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.area-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.areas-intercity {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.areas-intercity h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.intercity-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.intercity-tag {
  background: rgba(10,45,110,0.07);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}

/* ========== GALLERY PREVIEW ========== */
.gallery { background: var(--blue); }
.gallery .section-title { color: var(--white); }
.gallery .section-sub { color: rgba(255,255,255,0.7); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 10px;
}
.gallery-item { border-radius: 8px; overflow: hidden; cursor: pointer; position: relative; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,45,110,0.3);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.25s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gallery-cta { margin-top: 32px; text-align: center; }

/* ========== FAQ ========== */
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(10,45,110,0.06);
}
.faq-q {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}
.faq-q:hover { color: var(--orange); }
.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-toggle svg { width: 12px; height: 12px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }

/* ========== MAP SECTION ========== */
.map-section { background: var(--off-white); padding: 60px 0; }
.map-section .section-title { margin-bottom: 30px; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--white);
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 64px 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 10px; }
.cta-text p { font-size: 16px; color: rgba(255,255,255,0.85); max-width: 500px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ========== FOOTER ========== */
footer { background: var(--blue); color: rgba(255,255,255,0.75); font-size: 14px; }
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand .logo-name { color: var(--white); font-size: 28px; }
.footer-brand .logo-name span { color: var(--orange-light); }
.footer-brand p { margin: 14px 0 20px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.social-icon:hover { background: var(--orange); }
.footer-col h4 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.72); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange-light); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; color: rgba(255,255,255,0.72); }
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}
.footer-bottom a { color: var(--orange-light); }
.footer-bottom a:hover { text-decoration: underline; }

/* ========== FLOATING WHATSAPP ========== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,0.6); }
.wa-float svg { width: 30px; height: 30px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .enquiry-form-card { max-width: 520px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .hero { padding: 40px 0 50px; }
  .hero-title { font-size: 36px; }
  .hero-stats { gap: 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .gallery-item img { height: 160px; }
  .gallery-item:first-child img { height: 200px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
  .about-checklist { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-intercity { flex-direction: column; }
  .sticky-call { padding: 10px 14px; font-size: 14px; }
  .map-wrap iframe { height: 260px; }
}
@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar .container { gap: 16px; }
}

/* ========== EXTRACTED INLINE STYLES ========== */

/* Topbar phone link highlight */
.topbar-phone {
  color: var(--orange-light);
  font-weight: 700;
}

/* Mobile menu phone link */
.mobile-phone-link {
  color: var(--orange);
}

/* Form error message box */
.form-error-box {
  background: #fff3f3;
  border: 1px solid #f9a8a8;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #c0392b;
}

/* About CTA button group */
.about-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Why section tag variant (dark bg) */
.tag-dark {
  background: rgba(244,121,32,0.25);
  color: var(--orange-light);
}

/* Why section subtitle on dark bg */
.section-sub-light {
  color: rgba(255,255,255,0.7);
}

/* Intercity description text */
.intercity-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Areas intercity CTA link */
.btn-primary-nowrap {
  white-space: nowrap;
}

/* Gallery section subtitle on dark bg */
.gallery-section-sub {
  color: rgba(255,255,255,0.7);
}

/* Mid-page CTA banner wrapper */
.mid-cta-wrap {
  background: var(--off-white);
  padding: 48px 0;
}
.mid-cta-inner {
  background: linear-gradient(135deg, var(--blue), #1648b0);
  border-radius: 14px;
  padding: 42px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mid-cta-inner h3 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.mid-cta-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
}
.mid-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Map section address subtext */
.map-address-sub {
  margin-bottom: 28px;
}

/* CTA outline button on dark bg */
.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: white;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 6px;
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline-white:hover {
  background: white;
  color: var(--blue);
}

/* Footer logo tagline */
.footer-logo-tagline {
  color: rgba(255,255,255,0.5);
}

/* Footer contact anchor links */
.footer-link-muted {
  color: rgba(255,255,255,0.72);
}
.footer-link-muted:hover {
  color: var(--orange-light);
}

/* Footer bottom link row */
.footer-bottom-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .mid-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .mid-cta-actions {
    justify-content: center;
  }
}

/* ============================================================
   INNER PAGE STYLES — Added for About, Services, Gallery, Contact
   ============================================================ */

/* ========== PAGE HERO (shared) ========== */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #1648b0 100%);
  padding: 60px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(244,121,32,0.08);
  pointer-events: none;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.35); }
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 16px;
  max-width: 720px;
}
.page-hero-title span { color: var(--orange-light); }
.page-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ========== ABOUT PAGE ========== */
.about-story { background: var(--white); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-story-wrap { position: relative; }
.about-story-img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  display: block;
}
.about-story-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: white;
  padding: 18px 22px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(244,121,32,0.4);
}
.about-story-badge strong { display: block; font-family: var(--font-head); font-size: 36px; font-weight: 800; line-height: 1; }
.about-story-badge span { font-size: 12px; font-weight: 700; letter-spacing: 0.5px; opacity: 0.9; }
.about-story-content p { font-size: 15.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.about-story-content h2 { margin-bottom: 20px; }

/* CTA Strip */
.cta-strip {
  background: var(--blue);
  padding: 28px 0;
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-strip p { color: rgba(255,255,255,0.85); font-size: 16px; font-weight: 600; }

/* Approach Section */
.approach { background: var(--off-white); }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.approach-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: 0 2px 12px rgba(10,45,110,0.07);
  border-top: 4px solid var(--orange);
  transition: transform 0.2s, box-shadow 0.2s;
}
.approach-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.approach-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: rgba(244,121,32,0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.approach-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.approach-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }

/* Team Stats Strip */
.team-strip {
  background: linear-gradient(135deg, var(--blue), #1648b0);
  padding: 60px 0;
}
.team-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.team-strip h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.team-strip h2 span { color: var(--orange-light); }
.team-strip p { color: rgba(255,255,255,0.75); font-size: 15.5px; line-height: 1.7; margin-bottom: 14px; }
.team-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  min-width: 300px;
}
.team-stat {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}
.team-stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 6px;
}
.team-stat-label { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 600; letter-spacing: 0.5px; }

/* Values / Why Section */
.values { background: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.value-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon {
  width: 54px; height: 54px;
  background: rgba(10,45,110,0.07);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.value-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* ========== SERVICES PAGE ========== */
.service-detail { background: var(--white); }
.service-detail:nth-child(even) { background: var(--off-white); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  display: block;
}
.service-detail-content h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.15;
  margin-bottom: 16px;
}
.service-detail-content h2 span { color: var(--orange); }
.service-detail-content p { font-size: 15.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.service-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 26px;
}
.service-include-tag {
  background: rgba(10,45,110,0.07);
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(10,45,110,0.12);
}

/* Services Overview Grid */
.services-overview { background: var(--off-white); }
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}
.service-overview-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 2px 12px rgba(10,45,110,0.07);
  border-top: 4px solid var(--orange);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
}
.service-overview-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-ov-icon {
  width: 50px; height: 50px;
  background: rgba(244,121,32,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-overview-card h3 { font-family: var(--font-head); font-size: 21px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.service-overview-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.service-ov-link { font-size: 13.5px; font-weight: 700; color: var(--orange); }

/* Services sticky nav */
.services-nav {
  background: var(--white);
  border-bottom: 2px solid var(--gray-light);
  position: sticky;
  top: 68px;
  z-index: 90;
  overflow-x: auto;
}
.services-nav .container {
  display: flex;
  gap: 0;
  white-space: nowrap;
}
.services-nav a {
  display: inline-block;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.services-nav a:hover, .services-nav a.active { color: var(--orange); border-color: var(--orange); }

/* ========== GALLERY PAGE ========== */
.gallery-bg { background: var(--white); }
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  background: var(--off-white);
  color: var(--text-muted);
  border: 2px solid var(--gray-light);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: white; }

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--gray-light);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-thumb:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.gallery-thumb:hover img { transform: scale(1.05); }
.gallery-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,45,110,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.25s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-thumb:hover .gallery-thumb-overlay { opacity: 1; }
.gallery-thumb-overlay span {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}
.gallery-thumb-overlay .gallery-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}
.gallery-thumb.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,15,40,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner { position: relative; max-width: 900px; width: 100%; }
.lightbox-img {
  width: 100%;
  border-radius: 10px;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}
.lightbox-caption {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-top: 14px;
}
.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: white;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: var(--orange); }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

/* Gallery CTA Strip */
.gallery-cta-strip {
  background: var(--off-white);
  padding: 56px 0;
}
.gallery-cta-inner {
  background: linear-gradient(135deg, var(--blue), #1648b0);
  border-radius: 14px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.gallery-cta-inner h3 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.gallery-cta-inner p { color: rgba(255,255,255,0.75); font-size: 15px; }
.gallery-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ========== CONTACT PAGE ========== */
.quick-contact-bar { background: var(--off-white); padding: 44px 0; }
.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.quick-contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(10,45,110,0.07);
  border-top: 4px solid var(--orange);
  transition: transform 0.2s, box-shadow 0.2s;
}
.quick-contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.qc-icon {
  width: 52px; height: 52px;
  background: rgba(244,121,32,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.quick-contact-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.quick-contact-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }
.quick-contact-card a { color: var(--blue); font-weight: 700; }
.quick-contact-card a:hover { color: var(--orange); }

/* Contact 2-column layout */
.contact-main { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--blue);
  border-radius: 14px;
  padding: 40px 34px;
  color: white;
}
.contact-info-card h2 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.contact-info-card .sub { color: rgba(255,255,255,0.7); font-size: 14.5px; margin-bottom: 30px; }
.contact-detail-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 30px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--orange-light); text-transform: uppercase; margin-bottom: 3px; }
.contact-detail-value { font-size: 15px; color: rgba(255,255,255,0.9); line-height: 1.5; }
.contact-detail-value a { color: rgba(255,255,255,0.9); font-weight: 700; }
.contact-detail-value a:hover { color: var(--orange-light); }

.contact-wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 8px;
  width: 100%;
  justify-content: center;
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.contact-wa-btn:hover { background: #1ab857; }

.contact-form-card {
  background: var(--off-white);
  border-radius: 14px;
  padding: 40px 34px;
  box-shadow: 0 2px 16px rgba(10,45,110,0.07);
}
.contact-form-card h2 { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--blue); margin-bottom: 6px; }
.contact-form-card .form-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }

/* Form styles (shared) */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-group label span { color: var(--orange); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(30,95,212,0.1);
}
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-honeypot { display: none !important; }
.form-wa-hint { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 13px; color: var(--text-muted); margin-top: 16px; }
.form-wa-hint a { display: flex; align-items: center; gap: 6px; font-weight: 700; color: #25d366; }

/* ========== RESPONSIVE — Inner Pages ========== */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .services-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-contact-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .team-strip-inner { grid-template-columns: 1fr; }
  .team-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .page-hero { padding: 40px 0 50px; }
  .page-hero-title { font-size: 32px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story-badge { right: 10px; bottom: -14px; }
  .approach-grid { grid-template-columns: 1fr; }
  .team-stats { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-grid.reverse { direction: ltr; }
  .services-overview-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-prev { left: -10px; }
  .lightbox-next { right: -10px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .quick-contact-grid { grid-template-columns: 1fr 1fr; }
  .gallery-cta-inner { flex-direction: column; text-align: center; padding: 30px 24px; }
  .gallery-cta-btns { justify-content: center; }
  .cta-strip .container { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .gallery-page-grid { grid-template-columns: 1fr; }
  .quick-contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-stats { grid-template-columns: repeat(2, 1fr); }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions a { text-align: center; }
}
