/*
Theme Name: Lester's AC & General Maintenance
Theme URI: https://lestersac.com
Author: Nlinksolution
Author URI: https://nlinksolution.com
Description: A professional one-page WordPress theme for Lester's AC & General Maintenance — featuring Services CPT, full Customizer support for all text, images, and icons, snowflake hero animation, and mobile-responsive layout.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: one-page, custom-logo, full-width-template, theme-options, custom-menu
Text Domain: lestersac
*/

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --navy: #0a1f44;
  --blue: #1565c0;
  --blue-mid: #1976d2;
  --blue-light: #2196f3;
  --ice: #e3f2fd;
  --ice-deep: #bbdefb;
  --white: #ffffff;
  --gray-light: #f5f8fc;
  --gray-text: #5a6a7a;
  --text-dark: #0d1f35;
  --accent: #42a5f5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: none;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  box-shadow: 0 2px 16px rgba(21,101,192,0.13), 0 1px 0 rgba(21,101,192,0.10);
  border-bottom: 2.5px solid var(--blue-light);
  transition: box-shadow 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}
.logo-img:hover { transform: scale(1.03); }
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--navy);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--blue-light);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif !important;
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s !important;
  box-shadow: 0 3px 12px rgba(21,101,192,0.3);
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  letter-spacing: 1.5px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--blue-mid) !important; color: var(--white) !important; transform: translateY(-1px); }

.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(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 88px; left: 0; right: 0;
  background: var(--navy);
  padding: 1.5rem 5% 2rem;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu a {
  color: var(--ice-deep);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu a.btn-mobile-cta {
  background: var(--blue-light);
  color: var(--white);
  text-align: center;
  border-radius: 6px;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border-bottom: none;
  font-weight: 700;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #051228 0%, #0a1f44 50%, #0d3a6e 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5,18,40,0.92) 0%, rgba(10,31,68,0.75) 60%, rgba(13,58,110,0.5) 100%);
}
.hero-decor {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.hero-decor::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,150,243,0.12) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text .eyebrow {
  display: inline-block;
  background: rgba(33,150,243,0.15);
  border: 1px solid rgba(33,150,243,0.4);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-text h1 span { color: var(--accent); }
.hero-text p {
  color: var(--ice-deep);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue-light);
  color: var(--white);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(33,150,243,0.4);
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  background: #1e88e5;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(33,150,243,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.hero-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-stat {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.hero-stat .num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.hero-stat .lbl { font-size: 0.72rem; color: var(--ice-deep); margin-top: 0.3rem; }
.hero-contact-info { display: flex; flex-direction: column; gap: 0.6rem; }
.hero-contact-info a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ice-deep);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.hero-contact-info a:hover { color: var(--white); }
.hero-contact-info i {
  width: 28px; height: 28px;
  background: rgba(33,150,243,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--accent);
  flex-shrink: 0;
}
.manager-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 0.75rem;
}
.manager-avatar {
  width: 40px; height: 40px;
  background: var(--blue-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.manager-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--white); }
.manager-title { font-size: 0.72rem; color: var(--ice-deep); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--blue);
  padding: 1rem 5%;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.trust-item i { color: var(--ice-deep); font-size: 0.9rem; }

/* ── SECTIONS COMMON ── */
section { padding: 80px 5%; }
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--gray-text);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.inner { max-width: 1200px; margin: 0 auto; }

/* ── SERVICES ── */
.services { background: var(--gray-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid rgba(21,101,192,0.1);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(21,101,192,0.14); border-color: rgba(21,101,192,0.25); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  background: var(--ice);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.3rem;
  color: var(--blue);
}
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.88rem; color: var(--gray-text); line-height: 1.6; }

/* ── WHY US ── */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.why-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-img-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.why-img-badge i { color: var(--accent); font-size: 1.1rem; }
.why-img-badge .badge-text strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; }
.why-img-badge .badge-text span { font-size: 0.72rem; color: var(--ice-deep); }
.why-points { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-point { display: flex; gap: 1rem; align-items: flex-start; }
.why-point-icon {
  width: 44px; height: 44px;
  background: var(--ice);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--blue);
  flex-shrink: 0;
}
.why-point h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.25rem; }
.why-point p { font-size: 0.87rem; color: var(--gray-text); line-height: 1.6; }

/* ── COVERAGE ── */
.coverage { background: var(--navy); position: relative; overflow: hidden; }
.coverage::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,150,243,0.1) 0%, transparent 70%);
}
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.coverage-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: background 0.25s;
}
.coverage-card:hover { background: rgba(255,255,255,0.09); }
.coverage-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 1.25rem; }
.coverage-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--white); margin-bottom: 0.75rem; }
.coverage-card p { color: var(--ice-deep); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.coverage-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.coverage-list li { display: flex; align-items: center; gap: 0.6rem; color: var(--ice-deep); font-size: 0.87rem; }
.coverage-list li i { color: var(--accent); font-size: 0.75rem; }

/* ── PROCESS ── */
.process { background: var(--gray-light); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(21,101,192,0.35);
  position: relative;
  z-index: 2;
}
.process-step h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.4rem; }
.process-step p { font-size: 0.82rem; color: var(--gray-text); line-height: 1.55; }

