/* ==============================================
   Extraordinair Care HVAC — Main Stylesheet
   Primary: #00A8E8 | Dark: #000 | Text: #4A4A4A
   Fonts: Montserrat (headings) + Open Sans (body)
   ============================================== */

/* --- CSS Variables --- */
:root {
  --blue:        #00A8E8;
  --blue-dark:   #0077CC;
  --blue-deeper: #005599;
  --black:       #000000;
  --dark:        #111111;
  --text:        #4A4A4A;
  --light:       #D3D3D3;
  --white:       #FFFFFF;
  --section-bg:  #F4F6F8;
  --shadow-blue: rgba(0, 168, 232, 0.25);
  --shadow-dark: rgba(0, 0, 0, 0.35);
  --nav-h:       72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.22s ease,
              background 0.18s ease;
  border: none;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0px); }
.btn:focus-visible { outline: 3px solid rgba(0,168,232,0.5); outline-offset: 3px; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 18px var(--shadow-blue), 0 1px 4px rgba(0,0,0,0.2);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 7px 28px var(--shadow-blue), 0 2px 8px rgba(0,0,0,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.75);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-white:hover {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 7px 30px rgba(0,0,0,0.25);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,0.3);
}
.btn-dark:hover { background: #222; }

/* --- Section Decoration --- */
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-divider {
  width: 52px; height: 4px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 24px;
}
.section-divider.center { margin-left: auto; margin-right: auto; }
.blue-text { color: var(--blue); }

/* --- Fade-in --- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.36s; }
.fade-in-delay-4 { transition-delay: 0.48s; }

/* ==============================================
   NAVIGATION
   ============================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--blue);
  transition: box-shadow 0.3s ease;
}
#navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,168,232,0.18), 0 2px 8px rgba(0,0,0,0.55);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 50px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-logo-name em {
  font-style: normal;
  color: var(--blue);
}
.nav-logo-sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: #ffffff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-logo-sub em {
  font-style: normal;
  color: var(--blue);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  padding: 7px 9px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: rgba(0, 168, 232, 0.1);
}
.nav-cta-link {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 8px 16px !important;
  border-radius: 4px;
}
.nav-cta-link:hover {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.hamburger:hover { background: rgba(255,255,255,0.07); }
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.nav-mobile-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
  background: rgba(0,0,0,0.98);
  border-top: 1px solid rgba(0,168,232,0.2);
}
.nav-mobile-wrap.open { max-height: 500px; }
.nav-mobile {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-mobile a {
  color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 12px 14px;
  border-radius: 5px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-mobile a:hover { color: var(--blue); background: rgba(0,168,232,0.08); }
.nav-mobile .nav-cta-link {
  background: var(--blue) !important;
  color: var(--white) !important;
  text-align: center;
  margin-top: 8px;
}

/* ==============================================
   HERO
   ============================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../extraordinair_care_hero_clean.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 7s ease-out;
}
.hero-bg.zoomed { transform: scale(1); }

/* layered overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.52) 0%,
      rgba(0,0,0,0.36) 45%,
      rgba(0,0,0,0.70) 100%
    );
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 60%, rgba(0,168,232,0.14) 0%, transparent 55%);
}

/* Grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 60px 24px 80px;
  max-width: 920px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,168,232,0.18);
  border: 1px solid rgba(0,168,232,0.45);
  color: #72D8F8;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #72D8F8;
  animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  margin-bottom: 6px;
  font-size: clamp(2rem, 5.5vw, 4.8rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--blue);
}
.hero-sub em {
  font-style: normal;
  color: var(--blue);
}
.hero-sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}
.hero-tagline {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.45);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: var(--blue);
  border-radius: 2px;
  animation: scroll-fall 1.7s ease infinite;
}
@keyframes scroll-fall {
  0%   { top: 5px; opacity: 1; }
  60%  { top: 18px; opacity: 0.3; }
  100% { top: 5px; opacity: 0; }
}

/* ==============================================
   TRUST BAR
   ============================================== */
#trust-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(0,168,232,0.15);
  padding: 20px 24px;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.trust-item svg { color: var(--blue); flex-shrink: 0; }

/* ==============================================
   ABOUT SECTION
   ============================================== */
#about {
  padding: 88px 24px;
  background: var(--white);
}
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-col { position: relative; }
.about-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 864 / 1184;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.18),
    0 6px 18px rgba(0,0,0,0.1);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.about-img-wrap::after {
  content: none;
}
.about-secondary-img {
  margin-top: 16px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.about-secondary-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: 30% center;
  display: block;
  transition: transform 0.45s ease;
}
.about-secondary-img:hover img { transform: scale(1.04); }
.about-text-col { padding-bottom: 20px; }
.about-text-col p {
  font-size: 1.05rem;
  line-height: 1.82;
  margin-bottom: 18px;
  color: var(--text);
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
}
.about-feat svg { color: var(--blue); flex-shrink: 0; }

