/* East Midlands Airport Taxi Premium Styles */

:root {
  --brand-yellow: #fac83a;
  --brand-yellow-hover: #e0b02d;
  --dark-color: #111111;
  --dark-strip: #222222;
  --text-color: #333333;
  --light-bg: #f9f9f9;
  --white: #ffffff;
  --border-color: #eeeeee;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
.section-title,
.section-subtitle {
  font-family: 'Graphik-Bold', sans-serif;
  color: var(--dark-color);
}

.section-title {
  font-size: 36px;
  margin-bottom: 10px;
  position: relative;
  text-transform: capitalize;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  font-family: 'Graphik-Regular', sans-serif;
  margin-bottom: 30px;
  font-weight: normal;
}

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

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

.text-white {
  color: var(--white) !important;
}

/* Margins & Paddings */
.margin-top-sm {
  margin-top: 15px;
}

.margin-top-md {
  margin-top: 30px;
}

.margin-top-lg {
  margin-top: 50px;
}

.padding-left-large {
  padding-left: 40px;
}

.padding-right-large {
  padding-right: 40px;
}

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

.bg-light {
  background-color: var(--light-bg);
}

.bg-dark {
  background-color: var(--dark-color);
}

.bg-brand {
  background-color: var(--brand-yellow);
}

.bg-dark-strip {
  background-color: var(--dark-strip);
}

/* Buttons */
.premium-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: 'Graphik-Semibold', sans-serif;
  transition: all 0.3s ease;
  font-weight: bold;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.primary-btn {
  background-color: var(--brand-yellow);
  color: var(--dark-color);
}

.primary-btn:hover {
  background-color: var(--dark-color);
  color: var(--brand-yellow);
}

.secondary-btn.ghost-btn {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.secondary-btn.ghost-btn:hover {
  background-color: var(--white);
  color: var(--dark-color);
}

.cta-btn-dark {
  background-color: var(--dark-color);
  color: var(--brand-yellow);
  margin: 0 10px;
}

.cta-btn-dark:hover {
  background-color: var(--white);
  color: var(--dark-color);
}

/* Flex & Grid layouts */
.row {
  display: flex;
  flex-wrap: wrap;
}

.align-center {
  align-items: center;
}

.col-half {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.grid-layout {
  display: grid;
  gap: 30px;
}

.four-cols {
  grid-template-columns: repeat(4, 1fr);
}

.five-cols {
  grid-template-columns: repeat(5, 1fr);
}

/* Premium Hero Carousel specific styling */
.premium-hero-carousel .item {
  position: relative;
  height: 600px;
}

.premium-hero-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.premium-slide-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  max-width: 800px;
}

.premium-slide-content h1 {
  font-size: 56px;
  color: var(--brand-yellow);
  text-shadow: none;
  line-height: 1.1;
  margin-bottom: 20px;
}

.premium-slide-content .subheadline {
  font-size: 20px;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.hero-trust {
  font-size: 14px;
  color: #dddddd;
  letter-spacing: 1px;
}

/* SEO Intro */
.seo-intro h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--dark-color);
}

.seo-text-block p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

.highlight-text {
  font-family: 'Graphik-Semibold', sans-serif;
  color: var(--dark-color);
}

.helpful-links {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-top: 30px;
}

.helpful-links p {
  font-size: 14px;
  color: #777;
  margin-bottom: 5px;
}

/* Specific Shared Image Styles */
.premium-img-rounded {
  width: 100%;
  border-radius: 8px;
  padding: 0 !important;
  display: block;
  margin: 0;
}

.shadow-large {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us Cards */
.icon-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.icon-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 40px;
  color: var(--brand-yellow);
  margin-bottom: 15px;
}

.icon-card h4 {
  font-size: 18px;
  margin-bottom: 0;
}

/* Services Overview */
.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.shadow-hover:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.service-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff8e1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon-wrap i {
  font-size: 30px;
  color: var(--brand-yellow);
}

.service-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
}

.premium-text-link {
  color: var(--dark-color);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

.premium-text-link i {
  margin-left: 5px;
  transition: margin 0.3s ease;
  color: var(--brand-yellow);
}

.premium-text-link:hover i {
  margin-left: 10px;
}

/* Fleet Section */
.modern-fleet-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin: 5px 8px; /* Reduced gap between slides */
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
}

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

.fleet-img-wrap {
  background: #f4f5f7;
  padding: 35px 20px 25px 20px;
  border-bottom: none;
  text-align: center;
}

.modern-fleet-card img {
  width: 100%;
  height: 140px;
  object-fit: contain !important;
  padding: 0 !important;
  display: block;
  margin: 0 auto;
}

