/* ============================================
   OVER UNDER PRESSURE WASHING — STYLES
   ============================================ */

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

:root {
  --blue: #1a6fd4;
  --blue-dark: #0f4fa0;
  --blue-light: #3a8ee8;
  --blue-glow: rgba(26, 111, 212, 0.4);
  --dark: #0a0a0a;
  --dark-2: #131313;
  --dark-3: #1c1c1c;
  --dark-4: #262626;
  --text: #f5f5f5;
  --text-muted: #a0a0a0;
  --text-dim: #707070;
  --white: #ffffff;
  --accent: #4da8ff;
  --gold: #fbbf24;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --container: 1140px;
  --container-narrow: 760px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.4);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", system-ui, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--blue);
  color: white;
  padding: 12px 20px;
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================
   NAV
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

nav {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: background 0.3s var(--ease);
}

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

.nav-logo-mark {
  width: 44px;
  height: 44px;
  background-image: url('logo.jpg');
  background-size: 160% auto;
  background-position: center 28%;
  background-repeat: no-repeat;
  background-color: #9a9a9a;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  font-size: 0;
  color: transparent;
}

.nav-logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

.nav-cta {
  background: var(--blue) !important;
  color: white !important;
  padding: 10px 18px !important;
  margin-left: 8px;
  transition: background 0.2s, transform 0.15s !important;
  box-shadow: 0 4px 14px var(--blue-glow);
}

.nav-cta:hover {
  background: var(--blue-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(26, 111, 212, 0.18) 0%, transparent 70%),
    linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.8) 70%, var(--dark) 100%);
}

.hero-content {
  max-width: 800px;
  position: relative;
  animation: fadeUp 0.8s var(--ease) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 111, 212, 0.15);
  border: 1px solid rgba(26, 111, 212, 0.4);
  color: var(--accent);
  padding: 7px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(40px, 8vw, 84px);
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 24px;
  letter-spacing: -0.035em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue);
}

.hero-sub {
  font-size: clamp(16px, 2.3vw, 20px);
  color: rgba(245, 245, 245, 0.85);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s var(--ease), box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 6px 20px var(--blue-glow);
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--blue-glow);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 24px;
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  text-align: left;
}

.trust-item strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
}

.trust-item span {
  font-size: 12px;
  color: var(--text-muted);
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px 32px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trust-pill svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* ============================================
   ABOUT
   ============================================ */
#about {
  background: var(--dark);
}

.about-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.about-logo-wrap {
  position: relative;
  padding: 36px;
  background: linear-gradient(135deg, rgba(26, 111, 212, 0.12), rgba(26, 111, 212, 0.02));
  border: 1px solid rgba(26, 111, 212, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(26, 111, 212, 0.5), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.about-logo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  display: block;
}

.about-content .section-title {
  margin-bottom: 20px;
}

.about-lead {
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.about-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 96px 24px;
  position: relative;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(26, 111, 212, 0.1);
  border: 1px solid rgba(26, 111, 212, 0.25);
  border-radius: 20px;
}

.section-title {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
}

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

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SERVICES
   ============================================ */
#services {
  background: var(--dark-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  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 var(--ease);
}

.service-card:hover {
  border-color: rgba(26, 111, 212, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-featured {
  border-color: rgba(26, 111, 212, 0.35);
  background: linear-gradient(180deg, rgba(26, 111, 212, 0.08), var(--dark-3));
}

.service-card-featured::before {
  opacity: 1;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--blue);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(26, 111, 212, 0.15);
  border: 1px solid rgba(26, 111, 212, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

/* ============================================
   WHY US
   ============================================ */
#why {
  background: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 32px 20px;
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(26, 111, 212, 0.15), rgba(26, 111, 212, 0.05));
  border: 1px solid rgba(26, 111, 212, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.why-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============================================
   PROCESS
   ============================================ */
#process {
  background: var(--dark-2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}

.process-step {
  position: relative;
  padding: 36px 28px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}

.process-step:hover {
  border-color: rgba(26, 111, 212, 0.4);
  transform: translateY(-3px);
}

.process-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px var(--blue-glow);
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.process-step p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============================================
   GALLERY
   ============================================ */
#gallery {
  background: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 0;
  cursor: pointer;
  display: block;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 30px 14px 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s;
  text-align: left;
}

.gallery-item:hover .gallery-label,
.gallery-item:focus-visible .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   REVIEWS
   ============================================ */
#reviews {
  background: var(--dark-2);
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.rating-stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 3px;
}

.rating-text {
  color: var(--text-muted);
  font-size: 15px;
}

.rating-text strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 22px;
  font-style: italic;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 700;
  font-size: 14px;
}

.reviewer-meta {
  font-size: 12px;
  color: var(--text-dim);
}

/* ============================================
   SERVICE AREA
   ============================================ */
#area {
  background: var(--dark);
}

