* {
  margin: 0;
  box-sizing: border-box;
}

:root {
  --text-yello: rgb(255, 193, 7);
}


header {
  padding: 20px 0px;
  background-color: rgba(0, 0, 0, 0.853);
  position: relative;
}

nav {
  position: absolute;
  top: 50px;

  background-color: rgb(255, 255, 255);
  border-radius: 10px;
}


.a-list li a {
  color: rgb(0, 0, 0);
}

.a-list li a:hover {
  color: var(--text-yello);
}


.nav-img img {
  height: 19px;

}

@media (min-width:375px) {
  .nav-img img {
    height: 30px;
  }

}

@media (min-width:768px) {
  .nav-img img {
    height: 40px;
  }

}

.activate {
  color: yellow;

}




.first-page {
  background: linear-gradient(rgba(0, 0, 0, 0.425), rgba(0, 0, 0, 0.436)), url(./imgs/taxi-sign-at-night.webp);
  width: 100%;
  max-height: 150vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.first-page-div {
  height: 90vh;

}


@media (max-width:575px) {
  .first-page img {
    width: 100%;
    max-width: 304px;
    height: auto;
    /* auto keeps aspect ratio */
  }


}

.first-page img {
  width: 404px;
  height: 505px;
}

.first-page h2 {
  font-size: 40px;
}

@media (min-width:768px) {
  .first-page h2 {
    font-size: 60px;
  }

}







/* Footer */



.main-content {
  flex-grow: 1;
  padding: 2rem;
  text-align: center;
}

footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: #f8c630;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #f8c630;
}

.address p {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.contact-info p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 10px;
  color: #f8c630;
  width: 20px;
}

.work-hours p {
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
}

.work-hours .days {
  flex: 1;
}

.work-hours .hours {
  flex: 1;
  text-align: right;
}

.newsletter p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  margin-bottom: 1.5rem;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.8rem 1rem;
  border: none;
  background-color: #2a2a2a;
  color: #fff;
  border-radius: 4px 0 0 4px;
  outline: none;
  width: 75%;
}

.newsletter-form button {
  background-color: #f8c630;
  color: #1a1a1a;
  border: none;
  padding: 0 1.2rem;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;

}

