/* ============================================================
   CareRide UK — Main Stylesheet
   ============================================================ */

/* ─── VARIABLES ─── */
:root {
  --navy:       #1a3466;
  --navy-dark:  #0f1f3d;
  --navy-mid:   #1d3d6e;
  --blue:       #2878d4;
  --blue-mid:   #1d5ba8;
  --blue-light: #3d8fe0;
  --blue-pale:  #e8f1fb;
  --blue-pale2: #d4e6f8;
  --gray:       #4a5568;
  --gray-light: #718096;
  --gray-bg:    #f5f7fa;
  --border:     #dde4ef;
  --white:      #ffffff;
  --text-dark:  #1a2433;
  --text-body:  #3d4a5c;
  --green:      #25d366;
  --green-dark: #1ebe5c;
  --warning-bg: #fffbf0;
  --warning-border: #e6c860;
  --danger-bg:  #fff8f8;
  --danger:     #c53030;
  --success-bg: #f0fff4;
  --success:    #48bb78;
}

/* ─── SCROLL REVEAL ─── */
[data-reveal] { opacity:0; transform:translateY(24px); transition:opacity .65s ease, transform .65s ease; }
[data-reveal].revealed { opacity:1; transform:none; }

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; }

ul, ol { list-style: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  line-height: 1.2;
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section     { padding: 5.5rem 0; }
.section-alt { padding: 5.5rem 0; background: var(--gray-bg); }
.section-sm  { padding: 3.5rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; }

.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* ─── LABELS & HEADINGS ─── */
.label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .7rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 600;
  margin-bottom: .9rem;
}

.section-lead {
  font-size: 1rem;
  color: var(--gray);
  max-width: 620px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 2.1rem;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .93rem;
  cursor: pointer;
  border: none;
  transition: all .22s ease;
  letter-spacing: .02em;
  white-space: nowrap;
}

.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(40,120,212,.3);
}

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

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

.btn-wa { background: var(--green); color: var(--white); }
.btn-wa:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,.3);
}

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

.btn-sm { padding: .6rem 1.3rem; font-size: .84rem; }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1rem; }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── NAVIGATION ─── */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(26,52,102,.07);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}

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

.logo-text .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1.1;
}

.logo-text .brand em { font-style: normal; color: var(--blue); }

.logo-text .sub {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray-light);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .1rem;
}

.nav-links a {
  display: block;
  padding: .48rem .85rem;
  font-size: .86rem;
  font-weight: 600;
  color: var(--gray);
  border-radius: 7px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--blue-pale);
}

.nav-links .nav-book {
  background: var(--blue);
  color: var(--white) !important;
  padding: .48rem 1.15rem;
  margin-left: .35rem;
}

.nav-links .nav-book:hover { background: var(--navy); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: .75rem 2rem 1.5rem;
  gap: .2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  display: block;
  padding: .65rem .9rem;
  font-size: .94rem;
  font-weight: 600;
  color: var(--gray);
  border-radius: 7px;
  transition: background .2s, color .2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--blue-pale);
  color: var(--navy);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--blue-mid) 100%);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  margin-top: 74px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(40,120,212,.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.5vw, 3.3rem);
  margin-bottom: 1rem;
  font-weight: 600;
}

.page-hero p {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.75;
}

.page-hero .breadcrumb {
  display: flex;
  gap: .6rem;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,.55);
  transition: color .2s;
}

.page-hero .breadcrumb a:hover { color: rgba(255,255,255,.9); }

.page-hero .breadcrumb span { color: rgba(255,255,255,.3); }

/* ─── IMAGE WITH OVERLAY ─── */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-rounded { border-radius: 16px; overflow: hidden; }

.img-block {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,52,102,.18);
}

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: transform .25s, box-shadow .25s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 42px rgba(26,52,102,.1);
}

.card-accent { border-top: 3px solid var(--blue); }

.card h3 { font-size: 1.3rem; margin-bottom: .55rem; }
.card p   { font-size: .91rem; color: var(--gray); line-height: 1.65; }

.badge {
  display: inline-block;
  padding: .22rem .75rem;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}

/* ─── INFO / CALLOUT BLOCKS ─── */
.callout {
  border-radius: 0 12px 12px 0;
  border-left: 4px solid var(--blue);
  background: var(--blue-pale);
  padding: 1.75rem 2.25rem;
}

