/* ============================================================
   TAXI25 — FULL THEME CSS (Premium Edition)
   ============================================================ */

/* ===== TOP BAR ===== */
.header-topbar {
  background: linear-gradient(90deg, #0F245A 0%, #1a3578 100%);
  border-bottom: none;
  padding: 5px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.header-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
}
.topbar-item i {
  font-size: 12px;
  color: var(--primary);
}
.topbar-item a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: color 0.3s;
}
.topbar-item a:hover { color: var(--primary); }
.topbar-item span { color: rgba(255,255,255,0.85); }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-social {
  display: flex;
  gap: 2px;
}
.topbar-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 13px;
  border-radius: 50%;
  transition: all 0.3s;
}
.topbar-social a:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-2px);
}

/* ===== MAIN HEADER ===== */
.header-main {
  background: #fff;
  padding: 5px 0;
  position: relative;
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.header-main.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  animation: fadeIn 0.3s;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.97);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-logo a {
  display: flex;
  align-items: center;
}
.header-logo img {
  height: 48px;
  width: auto;
}
.site-title-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.5px;
}

/* Nav Menu */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a {
  display: block;
  padding: 26px 20px;
  color: var(--heading);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
  position: relative;
}
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after {
  transform: scaleX(1);
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
  color: var(--primary);
}
/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  border-top: 3px solid var(--primary);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  z-index: 99;
}
.nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .sub-menu li a {
  display: block;
  padding: 10px 22px;
  color: #444;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}
.nav-menu .sub-menu li a:hover {
  color: var(--primary);
  background: var(--primary-light);
  padding-left: 28px;
}
/* Nested sub-menu */
.nav-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-phone {
  text-align: right;
}
.phone-label {
  font-size: 12px;
  color: #888;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.phone-number {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  transition: color 0.3s;
}
.phone-number:hover { color: var(--primary); }

.btn-book-taxi {
  display: inline-block;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, #F5A623 100%);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(253,185,0,0.3);
}
.btn-book-taxi:hover {
  background: linear-gradient(135deg, #F5A623 0%, #e09500 100%);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(253,185,0,0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--heading);
  padding: 8px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 999;
  overflow-y: auto;
  transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
  padding: 20px 0;
  box-shadow: 10px 0 40px rgba(0,0,0,0.15);
}
.mobile-menu.open { left: 0; }
.mobile-close {
  position: absolute;
  top: 15px; right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--heading);
}
.mobile-nav-menu {
  padding: 50px 20px 20px;
}
.mobile-nav-menu li {
  border-bottom: 1px solid #f0f0f0;
}
.mobile-nav-menu li a {
  display: block;
  padding: 14px 0;
  color: var(--heading);
  font-weight: 600;
  font-size: 15px;
}
.mobile-nav-menu li a:hover { color: var(--primary); }
.mobile-nav-menu .sub-menu {
  padding-left: 15px;
  display: none;
}
.mobile-nav-menu li.open > .sub-menu { display: block; }

/* ===== HERO BANNER ===== */
.hero-banner {
  position: relative;
  background: url('../images/taxi-ngai-giao.jpg') center center / cover no-repeat;
  padding: 180px 0 200px;
  overflow: hidden;
  min-height: 620px;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,30,74,0.75) 0%, rgba(6,18,46,0.6) 50%, rgba(2,8,16,0.7) 100%);
}
.hero-banner .container { position: relative; z-index: 2; }
.hero-content { text-align: center; }
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: fadeInUp 0.8s ease-out;
}
.hero-title {
  font-size: 110px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 35px;
  letter-spacing: -3px;
  background: linear-gradient(135deg, #fff 0%, #FDB900 50%, #fff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.2s both;
}


/* ===== CONTACT BAR ===== */
.contact-bar {
  position: relative;
  z-index: 5;
  margin-top: -100px;
  padding-bottom: 60px;
}
.contact-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 35px 30px;
  background: #fff;
  border: 1px solid #eee;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.contact-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.contact-card:hover::after {
  opacity: 1;
}
.contact-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), rgba(253,185,0,0.05));
  border: 2px solid var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  transition: all 0.3s;
}
.contact-card:hover .contact-icon {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  transform: scale(1.05);
}
.contact-label {
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.contact-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  display: block;
}
a.contact-value:hover { color: var(--primary); }