.modern-fleet-details {
  padding: 25px 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-category {
  font-size: 13px;
  font-family: 'Graphik-Semibold', sans-serif;
  color: #fbbc05;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-weight: bold;
  display: block;
}

.modern-fleet-details h4 {
  font-size: 26px;
  color: #2c3546;
  font-family: 'Graphik-Bold', sans-serif;
  margin-bottom: 12px;
  border: none;
  padding: 0;
  display: block;
}

.modern-fleet-details p {
  color: #616b7e;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  font-family: 'Graphik-Regular', sans-serif;
}

.fleet-capacity-icons {
  display: flex;
  gap: 20px;
  color: #616b7e;
  font-size: 16px;
  margin-top: auto;
  font-weight: 500;
}

.fleet-capacity-icons span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fleet-capacity-icons svg {
  color: #616b7e;
  stroke: currentColor;
}

/* Meet & Greet */
.premium-list li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
}

.premium-list i {
  color: var(--brand-yellow);
  margin-right: 10px;
  font-size: 18px;
}

/* Corporate */
.corporate-content {
  max-width: 800px;
  margin: 0 auto;
}

.section-body {
  font-size: 18px;
  line-height: 1.8;
  color: #ddd;
}

/* Coverage Areas */
.route-card {
  background: var(--light-bg);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.hover-lift:hover {
  background: var(--brand-yellow);
  transform: translateY(-5px);
  border-color: var(--brand-yellow);
}

.route-card h4 {
  margin: 0;
  font-size: 16px;
}

/* Trust Grid */
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.trust-badge {
  background: var(--white);
  border-radius: 8px;
  padding: 25px;
  width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.trust-badge>i {
  font-size: 30px;
  color: var(--brand-yellow);
  margin-bottom: 15px;
  display: block;
}

.trust-badge .stars-container i {
  display: inline-block;
  font-size: 20px;
  color: #f5b50a;
  margin: 0 2px;
}

.trust-badge h4 {
  font-size: 15px;
  line-height: 1.4;
  margin-top: 15px;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 10px;
}

.faq-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 0;
  color: var(--dark-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle:hover {
  color: var(--brand-yellow);
}

.faq-content {
  display: none;
  padding: 0 0 20px 0;
  color: #555;
  line-height: 1.6;
}

/* Contact Strip */
.contact-strip {
  padding: 20px 0;
  font-size: 14px;
}

.contact-strip-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

.contact-strip-grid>div {
  margin: 5px 15px;
}

.contact-strip a {
  color: var(--white);
}

.contact-strip a:hover {
  color: var(--brand-yellow);
}

.brand-color {
  color: var(--brand-yellow);
  margin-right: 5px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .four-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .five-cols {
    grid-template-columns: repeat(3, 1fr);
  }

  .col-half {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .padding-left-large,
  .padding-right-large {
    padding: 0;
  }

  .premium-slide-content h1 {
    font-size: 36px;
  }

  .premium-slide-content .subheadline {
    font-size: 16px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .contact-strip-grid {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

  .cta-buttons a {
    display: block;
    margin: 10px auto;
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 767px) {

  .four-cols,
  .five-cols {
    grid-template-columns: 1fr;
  }

  .premium-hero-carousel .banner-Left {
    top: 50%;
    transform: translateY(-50%);
    width: 90%;
    left: 5%;
    float: none;
    position: absolute;
  }

  .premium-hero-carousel .item {
    height: 60vh;
  }
}

.navigation ul li a {
  cursor: pointer;
}

/* Equal Height Fleet */
.fleet-carousel .owl-stage {
  display: flex;
}

.fleet-carousel .owl-item {
  display: flex;
}

/* Coverage Areas Images Grid */
.custom-route-card {
  background: var(--brand-yellow);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  border: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.route-img {
  width: 100%;
  height: 160px;
  object-fit: cover !important;
  border-radius: 8px;
  padding: 0 !important;
  margin: 0;
  display: block;
}

.route-bottom {
  background: transparent;
  padding: 15px 0 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.route-code,
.route-city {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.route-arrows {
  color: #111;
  font-size: 16px;
  margin: 0 5px;
  display: inline-block;
  vertical-align: middle;
}

/* Floating contact */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  text-decoration: none;
}

.float-btn i {
  color: #fff;
  margin: 0;
  line-height: 60px;
}

.float-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.float-wa {
  background: #25D366;
}

.float-phone {
  background: #ce9c00;
}

.float-email {
  background: #0b458b;
}

/* Owl Carousel Animations */
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

.owl-carousel .fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/* .p-top {
  padding-top: 60px !important;
} */