.callout h3 { font-size: 1.15rem; margin-bottom: .45rem; }
.callout p  { font-size: .91rem; color: var(--gray); line-height: 1.7; }

.callout-warn {
  background: var(--warning-bg);
  border-color: var(--warning-border);
  border-radius: 12px;
  padding: 1.75rem 2.25rem;
}

.callout-warn h3 { color: #7a5c00; font-size: 1.1rem; margin-bottom: .4rem; }
.callout-warn p  { color: #5a4400; font-size: .9rem; line-height: 1.7; }

/* ─── STRIP / BANNER ─── */
.strip {
  background: var(--navy);
  padding: 1.4rem 0;
  text-align: center;
}

.strip p { color: rgba(255,255,255,.78); font-size: .94rem; }
.strip strong { color: #7ab8f5; }

/* ─── SECTION DIVIDER ─── */
hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy-dark);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .fb-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .2rem;
  display: block;
}

.footer-brand .fb-logo em { font-style: normal; color: var(--blue-light); }

.footer-brand .fb-tag {
  font-size: .69rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
  display: block;
}

.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  max-width: 290px;
  margin-bottom: 1.75rem;
}

.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.35rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }

.footer-col ul li a {
  font-size: .87rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}

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

.footer-contact-item {
  margin-bottom: .9rem;
}

.footer-contact-item .fci-label {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  display: block;
  margin-bottom: .2rem;
}

.footer-contact-item .fci-val {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}

.footer-contact-item .fci-val a { color: inherit; }
.footer-contact-item .fci-val a:hover { color: var(--white); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.75rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .79rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-bottom a {
  color: rgba(255,255,255,.4);
  transition: color .2s;
}

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

.footer-bottom-links { display: flex; gap: 1.75rem; }


/* ============================================================
   HOMEPAGE — HERO SLIDER
   ============================================================ */

.hero-wrap {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 860px;
  overflow: hidden;
  margin-top: 74px;
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity;
}

.slide.active { opacity: 1; }

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,20,45,.82) 0%,
    rgba(15,30,60,.72) 45%,
    rgba(26,52,102,.45) 75%,
    rgba(26,52,102,.2) 100%
  );
}

/* Hero content (sits above all slides) */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 10;
}

.hero-content .container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.35rem;
}

.hero-text h1 em {
  font-style: normal;
  color: #7ab8f5;
}

.hero-text p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2.75rem;
  line-height: 1.8;
}

.hero-phone {
  margin-top: 2rem;
}

.hero-phone .label-sm {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.5);
  display: block;
  margin-bottom: .25rem;
}

.hero-phone .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--white);
}

.hero-phone .number a { color: inherit; }

/* Trust box */
.trust-box {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 2.25rem 2.5rem;
  backdrop-filter: blur(12px);
}

.trust-box-title {
  font-family: 'Nunito', sans-serif;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.4rem;
}

.trust-list { display: flex; flex-direction: column; gap: .85rem; }

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: rgba(255,255,255,.84);
  font-size: .94rem;
  line-height: 1.5;
}

.trust-list li .tick {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(40,120,212,.5);
  border: 1px solid rgba(122,184,245,.5);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-list li .tick::after {
  content: '';
  width: 6px;
  height: 3.5px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translate(0.5px, -0.5px);
  display: block;
}

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 20;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .3s;
}

.slider-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  font-size: 1.2rem;
}

.slider-prev { left: 2rem; }
.slider-next { right: 2rem; }

.slider-prev:hover,
.slider-next:hover { background: rgba(255,255,255,.25); }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  z-index: 20;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.01%{ transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   HOMEPAGE — SECTIONS
   ============================================================ */

/* How it works */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; }

.step {
  padding: 2.5rem 2rem;
  position: relative;
  text-align: center;
}

.step + .step::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 0;
  height: 2px;
  width: 50%;
  background: linear-gradient(to right, transparent, var(--border));
}

.step + .step::after {
  content: '';
  position: absolute;
  top: 2.5rem;
  right: 0;
  height: 2px;
  width: 50%;
  background: linear-gradient(to left, transparent, var(--border));
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--blue-pale2);
  line-height: 1;
  margin-bottom: .5rem;
  display: block;
}

