/* ============================================================
   My Precious Cargo — style.css
   Shared stylesheet for all pages
   Colors: Teal #0F6E56 | Orange #D85A30 | Cream #F5F0E8
   Fonts: Playfair Display (headings) | DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --teal-darkest:  #071F17;
  --teal-dark:     #0A3D2E;
  --teal:          #0F6E56;
  --teal-mid:      #1D9E75;
  --teal-light:    #5DCAA5;
  --teal-lighter:  #9FE1CB;
  --teal-lightest: #E1F5EE;

  --orange:        #D85A30;
  --orange-dark:   #B84420;
  --orange-light:  #FAECE7;

  --cream:         #F5F0E8;
  --cream-dark:    #E8E4DA;
  --cream-border:  #D3D1C7;

  --gray-dark:     #0A3D2E;
  --gray-mid:      #3d3c38;
  --gray-text:     #5F5E5A;
  --gray-muted:    #888780;

  --white:         #ffffff;
  --card-bg:       #FDFAF6;

  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'DM Sans', system-ui, sans-serif;

  --radius-sm:     6px;
  --radius-md:     8px;
  --radius-lg:     12px;
  --radius-xl:     16px;

  --shadow-card:   0 1px 3px rgba(10,61,46,0.06), 0 1px 2px rgba(10,61,46,0.04);
  --transition:    0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-mid);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--teal-dark);
  line-height: 1.1;
}
h1 { font-size: clamp(36px, 5vw, 52px); font-weight: 900; }
h2 { font-size: clamp(24px, 3.5vw, 34px); font-weight: 700; }
h3 { font-size: clamp(18px, 2.5vw, 22px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }
p  { font-size: 15px; line-height: 1.75; color: var(--gray-text); }

.sect-pre {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.sect-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--teal-dark);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
}
.sect-sub {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 580px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-dark); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover { background: var(--orange-dark); }

.btn-ghost {
  background: transparent;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 0;
}
.btn-ghost:hover { color: var(--teal-dark); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 72px 40px; }
.section-white  { background: var(--white); }
.section-cream  { background: var(--cream); }
.section-dark   { background: var(--teal-dark); }
.section-darkest{ background: var(--teal-darkest); }

/* ── Navigation ── */
.nav {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logomark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.nav-logomark img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-name {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--teal-dark);
  font-weight: 700;
  letter-spacing: 0.2px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 16px;
}
.nav-links a {
  font-size: 14px;
  color: var(--gray-text);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--teal); background: var(--teal-lightest); }
.nav-links a.active { color: var(--teal); font-weight: 600; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid var(--cream-border);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--teal-dark); }
.nav-phone svg { flex-shrink: 0; }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dark); }

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--cream-border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.nav-drawer a {
  font-size: 15px;
  color: var(--gray-text);
  font-weight: 500;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  display: block;
  transition: var(--transition);
}
.nav-drawer a:hover { color: var(--teal); background: var(--teal-lightest); }
.nav-drawer .drawer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 600;
  margin-top: 8px;
  padding: 10px 12px;
}
.nav-drawer .drawer-cta {
  background: var(--orange);
  color: var(--white) !important;
  text-align: center;
  margin-top: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.nav-drawer.open { display: flex; }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--teal-dark);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-item:last-child { border-right: none; }
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.trust-item span {
  font-size: 12px;
  color: var(--teal-lighter);
  font-weight: 500;
  white-space: nowrap;
}

/* ── Hero ── */
.hero {
  background: var(--cream);
  padding: 80px 40px 72px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--teal-lightest);
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-sub strong { color: var(--teal-dark); font-weight: 600; }
.hero-btns { display: flex; gap: 16px; align-items: center; }

