/* ============================================================
   KALUM KABS — main.css
   WordPress Theme Stylesheet
   Author: Kalum Kabs Dev Team
   Version: 1.0.0
   ============================================================ */

/* ============================================================
   TABLE OF CONTENTS
   01. CSS Variables & Reset
   02. Utility Classes
   03. Typography
   04. Buttons
   05. Header & Navigation
   06. Hero Section
   07. About Section
   08. Services Section
   09. Service Areas Section
   10. Why Choose Us Section
   11. Fleet Section
   12. How It Works Section
   13. Testimonials Section
   14. FAQ Section
   15. CTA Section
   16. Blog Section
   17. Footer
   18. Responsive Breakpoints
   ============================================================ */


/* ============================================================
   01. CSS VARIABLES & RESET
   ============================================================ */

:root {
  /* Brand Colors */
  --primary-gold:       #D6B54A;
  --primary-gold-light: #E8CC72;
  --primary-gold-dark:  #B8942E;
  --primary-navy:       #1B2033;
  --primary-navy-light: #252B42;
  --primary-navy-dark:  #111520;

  /* Background Colors */
  --bg-light:    #F5F7FA;
  --bg-dark:     #0D0F18;
  --white:       #FFFFFF;
  --black:       #000000;

  /* Text Colors */
  --text-heading: #1B2033;
  --text-body:    #667085;
  --text-muted:   #98A2B3;
  --text-light:   #FFFFFF;

  /* Border */
  --border-light: #E4E7EC;
  --border-dark:  rgba(255,255,255,0.1);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 8px 32px rgba(214,181,74,0.25);

  /* Typography */
  --font-family:      'Open Sans', sans-serif;
  --font-size-base:   18px;
  --line-height-base: 30px;

  /* Spacing */
  --section-padding:    100px 0;
  --container-max:      1280px;
  --container-padding:  0 40px;

  /* Border Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 999px;

  /* Transitions */
  --transition-fast:   all 0.2s ease;
  --transition-base:   all 0.3s ease;
  --transition-slow:   all 0.5s ease;

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-modal:    300;
  --z-overlay:  400;

  /* Header Heights */
  --site-topbar-height:      40px;
  --site-main-header-height: 113px;
  --site-header-full-height: 153px; /* 40px topbar + 113px main header */
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-body);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-family);
}

input, select, textarea {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  outline: none;
}


/* ============================================================
   02. UTILITY CLASSES
   ============================================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
  width: 100%;
}

.section-padding {
  padding: var(--section-padding);
}

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

.text-gold    { color: var(--primary-gold); }
.text-navy    { color: var(--primary-navy); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--text-muted); }

.bg-light     { background-color: var(--bg-light); }
.bg-navy      { background-color: var(--primary-navy); }
.bg-dark      { background-color: var(--bg-dark); }
.bg-white     { background-color: var(--white); }

.d-flex       { display: flex; }
.d-grid       { display: grid; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-8   { gap: 8px; }
.gap-12  { gap: 12px; }
.gap-16  { gap: 16px; }
.gap-24  { gap: 24px; }
.gap-32  { gap: 32px; }
.gap-40  { gap: 40px; }
.gap-48  { gap: 48px; }

.w-full   { width: 100%; }
.h-full   { height: 100%; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--primary-gold);
  color: var(--primary-navy);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-badge--gold {
  background: rgba(214,181,74,0.12);
  color: var(--primary-gold);
  border: 1px solid rgba(214,181,74,0.3);
}

.section-badge--navy {
  background: rgba(27,32,51,0.08);
  color: var(--primary-navy);
}

/* Section Header */
.section-header {
  margin-bottom: 60px;
}

.section-header--center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.section-header .section-badge {
  margin-bottom: 16px;
}


