/* DVB Cape May LLC - Main Stylesheet */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0a2540;
  --accent: #0066cc;
  --accent-light: #3b9eff;
  --light: #f5f8ff;
  --gray: #6b7a99;
  --white: #ffffff;
  --dark: #0d1b2e;
  --border: #dde4f0;
  --text: #1a2a4a;
  --text-light: #4a5a7a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-light);
}

img {
  max-width: 100%;
}

/* ── HEADER ── */
header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

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

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.logo-text {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.logo-sub {
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  align-items: center;
}

nav ul li a {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  letter-spacing: 0.2px;
}

nav ul li a:hover,
nav ul li a.active {
  background: rgba(255,255,255,0.10);
  color: #fff;
}

nav ul li a.btn-nav {
  background: var(--accent);
  color: #fff;
  padding: 8px 18px;
}

nav ul li a.btn-nav:hover {
  background: var(--accent-light);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 60%, #0a3a6e 100%);
  color: #fff;
  padding: 100px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,102,204,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,102,204,0.25);
  border: 1px solid rgba(59,158,255,0.4);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

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

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 0 auto 38px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.22s;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,102,204,0.35);
}

.btn-primary:hover {
  background: var(--accent-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,102,204,0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transform: translateY(-2px);
}

/* ── SECTIONS ── */
.section {
  padding: 80px 24px;
}

.section-light {
  background: var(--light);
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 52px;
  line-height: 1.7;
}

/* ── STATS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 0;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-number {
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 30px;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.22s;
}

.service-card:hover {
  box-shadow: 0 10px 36px rgba(0,102,204,0.12);
  transform: translateY(-4px);
  border-color: rgba(0,102,204,0.25);
}

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

.service-icon {
  width: 54px; height: 54px;
  background: rgba(0,102,204,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

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

.service-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(0,102,204,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.why-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

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

.why-visual {
  background: linear-gradient(135deg, var(--primary) 0%, #0a3a6e 100%);
  border-radius: 18px;
  padding: 48px 40px;
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 60px rgba(10,37,64,0.25);
}

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

.why-visual p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  margin-bottom: 28px;
}

.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mini-stat {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px 14px;
}

.mini-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-light);
}

.mini-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(90deg, var(--accent) 0%, #0044aa 100%);
  color: #fff;
  padding: 60px 24px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 30px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background: #fff;
  color: var(--accent);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--light);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 28px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

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

.footer-brand .logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
  margin-bottom: 16px;
}

.footer-contact {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 2;
}

.footer-contact a {
  color: var(--accent-light);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: color 0.2s;
}

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

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

.footer-bottom a {
  color: rgba(255,255,255,0.55);
}

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

/* ── INNER PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 70px 24px 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

/* ── PROSE (privacy / terms) ── */
.prose-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.prose-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin: 40px 0 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.prose-section h2:first-of-type {
  border-top: none;
  margin-top: 0;
}

.prose-section p,
.prose-section li {
  font-size: 15.5px;
  color: var(--text-light);
  line-height: 1.78;
  margin-bottom: 12px;
}

.prose-section ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.prose-section ul li {
  margin-bottom: 7px;
}

.prose-section strong {
  color: var(--text);
}

.prose-section a {
  color: var(--accent);
}

.last-updated {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

/* ── ABOUT PAGE ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 24px;
  text-align: center;
}

.team-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  font-weight: 700;
}

.team-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-card span {
  font-size: 13px;
  color: var(--gray);
}

/* ── CONTACT SECTION ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-item-icon {
  width: 42px; height: 42px;
  background: rgba(0,102,204,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray);
  margin-bottom: 3px;
}

.contact-item-text p,
.contact-item-text a {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.contact-form-box {
  background: var(--light);
  border-radius: 16px;
  padding: 40px 36px;
  border: 1px solid var(--border);
}

.contact-form-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.12);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .nav-inner { padding: 0 16px; }
  nav ul { gap: 2px; }
  nav ul li a { font-size: 13px; padding: 7px 10px; }
  .hero { padding: 70px 16px 60px; }
  .section { padding: 56px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-box { padding: 28px 20px; }
}




