/* OnPoint Pressure — Premium Brand Styles */
/* Colors from official Brand-Colors-Reference.png */
/* Self-hosted Poppins (v2 — privacy + performance) */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0D1B2A;
  --navy-dark: #001F3F;
  --cyan: #00B7E8;
  --cyan-light: #00D4FF;
  --cyan-glow: rgba(0, 183, 232, 0.15);
  --cyan-glow-strong: rgba(0, 183, 232, 0.35);
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --gray: #E5E7EB;
  --dark: #111827;
  --text-dark: #1F2937;
  --text-light: #F3F4F6;
}

/* Base */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Premium Dark Sections (inspired by business cards) */
.section-dark {
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark .text-accent {
  color: var(--white);
}

/* Unified site theme — same navy + light blue at every screen size */
body {
  background-color: #e0ecf3;
}

.page-hero,
.section-dark {
  background-color: #0D1B2A;
  background-image: linear-gradient(165deg, #0A1420 0%, #001F3F 50%, #0D1B2A 100%);
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--cyan);
}

.page-hero::before,
.page-hero::after,
.section-dark::before,
.section-dark::after {
  display: none;
}

.page-hero .page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero .page-hero-title {
  color: #ffffff;
}

.page-hero .page-hero-subtitle {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero .page-hero-eyebrow {
  color: var(--cyan);
}

.page-content-muted {
  background-color: #e0ecf3;
  background-image: linear-gradient(180deg, #c5d9e6 0%, #e0ecf3 100%);
}

.water-glow,
.page-hero-glow {
  display: none;
}

/* Cyan Accent System */
.text-cyan {
  color: var(--cyan);
}

.bg-cyan {
  background-color: var(--cyan);
}

.border-cyan {
  border-color: var(--cyan);
}

.btn-primary {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan-light) 100%);
  color: var(--navy);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 9999px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  letter-spacing: -0.2px;
  box-shadow: 0 10px 15px -3px var(--cyan-glow-strong), 0 4px 6px -4px var(--cyan-glow), 0 0 0 1px rgba(0,183,232,0.2);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 25px -5px var(--cyan-glow-strong), 0 8px 10px -6px var(--cyan-glow), 0 0 0 1px rgba(0,183,232,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--cyan);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 10px 15px -3px var(--cyan-glow-strong);
}

/* Professional nav logo with intentional overflow
   The blue swoosh is designed to hang ABOVE the header bar for premium branding.
   Negative margin-top lifts the logo so the arc arches elegantly above the white bar
   while the wordmark sits at the correct visual height inside the header. */
.nav-logo {
  height: 68px;
  width: auto;
  margin-top: -10px;
  object-fit: contain;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.nav-logo:hover {
  filter: drop-shadow(0 10px 24px rgba(0, 183, 232, 0.32));
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .nav-logo {
    height: 52px;
    margin-top: -6px;
  }
}

/* .hero-logo removed — hero no longer contains a duplicate logo (clean typography treatment only) */

/* Dynamic cyan glow utility */
.glow-cyan {
  box-shadow: 0 0 0 1px rgba(0,183,232,0.2), 0 10px 15px -3px var(--cyan-glow-strong);
}

/* Water Spray Effect Utility */
.water-spray {
  position: relative;
}

.water-spray::after {
  content: '';
  position: absolute;
  top: 40%;
  right: -15%;
  width: 80px;
  height: 40px;
  background: radial-gradient(circle at 20% 50%, var(--cyan) 0%, transparent 70%);
  opacity: 0.25;
  pointer-events: none;
  border-radius: 50%;
  transform: rotate(-30deg);
  animation: water-spray 2.5s ease-in-out infinite;
}

@keyframes water-spray {
  0%, 100% { opacity: 0.2; transform: rotate(-30deg) scale(1); }
  50% { opacity: 0.35; transform: rotate(-30deg) scale(1.1); }
}

/* Stronger Water Accent Divider */
.water-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cyan), transparent);
  opacity: 0.35;
}

/* Enhanced dynamic water glow layers */
.water-glow {
  animation: water-glow-pulse 8s ease-in-out infinite;
}

@keyframes water-glow-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Powerful layered cyan glow / water atmosphere */
.water-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Multi-line titles: each line shares the same left edge */
.title-stack {
  width: fit-content;
  max-width: 100%;
  text-align: left;
}

/* Uniform service pricing + bullet lists */
.service-price {
  margin-top: 1.5rem;
  line-height: 1.2;
}
.service-price .amount {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}
.service-price .unit {
  font-size: 0.875rem;
  color: #6b7280;
}
.surface-cat .service-price {
  margin-top: 0.25rem;
}
.surface-cat .service-price .amount {
  font-size: 0.875rem;
}
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.55;
}
.service-bullets li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.25rem;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}
.service-price--compact {
  margin-top: 0.5rem;
}
.service-price--compact .amount {
  font-size: 1.125rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.pricing-grid-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem 1.125rem;
}
.service-block {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid #e5e7eb;
}
.service-block:first-child {
  border-top: none;
  padding-top: 0;
}
.service-block-header .service-price {
  margin-top: 0.75rem;
}

