:root {
  --accent: #0077b6;
  --accent-2: #00b4d8;
  --bg: #ffffff;
  --text: #0a1a2f;
  --muted: #6c757d;
  --card: #ffffff;
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  /* background: var(--bg); */
  color: var(--text);
  line-height: 1.6;
  background: #ffffff;
}

/* ======= HEADER & NAV RESPONSIVENESS ======= */
header {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 6%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  object-fit: cover;
}

.brand h1 {
  margin: 0;
  color: #0077b6;
  font-size: 1.3rem;
}

/* Nav links */
nav {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

nav a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.3s;
}

nav a:hover {
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  color: #fff;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #0077b6;
  cursor: pointer;
  user-select: none;
}

/* Responsive nav */
@media (max-width: 900px) {
  nav {
    position: absolute;
    top: 70px;
    right: 0;
    flex-direction: column;
    width: 100%;
    background: #fff;
    text-align: center;
    display: none;
    border-top: 2px solid #0077b6;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  }

  nav.active {
    display: flex;
  }

  nav a {
    display: block;
    padding: 14px;
    border-bottom: 1px solid #f0f0f0;
  }

  .menu-toggle {
    display: block;
  }
}

/* ======= FOOTER RESPONSIVE ======= */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 40px 6%;
  background: linear-gradient(90deg, #111213, #13043d);
  color: #fff;
}

.footer-col h4 {
  margin-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  padding-bottom: 4px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a {
  color: #e0f7ff;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  padding: 12px;
  background: #090e11;
  color: #fff;
}

/* routes section */
.routes h3,
.services h3,
.contact h3 {
  text-align: center;
  color: var(--accent);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.route {
  background: #f9fbff;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #e5ecf6;
  text-align: center;
  transition: 0.3s;
}

.route:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.route strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 5px;
}

.availability {
  font-size: 0.9rem;
  color: #555;
  background: #e7f5ff;
  padding: 6px 8px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 6px;
}

/*  */
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0.5;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 22px;
  color: #f3f3f3;
  line-height: 1.6;
}

.cta-btn {
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  border: none;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Arrows */
.nav-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 3;
  padding: 0px;
}

.nav-arrows span {
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.3s;
  padding: 10px;
}

.nav-arrows span:hover {
  opacity: 0.7;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dots span.active {
  background: #00b4d8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 70vh;
  }

  .hero-content h2 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .cta-btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }

  .nav-arrows span {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 65vh;
  }

  .hero-content {
    width: 90%;
  }

  .hero-content h2 {
    font-size: 1.4rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .cta-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .dots span {
    width: 10px;
    height: 10px;
  }
}

/*  */
section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: center;
}