/* ============================================================
   03. TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1,
.heading-h1 {
  font-size: 52px;
  line-height: 62px;
}

h2,
.heading-h2 {
  font-size: 44px;
  line-height: 54px;
}

h3,
.heading-h3 {
  font-size: 25px;
  line-height: 35px;
}

h4 {
  font-size: 22px;
  line-height: 30px;
}

h5 {
  font-size: 18px;
  line-height: 26px;
}

p {
  font-size: 18px;
  line-height: 30px;
  color: var(--text-body);
}

.lead {
  font-size: 20px;
  line-height: 32px;
}


/* ============================================================
   04. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid var(--primary-gold);
  outline-offset: 3px;
}

/* Primary Gold */
.btn--primary {
  background: var(--primary-gold);
  color: var(--primary-navy);
  border-color: var(--primary-gold);
}

.btn--primary:hover {
  background: var(--primary-gold-dark);
  border-color: var(--primary-gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* Primary Navy */
.btn--navy {
  background: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
}

.btn--navy:hover {
  background: var(--primary-navy-light);
  border-color: var(--primary-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Outlined White */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Outlined Gold */
.btn--outline-gold {
  background: transparent;
  color: var(--primary-gold);
  border-color: var(--primary-gold);
}

.btn--outline-gold:hover {
  background: var(--primary-gold);
  color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--primary-navy);
  border-color: var(--border-light);
  padding: 12px 28px;
}

.btn--ghost:hover {
  background: var(--bg-light);
  border-color: var(--primary-navy);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 14px;
}

.btn--lg {
  padding: 18px 44px;
  font-size: 18px;
  border-radius: var(--radius-lg);
}

.btn--full {
  width: 100%;
}

.btn--icon-left svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}


/* ============================================================
   05. HEADER & NAVIGATION
   Styles moved to assets/css/header.css (loads globally).
   ============================================================ */

/* All header styles are in assets/css/header.css */


/* ============================================================
   06. HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  padding-top: var(--site-header-full-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(11,13,22,0.88) 0%,
    rgba(27,32,51,0.80) 55%,
    rgba(27,32,51,0.60) 100%
  );
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}

/* Hero Left */
.hero__content {
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(214,181,74,0.15);
  border: 1px solid rgba(214,181,74,0.35);
  border-radius: var(--radius-full);
  color: var(--primary-gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero__heading {
  font-size: 56px;
  line-height: 66px;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero__heading .highlight {
  color: var(--primary-gold);
}

.hero__description {
  font-size: 18px;
  line-height: 30px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero Features Row */
.hero__features {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 600;
}

.hero__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(214,181,74,0.2);
  border: 1px solid rgba(214,181,74,0.4);
  border-radius: 50%;
  color: var(--primary-gold);
  flex-shrink: 0;
}

.hero__feature-icon svg {
  width: 16px;
  height: 16px;
}

/* Booking Card */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}

.booking-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.booking-card__subtitle {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 28px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-group__input-wrap {
  position: relative;
}

.form-group__input-wrap .form-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.form-group__input-wrap .form-icon svg {
  width: 18px;
  height: 18px;
}

.form-control {
  width: 100%;
  height: 48px;
  padding: 0 16px 0 44px;
  background: var(--bg-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-heading);
  transition: var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--primary-gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(214,181,74,0.15);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}


/* ============================================================
   07. ABOUT SECTION
   ============================================================ */

.about {
  padding: var(--section-padding);
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__content .section-badge {
  margin-bottom: 20px;
}

.about__heading {
  font-size: 42px;
  line-height: 52px;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.about__heading .highlight {
  color: var(--primary-gold);
}

.about__description {
  color: var(--text-body);
  margin-bottom: 16px;
}

.about__description:last-of-type {
  margin-bottom: 36px;
}

/* Progress Bars */
.about__progress-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.progress-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.progress-item__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
}

.progress-item__value {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-gold);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--bg-light);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-gold-dark), var(--primary-gold));
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* About CTA Row */
.about__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.about__phone-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(214,181,74,0.12);
  border-radius: 50%;
  color: var(--primary-gold);
  flex-shrink: 0;
}

.about__phone-icon svg {
  width: 20px;
  height: 20px;
}

.about__phone-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
}

.about__phone-info a {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-navy);
  text-decoration: none;
}

.about__phone-info a:hover {
  color: var(--primary-gold);
}

