/* ============================================
   Keytronics Security & Locksmith — Auckland
   Mobile-first responsive stylesheet
   ============================================ */

/* --- Custom Properties --- */
:root {
  --green: #7dc836;
  --green-hover: #6ab02e;
  --green-dark: #4a8a1e;
  --navy: #0f1923;
  --navy-light: #162536;
  --charcoal: #1a2332;
  --white: #ffffff;
  --off-white: #f5f7f4;
  --light-gray: #e8ede4;
  --text-dark: #1a1a2e;
  --text-body: #3a3f47;
  --text-muted: #6c757d;
  --text-light: #d4dde8;
  --border: #dce3d6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.16);
  --radius: 6px;
  --radius-lg: 12px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --max-width: 1200px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--green);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: 1.75rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  min-height: 48px;
  min-width: 44px;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-phone {
  background: var(--green);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  letter-spacing: 0.02em;
}

.btn-phone:hover {
  background: var(--green-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(125,200,54,0.35);
}

.btn-phone svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 36px;
  width: auto;
}

.logo-text {
  display: none;
}

.header-phone {
  display: none;
}

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1010;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: background 0.2s;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, top 0.3s ease;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.nav-toggle.active span {
  background: transparent;
}

.nav-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile nav menu */
.nav-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  padding: 80px 20px 40px;
  overflow-y: auto;
  z-index: 1005;
}

.nav-menu.open {
  display: flex;
  flex-direction: column;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-links a {
  display: block;
  padding: 16px 0;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.nav-links .has-dropdown {
  position: relative;
}

.nav-links .dropdown-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.nav-links .dropdown-label svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s;
}

.nav-links .has-dropdown.open .dropdown-label svg {
  transform: rotate(180deg);
}

.nav-links .dropdown {
  display: none;
  padding-left: 20px;
}

.nav-links .has-dropdown.open .dropdown {
  display: block;
}

.nav-links .dropdown a {
  font-size: 1rem;
  padding: 12px 0;
  color: var(--text-muted);
}

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

.nav-cta {
  margin-top: 24px;
}

.nav-cta .btn-phone {
  width: 100%;
  text-align: center;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 60px;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,25,35,0.75) 0%,
    rgba(15,25,35,0.6) 40%,
    rgba(15,25,35,0.85) 100%
  );
  z-index: 2;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(125,200,54,0.15);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(125,200,54,0.3);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero h1 {
  color: var(--white);
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 600px;
}

.hero h1 .accent {
  color: var(--green);
}

.hero-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 500px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.85rem;
  opacity: 0.8;
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--green);
  flex-shrink: 0;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  padding: 120px 0 60px;
  background: var(--navy);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,25,35,0.8) 0%,
    rgba(15,25,35,0.7) 100%
  );
  z-index: 2;
}

.page-hero .container {
  position: relative;
  z-index: 3;
}

.page-hero h1 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 560px;
  opacity: 0.9;
}

/* --- Sections --- */
.section {
  padding: 60px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-alt {
  background: var(--off-white);
}

.section-header {
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 560px;
}

.section-header .overline {
  display: block;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

/* --- Services Grid (homepage) --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.service-card-img {
  height: 180px;
  overflow: hidden;
}

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

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

.service-card-body {
  padding: 20px;
}

.service-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.2s;
}

.service-card:hover .service-card-link svg {
  transform: translateX(3px);
}

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.why-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(125,200,54,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--green);
}

.why-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: #f0a500;
}

.review-stars svg.empty {
  fill: #ddd;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.review-source {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--green);
  padding: 48px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  font-size: 1rem;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
}

.cta-banner .btn:hover {
  background: var(--navy);
  color: var(--white);
}

/* --- Service Page Content --- */
.service-content {
  padding: 48px 0;
}

.service-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 720px;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.feature-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 32px 0;
  box-shadow: var(--shadow-md);
}

.service-image img {
  width: 100%;
  height: auto;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-info-item svg {
  width: 22px;
  height: 22px;
  fill: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.95rem;
  color: var(--text-body);
}

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

.contact-form {
  background: var(--off-white);
  padding: 28px 20px;
  border-radius: var(--radius-lg);
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(125,200,54,0.15);
}

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

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

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}

.form-success.show {
  display: block;
}

.form-success svg {
  width: 48px;
  height: 48px;
  fill: var(--green);
  margin-bottom: 16px;
}

.form-success h3 {
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}

/* --- Social Links --- */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: background var(--transition);
}

.social-links a:hover {
  background: var(--green);
}

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

/* --- Footer --- */
.site-footer {
  background: var(--navy);
  color: var(--text-light);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-24-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125,200,54,0.1);
  border: 1px solid rgba(125,200,54,0.25);
  border-radius: var(--radius);
  padding: 10px 16px;
  margin-top: 12px;
}

.footer-24-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--green);
}

.footer-24-badge span {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--green);
}

/* --- Privacy / Legal Pages --- */
.legal-content {
  padding: 48px 0;
  max-width: 720px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 14px;
  line-height: 1.7;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-content li {
  margin-bottom: 6px;
  line-height: 1.6;
}

/* ===========================================
   Responsive — Tablet (768px+)
   =========================================== */
@media (min-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.3rem; }

  .container {
    padding: 0 32px;
  }

  .section {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

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

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

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 32px;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .page-hero {
    padding: 140px 0 80px;
  }

  .page-hero h1 {
    font-size: 2.25rem;
  }

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

  .section-header h2 {
    font-size: 1.75rem;
  }
}

/* ===========================================
   Responsive — Desktop (1024px+)
   =========================================== */
@media (min-width: 1024px) {
  h1 { font-size: 2.75rem; }

  /* Desktop nav */
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex !important;
    position: static;
    background: none;
    padding: 0;
    overflow: visible;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .nav-links {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .nav-links a {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-bottom: none;
    white-space: nowrap;
  }

  .nav-links .has-dropdown {
    position: relative;
  }

  .nav-links .dropdown-label {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-bottom: none;
    gap: 4px;
  }

  .nav-links .dropdown-label svg {
    width: 14px;
    height: 14px;
  }

  .nav-links .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--navy-light);
    min-width: 220px;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 8px 0;
    box-shadow: var(--shadow-lg);
  }

  .nav-links .has-dropdown:hover .dropdown {
    display: block;
  }

  .nav-links .has-dropdown.open .dropdown {
    display: block;
  }

  .nav-links .dropdown a {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-bottom: none;
  }

  .header-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    font-weight: 700;
    font-size: 0.95rem;
    margin-left: 16px;
    white-space: nowrap;
    text-decoration: none;
  }

  .header-phone:hover {
    color: var(--green-hover);
  }

  .header-phone svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .nav-cta {
    display: none;
  }

  .logo-text {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
  }

  /* Hero desktop */
  .hero h1 {
    font-size: 3rem;
  }

  .hero-content {
    padding: 60px 32px 80px;
  }

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

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

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

  .page-hero h1 {
    font-size: 2.75rem;
  }

  .service-content .container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
  }

  .service-sidebar {
    position: sticky;
    top: 100px;
  }

  .cta-banner h2 {
    font-size: 1.75rem;
  }
}

/* ===========================================
   Responsive — Large Desktop (1280px+)
   =========================================== */
@media (min-width: 1280px) {
  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-content {
    padding: 80px 32px 100px;
  }
}