/* ===== SERVICES SECTION ===== */
.services-section {
  background: #fff;
  background-size: 55% auto;
  background-repeat: repeat-y;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 30px;
}
.service-card {
  text-align: center;
  padding: 50px 30px;
  border: 1px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  background: #fff;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #F5A623);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: transparent;
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(253,185,0,0.15), rgba(253,185,0,0.05));
  color: var(--primary);
  font-size: 30px;
  margin-bottom: 22px;
  transition: all 0.35s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), #F5A623);
  color: #000;
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow);
}
.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}
.service-card p {
  color: var(--text);
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
}
.services-footer {
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 10px;
}
.services-footer a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.services-footer a:hover {
  color: var(--primary-dark);
}

/* ===== COUNTERS ===== */
.counters-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg2) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.counters-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(253,185,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
.counter-item {
  text-align: center;
  padding: 45px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s;
  background: rgba(255,255,255,0.03);
}
.counter-item:hover {
  border-color: rgba(253,185,0,0.3);
  background: rgba(253,185,0,0.05);
  transform: translateY(-5px);
}
.counter-icon {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 18px;
}
.counter-num {
  font-size: 50px;
  font-weight: 800;
  color: #fff;
  display: inline;
  font-family: 'Inter', sans-serif;
}
.counter-suffix {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
}
.counter-label {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
}

/* ===== DRIVERS ===== */
.drivers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.driver-card {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s;
}
.driver-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.driver-image {
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.driver-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.driver-card:hover .driver-image img {
  transform: scale(1.08);
}
.driver-info {
  padding: 22px 15px;
  text-align: center;
}
.driver-info h4 {
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 700;
}
.driver-info p {
  color: #888;
  font-size: 14px;
  margin-bottom: 12px;
}
.driver-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.driver-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s;
}
.driver-social a:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(253,185,0,0.3);
}

/* ===== DOWNLOAD APP ===== */
.app-section {
  padding: 0;
}
.app-card {
  display: grid;
  grid-template-columns: 55% 45%;
  background: linear-gradient(135deg, #0a1e4a 0%, #06122e 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.app-card::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(253,185,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.app-content {
  padding: 90px 60px;
  position: relative;
  z-index: 2;
}
.app-store-buttons {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  flex-wrap: wrap;
}
.app-dl-btn {
  transition: all 0.3s;
  display: inline-block;
}
.app-dl-btn:hover {
  transform: translateY(-3px);
}
.app-dl-btn img {
  height: 49px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
}
.app-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.app-image img {
  max-width: 100%;
  max-height: 400px;
}

/* ===== PROCESS / HOW IT WORKS ===== */
.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}
.process-grid {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  flex: 0 0 280px;
  text-align: center;
  padding: 35px 25px;
  position: relative;
  transition: transform 0.3s;
}
.process-step:hover {
  transform: translateY(-5px);
}
.process-step.step-up {
  margin-top: 35px;
}
.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(253,185,0,0.15), rgba(253,185,0,0.05));
  color: var(--primary);
  font-size: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.35s;
}
.process-step:hover .step-icon {
  background: linear-gradient(135deg, var(--primary), #F5A623);
  color: #000;
  box-shadow: var(--shadow-glow);
  transform: scale(1.1);
}
.step-number {
  display: block;
  font-size: 13px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.process-step h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}
.process-step p {
  font-size: 14px;
  color: var(--text);
  margin: 0;
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(180deg, var(--light-bg) 0%, #fff 100%);
}
.testimonial-card {
  background: #fff;
  padding: 35px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all 0.35s;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 60px;
  font-family: serif;
  color: var(--primary-light);
  line-height: 1;
  opacity: 0.6;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.testimonial-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.t-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}
.t-rating {
  color: var(--primary);
  font-size: 13px;
  display: flex;
  gap: 2px;
}
.t-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
}
.t-author strong {
  display: block;
  font-size: 16px;
  color: var(--heading);
  font-weight: 700;
}
.t-author span {
  font-size: 13px;
  color: #999;
}

/* Swiper dots */
.testimonial-slider .swiper-pagination {
  margin-top: 35px;
  position: relative;
}
.testimonial-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  border-radius: 10px;
  transition: all 0.3s;
}
.testimonial-slider .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 30px;
  border-radius: 10px;
}