/* ── GALLERY ── */
.gallery { background: var(--white); }
.gallery-grid {
  column-count: 3;
  column-gap: 1.5rem;
  width: 100%;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(10, 31, 68, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  width: 100%;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(10, 31, 68, 0.15);
}
.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 68, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .overlay {
  opacity: 1;
}
.gallery-item .overlay .view-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.gallery-item:hover .overlay .view-icon {
  transform: scale(1);
}

/* ── LIGHTBOX ── */
body.lac-lightbox-open {
  overflow: hidden;
}
.lac-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 31, 68, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lac-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lac-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s, transform 0.2s;
  z-index: 10002;
}
.lac-lightbox-close:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.05);
}
.lac-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s, transform 0.2s;
  z-index: 10002;
  user-select: none;
}
.lac-lightbox-nav:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-50%) scale(1.05);
}
.lac-lightbox-prev {
  left: 1.5rem;
}
.lac-lightbox-next {
  right: 1.5rem;
}
.lac-lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}
.lac-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.lac-lightbox-img.loaded {
  opacity: 1;
  transform: scale(1);
}
.lac-lightbox-caption {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.lac-lightbox-counter {
  color: var(--ice-deep);
  font-size: 0.8rem;
  margin-top: 0.4rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Client-side load more items animation */
.gallery-item.lac-gallery-hidden {
  display: none !important;
}

@media (max-width: 992px) {
  .gallery-grid {
    column-count: 2;
    column-gap: 1.25rem;
  }
  .gallery-item {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 576px) {
  .gallery-grid {
    column-count: 1;
  }
}
@media (max-width: 768px) {
  .lac-lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  .lac-lightbox-prev {
    left: 0.5rem;
  }
  .lac-lightbox-next {
    right: 0.5rem;
  }
  .lac-lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
  }
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(120deg, var(--blue) 0%, #1976d2 50%, #1565c0 100%);
  padding: 60px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -40px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-band h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2rem; position: relative; z-index: 1; }
.cta-band-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white {
  background: var(--white);
  color: var(--blue);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { background: var(--ice); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.5);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 1.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--ice);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--navy); margin-bottom: 0.2rem; }
.contact-item-text span, .contact-item-text a { font-size: 0.88rem; color: var(--gray-text); text-decoration: none; line-height: 1.6; display: block; }
.contact-item-text a:hover { color: var(--blue); }

.contact-form { background: var(--gray-light); border-radius: 16px; padding: 2.5rem; border: 1px solid rgba(21,101,192,0.08); }
.contact-form h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--navy); letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(21,101,192,0.2);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(33,150,243,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.3px;
}
.form-submit:hover { background: var(--blue-mid); transform: translateY(-1px); }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success.show { display: block; }
.form-success i { font-size: 3rem; color: #4caf50; margin-bottom: 1rem; }
.form-success h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.form-success p { color: var(--gray-text); font-size: 0.9rem; }

/* ── FOOTER ── */
footer { background: var(--navy); color: var(--ice-deep); padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo-img { height: 52px; width: auto; object-fit: contain; display: block; margin-bottom: 1.25rem; transition: transform 0.2s ease; }
.footer-logo-img:hover { transform: scale(1.02); }
.footer-about { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ice-deep);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover { background: var(--blue-light); color: var(--white); }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: var(--ice-deep); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-list a { display: flex; align-items: center; gap: 0.5rem; color: var(--ice-deep); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--white); }
.footer-contact-list i { color: var(--accent); width: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.6rem; }
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom a { color: var(--accent); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ── FLOAT CTA ── */
.float-cta { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999; display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-end; }
.float-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  padding: 0.7rem 1.1rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 4px 20px rgba(21,101,192,0.4);
  transition: all 0.2s;
  white-space: nowrap;
}
.float-btn:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(21,101,192,0.5); }
.float-btn.call { background: var(--navy); }
.float-btn.call:hover { background: #122a56; }

/* ── ANIMATIONS ── */
@keyframes lacReveal {
  to { opacity: 1; transform: none; }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  /* CSS fallback: auto-reveal after 1s if JS observer never fires */
  animation: lacReveal 0.6s ease 1s forwards;
}
.reveal.visible {
  opacity: 1;
  transform: none;
  animation: none; /* cancel the CSS animation — JS took over */
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; padding-top: 90px; }
  .hero-card { display: none; }
  .why-grid, .contact-grid, .coverage-grid { grid-template-columns: 1fr; }
  .why-img { aspect-ratio: 16/9; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  section { padding: 60px 5%; }
  .hero-content { padding-top: 80px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .trust-strip { gap: 1rem; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .float-cta { bottom: 1rem; right: 1rem; }
  .coverage-grid { grid-template-columns: 1fr; }
  .cta-band-btns { flex-direction: column; }
  .btn-white, .btn-outline-white { width: 100%; justify-content: center; }
}