.hero-cards { display: flex; flex-direction: column; gap: 14px; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.hero-card:hover { border-color: var(--teal-light); }
.hero-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--teal-lightest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon.orange { background: var(--orange-light); }
.hero-card-val {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--teal-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}
.hero-card-desc {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.55;
}

/* ── Services Grid ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.svc-card {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--card-bg);
  transition: var(--transition);
}
.svc-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-card);
}
.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--teal-lightest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-icon.orange { background: var(--orange-light); }
.svc-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 10px;
  font-family: var(--font-sans);
}
.svc-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  margin-top: 12px;
  transition: var(--transition);
}
.svc-link:hover { color: var(--teal-dark); gap: 8px; }

/* ── Why Us ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.why-intro {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 28px;
}
.why-intro em { color: var(--teal-dark); font-style: italic; font-weight: 500; }
.why-checklist { display: flex; flex-direction: column; gap: 14px; }
.why-check { display: flex; align-items: flex-start; gap: 12px; }
.why-checkmark {
  width: 22px;
  height: 22px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.why-check-text { font-size: 14px; color: var(--gray-mid); line-height: 1.6; }
.why-check-text strong {
  color: var(--teal-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.metric-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
}
.metric-accent {
  width: 28px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 14px;
}
.metric-val {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--teal);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.metric-label {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.55;
}

/* ── CTA Band ── */
.cta-band {
  background: var(--teal);
  padding: 60px 40px;
}
.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 28px);
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
.cta-band p { font-size: 14px; color: var(--teal-lighter); line-height: 1.7; max-width: 520px; }
.cta-band-btns { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; flex-shrink: 0; }
.cta-secondary-link {
  color: var(--teal-light);
  font-size: 13px;
  font-weight: 500;
  text-align: right;
  transition: var(--transition);
}
.cta-secondary-link:hover { color: var(--white); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--teal-dark);
  padding: 56px 40px;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero .hero-eyebrow { background: rgba(255,255,255,0.12); color: var(--teal-lighter); }
.page-hero h1 { color: var(--cream); margin-bottom: 16px; }
.page-hero p { color: var(--teal-lighter); font-size: 16px; max-width: 560px; }

/* ── Cards (generic) ── */
.card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

/* ── Forms ── */
.form-section { background: var(--cream); padding: 60px 40px; }
.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-card);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--gray-mid);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(15,110,86,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235F5E5A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-checkbox { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.form-checkbox input { width: auto; }
.form-checkbox span { font-size: 14px; color: var(--gray-text); }
.form-divider {
  border: none;
  border-top: 1px solid var(--cream-border);
  margin: 28px 0;
}
.form-section-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  gap: 16px;
}
.form-note { font-size: 12px; color: var(--gray-muted); line-height: 1.5; }
.form-success {
  display: none;
  background: var(--teal-lightest);
  border: 1px solid var(--teal-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--teal-dark);
  font-weight: 500;
}

/* ── Footer ── */
.footer {
  background: var(--teal-darkest);
  padding: 28px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-copy { font-size: 12px; color: var(--teal-light); }
.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.footer-phone:hover { color: var(--teal-lighter); }
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  color: var(--teal-light);
  opacity: 0.75;
  transition: var(--transition);
}
.footer-links a:hover { opacity: 1; color: var(--white); }

/* ── Utility ── */
.text-teal   { color: var(--teal); }
.text-orange { color: var(--orange); }
.text-cream  { color: var(--cream); }
.text-muted  { color: var(--gray-text); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner          { grid-template-columns: 1fr; }
  .hero-cards          { display: grid; grid-template-columns: repeat(3, 1fr); }
  .why-grid            { grid-template-columns: 1fr; }
  .cta-band-inner      { grid-template-columns: 1fr; }
  .cta-band-btns       { align-items: flex-start; flex-direction: row; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-cta               { display: none; }
  .nav-hamburger         { display: flex; }

  .hero            { padding: 48px 24px 40px; }
  .hero-cards      { grid-template-columns: 1fr; }
  .svc-grid        { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr; }
  .metric-grid     { grid-template-columns: 1fr 1fr; }
  .form-grid-2     { grid-template-columns: 1fr; }
  .trust-bar       { padding: 14px 20px; gap: 4px; }
  .trust-item      { padding: 4px 12px; }
  .cta-band        { padding: 48px 24px; }
  .cta-band-btns   { flex-direction: column; }
  .footer-inner    { grid-template-columns: 1fr; text-align: center; gap: 12px; }
  .footer-links    { justify-content: center; }
  .footer-phone    { justify-content: center; }
  .section         { padding: 48px 24px; }
  .form-wrap       { padding: 28px 20px; }
  .svc-card        { grid-template-columns: 1fr; }
  .page-hero       { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .metric-grid { grid-template-columns: 1fr; }
  .hero-btns   { flex-direction: column; align-items: flex-start; }
  .form-submit-row { flex-direction: column; align-items: flex-start; }
}