.service {
  padding: 20px;
  border-radius: 10px;
  background: #f9fbff;
  transition: 0.3s;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service img {
  width: 200px;
  height: 150px;
}

.service h4 {
  margin: 10px 0;
  color: var(--accent);
}

/* Contact Section */
.contact-section {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  background: #fff;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 40px;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form h3 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 1.6rem;
}

form {
  display: grid;
  gap: 15px;
}

input,
textarea {
  width: 90%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

button {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.3s;
  width: 32rem;
}

button:hover {
  opacity: 0.9;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background: #f9fbff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-info h3 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.contact-info p {
  margin: 10px 0;
  color: var(--muted);
  font-size: 1rem;
}

.contact-info a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding: 20px;
  }

  .contact-info {
    margin-top: 20px;
  }

  input,
  textarea {
    width: 88%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  button {
    width: 21rem;
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero img {
    display: none;
  }

  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.about div {
  flex: 1;
  min-width: 300px;
}

.about-slider {
  flex: 1;
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.about-slider img.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-slider {
    height: 250px;
  }
}

/* ===== Floating Call & WhatsApp Buttons ===== */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

/* Common Styles */
.floating-buttons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-buttons a img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* WhatsApp Button */
.float-whatsapp {
  background: #25d366;
}

/* Call Button */
.float-call {
  background: #81e70c;
}

/* Hover Effects */
.floating-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* Mobile Optimization */
@media (max-width: 600px) {
  .floating-buttons a {
    width: 48px;
    height: 48px;
  }

  .floating-buttons a img {
    width: 26px;
    height: 26px;
  }

  .floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
}

/* why */
/* Page container */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
}

/* Two column layout */
.cols {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
  padding: 20px;
}

/* Left column */
.left {
  padding-right: 10px;
}

h1.title {
  font-size: 42px;
  line-height: 1.05;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* accent horizontal line */
.accent-line {
  height: 6px;
  width: 72px;
  background: #80ff33; /* bright lime */
  border-radius: 4px;
  margin: 8px 0 18px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02) inset;
}

p.lead {
  color: #7b848a;
  font-size: 14px;
  max-width: 680px;
  margin-bottom: 28px;
}

/* Benefits list */
.benefits {
  display: grid;
  gap: 26px;
}

.benefit {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
}

.benefit .num {
  font-weight: 700;
  color: #111;
  font-size: 18px;
  opacity: 0.95;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e6e6e6;
  color: #222;
  background: #fff;
  box-shadow: 0 6px 18px rgba(3, 10, 25, 0.04);
}

.benefit h4 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #111;
}

.benefit p {
  color: #6d7478;
  font-size: 13px;
}

/* Right column: working hours card */
.hours-card {
  background: linear-gradient(180deg, #bfff4d, #8ef02e);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 8px 30px rgba(3, 10, 25, 0.06);
  color: #062a00;
  position: sticky;
  top: 28px;
}

.hours-card h3 {
  font-size: 26px;
  margin-bottom: 18px;
  text-align: center;
  font-weight: 700;
}

.hours-list {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.hours-list .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  color: #072900;
}

.hours-list .row + .row {
  margin-top: 6px;
}

/* small number styling on very left column (vertical order like in screenshot) */
/* (we used round number markers to emulate the visual) */

/* Responsive adjustments */
@media (max-width: 980px) {
  .cols {
    grid-template-columns: 1fr 320px;
    gap: 20px;
  }
  h1.title {
    font-size: 36px;
  }
  .hours-card {
    padding: 20px;
  }
}

@media (max-width: 720px) {
  .cols {
    grid-template-columns: 1fr;
  }
  .hours-card {
    position: relative;
    top: 0;
    margin-top: 20px;
  }
  .benefit {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }
  .benefit .num {
    height: 36px;
    width: 36px;
    font-size: 15px;
  }
  h1.title {
    font-size: 28px;
  }
  .accent-line {
    width: 56px;
    height: 5px;
  }
}

/* small aesthetic tweaks */
.benefit .num::before {
  content: "";
  display: block;
}

/* CALL US 24/7 */
 .call-hero {
    position: relative;
    min-height: 70vh;
    background: url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    margin: 40px auto;
    border-radius: 14px;
    max-width: 1200px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }

  /* Overlay */
  .call-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 14px;
    z-index: 0;
  }

  .call-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    max-width: 800px;
  }

  .call-content small {
    color: #ff3c3c;
    font-weight: 600;
    letter-spacing: 1px;
  }

  .call-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 12px 0 20px;
  }

  .call-content p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  /* Phone numbers */
  .phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .phone-numbers a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    background: rgba(0, 128, 0, 0.3);
    padding: 10px 22px;
    border-radius: 14px;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .phone-numbers a:hover {
    background: rgba(0, 128, 0, 0.5);
    transform: translateY(-3px);
  }

  .phone-numbers img {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(52%) sepia(80%) saturate(481%) hue-rotate(68deg) brightness(93%) contrast(92%);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .call-hero {
      min-height: 60vh;
      margin: 20px;
    }

    .call-content h2 {
      font-size: 1.8rem;
    }

    .call-content p {
      font-size: 0.95rem;
    }

    .phone-numbers a {
      font-size: 1rem;
      padding: 8px 18px;
    }
  }