/* Cyan spray line accent (new strong visual motif) */
.cyan-spray-line {
  position: relative;
  display: inline-block;
}
.cyan-spray-line::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 72%;
  height: 3px;
  background: linear-gradient(to right, var(--cyan), var(--cyan-light), transparent);
  border-radius: 2px;
  opacity: 0.75;
  box-shadow: 0 0 8px var(--cyan-glow-strong);
}

/* Premium Button Water Accent on Hover */
.btn-primary:hover {
  box-shadow: 0 10px 15px -3px rgb(0 183 232 / 0.35), 0 4px 6px -4px rgb(0 183 232 / 0.35);
}

.btn-secondary:hover {
  box-shadow: 0 0 0 1px var(--cyan);
}

/* Trust Bar */
.trust-bar {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Service Cards */
.service-card {
  transition: transform 0.2s cubic-bezier(0.4, 0.0, 0.2, 1), 
              box-shadow 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
  background: white;
  border: 1px solid #E5E7EB;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--cyan), var(--cyan-light));
  opacity: 0;
  transition: opacity 0.2s ease;
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.service-card .icon {
  color: var(--cyan);
}

/* How We Work Steps */
.step {
  position: relative;
}

.step-number {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
  color: var(--navy);
  font-weight: 700;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-size: 15px;
}

/* Form Styling - Mirror On-Site Quote Sheet */
.quote-form {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.quote-form .section-header {
  background: var(--navy);
  color: white;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.3px;
}

.form-input,
.form-select,
.form-textarea {
  border: 1.5px solid #D1D5DB;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
  outline: none;
}

.surface-option {
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.surface-option:hover {
  border-color: #9CA3AF;
}

.surface-option.selected {
  border-color: var(--cyan);
  background: #F0FDFA;
}

.condition-radio {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #9CA3AF;
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
}

.condition-radio:checked {
  border-color: var(--cyan);
  background: var(--cyan);
}

.condition-radio:checked::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 9999px;
}

/* Site navigation — keep controls above page content on mobile */
.site-nav {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

body.mobile-menu-active {
  overflow: hidden;
}

#mobile-menu.mobile-menu-open {
  display: block;
}

/* Floating Call Button */
.floating-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  display: none;
}

@media (max-width: 768px) {
  .floating-call {
    display: flex;
  }
}

.floating-call a {
  background: var(--cyan);
  color: var(--navy);
  padding: 16px;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgb(0 183 232 / 0.4), 
              0 4px 6px -4px rgb(0 183 232 / 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-call a:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgb(0 183 232 / 0.4);
}

/* Results / Gallery Teaser */
.result-placeholder {
  background: #F3F4F6;
  border: 2px dashed #D1D5DB;
  border-radius: 16px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px 24px;
}

/* Map Container */
#service-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

/* Navigation */
.nav-link {
  position: relative;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--cyan);
}

.nav-link.active {
  color: var(--cyan);
  font-weight: 700;
}

/* Footer */
footer {
  background: var(--navy);
  color: #9CA3AF;
}

footer a {
  color: #D1D5DB;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--cyan);
}

/* Subtle Water Splash Accent (for hero/logo) */
.splash-accent {
  position: relative;
}

.splash-accent::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 120px;
  height: 60px;
  background: radial-gradient(circle at 30% 40%, var(--cyan) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
  border-radius: 50%;
  transform: rotate(-25deg);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Print styles for quote form (future proofing) */
@media print {
  .no-print { display: none !important; }
}

/* ========================================
   v2 10/10 POLISH — Water, Type, Focus, Premium Details
   ======================================== */

/* Section content sits above branded background layers */
.section-dark > *:not(.water-glow),
.page-hero > * {
  position: relative;
  z-index: 1;
}

/* Tighter, more premium cyan spray line */
.cyan-spray-line::after {
  height: 2px;
  opacity: 0.55;
  width: 58%;
}

/* Stronger, cleaner focus rings (brand cyan) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #00B7E8; }

/* (Old silhouette-tied hero styles fully removed in v3 — brand logo + dynamic cyan glow layers now power the hero) */

/* Nice surface pills for quote form (replaces shitty native multi-select) */
.surface-options {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 6px;
  background: #fff;
}
.surface-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  background: #f9fafb;
  transition: all 0.1s ease;
}
.surface-pill:hover {
  border-color: #00B7E8;
  background: #f0f9ff;
}
.surface-pill input[type="checkbox"] {
  accent-color: #00B7E8;
  width: 14px;
  height: 14px;
  margin: 0;
}
.surface-pill:has(input:checked) {
  background: #e0f7ff;
  border-color: #00B7E8;
  color: #003a4d;
  font-weight: 500;
}