.step h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.step p   { font-size: .88rem; color: var(--gray); line-height: 1.65; }

/* Who we help */
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }

.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  transition: transform .25s, box-shadow .25s;
}

.who-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 42px rgba(26,52,102,.1);
}

.who-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.who-card p  { font-size: .9rem; color: var(--gray); line-height: 1.65; }

/* Why choose us */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  transition: transform .25s, box-shadow .25s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 42px rgba(26,52,102,.1);
}

.why-card h3 { font-size: 1.25rem; margin-bottom: .55rem; }
.why-card p  { font-size: .9rem; color: var(--gray); line-height: 1.65; }

/* Image section with background */
.img-section {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.img-section .bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.img-section .bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,20,45,.88) 0%, rgba(26,52,102,.75) 50%, rgba(26,52,102,.35) 100%);
}

.img-section-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: 5rem 0;
}

.img-section-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.1rem;
}

.img-section-content p {
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* CTA banner */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(40,120,212,.25) 0%, transparent 70%);
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
  position: relative;
}

.cta-band p {
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: .98rem;
  line-height: 1.8;
  position: relative;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 42px rgba(26,52,102,.1);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--blue-pale);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-body { padding: 1.75rem; }

.service-card-body h3 { font-size: 1.3rem; margin-bottom: .55rem; }
.service-card-body p  { font-size: .9rem; color: var(--gray); line-height: 1.65; }

.approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }

.approach-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  border-left: 3px solid var(--blue);
}

.approach-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.approach-card p  { font-size: .89rem; color: var(--gray); line-height: 1.65; }

/* ============================================================
   SAFETY PAGE
   ============================================================ */

.safety-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.safety-card { border-radius: 16px; padding: 2.75rem; }

.safety-card.can    { background: var(--white); border: 2px solid var(--blue); }
.safety-card.cannot { background: var(--danger-bg); border: 2px solid var(--danger); }

.safety-card h2 { font-size: 1.75rem; margin-bottom: 1.5rem; }
.safety-card.can    h2 { color: var(--navy); }
.safety-card.cannot h2 { color: var(--danger); }

.safety-list { display: flex; flex-direction: column; gap: .9rem; }

.safety-list li {
  padding: .7rem 1.1rem;
  border-radius: 9px;
  font-size: .93rem;
  font-weight: 600;
  line-height: 1.4;
}

.safety-card.can    .safety-list li { background: var(--blue-pale);  color: var(--navy); }
.safety-card.cannot .safety-list li { background: #fff0f0; color: var(--danger); }

/* ============================================================
   PRICING PAGE
   ============================================================ */

.pricing-hero-card {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 20px;
  padding: 3.5rem;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 24px 64px rgba(40,120,212,.14);
  text-align: center;
}

.price-from {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gray-light);
  margin-bottom: .2rem;
}

.price-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .2rem;
}

.price-number sup {
  font-size: 2.4rem;
  vertical-align: super;
  line-height: 0;
}

.price-note { color: var(--gray-light); font-size: .88rem; margin-bottom: 2.5rem; }

.price-features {
  text-align: left;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.price-features li {
  padding: .65rem 1.1rem;
  background: var(--gray-bg);
  border-radius: 9px;
  font-size: .91rem;
  font-weight: 600;
  color: var(--text-body);
}

.pricing-extras { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }

.pextra {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}

.pextra h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.pextra p  { font-size: .9rem; color: var(--gray); line-height: 1.7; }

.quote-band {
  background: var(--blue-pale);
  border-radius: 16px;
  padding: 3rem;
  margin-top: 2.5rem;
  text-align: center;
}

.quote-band h3 { font-size: 1.7rem; margin-bottom: .7rem; }
.quote-band p  { color: var(--gray); font-size: .93rem; max-width: 480px; margin: 0 auto 2rem; line-height: 1.75; }

/* ============================================================
   BOOKING PAGE
   ============================================================ */

.booking-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }

.contact-method {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
}

.contact-method h3 { font-size: 1.05rem; margin-bottom: .2rem; }

.contact-method .sub {
  font-size: .82rem;
  color: var(--gray-light);
  margin-bottom: .8rem;
}

.contact-method .val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
  margin-bottom: .8rem;
}

.booking-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.75rem;
}

.booking-form-card h2 { font-size: 1.9rem; margin-bottom: 1.75rem; }