.area-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.area-intro {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 14px;
  line-height: 1.6;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 32px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.area-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(26, 111, 212, 0.15);
}

.area-note {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 24px;
  font-style: italic;
}

.area-callout {
  background: linear-gradient(135deg, rgba(26, 111, 212, 0.18), rgba(26, 111, 212, 0.05));
  border: 1px solid rgba(26, 111, 212, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.area-callout::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(26, 111, 212, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.area-callout-icon {
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
}

.area-callout h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.area-callout p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
  position: relative;
}

.area-callout .btn-primary {
  position: relative;
}

/* ============================================
   FAQ
   ============================================ */
#faq {
  background: var(--dark-2);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-item[open] {
  border-color: rgba(26, 111, 212, 0.4);
}

.faq-item summary {
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--white);
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
  margin-bottom: 4px;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-bottom: 0;
  margin-top: 4px;
  border-color: var(--accent);
}

.faq-item p {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
#contact {
  background: linear-gradient(180deg, var(--dark) 0%, #0a1628 100%);
  text-align: center;
}

#contact .section-title {
  max-width: 640px;
  margin: 0 auto 16px;
}

#contact .section-sub {
  margin: 0 auto 48px;
}

.contact-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 720px;
}

.contact-card {
  flex: 1 1 280px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  border-color: rgba(26, 111, 212, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 20px var(--blue-glow);
}

.contact-card-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-card-value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.contact-card-note {
  font-size: 13px;
  color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-col li {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-brand .footer-blurb {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo-mark {
  width: 46px;
  height: 46px;
  background-image: url('logo.jpg');
  background-size: 160% auto;
  background-position: center 28%;
  background-repeat: no-repeat;
  background-color: #9a9a9a;
  border-radius: 10px;
  flex-shrink: 0;
  font-size: 0;
  color: transparent;
}

.footer-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}

.footer-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}

.footer-bottom {
  max-width: var(--container);
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ============================================
   FLOATING CALL BUTTON (MOBILE)
   ============================================ */
.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  background: var(--blue);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 50px;
  display: none;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(26, 111, 212, 0.5), 0 0 0 4px rgba(26, 111, 212, 0.2);
  animation: pulse 2.5s var(--ease) infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(26, 111, 212, 0.5), 0 0 0 0 rgba(26, 111, 212, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(26, 111, 212, 0.5), 0 0 0 12px rgba(26, 111, 212, 0); }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  cursor: zoom-out;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.2s var(--ease);
}

.lightbox-img {
  max-width: 92%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  cursor: default;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  font-size: 32px;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 38px;
  padding-bottom: 6px;
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 38px;
  padding-bottom: 6px;
}

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.5);
  padding: 8px 16px;
  border-radius: 6px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .area-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .about-logo-wrap {
    max-width: 340px;
    margin: 0 auto;
  }

  .about-stats {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  nav {
    padding: 0 16px;
    height: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 18px;
    font-size: 16px;
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 8px;
    text-align: center;
  }

  .floating-call {
    display: inline-flex;
  }

  section {
    padding: 72px 16px;
  }

  .hero {
    padding: 100px 16px 80px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    gap: 14px;
    padding: 20px;
  }

  .trust-item {
    text-align: center;
  }

  .trust-divider {
    width: 80%;
    height: 1px;
  }

  .area-callout {
    padding: 36px 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

@media (max-width: 480px) {
  .area-list {
    grid-template-columns: 1fr;
  }

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

  .gallery-label {
    font-size: 10px;
    padding: 24px 8px 8px;
  }

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

  .service-card,
  .review-card {
    padding: 28px 22px;
  }
}