/* ==============================================
   SERVICES OVERVIEW CARDS
   ============================================== */
#services-overview {
  padding: 80px 24px;
  background: var(--section-bg);
}
.section-header {
  max-width: 1200px;
  margin: 0 auto 48px;
}
.section-header.center { text-align: center; }
.section-header.center .section-divider { margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 10px; }
.section-header p { font-size: 1.05rem; max-width: 580px; }
.section-header.center p { margin: 0 auto; }

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(0,0,0,0.07),
    0 1px 4px rgba(0,0,0,0.04);
  transition:
    transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.svc-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 16px 44px rgba(0,0,0,0.12),
    0 4px 14px var(--shadow-blue);
}
.svc-card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.svc-card-img {
  height: 170px;
  position: relative;
  overflow: hidden;
}
.svc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.svc-card:hover .svc-card-img img { transform: scale(1.07); }
.svc-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
}
.svc-card-body { padding: 20px 20px 22px; }
.svc-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 7px;
  color: var(--dark);
}
.svc-card-body p { font-size: 0.88rem; line-height: 1.62; }
.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 12px;
  transition: gap 0.2s ease;
}
.svc-card:hover .svc-card-link { gap: 9px; }

/* ==============================================
   TESTIMONIALS
   ============================================== */
#testimonials {
  padding: 88px 24px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
/* big decorative quote */
#testimonials::before {
  content: '\201C';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  font-size: 380px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: rgba(0,168,232,0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testimonials-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}
.testimonials-header h2 { color: var(--white); margin-bottom: 10px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.carousel-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.t-card {
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,168,232,0.14);
  border-radius: 10px;
  padding: 30px 28px 26px;
  transition: border-color 0.3s ease, background 0.3s ease;
  position: relative;
}
.t-card:hover {
  border-color: rgba(0,168,232,0.38);
  background: rgba(255,255,255,0.06);
}
.t-quote-icon {
  font-size: 3.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.65;
  display: block;
}
.t-stars {
  color: #FFB800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.t-text {
  font-size: 0.94rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.78);
  font-style: italic;
  margin-bottom: 24px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.t-name {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}
.t-loc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
}
.c-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(0,168,232,0.35);
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
}
.c-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: scale(1.1);
}
.c-btn:focus-visible { outline: 3px solid rgba(0,168,232,0.5); outline-offset: 3px; }
.c-dots { display: flex; gap: 8px; }
.c-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}
.c-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* ==============================================
   SERVICE DETAIL SECTIONS
   ============================================== */
.svc-section {
  padding: 88px 24px;
}
.svc-section.alt { background: var(--section-bg); }

.svc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.svc-inner.reverse .svc-img-col { order: 2; }
.svc-inner.reverse .svc-text-col { order: 1; }

.svc-img-col {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  align-self: stretch;
  box-shadow:
    0 16px 56px rgba(0,0,0,0.16),
    0 4px 14px rgba(0,0,0,0.1);
}
.svc-img-col img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.svc-img-col:hover img { transform: scale(1.04); }
.svc-img-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,168,232,0.14) 0%, transparent 55%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.svc-text-col { }
.svc-text-col > p {
  font-size: 1.05rem;
  line-height: 1.82;
  margin-bottom: 28px;
  color: var(--text);
}
.svc-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.svc-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: 8px;
  padding: 16px 18px;
  border-left: 3px solid var(--blue);
  box-shadow: 0 2px 10px rgba(0,0,0,0.055);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-section.alt .svc-bullet { background: var(--white); }
