/* ============================================================
   Island Marine Air — style.css
   Color palette: Navy #023056 · Sky Blue #199DDF · Light Blue #75CCEF · White
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --color-navy:        #023056;
  --color-navy-mid:    #02274a;
  --color-navy-light:  #0a4a7a;
  --color-teal:        #199DDF;
  --color-teal-dark:   #1480b8;
  --color-gold:        #75CCEF;
  --color-gold-light:  #a8dcf5;
  --color-white:       #ffffff;
  --color-off-white:   #f0f8ff;
  --color-gray:        #6a8db0;

  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body:    'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;

  --max-width: 1200px;
  --radius:    8px;
  --radius-lg: 16px;

  --transition-fast: 0.2s ease;
  --transition-med:  0.4s ease;
  --transition-slow: 0.8s ease;

  --shadow-card:  0 4px 20px rgba(0,0,0,0.15);
  --shadow-hover: 0 8px 40px rgba(25,157,223,0.22);
  --nav-height:   72px;
}

/* ---- Feather Icon Sizing ---- */
/* Value cards — large icons */
.value-icon svg {
  width: 32px; height: 32px;
  stroke: var(--color-teal);
  stroke-width: 1.5;
  fill: none;
}
/* Service cards — large icons in colored header */
.service-icon svg {
  width: 40px; height: 40px;
  stroke: var(--color-white);
  stroke-width: 1.5;
  fill: none;
}
/* Contact/booking detail icons */
.cd-icon svg {
  width: 18px; height: 18px;
  stroke: var(--color-teal);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}
/* Footer contact icons */
.f-icon svg {
  width: 15px; height: 15px;
  stroke: var(--color-teal);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}
/* Owner placeholder icon */
.ph-icon svg {
  width: 64px; height: 64px;
  stroke: var(--color-gray);
  stroke-width: 1;
  fill: none;
  opacity: 0.4;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--color-navy);
  color: var(--color-off-white);
  font-family: var(--font-body);
  line-height: 1.75;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: var(--color-teal); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-gold-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: var(--space-md); }
h3 { font-size: 1.2rem; margin-bottom: var(--space-xs); }
p  { margin-bottom: var(--space-sm); color: var(--color-off-white); }

.section-label {
  display: block;
  font-size: 0.78rem;
  font-family: var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.4rem;
}

/* Teal underline accent on h2 */
h2.underline-accent {
  position: relative;
  display: inline-block;
  padding-bottom: 0.4em;
}
h2.underline-accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 48px; height: 3px;
  background: var(--color-teal);
  border-radius: 2px;
}

/* ---- Layout Utilities ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section-alt {
  background: var(--color-navy-mid);
}

.text-center { text-align: center; }
.text-gold   { color: var(--color-gold); }
.text-teal   { color: var(--color-teal); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--color-teal);
  color: var(--color-navy);
}
.btn-primary:hover {
  background: var(--color-teal-dark);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(25,157,223,0.4);
}

.btn-outline {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-navy);
}
.btn-gold:hover {
  background: var(--color-gold-light);
  box-shadow: 0 6px 20px rgba(117,204,239,0.4);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

/* ---- Wave Dividers ---- */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg {
  display: block;
  width: 100%;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 var(--space-md);
  background: var(--color-navy);
  box-shadow: 0 2px 24px rgba(2,48,86,0.4);
  transition: box-shadow var(--transition-med);
}

#main-nav.scrolled {
  box-shadow: 0 4px 32px rgba(2,48,86,0.55);
}

.nav-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Footer logo */
.footer-logo {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: var(--space-sm);
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}
.nav-links a {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-teal);
  transition: width var(--transition-fast);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--color-white); }

