/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #FFFFFF; /* white text */
  background-color: #000000; /* black background */
}

a {
  text-decoration: none;
  color: inherit;
}


.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  z-index: 1000;
}


.navbar.shrink {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15); /* slightly less transparent */
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  position: static;
  background: transparent;
}

.nav-links a {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 8px;
  color: white;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.logo-img {
  max-height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1);
}


.hamburger {
  display: none;
}



.nav-links a:hover {
  color: #fff; /* white on hover */
}



.call-btn {
  background: #16202c;
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

/* Hover effect remains the same */
.call-btn:hover {
  background-color: #b9982a;
  color: #fff;
}



/* Hero */
.hero {
  background: url('../images/taxi-image.png') no-repeat center center/cover;
  color: #FFFFFF;
  text-align: center;
  padding: 350px 20px 80px;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background-color: #16202c; /* gold */
  color: #000; /* black text for contrast */
  padding: 12px 24px;
  margin:10px;
  display: inline-block;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  
}
.btn-primary:hover,
.call-btn:hover {
  background-color: #b9982a; /* darker gold on hover */
  color: #fff;
}


/* Features */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  background: #222222; /* dark grey cards */
  color: white; /* gold headings */
}
.feature {
  flex: 1 1 200px;
  max-width: 300px;
  margin: 10px;
  padding: 20px;
  background: #222222; /* dark grey cards */
  color: white; /* gold headings */
  border-radius: 8px;
}
/*How It Works*/
.how-it-works {
  background-color: #000; /* black background */
  color: #fff;
  padding: 60px 20px;
  
}
.how-title {
  text-align: center;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 40px;
}

.how-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.how-image {
  flex: 1 1 45%;
  padding: 20px;
  text-align: center;
}

.how-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  align-self: center;
}

.how-steps {
  flex: 1 1 50%;
  padding: 20px;
}

.how-steps h2 {
  font-size: 2rem;
  color: #16202c; /* gold */
  margin-bottom: 20px;
  text-align: center;
}

.steps {
 display: flex;
 flex-direction: row;
 gap: 20px;
}


.step {
  background: #111;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid white;
}

.step h3 {
  color: #16202c;
  margin-bottom: 5px;
}

.how-steps .steps .step img {
  max-width: 220px !important;
  height: auto !important;
  align-items: center;
}


@keyframes slideInHeader {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}


  .how-wrapper {
    flex-direction: column;
  }
  .how-image, .how-steps {
    flex: 1 1 100%;
    text-align: center;
  }


.how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step {
  flex: 1 1 250px;
  max-width: 300px;
  background: #222222;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step img {
  height: 60px;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: white
}

/* Quotes */
.quotes {
  overflow: hidden;
  background-color: #000;
  padding: 30px 0;
  position: relative;
  width: 100%;
  white-space: nowrap;
}

.quotes-track {
  display: flex;
  animation: scroll-left 25s linear infinite;
  gap: 60px;
}

.quotes blockquote {
  font-size: 1.5rem;
  font-weight: 700;
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
  white-space: nowrap;
}




/* Rates */
.rates {
  padding: 40px 20px;
}
.rate-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.rate-card {
  padding: 20px;
  border: 1px solid #ddd;
  text-align: center;
  border-radius: 8px;
}

/* Call to Action */
.call-to-action {
  background-color: #111; /* rich black */
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-top: 2px solid #D4AF37;
  border-bottom: 2px solid #D4AF37;
}

.call-to-action h2 {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: white;
  margin-bottom: 15px;
}

.call-to-action p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #ccc;
}
 


/* General Button Styling */
.btn-primary{
  background-color: #1c2a3a; /* Dark smoky grey */
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
 
}

.call-btn {
  background-color: #1c2a3a; /* Dark smoky grey */
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
 
}

  .nav-links.show {
    display: flex;
  }

  .call-btn {
    display: none;
  }



/* Hover Effect */
.btn-primary:hover,
.call-btn:hover {
  background-color: #16202c; /* Slightly darker on hover */
  transform: translateY(-2px);
}

/* Optional: Add some polish to links styled as buttons */
a.btn-primary {
  text-decoration: none;
  display: inline-block;
}

  


/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111111;
  color: #666666; /* grey text */
  font-size: 0.85rem;
  position: relative;
}


@keyframes slideInHeader {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.byline {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 10px;
}

.byline a {
  color: #D4AF37;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.byline a:hover {
  opacity: 0.8;
}
.steps {
  flex-direction: column;
  align-items: center;
}


/* Slide-In Nav for Mobile */
@media (max-width: 768px) {
    .navbar {
    flex-direction: column;
    align-items: flex-start; /* or center depending on design */
    gap: 10px;
  }
  .nav-links {
    display: none; /* Hide nav links by default */
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 128, 0.95); /* transparent navy */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 10px 0;
    z-index: 999;
  }

  .nav-links.show {
    display: flex; /* Only show when 'show' class is added */
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
    text-align: center;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .call-btn a{
    font-size: 0.9rem;
    padding: 12px 10px;
    width: 100%;
    text-align: center;
    display: block;
    margin: 10px auto;
  }
  .hamburger {
  display: none;
}

}



@media (min-width: 768px) {

  .steps {
    flex-direction: row; /* row layout for desktop */
    justify-content: space-between;
    align-items: flex-start;
  }

  .step {
    flex: 1;
    max-width: 30%; /* optional: controls width of each step*/ 
  }
  /* Base styles */
  .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.call-wrapper {
  margin-left: auto;
}
.call-btn {
    display: inline-block;
  }

/* Hamburger base style */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

}

/* MOBILE: show hamburger, hide nav links by default */
@media (max-width: 767px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }
  /* .call-wrapper {*/
    /*display: none; /* hide phone button on mobile if needed */
  /*}*/
}
