/* ============================================================
   style.css — Sea Me Dive | Shared Stylesheet
   Used by: index.php, schedule-inspection.php
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --navy:   #081524;
  --ocean:  #0c3460;
  --teal:   #0b7a7a;
  --teal2:  #0d9e9e;
  --sky:    #5bbdd4;
  --sand:   #e8dfc5;
  --accent: #f0a500;
  --white:  #f4f8fb;
  --light:  #f0f5f8;
  --text:   #1a2d40;
  --muted:  #587085;
  --border: #dde8f0;
  --r:      5px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
svg { display: block; }

/* ── LAYOUT UTILITIES ── */
.container  { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ── TYPOGRAPHY UTILITIES ── */
.label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal2);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 2px;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-title.light { color: #fff; }

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  max-width: 600px;
  line-height: 1.75;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .4px;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-accent { background: var(--accent); color: var(--navy); }
.btn-accent:hover {
  background: #d99200;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,165,0,.3);
}

.btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #0a6969; transform: translateY(-2px); }

/* ── STARS ── */
.stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; }

/* ============================================================
   SHARED: HEADER / NAV
   ============================================================ */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

nav.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 3px;
  color: #fff;
  flex-shrink: 0;
}
.logo span { color: var(--sky); }

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

.nav-links a {
  color: rgba(255,255,255,.7);
  font-size: .83rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--r);
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(255,255,255,.08); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-phone {
  color: var(--sand);
  font-size: .85rem;
  font-weight: 500;
  transition: color .15s;
}
.nav-phone:hover { color: var(--accent); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s;
}

/* ============================================================
   SHARED: FOOTER
   ============================================================ */
footer {
  background: #050e1a;
  color: rgba(244,248,251,.55);
  padding: 60px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 28px;
}

.footer-brand .logo { font-size: 2rem; display: block; margin-bottom: 14px; }

.footer-brand p {
  font-size: .85rem;
  line-height: 1.75;
  color: rgba(244,248,251,.45);
  max-width: 280px;
  margin-bottom: 20px;
}

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,.7);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { color: rgba(244,248,251,.4); font-size: .83rem; transition: color .15s; }
.footer-col ul a:hover { color: var(--sky); }

.footer-addr { font-size: .83rem; line-height: 1.85; color: rgba(244,248,251,.4); }
.footer-addr a { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .78rem;
  color: rgba(255,255,255,.25);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--sky); }

/* ============================================================
   INDEX.PHP — HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  background: linear-gradient(160deg, var(--navy) 0%, #0d2f5a 45%, #0b5e6e 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 75% 50%, rgba(11,138,138,.18) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23ffffff05'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 100px;
  overflow: hidden;
}
.hero-wave svg { width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 28px;
  max-width: 700px;
  animation: fadeUp .9s ease both;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91,189,212,.12);
  border: 1px solid rgba(91,189,212,.35);
  color: var(--sky);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-badge::before { content: '●'; font-size: .5rem; animation: pulse 2s ease infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  color: #fff;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 22px;
}
.hero h1 em { color: var(--sky); font-style: normal; }

.hero > .container > .hero-content > p {
  color: rgba(244,248,251,.72);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

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

.stat-item .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  letter-spacing: 2px;
  color: var(--sky);
  line-height: 1;
}
.stat-item .num span { font-size: 1.5rem; }
.stat-item .lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ── TRUST MARQUEE ── */
.trust-bar { background: var(--ocean); padding: 18px 0; overflow: hidden; }

.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-item {
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.trust-dot { color: var(--teal2); }

/* ── MARKETS ── */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.market-card {
  padding: 44px 36px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  transition: transform .25s;
}
.market-card:nth-child(2) { background: var(--ocean); }
.market-card:nth-child(3) { background: var(--teal); }
.market-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.market-card:hover { transform: translateY(-4px); }

.market-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(255,255,255,.08);
  line-height: 1;
  position: absolute;
  bottom: 12px; right: 20px;
  letter-spacing: 2px;
}

.market-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 12px;
}
.market-card p { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.7; font-weight: 300; }

/* ── SERVICES ── */
.services-header { max-width: 600px; margin-bottom: 56px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.service-card:hover {
  border-color: var(--teal2);
  box-shadow: 0 12px 40px rgba(11,122,122,.1);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px; height: 52px;
  background: rgba(11,122,122,.08);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
}
.service-icon svg { width: 24px; height: 24px; }

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { color: var(--muted); font-size: .9rem; font-weight: 300; line-height: 1.7; }

/* ── INSPECTION CTA BAND ── */
.inspection-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 60%, #0a5f70 100%);
  position: relative;
  overflow: hidden;
}
.inspection-cta::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,189,212,.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.cta-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.cta-inner p { color: rgba(255,255,255,.6); font-weight: 300; font-size: .95rem; }

.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }

.phone-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--accent);
}

/* ── REVIEWS ── */
.reviews-header { text-align: center; margin-bottom: 56px; }
.reviews-header .section-sub { margin: 0 auto; }

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

.review-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(10,22,40,.06);
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 20px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(11,122,122,.08);
  line-height: 1;
}
.review-card .stars { margin-bottom: 12px; }
.review-card p {
  font-size: .88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 18px;
}

.reviewer {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviewer::before { content: ''; display: block; width: 24px; height: 2px; background: var(--teal2); }

/* ── FAQ ── */
.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 52px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}
.faq-item:last-child { border-bottom: none; }

