:root {
  --primary: #003366;
  --secondary: #00b4ff;
  --accent: var(--shadow);
  --muted: #eaf1fa;
  --background: #f7f9fd;
  --white: #fff;
  --grey: #383838;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(11,116,222,0.08);
}

/* GLOBAL */

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

body {
  background: var(--background);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--grey);
  margin: 0;
  padding: 0;
}

/* main wrapper */
.container {
  width: 100%;
  max-width: 1100px;      /* caps width on large screens */
  margin: 0 auto;         /* center on desktop */
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* make container fluid on small screens */
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* safety net for horizontal overflow */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* HEADER */

.site-header {
  background: var(--primary);
  color: var(--white);
  padding: 22px 0;
  box-shadow: var(--shadow);
  width: 100%;            /* full-width header */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  height: 50px;
  max-width: 180px;
  background-color: white;
  border-radius: var(--radius);
  object-fit: contain;
  display: block;
}

.brand-text .brand-name {
  font-weight: 700;
  font-size: 1.3rem;
}

.brand-subline {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 500;
}

.site-nav {
  display: flex;
  gap: 16px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  padding: 9px 15px;
  border-radius: var(--radius);
  transition: background 0.2s;
  font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
  background: var(--secondary);
  color: var(--grey);
}

.nav-cta-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.hero {
  padding: 64px 0 32px 0;
  background: var(--white);
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.hero-copy {
  flex: 1 1 420px;
  min-width: 320px;
}

.hero-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin: 0 0 18px;
  font-weight: 800;
  line-height: 1.18;
}
.hero-lead {
  font-size: 1.12rem;
  color: var(--grey);
  margin-bottom: 22px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.btn,
.btn-primary {
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 13px 28px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: background 0.22s;
}

.btn-primary:hover,
.btn:focus {
  background: var(--primary);
}

.btn-ghost,
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: none;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-ghost:hover,
.btn-outline:hover {
  background: var(--accent);
  color: var(--grey);
  border-color: var(--accent);
}

.btn, .btn-primary, .btn-outline {
  padding: 12px 24px;
  font-size: 1rem;
  min-width: auto;
  width: auto;
}


.pill {
  background: var(--secondary);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.97rem;
  box-shadow: 0 2px 8px rgba(0,180,255,0.06);
  margin-right: 10px;
  margin-bottom: 6px;
  display: inline-block;
}

.hero-media {
  flex: 0 1 340px;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  padding: 54px 0 38px 0;
}

.section-muted {
  background: var(--muted);
}

.section-accent-light {
  background: #fffbe9;
}

.section-header {
  margin-bottom: 22px;
}

.section-title {
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.section-intro {
  color: #666;
  font-size: 1.02rem;
  line-height: 1.45;
}




.hero-meta-grid {
  display: flex;
  gap: 22px;
  margin-top: 18px;
}
.info-card {
  background: var(--background);
  border-radius: var(--radius);
  box-shadow: 0 1px 6px rgba(0,51,102,0.05);
  padding: 18px;
  min-width: 220px;
}

.info-card-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}

.info-card-body {
  font-size: 0.97rem;
  color: var(--grey);
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.contact-panel {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

details summary {
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  margin-bottom: 4px;
}

details {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: 0 1px 6px rgba(0,51,102,0.03);
  padding: 14px 18px;
  font-size: 1rem;
}

.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 32px 0 22px 0;
  text-align: center;
  font-size: 1rem;
}

.footer-link {
  color: var(--accent);
  text-decoration: underline;
}
.footer-link:hover {
  color: var(--white);
  background: var(--accent);
}

@media (max-width: 900px) {
  .hero-inner, .header-inner {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .hero-meta-grid {
    flex-direction: column;
    gap: 14px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
  .hero-title {
    font-size: 1.48rem;
  }
  .site-header,
  .site-footer {
    padding: 14px 0;
  }
  .brand-mark {
    height: 52px;
  }
}




/* contact and enquiry section */

.side-by-side-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 0;
}

/* On mobile, stack vertically and adjust padding */



@media (max-width: 640px) {
  .side-by-side-sections {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-left: 16px;
    padding-right: 16px;
  }


  .contact-block {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}



.contact-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-truck-img {
  width: 100%;
  max-width: 340px;
  border-radius: 16px;
  box-shadow: 0 7px 28px rgba(11,116,222,0.10);
  object-fit: contain;
}

.contact-card {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(0,51,102,0.08);
  padding: 34px 28px;
  text-align: center;
}

.contact-card h3 {
  font-size: 1.32rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.btn.whatsapp-image-btn {
  width: 140px;
  /* height: 44px; */
  padding: 8px 24px; /* instead of larger padding */
  height: 48px;      /* adjust height as needed */
  background: #25D366;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,109,45,0.25);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}


.btn.whatsapp-image-btn:hover,
.btn.whatsapp-image-btn:focus {
  background: #128C7E;
}

.whatsapp-img-btn {
  height: 63px;
  width: auto;
  display: inline-block;
  object-fit: contain;
  vertical-align: middle;
}

.btn-outline {
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 12px;
  padding: 12px 28px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--accent);
  color: var(--grey);
  border-color: var(--accent);
}

.contact-hours {
  font-size: 0.95rem;
  color: #6e7c89;
  font-weight: 400;
}

/* Enquire Card */
.enquire-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 28px rgba(0,51,102,0.08);
  padding: 34px 26px;
}

.form-title {
  color: var(--primary);
  font-weight: 700;
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 26px;
  letter-spacing: 0.02em;
}

.form-row {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}

.form-row label {
  font-weight: 600;
  color: #264b5d;
  margin-bottom: 7px;
  font-size: 1.05rem;
}

.form-input {
  font-size: 1rem;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e2e7f1;
  background: #f6f9fd;
  outline: none;
  transition: border-color 0.2s;
}
.form-input, textarea.form-input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}


.form-input:focus {
  border-color: var(--secondary);
  background: #fff;
}

textarea.form-input {
  resize: vertical;
  min-height: 72px;
  max-height: 180px;
}

.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 14px;
}

.btn {
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 14px 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}

.btn:hover,
.btn:focus {
  background: var(--primary);
}

.form-note {
  margin-top: 18px;
  font-size: 0.98rem;
  color: #6e7c89;
  text-align: left;
}

/* Responsive */
@media (max-width: 900px) {
  .side-by-side-sections {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}


/* fleet section */


.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 24px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0, 51, 102, 0.1);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.fleet-card:hover {
  box-shadow: 0 14px 42px rgba(0, 51, 102, 0.18);
}

.fleet-image {
  max-width: 260px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(11, 116, 222, 0.12);
  margin-bottom: 18px;
  object-fit: contain;
}

.fleet-title {
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.fleet-desc {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.45;
  margin-bottom: 0;
  max-width: 290px;
}

.fleet-cta .btn-primary {
  font-weight: 700;
  font-size: 1.15rem;
  padding: 16px 42px;
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: background 0.3s ease;
}

.fleet-cta .btn-primary:hover,
.fleet-cta .btn-primary:focus {
  background: var(--primary);
}

/* Responsive */
@media (max-width: 640px) {
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .fleet-desc {
    max-width: 100%;
  }
}


/* map routes */

.section-light {
  background: #f9fbfe;
  padding: 54px 20px 58px 20px;
}

.routes-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 22px;
}

.routes-map-wrapper {
  width: 100%;
  max-width: 460px;
  justify-self: center;
  border-radius: var(--radius);
  box-shadow: 0 7px 28px rgba(11, 116, 222, 0.12);
  overflow: hidden;
}

.routes-map-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.35s ease-in-out;
  border-radius: var(--radius);
}
.routes-map-image:hover {
  transform: scale(1.05);
}

.routes-list-wrapper {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--grey);
  max-width: 460px;
}

.routes-description {
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--primary);
}