.nav-links .btn { margin-left: var(--space-sm); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* ============================================================
   HERO / SLIDER
   ============================================================ */
#home {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active { opacity: 1; }

/* Gradient placeholder slides */
.slide-placeholder-0 { background: linear-gradient(135deg, #034a80 0%, #023056 50%, #021f45 100%); }
.slide-placeholder-1 { background: linear-gradient(135deg, #02274a 0%, #034a80 60%, #0a4a7a 100%); }
.slide-placeholder-2 { background: linear-gradient(135deg, #021f45 0%, #02274a 50%, #0a4a7a 100%); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2,48,86,0.45) 0%, rgba(2,48,86,0.72) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-md);
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
}

.hero-title {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-title .gold { color: var(--color-gold); }

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--color-off-white);
  margin-bottom: var(--space-md);
  font-style: italic;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.slider-controls {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.slider-prev,
.slider-next {
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition-fast);
}
.slider-prev:hover,
.slider-next:hover {
  background: var(--color-teal);
}

.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.slider-dot.active {
  background: var(--color-teal);
  transform: scale(1.35);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 24px;
  right: var(--space-md);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-hint::after {
  content: '';
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ============================================================
   ABOUT US
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-lg);
  align-items: center;
}

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

.owner-photo {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-card);
}


.owner-photo-placeholder .ph-icon { font-size: 4rem; opacity: 0.25; }
.owner-photo-placeholder p { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin: 0; }

/* Decorative teal bar behind image */
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: 20px; left: -16px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  max-width: 420px;
  border-radius: var(--radius-lg);
  background: var(--color-teal);
  opacity: 0.12;
  z-index: -1;
}

.about-content { padding: var(--space-sm) 0; }

.about-intro {
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
  color: var(--color-off-white);
}

.integrity-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.integrity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xs) var(--space-md);
  margin-bottom: var(--space-md);
}
.integrity-list li {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.95rem;
  color: var(--color-off-white);
}
.integrity-list li .icon { color: var(--color-gold); font-size: 0.75rem; }

/* ============================================================
   WHO WE ARE
   ============================================================ */


.who-lead {
  font-size: 1.05rem;
  max-width: 780px;
  margin: 0 auto var(--space-lg);
  text-align: center;
  color: var(--color-off-white);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.mv-card {
  background: var(--color-navy);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
}
.mv-card h3 { color: var(--color-teal); margin-bottom: var(--space-sm); }
.mv-card.vision h3 { color: var(--color-gold); }
.mv-card p { margin-bottom: 0; font-size: 0.95rem; }

/* ============================================================
   CORE VALUES
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.value-card {
  background: var(--color-navy-mid);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-align: center;
  border: 1px solid #f4f4f4;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.value-card h3 {
  color: var(--color-gold);
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}
.value-card p {
  font-size: 0.88rem;
  color: var(--color-gray);
  margin: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--color-navy-mid); }

.services-intro {
  max-width: 700px;
  font-size: 1.05rem;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--color-navy);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card-header {
  background: linear-gradient(135deg, var(--color-teal-dark) 0%, var(--color-teal) 100%);
  padding: var(--space-md);
  text-align: center;
}
.service-card.consulting .service-card-header {
  background: linear-gradient(135deg, #0a70b8 0%, var(--color-gold) 100%);
}

.service-icon { font-size: 2.4rem; color: var(--color-white); line-height: 1; }

.service-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 { color: var(--color-white); margin-bottom: var(--space-xs); }
.service-card-body p  { font-size: 0.92rem; color: var(--color-gray); flex: 1; margin-bottom: var(--space-sm); }
.service-card.consulting { }
.service-card.consulting .service-card-body h3 { color: var(--color-gold); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.why-list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
  font-size: 0.97rem;
  color: var(--color-off-white);
}
.why-list li::before {
  content: '✓';
  color: var(--color-teal);
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 2px;
}

.why-visual {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--color-navy-light) 0%, var(--color-navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.why-visual-watermark {
  font-size: 18rem;
  line-height: 1;
  color: var(--color-teal);
  opacity: 0.045;
  user-select: none;
  pointer-events: none;
}
.why-visual-tag {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-teal);
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands-section { background: var(--color-navy-mid); }

.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.brand-column h3 {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-md);
}

.brand-list li {
  padding: 0.45rem 0;
  color: var(--color-off-white);
  font-size: 0.95rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.brand-list li:hover {
  color: var(--color-teal);
  padding-left: 0.5em;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: var(--space-md);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-navy-mid);
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-med);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25,157,223,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-zoom {
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

/* Placeholder tiles */
.gallery-placeholder {
  background: linear-gradient(135deg, var(--color-navy-mid) 0%, var(--color-navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.gallery-placeholder::after {
  content: '⚓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: rgba(255,255,255,0.07);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--color-navy-mid); }

.testimonial-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: var(--space-md);
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-med);
}

.testimonial-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--color-navy);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-md) var(--space-md) calc(var(--space-md) + 1.5rem);
  box-shadow: var(--shadow-card);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-teal);
  opacity: 0.35;
  font-family: var(--font-heading);
}

.testimonial-card blockquote {
  font-size: 0.97rem;
  color: var(--color-off-white);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.testimonial-card cite {
  font-size: 0.85rem;
  color: var(--color-gray);
  font-style: normal;
  display: block;
  margin-bottom: 4px;
}

.stars { color: var(--color-gold); letter-spacing: 2px; font-size: 0.85rem; }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.t-prev, .t-next {
  color: var(--color-white);
  font-size: 1.5rem;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition-fast);
}
.t-prev:hover, .t-next:hover {
  background: var(--color-teal);
}

.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-navy-light);
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.t-dot.active {
  background: var(--color-teal);
  transform: scale(1.35);
}

