/* =====================================================================
   Trade Pro Services — Shared Stylesheet
   Brand: Navy (#0B1F3F) + Silver (#A8B8C8) — gold retired 2026-04-20
   ===================================================================== */

:root {
  --navy: #0B1F3F;
  --navy-light: #163460;
  --navy-dark: #071428;
  --blue: #1E4D8C;
  --blue-light: #2B6CC4;
  --silver: #A8B8C8;
  --silver-light: #C8D4E0;
  --silver-dark: #8A9AAC;
  --white: #FFFFFF;
  --off-white: #F4F6F9;
  --gray: #6B7B8D;
  --gray-light: #E8ECF1;
  --text: #1a1a2e;
  /* Accent now uses silver — was gold (#D4A843) before brand update */
  --accent: #A8B8C8;
  --accent-dark: #8A9AAC;
  --red: #C0392B;
  --green: #27AE60;
  --shadow: 0 4px 20px rgba(11,31,63,0.12);
  --shadow-lg: 0 12px 40px rgba(11,31,63,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ============ UTILITY ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-gray { background: var(--off-white); }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-navy { color: var(--navy); }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-dark .section-label { color: var(--silver); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.section-dark .section-subtitle { color: var(--silver-light); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

/* Primary CTA — navy gradient (was gold gradient) */
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(11,31,63,0.30);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(11,31,63,0.40);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-silver {
  background: var(--silver);
  color: var(--navy);
}
.btn-silver:hover {
  background: var(--silver-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-sm { padding: 12px 24px; font-size: 14px; }

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--navy-dark);
  color: var(--silver-light);
  font-size: 13px;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  overflow: hidden;
}

.top-bar a {
  color: var(--silver-light);
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar a:hover { color: var(--silver); }

.top-bar-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-links i { margin-right: 6px; color: var(--silver); }

.team-login-link {
  color: var(--silver) !important;
  font-weight: 600;
}

/* ============ HEADER / NAV ============ */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.12); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.nav-logo img { height: 85px; width: auto; }

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: rgba(30,77,140,0.06);
}

.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 0;
}

.nav-dropdown-menu a i {
  width: 20px;
  text-align: center;
  color: var(--blue);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  margin-left: 16px;
  white-space: nowrap;
}

.nav-phone i { color: var(--blue); font-size: 20px; }
.nav-phone:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
}

.nav-close { display: none; }

.nav-phone-mobile { display: none !important; }

@media (max-width: 992px) {
  .nav-toggle { display: block; }
  .nav-phone { display: none; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    transition: right 0.35s ease;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 20px 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--navy);
    border-bottom: 2px solid var(--gray-light);
    margin-bottom: 8px;
  }
  .nav-links li { list-style: none; }
  .nav-links a {
    padding: 20px 24px;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid var(--gray-light);
    border-radius: 0;
    margin: 0;
    display: block;
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(30,77,140,0.06);
    border-radius: 0;
  }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 16px;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { border-bottom: 1px solid var(--gray-light); }
  .nav-links .nav-phone-mobile {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
    color: var(--navy);
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    border-top: 2px solid var(--gray-light);
    border-bottom: none;
    margin-top: 8px;
  }
  .nav-links .nav-phone-mobile i { color: var(--blue); }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
  }
  .nav-overlay.show { display: block; }
  .top-bar-links .hide-mobile { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--blue) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(168,184,200,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(43,108,196,0.15) 0%, transparent 50%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(30deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white)),
    linear-gradient(150deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white)),
    linear-gradient(30deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white)),
    linear-gradient(150deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white));
  background-size: 80px 140px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168,184,200,0.15);
  border: 1px solid rgba(168,184,200,0.30);
  color: var(--silver);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 span { color: var(--silver); }

