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

  :root {
    --navy: #0a1628;
    --navy-mid: #112240;
    --accent: #e8a020;
    --accent-light: #f5c55a;
    --white: #ffffff;
    --off-white: #f8f6f1;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --green: #16a34a;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 999;
    background: var(--navy);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 70px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo-icon {
    width: 42px; height: 42px; border-radius: 8px;
    background: var(--accent); display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 900; color: var(--navy);
  }
  .nav-logo-text { color: var(--white); }
  .nav-logo-text strong { display: block; font-size: 1rem; font-weight: 800; letter-spacing: -0.3px; }
  .nav-logo-text span { font-size: 0.65rem; color: var(--accent-light); letter-spacing: 1.5px; text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta { display: flex; align-items: center; gap: 12px; }
  .btn-outline-nav {
    border: 1.5px solid var(--accent); color: var(--accent); background: transparent;
    padding: 8px 18px; border-radius: 6px; font-size: 0.85rem; font-weight: 600;
    text-decoration: none; transition: all .2s;
  }
  .btn-outline-nav:hover { background: var(--accent); color: var(--navy); }
  .btn-phone-nav {
    background: var(--accent); color: var(--navy); padding: 8px 18px;
    border-radius: 6px; font-size: 0.85rem; font-weight: 700; text-decoration: none;
    transition: background .2s;
  }
  .btn-phone-nav:hover { background: var(--accent-light); }

  /* HAMBURGER */
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: all .3s; }
  .mobile-menu {
    display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--navy); z-index: 998; flex-direction: column;
    padding: 30px 5%; gap: 0; overflow-y: auto;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { color: var(--white); text-decoration: none; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 1rem; font-weight: 500; }
  .mobile-menu a.mobile-cta { background: var(--accent); color: var(--navy); margin-top: 20px; padding: 14px 20px; border-radius: 8px; text-align: center; font-weight: 700; border: none; }

  /* TICKER */
  .ticker { background: var(--accent); overflow: hidden; padding: 8px 0; }
  .ticker-inner { display: flex; gap: 60px; animation: ticker 30s linear infinite; white-space: nowrap; width: max-content; }
  .ticker-inner span { font-size: 0.8rem; font-weight: 700; color: var(--navy); letter-spacing: 0.5px; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* HERO */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a5c 100%);
    min-height: 90vh; display: flex; align-items: center; position: relative; overflow: hidden;
    padding: 80px 5%;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(232,160,32,0.08) 0%, transparent 70%);
  }
  .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,160,32,0.15); border: 1px solid rgba(232,160,32,0.3); color: var(--accent); padding: 6px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
  .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4.5vw, 3.8rem); color: var(--white); line-height: 1.12; margin-bottom: 20px; }
  .hero h1 em { color: var(--accent); font-style: italic; }
  .hero-sub { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
  .btn-primary {
    background: var(--accent); color: var(--navy); padding: 14px 28px;
    border-radius: 8px; font-weight: 700; font-size: 0.95rem; text-decoration: none;
    transition: all .2s; box-shadow: 0 4px 16px rgba(232,160,32,0.35);
  }
  .btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }
  .btn-secondary {
    border: 2px solid rgba(255,255,255,0.3); color: var(--white); padding: 14px 28px;
    border-radius: 8px; font-weight: 600; font-size: 0.95rem; text-decoration: none;
    transition: all .2s; background: transparent;
  }
  .btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
  .hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
  .badge { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); padding: 7px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 500; }

  /* HERO STATS */
  .hero-right { display: flex; flex-direction: column; gap: 20px; }
  .stat-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 28px; backdrop-filter: blur(10px); }
  .stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  .stat-item { text-align: center; padding: 20px 10px; }
  .stat-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.12); }
  .stat-num { font-size: 2.2rem; font-weight: 900; color: var(--accent); line-height: 1; }
  .stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 4px; }
  .trust-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .trust-list li { color: rgba(255,255,255,0.85); font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
  .trust-list li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 0.95rem; flex-shrink: 0; }
  .stars-row { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
  .stars { color: var(--accent); font-size: 1rem; }
  .review-text { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

  /* SECTION BASE */
  section { padding: 80px 5%; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-label { display: inline-block; background: rgba(232,160,32,0.1); color: var(--accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 16px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
  .section-title em { color: var(--accent); font-style: italic; }
  .section-sub { color: var(--text-muted); font-size: 1rem; line-height: 1.7; max-width: 600px; }
  .text-center { text-align: center; }
  .text-center .section-sub { margin: 0 auto; }

  /* SERVICES */
  .services-bg { background: var(--off-white); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
  .service-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: all .3s; border: 1px solid var(--border);
    text-decoration: none; color: inherit; display: block;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.14); border-color: var(--accent); }
  .service-img { width: 100%; height: 200px; object-fit: cover; background: linear-gradient(135deg, #e0e7ef, #c9d6e3); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
  .service-body { padding: 22px; }
  .service-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .service-body p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
  .service-link { font-size: 0.85rem; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 5px; }

  /* WHY US */
  .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }
  .why-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
  .why-icon { font-size: 2rem; margin-bottom: 14px; }
  .why-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .why-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }
  .why-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 48px; background: var(--navy); border-radius: var(--radius); overflow: hidden; }
  .why-stat { text-align: center; padding: 32px 20px; }
  .why-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.1); }
  .why-stat-num { font-size: 2.4rem; font-weight: 900; color: var(--accent); }
  .why-stat-label { color: rgba(255,255,255,0.65); font-size: 0.8rem; margin-top: 4px; }

  /* PROCESS */
  .process-bg { background: var(--navy); }
  .process-bg .section-title { color: var(--white); }
  .process-bg .section-sub { color: rgba(255,255,255,0.65); }
  .process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; position: relative; }
  .process-steps::before { content: ''; position: absolute; top: 36px; left: 16.5%; right: 16.5%; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent)); z-index: 0; }
  .process-step { text-align: center; position: relative; z-index: 1; }
  .step-num { width: 72px; height: 72px; border-radius: 50%; background: var(--accent); color: var(--navy); font-size: 1.6rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 20px rgba(232,160,32,0.4); }
  .process-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
  .process-step p { font-size: 0.87rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

  /* REVIEWS */
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
  .review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
  .review-stars { color: var(--accent); font-size: 1rem; margin-bottom: 12px; }
  .review-text-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
  .review-author { display: flex; align-items: center; gap: 12px; }
  .review-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-light)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--navy); font-size: 1rem; flex-shrink: 0; }
  .review-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
  .review-city { font-size: 0.78rem; color: var(--text-muted); }

  /* CITIES */
  .cities-bg { background: var(--off-white); }
  .cities-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
  .city-chip { background: var(--white); border: 1px solid var(--border); padding: 8px 18px; border-radius: 100px; font-size: 0.83rem; font-weight: 500; color: var(--navy); transition: all .2s; cursor: default; }
  .city-chip:hover { background: var(--accent); color: var(--navy); border-color: var(--accent); }

  /* FAQ */
  .faq-list { max-width: 780px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 14px; }
  .faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
  .faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; font-size: 0.95rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
  .faq-q span.icon { color: var(--accent); font-size: 1.2rem; flex-shrink: 0; transition: transform .3s; }
  .faq-item.open .faq-q span.icon { transform: rotate(45deg); }
  .faq-a { display: none; padding: 0 24px 20px; font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }
  .faq-item.open .faq-a { display: block; }

  /* CTA BOTTOM */
  .cta-bottom { background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%); text-align: center; padding: 80px 5%; }
  .cta-bottom h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 16px; }
  .cta-bottom p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 540px; margin: 0 auto 36px; line-height: 1.7; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* FOOTER */
  footer { background: #060e1c; padding: 56px 5% 28px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 40px; }
  .footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.87rem; line-height: 1.7; margin: 14px 0; }
  .footer-contact a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.85rem; margin-bottom: 8px; transition: color .2s; }
  .footer-contact a:hover { color: var(--accent); }
  .footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.84rem; transition: color .2s; }
  .footer-col ul a:hover { color: var(--accent); }
  .footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; }
  .footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
  .footer-bottom-links { display: flex; gap: 20px; }
  .footer-bottom-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.8rem; }
  .footer-bottom-links a:hover { color: var(--accent); }

  /* SCROLL TO TOP */
  #scrollTop { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--navy); border: none; font-size: 1.1rem; cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,0.2); display: none; align-items: center; justify-content: center; font-weight: 700; z-index: 500; transition: all .2s; }
  #scrollTop.visible { display: flex; }
  #scrollTop:hover { background: var(--accent-light); transform: translateY(-2px); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-right { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .process-steps::before { display: none; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .why-stats { grid-template-columns: 1fr; }
    .why-stat:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  }
  @media (max-width: 580px) {
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .stat-grid { grid-template-columns: repeat(3,1fr); }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  }

  /* ===== MULTI-PAGE ADDITIONS ===== */

  /* Active nav state */
  .nav-links a.active, .mobile-menu a.active { color: var(--accent); }

  /* Services dropdown (desktop) */
  .nav-links li.has-dropdown { position: relative; }
  .nav-links .dropdown-toggle { display: flex; align-items: center; gap: 5px; cursor: pointer; }
  .nav-links .dropdown-toggle .caret { font-size: 0.6rem; transition: transform .2s; }
  .has-dropdown:hover .dropdown-toggle .caret, .has-dropdown:focus-within .dropdown-toggle .caret { transform: rotate(180deg); }
  .dropdown-menu {
    position: absolute; top: calc(100% + 14px); left: -16px; min-width: 240px;
    background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    list-style: none; padding: 8px; opacity: 0; visibility: hidden;
    transform: translateY(8px); transition: all .2s; z-index: 50;
  }
  .has-dropdown:hover .dropdown-menu, .has-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown-menu a { display: block; padding: 10px 14px; border-radius: 6px; font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.85); text-decoration: none; transition: all .15s; }
  .dropdown-menu a:hover { background: rgba(232,160,32,0.12); color: var(--accent); }

  /* Mobile submenu */
  .mobile-submenu-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--white); padding: 16px 0; font-size: 1rem; font-weight: 500; cursor: pointer; font-family: inherit; }
  .mobile-submenu-toggle .caret { color: var(--accent); transition: transform .2s; }
  .mobile-submenu-toggle.open .caret { transform: rotate(180deg); }
  .mobile-submenu { display: none; flex-direction: column; padding-left: 16px; background: rgba(255,255,255,0.03); }
  .mobile-submenu.open { display: flex; }
  .mobile-submenu a { border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.92rem; padding: 14px 0; }

  /* Breadcrumb */
  .breadcrumb { padding: 16px 5% 0; max-width: 1200px; margin: 0 auto; font-size: 0.82rem; color: var(--text-muted); }
  .breadcrumb a { color: var(--accent); text-decoration: none; }
  .breadcrumb a:hover { text-decoration: underline; }

  /* Service overview (icon + checklist) */
  .service-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 44px; }
  .service-icon-block { font-size: 6rem; min-height: 320px; border-radius: var(--radius); background: linear-gradient(135deg, #e0e7ef, #c9d6e3); display: flex; align-items: center; justify-content: center; }
  .checklist { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-top: 22px; }
  .checklist li { font-size: 0.92rem; color: var(--text); display: flex; align-items: flex-start; gap: 10px; line-height: 1.55; }
  .checklist li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

  /* Signs grid (reuses why-card look in 3-col) */
  .signs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }

  /* Service hero swap: smaller eyebrow row for breadcrumb pages */
  .service-hero { min-height: 60vh; }

  @media (max-width: 900px) {
    .service-overview-grid { grid-template-columns: 1fr; }
    .signs-grid { grid-template-columns: 1fr; }
  }

/* ===== LOGO IMAGE IN NAV ===== */
.nav-logo-img {
  height: 54px;
  width: auto;
  /* Black bg disappears on dark navy nav via blend mode */
  mix-blend-mode: lighten;
  object-fit: contain;
  display: block;
}

/* ===== GALLERY PAGE ===== */
.gallery-hero {
  padding: 80px 5% 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.gallery-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 12px; }
.gallery-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 560px; margin: 0 auto; }