/* ============================================================
   CONTACT & BOOKING FORMS
   ============================================================ */
.contact-section { }
.booking-section { background: var(--color-navy-mid); }

.form-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.form-info h3 { color: var(--color-teal); margin-bottom: var(--space-sm); }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.contact-detail .cd-icon {
  font-size: 1.3rem;
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail p { margin: 0; font-size: 0.95rem; }
.contact-detail strong { color: var(--color-white); display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }

/* Form elements */
.form-group {
  margin-bottom: var(--space-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--color-navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--color-off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;

}
input::placeholder, textarea::placeholder { color: var(--color-gray); }
input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 0 3px rgba(25,157,223,0.25);
}

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

fieldset {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  background: rgba(255,255,255,0.03);
}
legend {
  color: var(--color-teal);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 var(--space-xs);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6em;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--color-off-white);
  text-transform: none;
  letter-spacing: 0;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--color-teal);
  flex-shrink: 0;
}

.form-message {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}
.form-message.success {
  background: rgba(25,157,223,0.12);
  color: var(--color-teal);
}
.form-message.error {
  background: rgba(200,60,60,0.12);
  color: #ff9999;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #02274a;
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--color-gray);
  margin-bottom: var(--space-md);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
}

.footer-links li {
  margin-bottom: 0.4rem;
}
.footer-links a {
  color: var(--color-gray);
  font-size: 0.92rem;
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--color-white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  color: var(--color-gray);
}
.footer-contact-item .f-icon { color: var(--color-teal); flex-shrink: 0; font-size: 0.95rem; margin-top: 2px; }
.footer-contact-item a { color: var(--color-gray); }
.footer-contact-item a:hover { color: var(--color-teal); }

.footer-bottom {
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--color-gray);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ============================================================
   LIGHT SECTIONS  (white / near-white background)
   ============================================================ */
.section-light {
  background: #ffffff;
}

/* Flip heading & body text to dark */
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 {
  color: var(--color-navy);
}
.section-light p,
.section-light .who-lead,
.section-light .services-intro,
.section-light .about-intro {
  color: #334e6e;
}
.section-light .section-label { color: var(--color-teal); }

/* Underline accent stays teal — no change needed */