.form-note {
  background: var(--blue-pale);
  border-radius: 9px;
  padding: 1rem 1.35rem;
  font-size: .85rem;
  color: var(--navy);
  margin-bottom: 1.6rem;
  line-height: 1.65;
}

.fg { margin-bottom: 1.2rem; }

.fg label {
  display: block;
  font-size: .81rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .38rem;
  letter-spacing: .02em;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: .75rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-family: 'Nunito', sans-serif;
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(40,120,212,.1);
}

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

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.success-msg {
  display: none;
  background: var(--success-bg);
  border: 1px solid var(--success);
  border-radius: 12px;
  padding: 1.75rem;
  margin-top: 1.5rem;
  text-align: center;
}

.success-msg h3 { color: #276749; font-size: 1.2rem; margin-bottom: .4rem; }
.success-msg p  { color: #2f855a; font-size: .88rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(26,52,102,.22);
}

.about-img-main img { width: 100%; height: 500px; object-fit: cover; }

.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--blue);
  color: var(--white);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 16px 40px rgba(40,120,212,.35);
  text-align: center;
}

.about-img-badge .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: .1rem;
}

.about-img-badge .small {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.75);
}

.about-text { }

.about-text .section-title { margin-bottom: 1.5rem; }

.about-text p {
  font-size: .96rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 1.15rem;
}

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3.5rem; }

.value-item {
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 3px solid var(--blue);
}

.value-item h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.value-item p  { font-size: .87rem; color: var(--gray); line-height: 1.6; }

/* Areas */
.areas-wrap { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2.25rem; }

.area-tag {
  background: var(--blue-pale);
  color: var(--navy);
  padding: .5rem 1.3rem;
  border-radius: 25px;
  font-size: .88rem;
  font-weight: 700;
  border: 1px solid rgba(40,120,212,.18);
}

/* Team card */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(26,52,102,.07);
}

.team-card-img { height: 280px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.team-card:hover .team-card-img img { transform: scale(1.04); }

.team-card-body { padding: 1.75rem; }
.team-card-body h3 { font-size: 1.3rem; margin-bottom: .2rem; }
.team-card-body .role { font-size: .8rem; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; display: block; }
.team-card-body p { font-size: .88rem; color: var(--gray); line-height: 1.65; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: start; }

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
}

.contact-card .cc-label {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--blue);
  display: block;
  margin-bottom: .4rem;
}

.contact-card .cc-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
  margin-bottom: .4rem;
}

.contact-card p { font-size: .87rem; color: var(--gray-light); margin-bottom: .9rem; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.75rem;
}

.contact-form-card h2 { font-size: 1.9rem; margin-bottom: 1.75rem; }

/* ============================================================
   TERMS PAGE
   ============================================================ */

.terms-wrap { max-width: 840px; }

.t-section {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.t-section:last-child { border-bottom: none; }

.t-section h2 { font-size: 1.6rem; margin-bottom: .9rem; }

.t-section p {
  font-size: .93rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: .8rem;
}

.t-section ul { margin-top: .5rem; }

.t-section ul li {
  font-size: .93rem;
  color: var(--gray);
  padding: .5rem 0 .5rem 1.6rem;
  position: relative;
  border-bottom: 1px solid var(--gray-bg);
  line-height: 1.65;
}

.t-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-content .container { grid-template-columns: 1fr; }
  .trust-box { display: none; }
}

@media (max-width: 960px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  .hero-wrap {
    height: auto;
    min-height: 520px;
    max-height: none;
  }

  .hero-content { position: relative; padding: 5rem 0; }

  .slide {
    position: absolute;
    height: 100%;
  }

  .about-split,
  .booking-layout,
  .contact-layout,
  .safety-cols,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pricing-extras { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr; }
  .frow           { grid-template-columns: 1fr; }

  .about-img-badge {
    bottom: 1rem;
    right: 1rem;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }

  .section, .section-alt { padding: 3.75rem 0; }

  .hero-text h1 { font-size: 2.4rem; }

  .btn-group { flex-direction: column; align-items: flex-start; }

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

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .page-hero h1 { font-size: 2rem; }

  .pricing-hero-card { padding: 2.25rem 1.5rem; }

  .booking-form-card,
  .contact-form-card { padding: 1.75rem; }
}