/* ===== BLOG ===== */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid rgba(0,0,0,0.04);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.blog-image {
  position: relative;
  overflow: hidden;
}
.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.blog-card:hover .blog-image img {
  transform: scale(1.08);
}
.blog-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--primary), #F5A623);
  color: #000;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-content {
  padding: 25px;
}
.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #999;
}
.blog-meta i { margin-right: 4px; color: var(--primary); }
.blog-content h4 {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.45;
  font-weight: 700;
}
.blog-content h4 a {
  color: var(--heading);
  transition: color 0.3s;
}
.blog-content h4 a:hover { color: var(--primary); }
.read-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.read-more i { font-size: 11px; transition: transform 0.3s; }
.read-more:hover i { transform: translateX(5px); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #FDB900 0%, #F5A623 50%, #e09500 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,0,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-image img {
  max-width: 100%;
  border-radius: 0 160px 160px 0;
  filter: saturate(0);
  transition: filter 0.5s;
}
.cta-image:hover img {
  filter: saturate(1);
}
.cta-content {
  padding: 60px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  color: #aaa;
  padding: 80px 0 0;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #F5A623, var(--primary));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}
.footer-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 3px;
}
.footer-col p {
  font-size: 15px;
  line-height: 1.8;
  color: #888;
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.35s;
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-social a:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(253,185,0,0.3);
}
.footer-col ul li {
  padding: 7px 0;
}
.footer-col ul li a {
  color: #888;
  font-size: 15px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}
.footer-col ul li a:hover {
  color: var(--primary);
}
.footer-col ul li a:hover::before {
  width: 15px;
}

.working-hours li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: #888;
}
.footer-support {
  margin-top: 25px;
  padding: 20px;
  background: rgba(253,185,0,0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(253,185,0,0.1);
}
.support-label {
  font-size: 12px;
  color: #888;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.support-phone {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  margin-top: 50px;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, #0a1e4a 0%, #06122e 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #F5A623, var(--primary));
}
.page-banner-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}
.page-banner-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.page-banner-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-banner-meta i {
  color: var(--primary);
}
.page-banner-meta a {
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
.page-banner-meta a:hover {
  color: var(--primary);
}

/* ===== PAGE CONTENT ===== */
.page-content-wrap,
.single-content-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.page-article,
.single-article {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.single-featured-image {
  margin: -40px -40px 30px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
}
.single-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
.entry-content {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
}
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--heading);
  margin-top: 30px;
  margin-bottom: 15px;
}
.entry-content p {
  margin-bottom: 18px;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 10px 0;
}
.entry-content a {
  color: var(--primary-dark);
  text-decoration: underline;
  transition: color 0.3s;
}
.entry-content a:hover {
  color: var(--primary);
}
.entry-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 15px 25px;
  margin: 20px 0;
  background: var(--primary-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: #555;
}

/* Single post tags */
.single-tags {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #777;
}
.single-tags i {
  color: var(--primary);
  margin-right: 8px;
}
.single-tags a {
  color: #555;
  transition: color 0.3s;
}
.single-tags a:hover {
  color: var(--primary);
}

