/* ================================================================
   Bay Color Photo Lab — Shared Stylesheet
   ================================================================ */

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

:root {
  --blue:   #1461de;
  --navy:   #1a3d78;
  --navy2:  #132f60;
  --sunset: #e8873a;
  --cream:  #fdf7f0;
  --cream2: #f5ead8;
  --text:   #1a1a2e;
  --muted:  #55627a;
  --border: #dde4f0;
  --max-w:  1120px;
}

body {
  font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ================================================================
   TOP BAR
   ================================================================ */
.topbar {
  background: var(--navy2);
  color: #7a9cc0;
  font-size: 12px;
  padding: 7px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.topbar-l, .topbar-r { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar a { color: #7a9cc0; text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar i { font-size: 12px; vertical-align: -1px; margin-right: 4px; }

/* ================================================================
   NAVIGATION
   ================================================================ */
header { position: sticky; top: 0; z-index: 200; }

.site-nav {
  background: #fff;
  border-bottom: 1.5px solid var(--border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  position: relative;
}

.logo { text-decoration: none; line-height: 1.1; }
.logo-main {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1.5px;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 4px;
  color: #889;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--blue); }

.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 5px;
  font-size: 13px !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--navy) !important; text-decoration: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1.5px solid var(--border);
  padding: 12px 24px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 199;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  text-align: center;
  border-radius: 5px;
  padding: 12px !important;
  margin-top: 8px;
  border-bottom: none;
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 60px 24px 56px;
  text-align: center;
}
.page-hero .eyebrow {
  color: var(--sunset);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-hero h1 { font-size: 40px; color: #fff; margin-bottom: 14px; }
.page-hero p { color: #8cadd0; max-width: 540px; margin: 0 auto; font-size: 16px; }

/* ================================================================
   COMMON SECTION STYLES
   ================================================================ */
.section { padding: 72px 24px; }
.section-cream { background: var(--cream); }

.sec-hd { text-align: center; margin-bottom: 48px; }
.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.sec-hd h2 { font-size: 34px; color: #0f2040; margin-bottom: 10px; }
.sec-hd p { color: var(--muted); max-width: 520px; margin: 0 auto; font-size: 15.5px; }
.divider { width: 44px; height: 3px; background: var(--sunset); border-radius: 2px; margin: 12px auto 0; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: var(--blue);
  color: #fff;
  padding: 15px 48px;
  border-radius: 5px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-primary:hover {
  background: #0f52c4;
  text-decoration: none;
  transform: translateY(-1px);
  color: #fff;
}
.btn-main { font-size: 16px; font-weight: 700; letter-spacing: .3px; }
.btn-sub { font-size: 12px; opacity: .78; letter-spacing: .6px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  padding: 12px 28px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); text-decoration: none; color: #fff; }

/* ================================================================
   HOME — HERO
   ================================================================ */
.hero {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 72px 24px 60px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sunset);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--sunset);
  opacity: .6;
}
.hero h1 { font-size: 50px; line-height: 1.12; margin-bottom: 18px; color: #fff; }
.hero h1 em { font-style: italic; color: var(--sunset); }
.hero-sub { font-size: 16.5px; color: #8cadd0; line-height: 1.8; margin-bottom: 36px; max-width: 460px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-pelican {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(232,135,58,.45);
  box-shadow: 0 12px 48px rgba(0,0,0,.28), 0 0 0 1px rgba(232,135,58,.15);
  padding: 24px;
  flex-shrink: 0;
}
.hero-pelican img { width: 100%; height: 100%; object-fit: contain; }

.hstats {
  background: rgba(0,0,0,.22);
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.hstat {
  padding: 20px 8px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hstat:last-child { border-right: none; }
.hstat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  color: var(--sunset);
}
.hstat-lbl { font-size: 11px; color: #5a7ea8; letter-spacing: .3px; margin-top: 3px; }

/* ================================================================
   HOME — SERVICES GRID
   ================================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.scard {
  background: #fff;
  border-radius: 10px;
  padding: 26px 22px;
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.scard:hover { box-shadow: 0 8px 28px rgba(20,97,222,.1); transform: translateY(-3px); }
.scard-icon {
  width: 46px;
  height: 46px;
  background: #e6f0fc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.scard-icon i { font-size: 21px; color: var(--blue); }
.scard h3 {
  font-size: 15.5px;
  font-weight: 600;
  color: #0f2040;
  margin-bottom: 8px;
  font-family: 'Source Sans 3', sans-serif;
}
.scard p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.scard-link { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--blue); }
.scard-link:hover { text-decoration: underline; }

/* ================================================================
   HOME — ABOUT STRIP
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-visual {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-badge {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 5px 12px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about-text h2 { font-size: 34px; color: #0f2040; margin-bottom: 14px; line-height: 1.2; }
.about-text p { color: var(--muted); line-height: 1.85; margin-bottom: 14px; font-size: 15.5px; }
.about-text .btn-primary { margin-top: 6px; }

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--blue);
  padding: 48px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 16px;
}
.t-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}
.t-lbl { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 4px; letter-spacing: .3px; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.rcard {
  background: #fff;
  border-radius: 10px;
  padding: 26px 22px;
  border: 1px solid var(--border);
}
.stars { color: var(--sunset); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.rcard p { font-size: 14.5px; color: var(--muted); line-height: 1.75; font-style: italic; }
.rauthor { margin-top: 16px; font-size: 13px; font-weight: 600; color: #0f2040; }

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}
.cta-band h2 { font-size: 36px; margin-bottom: 14px; color: #fff; }
.cta-band > p { color: #8cadd0; max-width: 480px; margin: 0 auto 40px; font-size: 16px; }
.steps { display: flex; justify-content: center; align-items: flex-start; gap: 0; margin-bottom: 44px; flex-wrap: wrap; }
.step { padding: 0 24px; text-align: center; min-width: 110px; }
.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.step p { font-size: 13px; color: #7a9dc0; line-height: 1.55; }
.step-arrow { color: var(--sunset); font-size: 22px; padding-top: 8px; flex-shrink: 0; }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--navy2);
  color: #5a7898;
  padding: 56px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  max-width: var(--max-w);
  margin: 0 auto 40px;
}
.f-logo-main {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.f-logo-sub { font-size: 9px; letter-spacing: 3.5px; color: #2e4870; text-transform: uppercase; margin-bottom: 10px; }
.f-brand p { font-size: 13px; color: #3a5878; line-height: 1.75; margin-top: 8px; }
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #304865;
  margin-bottom: 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
}
.footer-col a { display: block; font-size: 13.5px; color: #4a6888; text-decoration: none; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: #8cadd0; }
.f-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid #1a3258;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #243a58;
  flex-wrap: wrap;
  gap: 6px;
}

/* ================================================================
   SERVICES PAGE
   ================================================================ */
.services-wrap { max-width: var(--max-w); margin: 0 auto; }

.pricing-block {
  padding: 56px 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-block:last-child { border-bottom: none; }

.pricing-head { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 30px; }
.pricing-icon {
  width: 52px;
  height: 52px;
  background: #e6f0fc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-icon i { font-size: 24px; color: var(--blue); }
.pricing-head h2 { font-size: 26px; color: #0f2040; margin-bottom: 4px; }
.pricing-head p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

.price-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.price-table th {
  text-align: left;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9aabbf;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  padding: 10px 14px;
  border-bottom: 2px solid var(--border);
}
.price-table td { padding: 11px 14px; border-bottom: 1px solid var(--border); }
.price-table tr:last-child td { border-bottom: none; }
.price-table td:not(:first-child) { text-align: right; font-weight: 600; color: #0f2040; white-space: nowrap; }
.price-table th:not(:first-child) { text-align: right; }
.price-table tr:hover td { background: #f7faff; }
.price-note { font-size: 13px; color: var(--muted); margin-top: 14px; font-style: italic; }

.price-subhead {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.price-subhead:first-of-type { margin-top: 0; }

.service-note {
  background: var(--cream);
  border-left: 3px solid var(--sunset);
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.65;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.vcard {
  background: #fff;
  border-radius: 10px;
  padding: 28px 22px;
  border: 1px solid var(--border);
  text-align: center;
}
.vcard-icon {
  width: 54px;
  height: 54px;
  background: #e6f0fc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.vcard-icon i { font-size: 24px; color: var(--blue); }
.vcard h3 { font-size: 17px; color: #0f2040; margin-bottom: 8px; font-family: 'Source Sans 3', sans-serif; font-weight: 600; }
.vcard p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.contact-info h3, .contact-form h3 {
  font-size: 24px;
  color: #0f2040;
  margin-bottom: 24px;
}

.contact-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.ci-icon {
  width: 44px;
  height: 44px;
  background: #e6f0fc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { font-size: 20px; color: var(--blue); }
.ci-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 3px; }
.ci-text a, .ci-text p { font-size: 15.5px; color: var(--text); text-decoration: none; line-height: 1.5; }
.ci-text a:hover { color: var(--blue); }

.map-wrap { margin-top: 28px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 280px; border: none; display: block; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #0f2040; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color .2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20,97,222,.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 14px 36px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  transition: background .2s, transform .15s;
}
.btn-submit:hover { background: var(--navy); transform: translateY(-1px); }

.form-success {
  display: none;
  background: #edf7f1;
  color: #1a6e3f;
  border: 1px solid #a8dfc0;
  padding: 14px 18px;
  border-radius: 7px;
  font-size: 14.5px;
  margin-top: 14px;
}

/* ================================================================
   RESPONSIVE — TABLET (≤ 960px)
   ================================================================ */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 56px 24px 40px;
    text-align: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-pelican { width: 240px; height: 240px; }

  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

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

  .trust-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ================================================================ */
@media (max-width: 640px) {
  .topbar-r { display: none; }
  .topbar-l { gap: 12px; }

  .hamburger { display: flex; }
  .nav-links { display: none; }

  .hero h1 { font-size: 36px; }
  .hero-pelican { width: 200px; height: 200px; }
  .hstats { grid-template-columns: repeat(2, 1fr); }

  .svc-grid,
  .rev-grid,
  .values-grid { grid-template-columns: 1fr; }

  .trust-bar { grid-template-columns: repeat(2, 1fr); }

  .cta-band h2 { font-size: 28px; }
  .step-arrow { display: none; }
  .steps { gap: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .f-bottom { flex-direction: column; text-align: center; }

  .page-hero h1 { font-size: 30px; }
  .form-row { grid-template-columns: 1fr; }

  .pricing-head { flex-direction: column; }
  .price-table { font-size: 13px; }
  .price-table th, .price-table td { padding: 9px 10px; }

  .section { padding: 52px 18px; }
}