.faq-item details summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  padding: 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-item details summary::after { content: '+'; font-size: 1.3rem; color: var(--teal); flex-shrink: 0; }
.faq-item details[open] summary::after { content: '−'; }

.faq-item details p {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.8;
  margin-top: 12px;
}

/* ── BLOG ── */
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,22,40,.06);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,22,40,.12); }

.blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-date {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--accent);
  color: var(--navy);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--r);
}

.blog-img-icon { color: rgba(255,255,255,.15); }
.blog-img-icon svg { width: 80px; height: 80px; }

.blog-body { padding: 24px; }
.blog-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.blog-body p { color: var(--muted); font-size: .85rem; font-weight: 300; line-height: 1.7; margin-bottom: 16px; }

.blog-link {
  color: var(--teal);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.blog-link:hover { gap: 10px; }
.blog-link::after { content: '→'; }

/* ── CLIENTS ── */
.clients { background: var(--navy); padding: 60px 0; }

.clients-title {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,.25);
  margin-bottom: 36px;
  text-transform: uppercase;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
}

.client-pill {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  transition: background .2s, color .2s;
}
.client-pill:hover { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }

/* ============================================================
   SCHEDULE-INSPECTION.PHP — PAGE HERO (inner page)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 60%, var(--teal) 100%);
  padding: 72px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%23ffffff08'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  background: rgba(87,184,212,.2);
  border: 1px solid var(--sky);
  color: var(--sky);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: var(--white);
  letter-spacing: 3px;
  line-height: 1.05;
  margin-bottom: 18px;
}
.page-hero h1 span { color: var(--sky); }

.page-hero p {
  color: rgba(245,249,251,.75);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

/* ── SCHEDULE PAGE LAYOUT ── */
.page-wrap {
  max-width: 1100px;
  margin: -36px auto 0;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

/* ── FORM CARD ── */
.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(10,22,40,.1);
  padding: 40px 40px 44px;
}

.card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 6px;
}

.card .subtitle {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 32px;
  border-bottom: 1px solid #e5edf3;
  padding-bottom: 20px;
}
.card .subtitle a { color: var(--teal); font-weight: 500; }
.card .subtitle a:hover { text-decoration: underline; }

/* ── FORM ELEMENTS ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { margin-bottom: 18px; }

label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 6px;
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #cddae6;
  border-radius: var(--r);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: #f9fbfd;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11,138,138,.12);
  background: #fff;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%230d3b6e' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 100px; }

/* ── RADIO / CHECKBOX ── */
.radio-group, .check-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 4px;
}

.radio-group label, .check-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  cursor: pointer;
  padding: 8px 12px;
  border: 1.5px solid #cddae6;
  border-radius: var(--r);
  background: #f9fbfd;
  transition: border-color .15s, background .15s;
}
.radio-group label:hover,
.check-group label:hover { border-color: var(--teal); background: #f0f9f9; }

input[type=radio],
input[type=checkbox] { accent-color: var(--teal); width: 16px; height: 16px; flex-shrink: 0; }

/* ── ALERTS ── */
.alert {
  padding: 14px 18px;
  border-radius: var(--r);
  margin-bottom: 24px;
  font-size: .92rem;
  font-weight: 500;
}
.alert-success { background: #e6f7f2; border-left: 4px solid #2ebd8e; color: #166347; }
.alert-error   { background: #fff0f0; border-left: 4px solid #e05252; color: #8b2222; }
.alert ul { margin: 6px 0 0 18px; }

/* ── SUBMIT ── */
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: var(--r);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  cursor: pointer;
  margin-top: 8px;
  transition: background .2s, transform .15s;
}
.btn-submit:hover { background: #097676; transform: translateY(-2px); }

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.info-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(10,22,40,.08);
  padding: 28px;
}

.info-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 14px;
  border-bottom: 2px solid var(--sky);
  padding-bottom: 10px;
}
.info-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eaf1f7;
  font-size: .9rem;
  color: var(--text);
}
.contact-item:last-child { border-bottom: none; }

.contact-item .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item .icon svg { width: 16px; height: 16px; fill: #fff; }
.contact-item a { color: var(--ocean); font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }

.checklist { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.checklist li { display: flex; gap: 10px; font-size: .87rem; color: var(--muted); line-height: 1.5; }
.checklist li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 28px 28px;
    gap: 2px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: .95rem; padding: 10px 4px; width: 100%; border-bottom: 1px solid rgba(255,255,255,.06); border-radius: 0; }
  .hamburger { display: flex; }
  .nav-phone  { display: none; }
}

@media (max-width: 860px) {
  .footer-top   { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .page-wrap { grid-template-columns: 1fr; margin-top: 0; }
  .sidebar   { order: -1; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .faq-cols { grid-template-columns: 1fr; }
}

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

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .cta-inner     { grid-template-columns: 1fr; }
  .cta-actions   { align-items: flex-start; }
  .form-row      { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .card         { padding: 28px 20px 32px; }
}

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

/*---------------------------------------------------------
  
----------------------------------------------------------*/
.card a {
  color: var(--teal);
}

.card a:hover {
  color: var(--ocean);
  text-decoration: underline;
}

footer .btn-accent {
  color: var(--navy) !important;
}

/*---------------------------------------------------------
  Placeholder Styling
----------------------------------------------------------*/
::placeholder            { color: #c1c1c1; }
:-ms-input-placeholder   { color: #c1c1c1; }
::-ms-input-placeholder  { color: #c1c1c1; }