/* About Image Stack */
.about__images {
  position: relative;
  height: 560px;
}

.about__img--main {
  position: absolute;
  right: 0;
  top: 0;
  width: 85%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about__img--secondary {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--white);
}

.about__experience-badge {
  position: absolute;
  right: -10px;
  bottom: 60px;
  background: var(--primary-gold);
  color: var(--primary-navy);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
  min-width: 140px;
}

.about__experience-badge .number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.about__experience-badge .label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}


/* ============================================================
   08. SERVICES SECTION
   ============================================================ */

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

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.service-card__icon-wrap svg {
  width: 32px;
  height: 32px;
}

.service-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card__description {
  font-size: 15px;
  line-height: 26px;
  color: var(--text-body);
  flex: 1;
  margin-bottom: 24px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  text-decoration: none;
  transition: var(--transition-fast);
  margin-top: auto;
}

.service-card__link:hover {
  color: var(--primary-gold);
  gap: 10px;
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.service-card__link:hover svg {
  transform: translateX(4px);
}


















/* Footer styles moved to assets/css/footer.css (loads globally) */


/* ============================================================
   18. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---- Laptop 1200px ---- */
@media (max-width: 1200px) {
  :root {
    --container-padding: 0 32px;
  }

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

  .hero__heading { font-size: 48px; line-height: 58px; }

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

}

/* ---- Tablet 991px ---- */
@media (max-width: 991px) {
  :root {
    --section-padding: 80px 0;
    --container-padding: 0 28px;
  }

  h1, .heading-h1 { font-size: 40px; line-height: 50px; }
  h2, .heading-h2 { font-size: 30px; line-height: 40px; }
  h3, .heading-h3 { font-size: 22px; line-height: 32px; }

  /* Header responsive styles are in assets/css/header.css */

  .hero__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__content { max-width: 100%; }
  .booking-card { max-width: 520px; margin: 0 auto; }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about__images { height: 420px; }
  .about__img--main { width: 90%; height: 380px; }
  .about__img--secondary { width: 50%; height: 240px; }

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

}

/* ---- Mobile 767px ---- */
@media (max-width: 767px) {
  :root {
    --section-padding: 64px 0;
    --container-padding: 0 20px;
    --site-main-header-height: 72px;
    --site-header-full-height: 112px; /* 40px topbar + 72px header */
  }

  h1, .heading-h1 { font-size: 38px; line-height: 48px; }
  h2, .heading-h2 { font-size: 28px; line-height: 38px; }
  h3, .heading-h3 { font-size: 22px; line-height: 32px; }

  /* Header element responsive styles are in assets/css/header.css */

  .hero {
    min-height: auto;
    padding-bottom: 64px;
  }

  .hero__heading { font-size: 38px; line-height: 48px; }

  .hero__features {
    gap: 16px;
  }

  .hero__cta-row { flex-direction: column; align-items: flex-start; }
  .hero__cta-row .btn { width: 100%; justify-content: center; }

  .booking-card { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .about__images { height: 360px; }
  .about__img--secondary { width: 48%; height: 200px; }
  .about__experience-badge { right: 0; }

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

  .section-header { margin-bottom: 40px; }
  .section-header--center { margin-bottom: 40px; }
}

/* ---- Small Mobile 480px ---- */
@media (max-width: 480px) {
  :root {
    --container-padding: 0 16px;
  }

  h1, .heading-h1 { font-size: 32px; line-height: 42px; }
  h2, .heading-h2 { font-size: 24px; line-height: 34px; }

  .hero__heading { font-size: 32px; line-height: 42px; }

  .hero__feature-item span {
    font-size: 13px;
  }

  .about__images { height: 300px; }
  .about__img--main { height: 280px; }
  .about__img--secondary { display: none; }

  .service-card { padding: 28px 22px 24px; }

  .btn--lg { padding: 15px 32px; font-size: 16px; }
}


/* ============================================================
   19 & 20. HEADER PILLS + MOBILE NAV CONTACTS
   Moved to assets/css/header.css
   ============================================================ */