.newsletter-form button:hover {
  background-color: #e6b420;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.9rem;
  color: #aaa;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f8c630;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8c630;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}




/* Second form */


.booking-box {
  margin-top: -90px;
}

.booking-section {
  background-color: #f8f9fa;

}

.booking-section .form-control,
.booking-section .form-select {
  border-radius: 10px;
}

.booking-section button {
  transition: all 0.3s ease;
}

.booking-section button:hover {
  background-color: #e7b100;
}



.offer-section {
  padding: 80px 15px;
  text-align: center;
}

.offer-section h6 {
  color: #fbbc05;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offer-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
}

.offer-section h2 span {
  color: #fbbc05;
}

.offer-section p {
  color: #666;
  max-width: 700px;
  margin: 10px auto 50px;
  font-size: 1rem;
  line-height: 1.7;
}

.offer-card {
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offer-card:hover {
  transform: translateY(-8px);
}

.offer-icon {
  background: #fbbc05;
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.offer-card h5 {
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 1.25rem;
}

.offer-card p {
  margin: 0;
  font-size: 0.95rem;
}

/* Card Colors */
.offer-dark {
  background: #222;
  color: #fff;
}

.offer-dark p {
  color: #ddd;
}

.offer-yellow {
  background: #fbbc05;
  color: #000;
}

.offer-white {
  background: #fff;
  color: #000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.offer-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.offer-footer img {
  height: 25px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
}

.offer-footer span {
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 991px) {
  .offer-section h2 {
    font-size: 2rem;
  }

  .offer-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .offer-section h2 {
    font-size: 1.7rem;
  }

  .offer-section p {
    font-size: 0.95rem;
  }
}

@media (max-width: 575px) {
  .offer-card {
    text-align: center;
  }

  .offer-footer {
    justify-content: center;
  }

  .offer-icon {
    margin: 0 auto 10px;
  }

  .offer-footer img {
    height: 20px;
  }
}



.about-taxi {
  background-color: #fff;
}

@media (max-width: 767px) {
  .about-taxi h2 {
    font-size: 1.8rem;
  }

  .about-taxi img {
    width: 100%;
    height: auto;
  }

  .testimonial {
    margin-top: 1rem;
  }
}



section.taxi-rates {
  padding: 80px 0;
}

section.taxi-rates h2 {
  font-weight: 700;
  font-size: 2.5rem;
}

section.taxi-rates h2 span {
  color: #fbbf24;
}

section.taxi-rates p {
  color: #6b7280;
  max-width: 750px;
  margin: 0 auto 60px;
}

.rate-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.241), -2px -2px 15px rgba(0, 0, 0, 0.252);
  height: 100%;
}

.rate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.rate-card.premium {
  background: #1f1f1f;
  color: #fff;
}

.badge-label {
  position: absolute;
  top: -15px;
  left: 40px;
  background: #1f1f1f;
  color: #fbbf24;
  border-radius: 6px;
  padding: 6px 14px;
  font-weight: 600;
}

.premium .badge-label {
  background: #fbbf24;
  color: #1f1f1f;
}

.rate-card hr {
  opacity: 0.2;
  margin: 15px 0;
}

.rate-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.rate-card ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

.rate-card ul li strong {
  width: 150px;
  display: inline-block;
}

.btn-book {
  width: 100%;
  border-radius: 10px;
  font-weight: 600;
  padding: 12px;
}

.btn-dark {
  background: #1f1f1f;
}

.premium .btn-book {
  background: #fbbf24;
  color: #1f1f1f;
}

@media (max-width: 992px) {
  .rate-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  section.taxi-rates h2 {
    font-size: 1.8rem;
  }

  .badge-label {
    font-size: 13px;
    padding: 5px 12px;
  }

  .rate-card ul li strong {
    width: 120px;
  }
}


.rate-card {
  margin-top: -0px;
}





.services-section {
  padding: 80px 0;
  text-align: center;
}

.services-section h6 {
  color: #ffb400;
  font-weight: 600;
  margin-bottom: 10px;
}

.services-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.services-section p {
  color: #666;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 50px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: #222;
  color: #fff;
}

.service-card.active {
  background: #222;
  color: #fff;
}

.service-card .icon {
  background-color: #ffb400;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

.service-card.active .icon {
  background-color: #fff;
  color: #ffb400;
}

.service-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: inherit;
}

.service-card a {
  color: #ffb400;
  font-weight: 600;
  text-decoration: none;
}

.service-card.active a {
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .service-card {
    margin-bottom: 25px;
  }
}








/* Section */
.review-section {
  background: url('https://images.unsplash.com/photo-1522205408450-add114ad53fe?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
  padding: 100px 0;
  color: #fff;
  position: relative;
}

.review-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.review-section .container {
  position: relative;
  z-index: 1;
}

.review-section h6 {
  color: #ffb400;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.review-section h2 {
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 15px;
}

.review-section p {
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 15px;
}

/* Review Cards */
.review-card {
  background: #fff;
  color: #333;
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
}

.review-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.review-card .quote {
  color: #ffb400;
  font-size: 40px;
  margin-bottom: 20px;
}

.review-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.review-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.review-card span {
  color: #ffb400;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .review-card {
    margin-bottom: 25px;
  }

  .review-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .review-section {
    padding: 70px 0;
  }

  .review-card {
    padding: 30px 20px;
  }
}




.blog-section {
  padding: 80px 0;
}

.blog-title {
  font-size: 48px;
  font-weight: 700;
  color: #2c2c2c;
}

.blog-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.badge-custom {
  background-color: #f4b400;
  color: #000;
  border-radius: 8px;
  font-size: 14px;
  padding: 6px 12px;
  position: absolute;
  top: 15px;
  left: 15px;
}

.show-news-btn {
  background-color: #2b2b2b;
  color: #f4b400;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.show-news-btn:hover {
  background-color: #000;
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 32px;
  }

  .blog-card img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .blog-card img {
    height: 180px;
  }
}




.call-section {
  background-color: #f7b617;
  /* yellow */
  text-align: center;
  padding: 100px 20px;
  color: #222;
}

.call-section h2 {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 30px;
  line-height: 1.3;
}

