/* ============================================================
   MARTUCCI PRESSURE CLEANING — SHARED STYLES
   Used across: index, about, services, gallery, contact
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a1322; color: #fff; overflow-x: hidden;
  letter-spacing: -0.01em;
}
h1, h2, h3, h4, .display-font {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  letter-spacing: -0.025em;
}
.accent-serif { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; letter-spacing: 0; }

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a1322; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00b4d8, #0077b6);
  border-radius: 10px;
  border: 2px solid #0a1322;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #00d4f7, #00b4d8); }

/* SELECTION */
::selection { background: #00b4d8; color: #0a1322; }

/* SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.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; }

/* KEYFRAMES */
@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.5); }
  50% { box-shadow: 0 0 0 20px rgba(0, 180, 216, 0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes drop {
  0% { transform: translateY(-20px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(120vh); opacity: 0; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(10, 19, 34, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 0.85rem 2rem; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(10, 19, 34, 0.92);
  padding: 0.65rem 2rem;
  border-bottom-color: rgba(0, 180, 216, 0.15);
}
.nav-logo img {
  height: 52px; border-radius: 8px; display: block;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(0, 180, 216, 0.15);
}
.nav-logo img:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(0, 180, 216, 0.35); }
.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a {
  color: #b8c7d6; text-decoration: none;
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.2px;
  transition: color 0.25s; position: relative; padding: 0.25rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: #00b4d8;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
  color: #fff; padding: 0.7rem 1.5rem;
  border-radius: 50px; font-weight: 600; font-size: 0.875rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); display: inline-flex; align-items: center; gap: 0.4rem;
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.25), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 180, 216, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:hover::before { left: 100%; }
.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  color: #fff; padding: 1.05rem 2.25rem;
  border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline:hover {
  border-color: rgba(0, 180, 216, 0.6);
  background: rgba(0, 180, 216, 0.08);
  color: #00d4f7;
  transform: translateY(-2px);
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: #fff; display: block; transition: all 0.3s; }

/* HERO (Home page) */
#hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at top, #1a3a5c 0%, #0d1b2a 50%, #0a1322 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; opacity: 0.5;
  animation: float-orb 20s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: #00b4d8; top: -150px; left: -150px; }
.hero-orb-2 { width: 400px; height: 400px; background: #0077b6; bottom: -100px; right: -100px; animation-delay: -7s; animation-duration: 25s; }
.hero-orb-3 { width: 300px; height: 300px; background: #00d4f7; top: 40%; left: 60%; animation-delay: -14s; animation-duration: 30s; opacity: 0.3; }
#hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.droplet {
  position: absolute; top: -20px;
  width: 3px; height: 12px;
  background: linear-gradient(to bottom, transparent, rgba(0, 212, 247, 0.5));
  border-radius: 50%;
  animation: drop linear infinite;
  pointer-events: none;
}
.hero-content { position: relative; max-width: 880px; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.3);
  backdrop-filter: blur(10px);
  color: #7fdbf0; padding: 0.5rem 1.25rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 1.75rem;
}
.hero-badge .dot {
  width: 6px; height: 6px; background: #00d4f7;
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

/* HERO LOGO — the new centerpiece */
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 2.25rem;
  animation: logo-float 6s ease-in-out infinite;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.35), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  opacity: 0.7;
}
.hero-logo-img {
  height: clamp(180px, 26vw, 320px);
  width: auto;
  display: block;
  border-radius: 28px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 180, 216, 0.25),
    0 0 60px rgba(0, 180, 216, 0.2);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-logo-img:hover {
  transform: scale(1.02);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 180, 216, 0.45),
    0 0 80px rgba(0, 180, 216, 0.35);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}
.hero-title .gradient {
  background: linear-gradient(135deg, #00d4f7 0%, #00b4d8 50%, #0077b6 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  display: inline-block;
}
.hero-title .serif { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.hero-subtitle {
  font-size: 1.1rem; color: #a8bccf;
  max-width: 620px; margin: 0 auto 2.5rem; line-height: 1.7;
  font-weight: 400;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-cta .btn-primary { padding: 1.05rem 2.5rem; font-size: 0.95rem; }

/* HERO REVIEWS BADGE — social proof in the hero */
.hero-reviews {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.28);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0.55rem 1.25rem;
  font-size: 0.92rem;
  margin: -0.75rem auto 2.25rem;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}
.hero-reviews:hover {
  background: rgba(0, 180, 216, 0.14);
  border-color: rgba(0, 180, 216, 0.5);
  transform: translateY(-2px);
}
.hero-reviews-stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 0.95rem;
  filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.4));
}
.hero-reviews-text {
  color: #c8d6e3;
  font-weight: 500;
}
.hero-reviews-text strong {
  color: #fff;
  font-weight: 700;
}

/* PAGE HERO (inner pages) — compact header */
.page-hero {
  position: relative;
  padding: 9rem 2rem 4rem;
  text-align: center;
  background: radial-gradient(ellipse at top, #1a3a5c 0%, #0d1b2a 60%, #0a1322 100%);
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.page-hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; opacity: 0.4;
  animation: float-orb 22s ease-in-out infinite;
}
.page-hero-orb-1 { width: 380px; height: 380px; background: #00b4d8; top: -120px; left: -100px; }
.page-hero-orb-2 { width: 300px; height: 300px; background: #0077b6; top: -50px; right: -80px; animation-delay: -8s; }
.page-hero-content { position: relative; max-width: 880px; margin: 0 auto; z-index: 2; }
.page-hero-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: #00b4d8; font-size: 0.72rem;
  letter-spacing: 3.5px; text-transform: uppercase;
  margin-bottom: 1rem; font-weight: 600;
}
.page-hero-label::before {
  content: ''; width: 24px; height: 1px;
  background: linear-gradient(to right, transparent, #00b4d8);
}
.page-hero-label::after {
  content: ''; width: 24px; height: 1px;
  background: linear-gradient(to left, transparent, #00b4d8);
}
.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}
.page-hero-title .accent {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-weight: 400;
  color: #00d4f7;
}
.page-hero-subtitle {
  color: #a8bccf; font-size: 1.05rem; line-height: 1.7;
  max-width: 640px; margin: 0 auto;
}

/* TRUST BAR */
.trust-bar {
  background: linear-gradient(90deg, rgba(0, 180, 216, 0.03), rgba(0, 180, 216, 0.06), rgba(0, 180, 216, 0.03));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2rem;
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: #8fa8c0; font-size: 0.85rem; font-weight: 500;
  transition: color 0.25s;
}
.trust-item:hover { color: #fff; }
.trust-item .check {
  color: #00b4d8; font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: rgba(0, 180, 216, 0.12);
  border-radius: 50%;
}

/* SECTION BASE */
section { padding: 5.5rem 2rem; position: relative; }
.container { max-width: 1180px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: #00b4d8; font-size: 0.7rem;
  letter-spacing: 3.5px; text-transform: uppercase;
  margin-bottom: 1rem; font-weight: 600;
}
.section-label::before {
  content: ''; width: 24px; height: 1px;
  background: linear-gradient(to right, transparent, #00b4d8);
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700; margin-bottom: 1.25rem;
  line-height: 1.05; letter-spacing: -0.03em;
}
.section-title .accent { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #00d4f7; }
.section-subtitle {
  color: #a8bccf; font-size: 1.05rem;
  line-height: 1.75; max-width: 650px;
  font-weight: 400;
}

/* ABOUT */
#about { background: #0a1322; position: relative; }
.about-photo-wrap {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(0, 180, 216, 0.2);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 180, 216, 0.08);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 1.5rem;
}
.about-photo-wrap:hover { transform: translateY(-4px) scale(1.01); }
.about-photo-wrap img { width: 100%; display: block; height: 260px; object-fit: cover; object-position: center; }
.about-photo-portrait { margin-top: 1.25rem; }
.about-photo-portrait img { height: 340px; object-position: center 35%; }
.about-photo-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 19, 34, 0.85));
  pointer-events: none; z-index: 1;
}
.about-photo-tag {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
  background: rgba(0, 180, 216, 0.9);
  backdrop-filter: blur(8px);
  color: #fff; padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.about-photo-tag::before {
  content: ''; width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}
#about::before {
  content: ''; position: absolute; top: 20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08), transparent 70%);
  pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; margin-top: 3rem; position: relative; }