/* About section */
.section-light .integrity-list li  { color: #334e6e; }
.section-light .integrity-label    { color: var(--color-teal-dark); }

/* Mission / Vision cards */
.section-light .mv-card {
  background: #f0f8ff;
  box-shadow: 0 2px 16px rgba(2,48,86,0.08);
}
.section-light .mv-card p { color: #334e6e; }
.section-light .mv-card h3 { color: var(--color-teal-dark); }
.section-light .mv-card.vision h3 { color: var(--color-navy-light); }

/* Value cards */
.section-light .value-card {
  background: #f0f8ff;
  box-shadow: 0 2px 12px rgba(2,48,86,0.07);
}
.section-light .value-card h3 { color: var(--color-navy); }
.section-light .value-card p  { color: #4a6d8c; }
.section-light .value-card:hover { box-shadow: var(--shadow-hover); }

/* Service cards */
.section-light .service-card {
  background: #f0f8ff;
  box-shadow: 0 2px 16px rgba(2,48,86,0.08);
}
.section-light .service-card-body h3 { color: var(--color-navy); }
.section-light .service-card-body p  { color: #4a6d8c; }
.section-light .service-card.consulting .service-card-body h3 { color: var(--color-teal-dark); }

/* Why list */
.section-light .why-list li { color: #334e6e; }
.section-light .why-visual  {
  background: linear-gradient(160deg, #d6ecf8 0%, #ebf5fc 100%);
}

/* Brand list */
.section-light .brand-list li { color: #334e6e; }
.section-light .brand-list li:hover { color: var(--color-teal-dark); }
.section-light .brand-column h3 { color: var(--color-navy); }

/* Gallery placeholders on white */
.section-light .gallery-placeholder {
  background: linear-gradient(135deg, #d6ecf8 0%, #ebf5fc 100%);
}
.section-light .gallery-placeholder::after { color: rgba(2,48,86,0.1); }

/* Forms on white bg */
.section-light input[type="text"],
.section-light input[type="email"],
.section-light input[type="tel"],
.section-light textarea {
  background: #f4f9ff;
  border-color: #cde4f5;
  color: var(--color-navy);
}
.section-light input::placeholder,
.section-light textarea::placeholder { color: #6a8db0; }
.section-light input:focus,
.section-light textarea:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(25,157,223,0.18);
}
.section-light fieldset { background: rgba(2,48,86,0.03); }
.section-light legend   { color: var(--color-teal-dark); }
.section-light .checkbox-label { color: #334e6e; }

/* Contact detail text */
.section-light .contact-detail p       { color: #334e6e; }
.section-light .contact-detail strong  { color: var(--color-navy); }
.section-light .contact-detail a       { color: var(--color-teal-dark); }
.section-light .contact-detail a:hover { color: var(--color-teal); }

/* Testimonials on light bg */
.section-light .testimonial-card {
  background: #f0f8ff;
  box-shadow: 0 2px 12px rgba(2,48,86,0.08);
}
.section-light .testimonial-card blockquote { color: #334e6e; }
.section-light .testimonial-card cite       { color: #6a8db0; }

/* Mid-blue section (#ebf5fc) */
.section-mid { background: #ebf5fc; }
.section-mid h1,.section-mid h2,.section-mid h3,.section-mid h4 { color: var(--color-navy); }
.section-mid p { color: #334e6e; }
.section-mid .brand-list li { color: #334e6e; }
.section-mid .brand-list li:hover { color: var(--color-teal-dark); }
.section-mid .brand-column h3 { color: var(--color-navy); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--color-navy); padding: var(--space-md); gap: var(--space-sm); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
  .nav-links.nav-open { display: flex; }
  .nav-links .btn { width: 100%; text-align: center; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --space-lg: 3rem; --space-xl: 4rem; }

  .about-grid        { grid-template-columns: 1fr; }
  .about-image-wrap  { max-width: 360px; margin: 0 auto; }
  .about-image-wrap::before { display: none; }
  .owner-photo, .owner-photo-placeholder { max-width: 100%; }

  .mv-grid           { grid-template-columns: 1fr; }
  .values-grid       { grid-template-columns: repeat(2, 1fr); }
  .services-grid     { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .why-visual        { display: none; }
  .brands-grid       { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonial-slide { grid-template-columns: 1fr; }
  .form-columns      { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .integrity-list    { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .values-grid  { grid-template-columns: 1fr; }
  .hero-cta     { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; text-align: center; }
  .gallery-grid { gap: 8px; }
  .slider-controls { gap: 8px; }
}