.hero-text {
  font-size: 18px;
  color: var(--silver-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* On the dark hero, the navy-gradient .btn-primary is invisible —
   override it to a silver button so it pops against the navy background. */
.hero .btn-primary {
  background: var(--silver);
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(168,184,200,0.30);
}
.hero .btn-primary:hover {
  background: var(--silver-light);
  box-shadow: 0 8px 25px rgba(168,184,200,0.45);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.hero-stat h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--silver);
  line-height: 1;
}

.hero-stat p {
  font-size: 14px;
  color: var(--silver);
  margin-top: 4px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-service-card {
  display: block;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 16px;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.hero-service-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateX(8px);
  border-color: rgba(168,184,200,0.30);
}

.hero-service-card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.hero-service-card h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-service-card p {
  color: var(--silver);
  font-size: 14px;
}

.icon-electrical { background: rgba(43,108,196,0.20); color: #5BA3F5; }
.icon-plumbing   { background: rgba(39,174,96,0.20);  color: #2ECC71; }
.icon-cooling    { background: rgba(52,152,219,0.20); color: #5DADE2; }
.icon-heating    { background: rgba(231,76,60,0.20);  color: #E74C3C; }
.icon-drains     { background: rgba(142,68,173,0.20); color: #BB8FCE; }
.icon-generator  { background: rgba(168,184,200,0.20); color: var(--silver); }

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 24px; }
  .hero { min-height: 70vh; }
}

/* ============ WORK GALLERY ============ */
.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.work-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  aspect-ratio: 1;
}

.work-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.work-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .work-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ============ SERVICES SECTION ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--silver);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon { transform: scale(1.1); }

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link i { transition: transform 0.3s; }
.service-card:hover .service-link i { transform: translateX(4px); }

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ WHY CHOOSE US ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  background: rgba(168,184,200,0.15);
  color: var(--silver);
}

.section-dark .why-icon { background: rgba(168,184,200,0.18); }

.why-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ============ PROCESS ============ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--gray-light);
  z-index: 0;
}

.process-step { text-align: center; position: relative; z-index: 1; }

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(11,31,63,0.30);
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.process-step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

/* ============ LICENSES ============ */
.license-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.license-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.license-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--silver);
}

.license-card i {
  font-size: 32px;
  color: var(--silver);
  margin-bottom: 12px;
}

.license-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.license-card .license-num {
  font-size: 14px;
  color: var(--silver);
  font-family: monospace;
}

@media (max-width: 768px) {
  .license-grid { grid-template-columns: 1fr; }
}

/* ============ SERVICE DETAIL PAGES ============ */
.service-photo {
  margin: 0 auto 40px !important;
  max-width: 760px;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}

.service-photo img {
  width: 100% !important;
  height: 240px !important;
  max-height: 240px !important;
  object-fit: cover !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow) !important;
  display: block !important;
}

@media (max-width: 768px) {
  .service-photo {
    grid-template-columns: 1fr !important;
    max-width: 480px;
  }
  .service-photo img {
    height: 200px !important;
    max-height: 200px !important;
  }
}

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p { color: var(--silver-light); font-size: 18px; }
.page-hero .section-label { color: var(--silver); }

.service-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.service-detail-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-list {
  list-style: none;
  margin: 20px 0;
}

.service-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.service-list li i { color: var(--blue); font-size: 16px; }

.service-sidebar { position: sticky; top: 100px; }

.sidebar-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.sidebar-card h3 { font-size: 22px; margin-bottom: 12px; }
.sidebar-card p { color: var(--silver-light); margin-bottom: 20px; font-size: 14px; }

.sidebar-card .phone-big {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--silver);
  text-decoration: none;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .service-detail { grid-template-columns: 1fr; }
}

/* ============ SERVICE MAP ============ */
.map-section { position: relative; }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.service-areas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.area-tag {
  background: var(--off-white);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.area-tag:hover {
  border-color: var(--silver);
  background: rgba(168,184,200,0.10);
}

@media (max-width: 768px) {
  .service-areas { grid-template-columns: repeat(2, 1fr); }
  .map-container { height: 300px; }
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, var(--off-white) 0%, var(--white) 100%);
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
}