.about-features { display: flex; flex-direction: column; gap: 1.5rem; }
.feature-item {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding: 0.5rem 0; transition: transform 0.3s;
}
.feature-item:hover { transform: translateX(6px); }
.feature-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(0, 119, 182, 0.1));
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.1);
}
.feature-text h4 { font-weight: 700; margin-bottom: 0.35rem; font-size: 1rem; letter-spacing: -0.01em; }
.feature-text p { color: #8fa8c0; font-size: 0.9rem; line-height: 1.65; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.stat-card {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.06) 0%, rgba(0, 180, 216, 0.02) 100%);
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: 18px; padding: 2rem 1.5rem; text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.12), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.stat-card:hover {
  border-color: rgba(0, 180, 216, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 180, 216, 0.15);
}
.stat-card:hover::before { opacity: 1; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem; font-weight: 700;
  background: linear-gradient(135deg, #00d4f7, #00b4d8);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; letter-spacing: -0.03em;
  position: relative;
}
.stat-label {
  color: #a8bccf; font-size: 0.8rem;
  margin-top: 0.6rem; font-weight: 500;
  letter-spacing: 0.3px; position: relative;
}

/* SERVICES */
#services { background: #0d1b2a; position: relative; overflow: hidden; }
#services::before {
  content: ''; position: absolute; top: -10%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.06), transparent 70%);
  pointer-events: none;
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 1.5rem; margin-top: 3rem; position: relative; }
.service-card {
  background: linear-gradient(180deg, #1a2f45 0%, #15263a 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px; padding: 2.25rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.5), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 180, 216, 0.1), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover {
  border-color: rgba(0, 180, 216, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 180, 216, 0.15);
}
.service-card:hover::before, .service-card:hover::after { opacity: 1; }
.service-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.18), rgba(0, 119, 182, 0.1));
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.15);
  transition: all 0.4s;
}
.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 32px rgba(0, 180, 216, 0.3);
}
.service-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.85rem; letter-spacing: -0.02em; }
.service-card p { color: #a8bccf; line-height: 1.7; font-size: 0.925rem; }
.service-tag {
  display: inline-block;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.2);
  color: #7fdbf0;
  padding: 0.35rem 0.95rem;
  border-radius: 50px; font-size: 0.72rem;
  margin-top: 1.5rem; font-weight: 500; letter-spacing: 0.3px;
}