.routes-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
}

.routes-list li {
  background: var(--secondary);
  color: var(--white);
  padding: 8px 19px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 180, 255, 0.06);
  transition: background 0.3s;
  cursor: default;
}

.routes-list li:hover {
  background: var(--accent);
  color: var(--grey);
}

.routes-cta {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.13rem;
  padding: 14px 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: background 0.3s ease-in-out;
}

.routes-cta:hover,
.routes-cta:focus {
  background: var(--secondary);
  color: var(--grey);
  box-shadow: 0 10px 30px rgba(0, 180, 255, 0.25);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .routes-content-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .routes-map-wrapper,
  .routes-list-wrapper {
    max-width: 100%;
  }
  .routes-list {
    justify-content: center;
  }
  .routes-cta {
    width: 100%;
    text-align: center;
  }
}



/* Service section */


/* .services-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 10px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 1px 6px rgba(0,51,102,0.05);
  padding: 24px 18px;
}

.service-title {
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.service-text {
  color: var(--grey);
  font-size: 0.99rem;
  line-height: 1.43;
} */
 .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
  margin-top: 22px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 30px rgba(0, 51, 102, 0.08);
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 18px 60px rgba(0, 51, 102, 0.18);
}

.service-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  box-shadow: inset 0 -3px 12px rgba(0, 0, 0, 0.1);
}

.service-title {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 700;
  margin: 14px 0 8px;
}

.service-text {
  color: var(--grey);
  font-size: 1rem;
  padding: 0 18px 20px;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .service-image {
    height: 200px;
  }
}

/* About us section */
.section-light {
  background: #f9fbfe;
  padding: 56px 20px 64px;
}

.about-section {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--grey);
}

.section-header .section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 32px;
  text-align: center;
}

.about-intro {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 42px auto;
  line-height: 1.55;
  color: #444c5c;
  font-weight: 500;
  text-align: center;
}

.about-sections {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-box {
  flex: 1 1 320px;
  max-width: 400px;
  background: var(--white);
  padding: 28px 26px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 51, 102, 0.09);
  transition: box-shadow 0.3s ease;
}

.about-box:hover {
  box-shadow: 0 14px 44px rgba(0, 51, 102, 0.17);
}

.about-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  text-align: center;
}

.about-list {
  list-style: none;
  padding-left: 0;
  font-weight: 600;
  color: var(--grey);
  line-height: 1.5;
}

.about-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
}

.checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--secondary);
  font-weight: 900;
  font-size: 1.22rem;
  user-select: none;
}

/* Responsive */
@media (max-width: 900px) {
  .about-sections {
    flex-direction: column;
    gap: 28px;
  }
  .about-box {
    max-width: 100%;
  }
}


/* Footer Section */


.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 36px 20px 24px;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  user-select: none;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-size: 0.95rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo-img {
  height: 48px;
  border-radius: 10px;
  background-color: white;
}

.footer-brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 600;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-link:hover,
.footer-link:focus {
  color: var(--accent);
}

.footer-contact {
  color: var(--white);
  font-weight: 500;
  line-height: 1.4;
  font-size: 1rem;
  min-width: 180px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-icon img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.3));
  transition: filter 0.2s ease-in-out;
}

.social-icon:hover img,
.social-icon:focus img {
  filter: drop-shadow(0 0 6px var(--accent));
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 18px;
  text-align: center;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive for footer */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-nav {
    justify-content: start;
  }
  .footer-contact {
    min-width: auto;
  }
}


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