.gallery-section { padding: 60px 5%; border-bottom: 1px solid rgba(0,0,0,0.07); }
.gallery-section:last-of-type { border-bottom: none; }
.gallery-section-header { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.gallery-section-icon { font-size: 2rem; width: 54px; height: 54px; background: var(--accent); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gallery-section-title { font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.gallery-section-count { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e8edf3;
  position: relative;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.15); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 2px dashed #c5cdd9; background: #f4f7fa; gap: 8px;
  color: #99a8bc; font-size: 0.8rem; font-weight: 500; text-align: center;
}
.gallery-item.placeholder .ph-icon { font-size: 2rem; opacity: 0.4; }

/* Lightbox */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 1000; align-items: center; justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; border-radius: 10px; object-fit: contain; }
.lightbox-close {
  position: fixed; top: 20px; right: 24px; color: white; font-size: 2rem;
  cursor: pointer; background: none; border: none; line-height: 1; z-index: 1001;
}
.lightbox-close:hover { color: var(--accent); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Service card images */
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

/* Why Us SVG icons */
.why-icon svg {
  color: var(--navy);
  opacity: 0.75;
}

/* === UPDATES === */
.service-img img { width:100%; height:100%; object-fit:cover; border-radius:inherit; display:block; }
.why-icon svg { color:var(--navy); opacity:0.75; }
.service-photos-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:36px; }
.service-photos-grid img { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:12px; cursor:pointer; transition:transform .2s,box-shadow .2s; }
.service-photos-grid img:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,0.15); }
@media(max-width:768px){ .service-photos-grid{grid-template-columns:repeat(2,1fr);} }