.about-image img { width: 75%; height: auto; }

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
}

.about-value i { color: var(--blue); font-size: 18px; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-light);
}

.contact-info-card > i {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(30,77,140,0.10);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-card h4 { font-size: 16px; margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--gray); }
.contact-info-card a { color: var(--blue); text-decoration: none; }
.contact-info-card a:hover { text-decoration: underline; }

.contact-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.contact-form .form-sub {
  color: var(--gray);
  font-size: 14px;
  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-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* Honeypot — hide from real users */
.hp-field { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============ TESTIMONIALS / REVIEWS ============ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #F5B400;
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-card blockquote {
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: normal;
  flex-grow: 1;
}

.review-author {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  border-top: 1px solid var(--gray-light);
  padding-top: 14px;
}

.review-author span {
  display: block;
  font-weight: 500;
  color: var(--gray);
  font-size: 13px;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .review-grid { grid-template-columns: 1fr; }
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item[open] {
  box-shadow: var(--shadow);
  border-color: var(--silver);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq-item summary::after {
  content: '\002B';
  font-size: 22px;
  color: var(--blue);
  font-weight: 400;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item .faq-answer {
  padding: 0 24px 22px;
  color: var(--gray);
  line-height: 1.7;
  font-size: 15px;
}

/* ============ HOMEPAGE ABOUT BLOCK ============ */
.home-about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.home-about h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.home-about p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

.home-about .home-about-cta { margin-top: 12px; }

.home-about-side {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.home-about-side h3 {
  font-size: 18px;
  margin-bottom: 18px;
  color: var(--silver);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.home-about-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-about-side li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
}

.home-about-side li:last-child { border-bottom: none; }
.home-about-side li i { color: var(--silver); width: 20px; }

@media (max-width: 768px) {
  .home-about { grid-template-columns: 1fr; }
}

/* ============ CTA BANNER ============ */
/* Was gold gradient — replaced with navy gradient */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 28px;
}

/* On the navy CTA banner, use silver button instead of navy-on-navy */
.cta-banner .btn-navy,
.cta-banner .btn-primary {
  background: var(--silver);
  color: var(--navy);
  padding: 18px 40px;
  font-size: 18px;
}

.cta-banner .btn-navy:hover,
.cta-banner .btn-primary:hover {
  background: var(--silver-light);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-dark);
  color: var(--silver);
  padding: 60px 0 0;
}

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

.footer-brand img { height: 65px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: var(--silver); margin-bottom: 16px; }

.footer-contact { font-size: 14px; line-height: 1.8; margin-top: 8px; }
.footer-contact a { color: var(--silver-light); text-decoration: none; }
.footer-contact a:hover { color: var(--white); }
.footer-contact i { width: 18px; color: var(--silver); margin-right: 8px; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--silver);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--silver);
  color: var(--navy);
}

.footer h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--silver);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--white); }

.footer-licenses {
  margin-top: 12px;
  font-size: 12px;
  color: var(--silver-dark);
  font-family: monospace;
  line-height: 1.8;
}

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: var(--silver);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--white); }

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

/* ============ SCROLL TO TOP ============ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
}

.scroll-top.show { opacity: 1; visibility: visible; }

.scroll-top:hover {
  background: var(--blue);
  transform: translateY(-4px);
}

/* ============ LOGO WATERMARK ============ */
.watermark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background: url('logo-circle.png') no-repeat center center;
  background-size: contain;
}

.hero .watermark {
  right: -5%;
  bottom: -10%;
  width: 650px;
  height: 650px;
  filter: brightness(0) invert(1);
}

.section-dark .watermark {
  left: -5%;
  top: -10%;
  width: 500px;
  height: 500px;
  opacity: 0.04;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .hero .watermark { width: 380px; height: 380px; right: -12%; bottom: -8%; }
  .section-dark .watermark { width: 280px; height: 280px; }
  .nav-logo img { height: 65px; }
}