.call-section p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.call-number {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  background-color: #222;
  color: #f7b617;
  padding: 5px 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.call-number:hover {
  background-color: #000;
  transform: scale(1.05);
}

.call-number i {
  color: #f7b617;
  border-radius: 8px;
  font-size: 1.5rem;
  padding: 10px;
}

@media (max-width: 768px) {
  .call-section h2 {
    font-size: 2rem;
  }

  .call-number {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .call-section {
    padding: 60px 15px;
  }

  .call-section h2 {
    font-size: 1.6rem;
  }

  .call-number {
    flex-direction: column;
    gap: 10px;
    font-size: 1.1rem;
  }

  .call-number i {
    font-size: 1.3rem;
  }
}


.call-number-text {
  font-size: 40px;
  font-weight: bold;
  margin-left: 10px;
}

.bg-about {
  background: linear-gradient(rgba(0, 0, 0, 0.525), rgba(0, 0, 0, 0.552)), url(./imgs/taxi.webp);
  background-repeat: no-repeat;
  background-size: cover;

  width: 100%;

  height: 80vh;
  margin-top: -150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;

}

.bg-about h1 {
  color: white;
  font-size: 55px;
  font-weight: bold;
  margin-top: 150px;
}

.bg-about p {
  font-size: 18px;
}






.box-about {
  padding: 80px;
}

.about-img {
  position: relative;
}

.about-img-1 img {
  width: 265px;
  height: 397px;
  position: absolute;
  z-index: 3;
  border-radius: 10px;
  border: 20px solid white;
  top: 140px;


}


.about-img-2 img {
  width: 321px;
  height: 483px;
  position: absolute;
  left: 200px;
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.sub-title {
  color: #f6b10a;
  font-weight: 600;
  margin-bottom: 10px;
}

.how-we-work h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.how-we-work h2 span {
  color: #f6b10a;
}

.description {
  color: #666;
  max-width: 700px;
  margin: 15px auto 50px;
  line-height: 1.6;
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed #ccc;
  z-index: 0;
}

.step {
  flex: 1 1 22%;
  min-width: 250px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.icon-box {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 32px;
  transition: all 0.3s ease;
}

.icon-box i {
  color: #f6b10a;
}

.icon-box.dark {
  background: #222;
  color: #f6b10a;
}

.icon-box.light {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.icon-box.yellow {
  background: #f6b10a;
  color: #fff;
}

.step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Hover Effect */
.step:hover .icon-box {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .steps::before {
    display: none;
  }

  .step {
    flex: 1 1 100%;
    margin-bottom: 40px;
  }
}

/* Contact Page Styles */
.bg-contact {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(./imgs/taxi-sign-at-night.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  margin-top: -100px;
  /* Pull up behind header if needed, similar to home */
  padding-top: 100px;
}

.bg-contact h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.bg-contact p {
  font-size: 1.1rem;
  color: #ddd;
}

.contact-section {
  padding: 100px 0;
  background-color: #fff;
}

.contact-info-wrapper {
  padding-right: 2rem;
}

.icon-box-contact {
  width: 60px;
  height: 60px;
  background-color: #fbbc05;
  color: #000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-form-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-card .form-control {
  background-color: #f8f9fa;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 1rem;
}

.contact-form-card .form-control:focus {
  background-color: #fff;
  border-color: #fbbc05;
  box-shadow: none;
}

.contact-form-card .form-floating label {
  padding: 1rem;
}

.contact-form-card textarea {
  resize: none;
}

.map-container iframe {
  filter: grayscale(100%) invert(92%) contrast(83%);
}

@media (max-width: 991px) {
  .contact-info-wrapper {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .bg-contact {
    height: 50vh;
  }

  .bg-contact h1 {
    font-size: 2.5rem;
  }
}

/* Service Page Styles */
.bg-service {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(./imgs/taxi-sign-at-night.webp);
  /* Reusing image or use a new one if available */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  margin-top: -100px;
  padding-top: 100px;
}

.bg-service p {
  font-size: 1.1rem;
  color: #ddd;
}

@media (max-width: 991px) {
  .bg-service {
    height: 50vh;
  }

  .bg-service h1 {
    font-size: 2.5rem;
  }
}

/* Gallery Page Styles */
.bg-gallery {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(./imgs/taxi-car-on-the-city-street.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  margin-top: -100px;
  padding-top: 100px;
}

.bg-gallery h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.bg-gallery p {
  font-size: 1.1rem;
  color: #ddd;
}

@media (max-width: 991px) {
  .bg-gallery {
    height: 50vh;
  }

  .bg-gallery h1 {
    font-size: 2.5rem;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .text {
  text-align: center;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .text {
  transform: translateY(0);
}

.gallery-item .text h5 {
  font-weight: 700;
  color: #fbbc05;
  margin-bottom: 5px;
}

.gallery-item .text p {
  font-size: 0.9rem;
  margin: 0;
}