.svc-bullet:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.09);
}
.svc-bullet-icon {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: rgba(0,168,232,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.svc-bullet-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.svc-bullet-text span {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text);
}

/* ==============================================
   CTA BANNER
   ============================================== */
.cta-banner {
  padding: 76px 24px;
  background: var(--blue);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner::before {
  width: 600px; height: 600px;
  top: -300px; left: -150px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.cta-banner::after {
  width: 400px; height: 400px;
  bottom: -200px; right: -100px;
  background: radial-gradient(circle, rgba(0,0,0,0.12) 0%, transparent 70%);
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.cta-banner p {
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.cta-banner-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ==============================================
   FLEET / TEAM BANNER
   ============================================== */
#fleet-section {
  background: linear-gradient(135deg, var(--dark) 0%, #0a2540 100%);
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}
.fleet-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--white);
  padding: 56px 24px;
}
.fleet-overlay h2 { color: var(--white); margin-bottom: 8px; }
.fleet-overlay p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
}

/* ==============================================
   OTHER SERVICES (Air Quality + Water Heaters)
   ============================================== */
#other-services {
  padding: 88px 24px;
  background: var(--white);
}
.other-grid {
  max-width: 1200px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.other-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--section-bg);
  box-shadow: 0 6px 28px rgba(0,0,0,0.07);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
}
.other-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.12);
}
.other-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.other-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.other-card:hover .other-card-img img { transform: scale(1.05); }
.other-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 55%);
}
.other-card-body { padding: 28px 28px 32px; }
.other-card-body h3 { margin-bottom: 10px; color: var(--dark); }
.other-card-body p { margin-bottom: 18px; font-size: 0.96rem; }
.other-card-body ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.other-card-body ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.other-card-body ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* Smart thermostat extra card */
.other-extra {
  max-width: 1200px;
  margin: 32px auto 0;
  background: var(--dark);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 2fr;
  box-shadow: 0 8px 36px rgba(0,0,0,0.16);
}
.other-extra-img {
  position: relative;
  overflow: hidden;
}
.other-extra-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
}
.other-extra-body {
  padding: 36px 40px;
  color: var(--white);
}
.other-extra-body .section-label { color: var(--blue); }
.other-extra-body h3 { color: var(--white); margin-bottom: 12px; }
.other-extra-body p {
  color: rgba(255,255,255,0.78);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ==============================================
   CONTACT SECTION
   ============================================== */
#contact {
  padding: 88px 24px;
  background: var(--section-bg);
}
.contact-grid {
  max-width: 1200px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-col { }
.contact-info-col h3 { margin-bottom: 14px; }
.contact-info-col > p {
  font-size: 1.02rem;
  line-height: 1.78;
  margin-bottom: 28px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.055);
}
.contact-detail-icon {
  width: 42px; height: 42px;
  border-radius: 7px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--dark);
  margin-bottom: 2px;
  letter-spacing: 0.04em;
}
.contact-detail a,
.contact-detail span {
  font-size: 0.96rem;
  color: var(--text);
}
.contact-detail a:hover { color: var(--blue); }
.contact-map-wrap {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.contact-map-wrap iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}

/* Form */
.contact-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
}
.contact-form-card h3 { margin-bottom: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light);
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,168,232,0.13);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  margin-top: 6px;
  justify-content: center;
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(0,0,0,0.4);
  margin-top: 12px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 22px;
  background: rgba(0,168,232,0.07);
  border: 1px solid rgba(0,168,232,0.28);
  border-radius: 8px;
  margin-top: 16px;
}
.form-success.show { display: block; }
.form-success h4 { color: var(--blue); margin-bottom: 6px; }
.form-success p { font-size: 0.9rem; }

/* ==============================================
   FOOTER
   ============================================== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 24px 28px;
  border-top: 3px solid var(--blue);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto 52px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand img {
  height: 56px;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 280px;
}
.footer-brand .footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 18px;
  letter-spacing: 0.02em;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
}
.footer-col ul li a:hover { color: var(--blue); padding-left: 6px; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.social-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}
.footer-bottom a { color: rgba(0,168,232,0.75); }
.footer-bottom a:hover { color: var(--blue); }

/* ==============================================
   SCROLL-TO-TOP BUTTON
   ============================================== */
#scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px var(--shadow-blue);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 900;
}
#scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#scroll-top:hover { background: var(--blue-dark); transform: translateY(-2px); }
#scroll-top:focus-visible { outline: 3px solid rgba(0,168,232,0.5); outline-offset: 3px; }

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .incentives-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap img { height: 320px; }
  .about-secondary-img img { height: 160px; }
  .svc-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-inner.reverse .svc-img-col { order: unset; }
  .svc-inner.reverse .svc-text-col { order: unset; }
  .svc-img-col img { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .other-extra { grid-template-columns: 1fr; }
  .other-extra-img img { height: 220px; }
  .t-card { min-width: calc(50% - 12px); }
}

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .hero-content { padding: 48px 16px 72px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .about-features { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .other-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .t-card { min-width: 100%; }
  #fleet-section { height: 260px; }
}

@media (max-width: 480px) {
  #hero { min-height: 90vh; }
  .hero-content h1 { font-size: 2.1rem; }
  .cta-banner { padding: 56px 20px; }
  .svc-img-col img { height: 240px; }
}

/* ==============================================
   ABOUT — community image strip
   ============================================== */
.community-img-wrap {
  margin-top: 22px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.community-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.community-img-wrap:hover img { transform: scale(1.03); }
.community-img-caption {
  display: block;
  background: rgba(0,0,0,0.72);
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 8px 16px;
  position: absolute;
  bottom: 0; left: 0; right: 0;
}

/* ==============================================
   HEAT PUMPS — extra full-width wrap
   ============================================== */
.hp-extra-wrap {
  max-width: 1200px;
  margin: 52px auto 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ==============================================
   HEAT PUMPS — energy savings infographic
   ============================================== */
.energy-savings-img {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.18);
}
.energy-savings-img img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 200px;
  object-fit: cover;
  object-position: center;
}

/* ==============================================
   INCENTIVE PROGRAMS — hero image
   ============================================== */
.incentives-hero-img {
  max-width: 1200px;
  margin: 44px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 48px rgba(0,0,0,0.35);
}
.incentives-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.incentives-hero-img:hover img { transform: scale(1.02); }

/* ==============================================
   OTHER SERVICES — bullet image
   ============================================== */
.bullet-img-wrap {
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.bullet-img-wrap img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.bullet-img-wrap:hover img { transform: scale(1.04); }

/* ==============================================
   WHY CHOOSE HEAT PUMPS — inline sub-section
   ============================================== */
.why-hp-wrap {
  margin: 28px 0 0;
  padding: 24px 26px;
  background: var(--section-bg);
  border-radius: 10px;
  border-left: 4px solid var(--blue);
}
.why-hp-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.why-hp-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-hp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.why-hp-icon {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: rgba(0,168,232,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.why-hp-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.why-hp-item p {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* ==============================================
   INCENTIVE PROGRAMS SECTION
   ============================================== */
#incentive-programs {
  background: var(--dark);
}
.incentives-wrap {
  padding: 88px 24px;
}
.incentives-wrap .section-header h2 { color: var(--white); }
.incentives-wrap .section-header p { color: rgba(255,255,255,0.72); margin: 0 auto; max-width: 680px; }
.incentives-wrap .section-label { color: #72D8F8; }
.incentives-grid {
  max-width: 1200px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.incentive-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,168,232,0.18);
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.incentive-card:hover {
  border-color: rgba(0,168,232,0.45);
  background: rgba(255,255,255,0.07);
  transform: translateY(-5px);
}
.incentive-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: rgba(0,168,232,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 18px;
}
.incentive-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.incentive-card p {
  font-size: 0.9rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.68);
}
.incentive-card strong { color: var(--blue); }
.incentives-cta {
  max-width: 1200px;
  margin: 44px auto 0;
}
.incentives-cta-inner {
  background: rgba(0,168,232,0.1);
  border: 1px solid rgba(0,168,232,0.3);
  border-radius: 10px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.incentives-cta-inner h3 { color: var(--white); margin-bottom: 8px; }
.incentives-cta-inner p { color: rgba(255,255,255,0.72); font-size: 0.97rem; }
.incentives-cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ==============================================
   FAQ SECTION
   ============================================== */
#faq {
  background: var(--section-bg);
}
.faq-wrap {
  padding: 88px 24px;
}
.faq-wrap .section-header p { margin: 0 auto; max-width: 580px; }
.faq-list {
  max-width: 860px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--light);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.open {
  border-color: rgba(0,168,232,0.4);
  box-shadow: 0 4px 22px rgba(0,168,232,0.1);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--dark);
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--blue); }
.faq-question:focus-visible { outline: 3px solid rgba(0,168,232,0.4); outline-offset: -3px; }
.faq-question span { flex: 1; }
.faq-icon {
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 22px;
}
.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.82;
  color: var(--text);
  border-top: 1px solid var(--light);
  padding-top: 16px;
}

/* ==============================================
   RESPONSIVE — New Sections
   ============================================== */
@media (max-width: 900px) {
  .incentives-grid { grid-template-columns: 1fr 1fr; }
  .incentives-cta-inner { flex-direction: column; }
}

@media (max-width: 768px) {
  .incentives-grid { grid-template-columns: 1fr; }
  .incentives-cta-inner { padding: 24px 20px; }
  .faq-question { font-size: 0.88rem; padding: 16px 18px; }
  .faq-answer { padding: 0 18px; }
  .faq-item.open .faq-answer { padding: 0 18px 18px; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   PROFESSIONAL PREPAREDNESS STRIP
   ============================================== */
.pro-prep-strip {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
  border-radius: 14px;
  overflow: hidden;
}
.pro-prep-strip img {
  width: 100%;
  height: 820px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
  transition: transform 0.5s ease;
}
.pro-prep-strip:hover img { transform: scale(1.02); }

/* ==============================================
   CONTACT HERO IMAGE
   ============================================== */
.contact-hero-img {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.contact-hero-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.contact-hero-img:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
  .pro-prep-strip img { height: 160px; }
  .contact-hero-img img { height: 160px; }
  .about-secondary-img img { height: 160px; }
}