/* Single post navigation */
.single-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}
.single-navigation a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  color: var(--heading);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  max-width: 48%;
}
.single-navigation a:hover {
  color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.nav-next {
  margin-left: auto;
  text-align: right;
}

/* ===== CATEGORY / ARCHIVE GRID ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.category-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid rgba(0,0,0,0.04);
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.category-card-image {
  display: block;
  overflow: hidden;
}
.category-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.category-card:hover .category-card-image img {
  transform: scale(1.08);
}
.category-card-body {
  padding: 25px;
}
.category-card-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #999;
}
.category-card-meta i {
  margin-right: 4px;
  color: var(--primary);
}
.category-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.45;
}
.category-card-title a {
  color: var(--heading);
  transition: color 0.3s;
}
.category-card-title a:hover {
  color: var(--primary);
}
.category-card-excerpt {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Archive Pagination */
.archive-pagination {
  margin-top: 40px;
  text-align: center;
}
.archive-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--heading);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  text-decoration: none;
}
.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background: linear-gradient(135deg, var(--primary), #F5A623);
  color: #000;
  box-shadow: var(--shadow-glow);
}

/* ===== ABOUT TABS ===== */
.about-tabs-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  border-bottom: 2px solid #eee;
  padding-bottom: 0;
}
.about-tab-btn {
  padding: 14px 28px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: #777;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: -2px;
}
.about-tab-btn:hover {
  color: var(--heading);
}
.about-tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.about-tab-panel {
  display: none;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.about-tab-panel.active {
  display: block;
  animation: fadeInUp 0.4s ease-out;
}

/* ===== CLIENT LOGOS ===== */
.clients-wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.client-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.client-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s;
  border: 1px solid rgba(0,0,0,0.04);
}
.client-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.client-item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.35s;
}
.client-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-title { font-size: 80px; }
  .hero-banner { padding: 120px 0 180px; }
  .contact-bar { margin-top: -80px; }
  .section-heading .title { font-size: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .drivers-grid { grid-template-columns: repeat(2, 1fr); }
  .app-card { grid-template-columns: 1fr; }
  .app-content { padding: 50px 30px; }
  .app-image { display: none; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-banner-title { font-size: 32px; }
  .page-article, .single-article { padding: 30px; }
  .single-featured-image { margin: -30px -30px 25px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }

  /* Header responsive */
  .header-nav { display: none; }
  .header-phone { display: none; }
  .btn-book-taxi { display: none; }
  .mobile-toggle { display: block; }
  .topbar-left { display: none; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 50px; letter-spacing: -1px; }
  .hero-banner { padding: 80px 0 150px; }
  .contact-bar { margin-top: -60px; }
  .contact-bar-grid { grid-template-columns: 1fr; }
  .section-heading .title { font-size: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item { border-radius: var(--radius-md); }
  .drivers-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { flex-direction: column; align-items: center; }
  .process-step.step-up { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-banner { padding: 80px 0 40px; }
  .page-banner-title { font-size: 26px; }
  .page-article, .single-article { padding: 20px; }
  .single-featured-image { margin: -20px -20px 20px; }
  .single-navigation { flex-direction: column; }
  .single-navigation a { max-width: 100%; }
  .category-grid { grid-template-columns: 1fr; }
  .client-logos { grid-template-columns: repeat(2, 1fr); }
  .about-tab-btn { padding: 10px 18px; font-size: 14px; }
  .about-tab-panel { padding: 25px; }
  .section-padding { padding: 70px 0; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .blog-header { flex-direction: column; align-items: flex-start; }
  .process-header { flex-direction: column; align-items: flex-start; }
  .cta-content { padding: 40px 25px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .drivers-grid { grid-template-columns: 1fr; }
  .section-heading .sub-title { font-size: 13px; letter-spacing: 1.5px; }
  .btn-primary { padding: 13px 28px; font-size: 14px; }
  .client-logos { grid-template-columns: 1fr; }
}

