/*
Theme Name: TAXIQO
Theme URI: https://taxiqo.com
Author: TAXIQO Team
Author URI: https://taxiqo.com
Description: A modern, conversion-centric WordPress theme for programmatic SEO/AEO taxi and airport transfer landing pages. Features include structured data, answer-first content blocks, and mobile-first responsive design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: taxiqo
Tags: travel, business, seo, custom-post-types, translation-ready, rtl-language-support, block-editor-ready

TAXIQO is a production-grade WordPress theme designed for scalable taxi and airport transfer service websites.
*/

/* CSS Variables */
:root {
  --taxiqo-primary: #0B2D5B;
  --taxiqo-ink: #0F1A2B;
  --taxiqo-accent: #FFC107;
  --taxiqo-sky: #F5F7FB;
  --taxiqo-success: #1DB954;
  --taxiqo-error: #E53935;
  --taxiqo-white: #FFFFFF;
  --taxiqo-border: #E5E7EB;
  --taxiqo-text-secondary: #64748B;
  
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--taxiqo-ink);
  background-color: var(--taxiqo-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--taxiqo-ink);
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.25rem; font-weight: 600; }
h3 { font-size: 1.75rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
}

p {
  margin-bottom: 1rem;
  color: var(--taxiqo-ink);
}

a {
  color: var(--taxiqo-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--taxiqo-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
.site-header {
  background: var(--taxiqo-white);
  border-bottom: 1px solid var(--taxiqo-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--taxiqo-primary);
}

.site-logo img {
  max-height: 50px;
  width: auto;
}

/* Navigation */
.main-navigation {
  display: none;
}

@media (min-width: 768px) {
  .main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  
  .main-navigation a {
    color: var(--taxiqo-ink);
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  .main-navigation a:hover {
    color: var(--taxiqo-accent);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--taxiqo-accent);
  color: var(--taxiqo-ink);
  border-color: var(--taxiqo-accent);
}

.btn-primary:hover {
  background-color: #FFD54F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
  color: var(--taxiqo-ink);
}

.btn-secondary {
  background-color: transparent;
  color: var(--taxiqo-primary);
  border-color: var(--taxiqo-primary);
}

.btn-secondary:hover {
  background-color: var(--taxiqo-primary);
  color: var(--taxiqo-white);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--taxiqo-primary) 0%, #1a4d8f 100%);
  color: var(--taxiqo-white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(11, 45, 91, 0.85) 0%, rgba(26, 77, 143, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-content .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--taxiqo-white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.country-selector-wrapper {
  width: 100%;
  max-width: 300px;
}

.country-selector {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--taxiqo-white);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.country-selector:focus {
  outline: none;
  border-color: var(--taxiqo-accent);
  background: rgba(255, 255, 255, 0.15);
}

.country-selector option {
  color: var(--taxiqo-ink);
  background: var(--taxiqo-white);
}

@media (min-width: 768px) {
  .hero-section {
    padding: 6rem 0;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-actions {
    flex-wrap: nowrap;
  }
  
  .country-selector-wrapper {
    max-width: 350px;
  }
}

/* Answer Block (AEO) */
.answer-block {
  background: var(--taxiqo-sky);
  border-left: 4px solid var(--taxiqo-accent);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.answer-block .speakable {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--taxiqo-ink);
}

/* Cards */
.card {
  background: var(--taxiqo-white);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card h3 {
  color: var(--taxiqo-primary);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--taxiqo-text-secondary);
  margin-bottom: 0;
}

/* Card Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
  }
}

/* Destinations Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.destination-card {
  background: var(--taxiqo-white);
  border: 1px solid var(--taxiqo-border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--taxiqo-ink);
}

.destination-card:hover {
  border-color: var(--taxiqo-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: var(--taxiqo-ink);
}

.destination-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--taxiqo-primary);
}

.destination-card .meta {
  font-size: 0.875rem;
  color: var(--taxiqo-text-secondary);
}

/* FAQ Section */
.faq-section {
  background: var(--taxiqo-white);
  padding: 4rem 0;
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-section .section-title {
  color: var(--taxiqo-primary);
  margin-bottom: 1rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--taxiqo-white);
  border: 1px solid var(--taxiqo-border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.faq-item:hover {
  border-color: var(--taxiqo-accent);
}

.faq-item.is-open {
  border-color: var(--taxiqo-primary);
  box-shadow: 0 4px 12px rgba(11, 45, 91, 0.1);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--taxiqo-primary);
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--taxiqo-accent);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  color: var(--taxiqo-ink);
  line-height: 1.7;
  margin-top: 0.75rem;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Value Props Section */
.value-props-section {
  padding: 3rem 0;
  background: var(--taxiqo-white);
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-prop {
  text-align: center;
  padding: 2rem 1.5rem;
}

.value-prop-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--taxiqo-accent) 0%, #FFD54F 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.value-prop-icon span[class^="icon-"] {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taxiqo-primary);
  font-size: 2rem;
}

/* Font Awesome Icon Mappings */
.icon-clock::before { content: '\f017'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-shield::before { content: '\f3ed'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-headphones::before { content: '\f025'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-user-check::before { content: '\f4fc'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-search::before { content: '\f002'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-credit-card::before { content: '\f09d'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-car::before { content: '\f1b9'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-star::before { content: '\f005'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-award::before { content: '\f559'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }

.value-prop-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--taxiqo-primary);
}

.value-prop-description {
  color: var(--taxiqo-text-secondary);
  line-height: 1.6;
}

/* Popular Destinations Section */
.popular-destinations-section {
  padding: 4rem 0;
  background: var(--taxiqo-sky);
}

.popular-destinations-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.popular-destinations-section .section-title {
  color: var(--taxiqo-primary);
  margin-bottom: 1rem;
}

.popular-destinations-section .section-description {
  color: var(--taxiqo-text-secondary);
  font-size: 1.125rem;
}

/* How It Works Section */
.how-it-works-section {
  padding: 4rem 0;
  background: var(--taxiqo-white);
}

.how-it-works-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step-item {
  background: var(--taxiqo-white);
  border: 1px solid var(--taxiqo-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--taxiqo-accent);
}

.step-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--taxiqo-primary) 0%, #1a4d8f 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-icon span[class^="icon-"] {
  color: var(--taxiqo-white);
  font-size: 2rem;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  background: var(--taxiqo-accent);
  color: var(--taxiqo-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.step-title {
  color: var(--taxiqo-primary);
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--taxiqo-text-secondary);
  line-height: 1.6;
}

/* Trust Layer Section */
.trust-layer-section {
  padding: 3rem 0;
  background: var(--taxiqo-sky);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.trust-badge {
  text-align: center;
  padding: 1.5rem;
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: var(--taxiqo-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.trust-icon span[class^="icon-"] {
  color: var(--taxiqo-primary);
  font-size: 1.5rem;
}

.trust-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--taxiqo-primary);
  margin-bottom: 0.25rem;
}

.trust-subtitle {
  font-size: 0.875rem;
  color: var(--taxiqo-text-secondary);
}

/* CTA Bar */
.cta-bar {
  background: var(--taxiqo-primary);
  color: var(--taxiqo-white);
  padding: 2rem 0;
  text-align: center;
}

.cta-bar h2 {
  color: var(--taxiqo-white);
  margin-bottom: 1rem;
}

.cta-bar p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--taxiqo-ink);
  color: var(--taxiqo-white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--taxiqo-white);
  margin-bottom: 1rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--taxiqo-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Mobile CTA Sticky Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--taxiqo-white);
  border-top: 1px solid var(--taxiqo-border);
  padding: 1rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: block;
  }
  
  .mobile-cta-bar .btn {
    width: 100%;
  }
}

/* Content Sections */
.content-section {
  padding: 3rem 0;
}

.content-section.alt-bg {
  background: var(--taxiqo-sky);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--taxiqo-text-secondary);
  font-size: 1.125rem;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.trust-badge {
  text-align: center;
  padding: 1rem;
}

.trust-badge .badge-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--taxiqo-primary);
  display: block;
}

.trust-badge .badge-label {
  font-size: 0.875rem;
  color: var(--taxiqo-text-secondary);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.875rem;
}

.breadcrumbs a {
  color: var(--taxiqo-text-secondary);
}

.breadcrumbs a:hover {
  color: var(--taxiqo-primary);
}

.breadcrumbs .separator {
  margin: 0 0.5rem;
  color: var(--taxiqo-text-secondary);
}

/* Archive Pages */
.archive-header {
  background: var(--taxiqo-sky);
  padding: 2rem 0;
  margin-bottom: 2rem;
  text-align: center;
}

.archive-description {
  color: var(--taxiqo-text-secondary);
  max-width: 800px;
  margin: 1rem auto;
}

/* Single Destination Pages */
.destination-hero {
  background: linear-gradient(135deg, var(--taxiqo-primary) 0%, #1a4d8f 100%);
  color: var(--taxiqo-white);
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.destination-hero h1 {
  color: var(--taxiqo-white);
  margin-bottom: 1rem;
}

.destination-hero .hero-summary {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.destination-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.destination-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Nearby/Related Links */
.related-destinations {
  margin: 2rem 0;
}

.related-destinations h2 {
  margin-bottom: 1.5rem;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.related-link {
  background: var(--taxiqo-sky);
  color: var(--taxiqo-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.related-link:hover {
  background: var(--taxiqo-accent);
  color: var(--taxiqo-ink);
  transform: translateY(-2px);
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Accessibility */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--taxiqo-sky);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: var(--taxiqo-ink);
  display: block;
  font-size: 1rem;
  font-weight: 600;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* RTL Support */
[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .answer-block {
  border-left: none;
  border-right: 4px solid var(--taxiqo-accent);
}

/* Print Styles */
@media print {
  .mobile-cta-bar,
  .cta-bar,
  .site-header {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}


/* Custom header modifications: align navigation and CTA; hide mobile sticky bar */
@media (min-width: 992px) {
    .site-header .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .site-header .main-navigation {
        flex: 1;
    }
    .site-header .main-navigation > div {
        display: flex;
        justify-content: center;
        flex: 1;
    }
    .site-header .main-navigation ul {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .site-header .main-navigation li {
        margin: 0 1rem;
    }
    .site-header .main-navigation a {
        font-weight: 700;
        display: inline-block;
    }
    .site-header .header-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-left: auto;
    }
}
/* Hide mobile sticky call to action bar */
.mobile-sticky-cta {
    display: none !important;
}

@media (min-width: 992px) {
    .site-header .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .site-header .main-navigation ul {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .site-header .main-navigation li {
        margin: 0 1.5rem; /* increase space between menu items */
    }
    .site-header .main-navigation a {
        font-weight: 700;
        display: inline-block;
    }
    .site-header .header-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-left: auto;
    }
    /* hide sticky CTA bar */
    .mobile-sticky-cta,
    .cta-bar,
    .mobile-cta-bar {
        display: none !important;
    }
}
/* Desktop header tweaks for Book Now button */
@media (min-width: 992px) {
    /* Align header’s inner wrapper */
    .site-header .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    /* Center main navigation and allow it to fill available space */
    .site-header .main-navigation ul {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    /* Increase horizontal spacing between menu items */
    .site-header .main-navigation li {
        margin: 0 1.5rem;
    }
    /* Bold navigation links */
    .site-header .main-navigation a {
        font-weight: 700;
        display: inline-block;
    }
    /* Position the language icon and Book Now button to the right */
    .site-header .header-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-left: auto;
    }
    /* Style the Book Now button: padding and rounded corners */
    .site-header .header-actions .btn-primary {
        padding: 0.75rem 1rem;
        border-radius: 12px;
        font-weight: 600;
    }
    /* Hide the sticky CTA bars */
    .mobile-sticky-cta,
    .cta-bar,
    .mobile-cta-bar {
        display: none !important;
    }
}
/* Footer styling */
.site-footer {
  background: #0B2D5B;      /* dark blue background */
  color: #F1F5F9;           /* light gray text */
  padding: 3rem 0 1rem;
}

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

.footer-section h2,
.footer-section h3 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: #Cbd5e1;           /* slightly lighter gray for tagline */
  max-width: 300px;
  line-height: 1.5;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.6rem;
}

.footer-section a {
  color: #Cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: #FFC107;          /* accent color on hover */
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

/* Hide duplicate footer */
footer#colophon {
    display: none !important;
}
/* ===== FAQ Section Styles ===== */
.faq-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 1.1em;
  list-style: none;
  position: relative;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 20px 20px;
  color: #444;
  line-height: 1.6;
}

/* === Custom Hero Section styles === */
.hero-section {
  position: relative;
  padding: 120px 0;
  background-color: var(--taxiqo-primary);
  background-image: linear-gradient(135deg, #0B2D58, #12345A); /* fallback gradient */
  background-size: cover;
  background-position: center;
  color: var(--taxiqo-white);
}

.hero-section .hero-background {
  display: none;
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
}

.hero-section .hero-cta {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 30px;
  background-color: var(--taxiqo-accent);
  color: var(--taxiqo-white);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero-section .hero-cta:hover {
  background-color: #d9a520;
  color: var(--taxiqo-white);
}


/* Destination Page UI/UX Enhancements */
.destination-country .destination-content {
  padding-top: 3rem;
}

/* Grid layout for transfer features */
.destination-country .transfer-features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
}

/* Transfer feature card adjustments */
.destination-country .transfer-feature.card {
  padding: 2rem;
  border-radius: 16px;
}

/* Grid layout for why features */
.destination-country .why-features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}

/* Grid layout for popular cities and nearby countries */
.destination-country .cities-grid,
.destination-country .nearby-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
}

.destination-country .destination-card.card {
  padding: 1.5rem;
  border-radius: 16px;
}

/* Section spacing */
.destination-country .airport-transfers-section,
.destination-country .why-taxiqo-section,
.destination-country .cities-grid-section,
.destination-country .nearby-countries-section {
  margin-bottom: 4rem;
}

.destination-country h2 {
  margin-bottom: 1.5rem;
}

/* CTA button within transfer features */
.destination-country .transfer-feature .cta-inline {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 30px;
}
/* ===== City & Airport Pages UI/UX Enhancements ===== */
.destination-city .services-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 2rem;
}

.destination-city .service-option.card {
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #E0E0E0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.destination-city .service-options-section .cta-large {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    background-color: var(--taxiqo-accent);
    color: var(--taxiqo-ink);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.destination-city .service-options-section .cta-large:hover {
    background-color: #e0b324;
}

.destination-city .airports-list {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.destination-city .airport-item.card {
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #E0E0E0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.destination-city .sibling-cities-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ===== Airport page: service features styling ===== */
.destination-airport .service-features-section {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #E0E0E0;
    background-color: var(--taxiqo-sky);
}

.destination-airport .service-features-section h3 {
    margin-bottom: 1rem;
}

.destination-airport .service-features-section .features-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem 1rem;
}

.destination-airport .service-features-section .features-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.destination-airport .service-features-section .features-list li::before {
    content: "\2714";
    position: absolute;
    left: 0;
    color: var(--taxiqo-success);
}

.destination-airport .service-features-section .cta-inline {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    background-color: var(--taxiqo-accent);
    color: var(--taxiqo-ink);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.destination-airport .service-features-section .cta-inline:hover {
    background-color: #e0b324;
}