/* WHY US */
#why-us { background: #0a1322; position: relative; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.why-card {
  text-align: center; padding: 2.5rem 1.75rem;
  background: linear-gradient(180deg, rgba(0, 180, 216, 0.04) 0%, rgba(0, 180, 216, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top, rgba(0, 180, 216, 0.15), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.why-card:hover {
  border-color: rgba(0, 180, 216, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 180, 216, 0.1);
}
.why-card:hover::before { opacity: 1; }
.why-icon-wrap {
  width: 56px; height: 56px; margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(0, 119, 182, 0.05));
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; transition: transform 0.4s;
  position: relative;
}
.why-card:hover .why-icon-wrap { transform: scale(1.1) rotate(5deg); }
.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.65rem; position: relative; letter-spacing: -0.01em; }
.why-card p { color: #8fa8c0; font-size: 0.875rem; line-height: 1.65; position: relative; }

/* FEATURED SERVICES (spotlight on services page) */
#featured-services { background: #0a1322; position: relative; overflow: hidden; }
#featured-services::before {
  content: ''; position: absolute; top: 20%; right: -10%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.07), transparent 70%);
  pointer-events: none;
}
#featured-services::after {
  content: ''; position: absolute; bottom: 10%; left: -8%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0, 119, 182, 0.06), transparent 70%);
  pointer-events: none;
}
.featured-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.75rem; margin-top: 3rem; position: relative;
}
.featured-card {
  background: linear-gradient(180deg, #1a2f45 0%, #15263a 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px; overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex; flex-direction: column;
}
.featured-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.6), transparent);
  opacity: 0; transition: opacity 0.4s; z-index: 3;
}
.featured-card:hover {
  border-color: rgba(0, 180, 216, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 180, 216, 0.15);
}
.featured-card:hover::before { opacity: 1; }
.featured-image-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 17 / 10;
  background: #0a1322;
}
.featured-image-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 82%, rgba(10, 19, 34, 0.65) 100%);
  pointer-events: none;
}
.featured-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.featured-card:hover .featured-image-wrap img { transform: scale(1.04); }
.featured-card-body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  flex: 1;
}
.featured-card-eyebrow {
  color: #7fdbf0; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
}
.featured-card-body h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; }
.featured-card-body p { color: #a8bccf; line-height: 1.7; font-size: 0.925rem; flex: 1; }
.featured-card-body .btn-primary { align-self: flex-start; }

@media (max-width: 768px) {
  .featured-grid { gap: 1.1rem; grid-template-columns: 1fr; }
  .featured-card-body { padding: 1.5rem 1.25rem 1.75rem; }
  .featured-card-body h3 { font-size: 1.2rem; }
}

/* HOME — CTA STRIP */
.cta-strip {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(0, 119, 182, 0.03));
  border-top: 1px solid rgba(0, 180, 216, 0.15);
  border-bottom: 1px solid rgba(0, 180, 216, 0.15);
  padding: 4rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.12), transparent 70%);
  pointer-events: none;
}
.cta-strip-content { position: relative; max-width: 720px; margin: 0 auto; }
.cta-strip h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700; margin-bottom: 0.85rem;
  letter-spacing: -0.025em;
}
.cta-strip h2 .accent { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: #00d4f7; }
.cta-strip p { color: #a8bccf; font-size: 1rem; margin-bottom: 2rem; line-height: 1.65; }
.cta-strip-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-strip-buttons .btn-primary { padding: 1.05rem 2.5rem; font-size: 0.95rem; }

/* CONTACT */
#contact { background: #0a1322; position: relative; overflow: hidden; }
#contact::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0, 180, 216, 0.1), transparent 70%);
  pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; margin-top: 3rem; align-items: start; position: relative; }
.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1.1rem;
  transition: transform 0.3s;
}
.contact-item:hover { transform: translateX(4px); }
.contact-item-icon {
  width: 52px; height: 52px; min-width: 52px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(0, 119, 182, 0.05));
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.1);
}
.contact-item-label {
  font-size: 0.72rem; color: #7fdbf0;
  margin-bottom: 0.3rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.contact-item-value { font-weight: 600; color: #fff; font-size: 1rem; letter-spacing: -0.01em; }
.contact-item-value a { color: #fff; text-decoration: none; transition: color 0.2s; }
.contact-item-value a:hover { color: #00d4f7; }
.contact-note {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(0, 119, 182, 0.03));
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 16px; padding: 1.4rem 1.5rem;
  color: #a8bccf; font-size: 0.9rem; line-height: 1.65;
  margin-top: 0.5rem;
}
.contact-note strong { color: #fff; }
.contact-reach {
  background: linear-gradient(180deg, #1a2f45 0%, #15263a 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px; padding: 2.75rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
  position: relative; overflow: hidden;
}
.contact-reach::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.6), transparent);
}
.reach-title {
  font-size: 1.5rem; font-weight: 700;
  margin-bottom: 0.3rem; letter-spacing: -0.02em;
}
.reach-subtitle { color: #a8bccf; font-size: 0.92rem; line-height: 1.65; margin-bottom: 0.75rem; }
.reach-btn {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.3rem 1.5rem; border-radius: 16px; text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  position: relative; overflow: hidden;
}
.reach-btn::after {
  content: '→'; position: absolute; right: 1.5rem; top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0; transition: all 0.3s;
  font-size: 1.2rem; font-weight: 700;
}
.reach-btn:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.reach-btn-phone {
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}
.reach-btn-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 180, 216, 0.45), inset 0 1px 0 rgba(255,255,255,0.3);
}
.reach-btn-sms {
  background: rgba(0, 180, 216, 0.08); color: #fff;
  border-color: rgba(0, 180, 216, 0.25);
}
.reach-btn-sms:hover {
  background: rgba(0, 180, 216, 0.18);
  border-color: rgba(0, 180, 216, 0.5);
  transform: translateY(-3px);
}
.reach-btn-fb {
  background: rgba(24, 119, 242, 0.1); color: #fff;
  border-color: rgba(24, 119, 242, 0.3);
}
.reach-btn-fb:hover {
  background: rgba(24, 119, 242, 0.22);
  border-color: rgba(24, 119, 242, 0.6);
  transform: translateY(-3px);
}
.reach-btn-icon {
  font-size: 1.7rem; flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
}
.reach-btn-label {
  font-size: 0.7rem; opacity: 0.8;
  margin-bottom: 0.15rem;
  letter-spacing: 1.5px; font-weight: 600;
}
.reach-btn-value { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; }
.reach-divider {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  margin: 0.25rem 0;
}

/* BEFORE & AFTER */
#before-after { background: #0d1b2a; position: relative; overflow: hidden; }
#before-after::before {
  content: ''; position: absolute; top: 30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.05), transparent 70%);
  pointer-events: none;
}
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; position: relative; }
.ba-card {
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(180deg, #1a2f45, #15263a);
  position: relative;
}
.ba-card::before {
  content: 'VIEW'; position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: rgba(0, 180, 216, 0.9); color: #fff;
  padding: 0.3rem 0.85rem; border-radius: 50px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px;
  opacity: 0; transform: translateY(-10px);
  transition: all 0.4s;
}
.ba-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 50px rgba(0,0,0,0.45);
  border-color: rgba(0, 180, 216, 0.35);
}
.ba-card:hover::before { opacity: 1; transform: translateY(0); }
.ba-card img {
  width: 100%; display: block; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ba-card:hover img { transform: scale(1.04); }
.ba-caption {
  padding: 1.1rem 1.4rem; color: #ccd6e0;
  font-size: 0.9rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.ba-caption::before {
  content: ''; width: 6px; height: 6px;
  background: #00b4d8; border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 180, 216, 0.6);
}

/* REVIEWS */
#reviews { background: #0a1322; position: relative; overflow: hidden; }
#reviews::before {
  content: ''; position: absolute; bottom: 10%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.07), transparent 70%);
  pointer-events: none;
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.5rem; margin-top: 3rem; position: relative;
}
.review-card {
  background: linear-gradient(180deg, #1a2f45 0%, #15263a 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px; padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
}
.review-card::before {
  content: '"'; position: absolute; top: -20px; right: 20px;
  font-family: 'Instrument Serif', serif;
  font-size: 9rem; color: rgba(0, 180, 216, 0.08);
  line-height: 1; pointer-events: none;
  transition: all 0.5s;
}
.review-card:hover {
  border-color: rgba(0, 180, 216, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.review-card:hover::before { color: rgba(0, 180, 216, 0.18); transform: translateY(-5px); }
.review-header { display: flex; align-items: center; gap: 1rem; position: relative; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #00d4f7, #0077b6);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.05rem; color: #fff; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.25);
  font-family: 'Space Grotesk', sans-serif;
}
.review-avatar.fb { background: linear-gradient(135deg, #1877f2, #0d5cb8); }
.review-name { font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }
.review-source { font-size: 0.75rem; color: #8fa8c0; margin-top: 0.15rem; font-weight: 500; }
.review-stars {
  color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px;
  filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.3));
  position: relative;
}
.review-text { color: #c8d6e3; font-size: 0.92rem; line-height: 1.75; flex: 1; position: relative; }
.reviews-summary {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(0, 119, 182, 0.04));
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: 24px; padding: 2rem 2.5rem; margin-top: 3rem;
  box-shadow: 0 16px 40px rgba(0, 180, 216, 0.08);
  position: relative; overflow: hidden;
}
.reviews-summary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.05), transparent);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
.summary-score {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem; font-weight: 700;
  background: linear-gradient(135deg, #00d4f7, #00b4d8);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; letter-spacing: -0.04em; position: relative;
}
.summary-stars {
  color: #fbbf24; font-size: 1.4rem; letter-spacing: 3px;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.4));
  position: relative;
}
.summary-label { color: #a8bccf; font-size: 0.9rem; margin-top: 0.3rem; font-weight: 500; position: relative; }

/* SERVICE AREA */
#service-area { background: #0d1b2a; position: relative; overflow: hidden; }
.area-intro { max-width: 650px; }
.area-marquee-wrap {
  margin-top: 3rem;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  overflow: hidden;
}
.area-marquee {
  display: flex; gap: 0.85rem;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.area-marquee:hover { animation-play-state: paused; }
.area-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(0, 119, 182, 0.04));
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 50px; padding: 0.7rem 1.4rem;
  font-size: 0.9rem; color: #ccd6e0; font-weight: 500;
  transition: all 0.3s; white-space: nowrap;
  flex-shrink: 0;
}
.area-chip:hover {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(0, 119, 182, 0.1));
  border-color: rgba(0, 180, 216, 0.5);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.15);
}
.area-chip .pin { color: #00d4f7; font-size: 0.85rem; }
.area-note {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.06), rgba(0, 119, 182, 0.02));
  border: 1px solid rgba(0, 180, 216, 0.18);
  border-radius: 16px;
  padding: 1.4rem 1.75rem; color: #a8bccf;
  font-size: 0.92rem; line-height: 1.65;
  max-width: 720px;
}
.area-note strong { color: #fff; }

/* FOOTER */
footer {
  background: #060f1a;
  border-top: 1px solid rgba(0, 180, 216, 0.1);
  padding: 3rem 2rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.5), transparent);
}
.footer-logo-img { height: 60px; border-radius: 8px; margin-bottom: 1rem; }
.footer-tagline {
  color: #a8bccf; font-size: 0.95rem;
  margin-bottom: 1.75rem; font-family: 'Instrument Serif', serif;
  font-style: italic; font-size: 1.1rem;
}
.footer-links {
  display: flex; justify-content: center; gap: 2.25rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.footer-links a {
  color: #8fa8c0; text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s; position: relative;
}
.footer-links a:hover { color: #00d4f7; }
.footer-copy {
  color: #3a5a70; font-size: 0.78rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  max-width: 600px; margin: 0 auto;
}
.footer-copy strong { color: #5a7a92; }

/* FLOATING MOBILE CTA */
.floating-cta {
  display: none; position: fixed; bottom: 20px; right: 20px; z-index: 95;
  gap: 0.6rem; flex-direction: column;
}
.floating-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; text-decoration: none; color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.3s; position: relative;
}
.floating-btn-phone {
  background: linear-gradient(135deg, #00d4f7, #0077b6);
}
.floating-btn-phone:hover { transform: scale(1.1); }
.floating-btn-fb { background: linear-gradient(135deg, #1877f2, #0d5cb8); }
.floating-btn-fb:hover { transform: scale(1.1); }

/* MOBILE NAV MENU */
.mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; width: 100%;
  background: rgba(13, 27, 42, 0.98); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 180, 216, 0.2);
  padding: 1.5rem 2rem; flex-direction: column; gap: 1.25rem; z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #ccd6e0; text-decoration: none; font-size: 1rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu a.active { color: #00d4f7; }
.mobile-menu a:last-child { border-bottom: none; color: #00b4d8; font-weight: 700; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  section { padding: 5rem 1.75rem; }
  .container { max-width: 100%; }
}
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  section { padding: 4.5rem 1.5rem; }
  .about-photo-wrap img { height: 320px; }
  .page-hero { padding: 8rem 1.5rem 3rem; }
}
@media (max-width: 768px) {
  nav { padding: 0.7rem 1rem; }
  nav.scrolled { padding: 0.55rem 1rem; }
  .nav-logo img { height: 42px; }
  nav > .btn-primary { display: none; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.78rem; letter-spacing: 0.1px; }
  .trust-bar { gap: 1rem; padding: 1rem 1.25rem; }
  .trust-item { font-size: 0.78rem; }
  .trust-item .check { width: 18px; height: 18px; font-size: 0.85rem; }
  #hero { padding: 5rem 1.5rem 3rem; min-height: auto; }
  .hero-logo-img { height: clamp(150px, 42vw, 220px); border-radius: 22px; }
  .hero-logo-wrap { margin-bottom: 1.75rem; }
  .hero-title { font-size: 2rem; line-height: 1.08; margin-bottom: 1.25rem; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 1.75rem; }
  .hero-badge { font-size: 0.68rem; padding: 0.4rem 1rem; margin-bottom: 1.25rem; }
  .hero-cta { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; gap: 0.75rem; }
  .hero-cta .btn-primary, .hero-cta .btn-outline { width: 100%; justify-content: center; }
  .hero-reviews { font-size: 0.82rem; padding: 0.5rem 1rem; gap: 0.55rem; margin: -0.5rem auto 1.75rem; }
  .hero-reviews-stars { font-size: 0.85rem; letter-spacing: 1.5px; }
  .hero-orb-1 { width: 300px; height: 300px; }
  .hero-orb-2 { width: 280px; height: 280px; }
  .hero-orb-3 { width: 200px; height: 200px; }
  .page-hero { padding: 7rem 1.25rem 2.5rem; }
  .page-hero-title { font-size: 2rem; line-height: 1.1; }
  .page-hero-subtitle { font-size: 0.95rem; }
  .section-title { font-size: 2rem; line-height: 1.1; }
  .section-subtitle { font-size: 0.95rem; }
  .section-label { font-size: 0.65rem; letter-spacing: 2.5px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .stat-card { padding: 1.5rem 1rem; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.72rem; }
  .feature-item { gap: 0.9rem; }
  .feature-icon { width: 42px; height: 42px; min-width: 42px; font-size: 1.15rem; }
  .services-grid, .why-grid, .ba-grid, .reviews-grid { gap: 1.1rem; }
  .service-card { padding: 1.75rem 1.5rem; }
  .service-card h3 { font-size: 1.2rem; }
  .why-card { padding: 2rem 1.25rem; }
  .review-card { padding: 1.65rem; }
  .review-text { font-size: 0.875rem; }
  .review-card::before { font-size: 6rem; top: -10px; right: 14px; }
  .reviews-summary { padding: 1.5rem; gap: 1rem; flex-direction: column; align-items: flex-start; text-align: left; }
  .summary-score { font-size: 3.2rem; }
  .ba-card img { height: auto; }
  .area-chip { padding: 0.55rem 1.1rem; font-size: 0.82rem; }
  .area-marquee { animation-duration: 30s; }
  .area-note { padding: 1.1rem 1.25rem; font-size: 0.875rem; }
  .contact-reach { padding: 1.75rem 1.5rem; }
  .reach-title { font-size: 1.25rem; }
  .reach-btn { padding: 1.1rem 1.25rem; }
  .reach-btn-value { font-size: 1rem; }
  .reach-btn-icon { width: 40px; height: 40px; font-size: 1.4rem; }
  .reach-btn::after { display: none; }
  .contact-item-icon { width: 46px; height: 46px; min-width: 46px; }
  .floating-cta { display: flex; }
  .floating-btn { width: 52px; height: 52px; font-size: 1.3rem; }
  footer { padding: 2.5rem 1.25rem 1.75rem; }
  .footer-logo-img { height: 50px; }
  .footer-tagline { font-size: 1rem; margin-bottom: 1.5rem; }
  .footer-links { gap: 1.25rem 1.5rem; margin-bottom: 1.5rem; }
  .footer-copy { font-size: 0.72rem; }
  .cta-strip { padding: 3rem 1.5rem; }
}
@media (max-width: 480px) {
  nav { padding: 0.6rem 0.85rem; }
  .nav-logo img { height: 36px; }
  .nav-links { gap: 0.65rem; }
  .nav-links a { font-size: 0.7rem; }
  section { padding: 3.5rem 1.25rem; }
  .hero-title { font-size: 1.75rem; }
  .page-hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.7rem; }
  .hero-logo-img { height: clamp(140px, 48vw, 200px); }
  .stat-card { padding: 1.25rem 0.85rem; border-radius: 14px; }
  .stat-number { font-size: 1.75rem; }
  .stat-label { font-size: 0.68rem; }
  .feature-text h4 { font-size: 0.95rem; }
  .feature-text p { font-size: 0.82rem; }
  .about-photo-wrap img { height: 240px; }
  .service-card, .review-card, .why-card, .contact-reach { padding: 1.5rem 1.25rem; border-radius: 18px; }
  .service-icon-wrap { width: 54px; height: 54px; font-size: 1.65rem; }
  .why-icon-wrap { width: 50px; height: 50px; font-size: 1.4rem; }
  .summary-score { font-size: 2.8rem; }
  .summary-stars { font-size: 1.15rem; letter-spacing: 2px; }
  .reviews-summary { padding: 1.4rem 1.25rem; border-radius: 18px; }
  .area-chip { padding: 0.5rem 0.95rem; font-size: 0.78rem; }
  .floating-cta { bottom: 16px; right: 16px; gap: 0.5rem; }
  .floating-btn { width: 48px; height: 48px; font-size: 1.2rem; }
}
@media (max-width: 380px) {
  nav { padding: 0.55rem 0.6rem; }
  .nav-logo img { height: 32px; }
  .nav-links { gap: 0.45rem; }
  .nav-links a { font-size: 0.62rem; letter-spacing: 0; }
  .hero-title { font-size: 1.55rem; }
  .about-stats { gap: 0.7rem; }
  .stat-card { padding: 1.1rem 0.7rem; }
  .stat-number { font-size: 1.6rem; }
}
