/*
Theme Name: Rajasthan Budget Tours Modern
Theme URI: https://example.com/rajasthan-budget-tours
Author: Rajasthan Budget Tours
Author URI: https://example.com
Description: A modern custom WordPress theme for Rajasthan car rental, taxi service, tours, and travel packages.
Version: 1.0.3
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rbt-modern
*/

:root {
  --rbt-ink: #191815;
  --rbt-muted: #6c665c;
  --rbt-paper: #fffaf1;
  --rbt-panel: #ffffff;
  --rbt-saffron: #ff7900;
  --rbt-gold: #ffc760;
  --rbt-teal: #087c78;
  --rbt-coral: #e85d4a;
  --rbt-line: rgba(25, 24, 21, 0.12);
  --rbt-shadow: 0 18px 45px rgba(45, 32, 18, 0.16);
  --rbt-radius: 8px;
  --rbt-container: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--rbt-ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 241, 0.92);
  border-bottom: 1px solid rgba(25, 24, 21, 0.08);
  backdrop-filter: blur(18px);
}

.top-strip {
  color: #fff;
  background: var(--rbt-ink);
  font-size: 0.86rem;
}

.top-strip__inner,
.header-main,
.container {
  width: var(--rbt-container);
  margin: 0 auto;
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
}

.top-strip__meta,
.top-strip__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-strip__pill {
  color: #221b10;
  background: var(--rbt-gold);
  border-radius: 999px;
  padding: 3px 9px;
  font-weight: 800;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.site-branding img {
  /* width: 86px; */
  height: 86px;
  object-fit: contain;
}

.site-branding__text {
  display: grid;
  line-height: 1.12;
}

.site-branding__name {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-branding__tagline {
  color: var(--rbt-muted);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 22px;
}

.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-navigation li {
  position: relative;
}

.primary-navigation a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  color: #302b25;
  font-size: 0.93rem;
  font-weight: 800;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
  background: rgba(255, 121, 0, 0.12);
  outline: none;
}

.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a,
.primary-navigation .current-menu-ancestor > a {
  color: var(--rbt-saffron);
  background: rgba(255, 121, 0, 0.14);
  box-shadow: inset 0 -2px 0 var(--rbt-saffron);
}

.primary-navigation .menu-item-has-children > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.primary-navigation .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 70;
  display: grid;
  min-width: 230px;
  padding: 8px;
  border: 1px solid var(--rbt-line);
  border-radius: var(--rbt-radius);
  background: #fff;
  box-shadow: var(--rbt-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.primary-navigation .sub-menu .sub-menu {
  top: 0;
  left: calc(100% + 8px);
}

.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-navigation .sub-menu a {
  width: 100%;
  min-height: 40px;
  justify-content: flex-start;
  border-radius: 6px;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.mobile-menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--rbt-line);
  border-radius: 999px;
  color: var(--rbt-ink);
  background: #fff;
  cursor: pointer;
}

.mobile-menu-toggle {
  display: none;
}

.icon-button svg,
.mobile-menu-toggle svg {
  width: 20px;
  height: 20px;
}

.button,
.wp-block-button__link,
.booking-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--rbt-saffron);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(255, 121, 0, 0.24);
}

.button:hover,
.button:focus-visible,
.booking-form button:hover,
.booking-form button:focus-visible {
  background: #df6200;
  outline: none;
}

.button--ghost {
  color: var(--rbt-ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: #fff;
  background: var(--rbt-teal);
}

.button--teal {
  background: var(--rbt-teal);
  box-shadow: 0 12px 22px rgba(8, 124, 120, 0.23);
}

.button--teal:hover,
.button--teal:focus-visible {
  background: #066a67;
}

.site-main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 36px));
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(14, 13, 10, 0.84), rgba(14, 13, 10, 0.5) 43%, rgba(14, 13, 10, 0.08) 72%),
    var(--rbt-hero-image);
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0), var(--rbt-paper));
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.54fr);
  gap: 40px;
  align-items: end;
  width: var(--rbt-container);
  min-height: inherit;
  margin: 0 auto;
  padding: 94px 0 104px;
}

.hero__copy {
  max-width: 680px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: #fff7df;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rbt-gold);
}

.hero h1 {
  max-width: 760px;
  margin: 22px 0 18px;
  font-size: 6.4rem;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 610px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.22rem;
}

.hero__actions,
.section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 42px;
}

.metric {
  min-height: 96px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--rbt-radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.metric strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
  font-weight: 750;
}

.booking-panel {
  position: relative;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--rbt-radius);
  color: var(--rbt-ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--rbt-shadow);
}

.booking-panel h2,
.section-heading h2,
.mini-heading {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.booking-panel h2 {
  font-size: 1.55rem;
}

.booking-panel p {
  margin: 8px 0 18px;
  color: var(--rbt-muted);
}

.booking-form {
  display: grid;
  gap: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field--full {
  grid-column: 1 / -1;
}

.field span,
.field label {
  color: #3c352c;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.site-footer input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(25, 24, 21, 0.14);
  border-radius: var(--rbt-radius);
  color: var(--rbt-ink);
  background: #fff;
  padding: 11px 12px;
  outline: none;
}

.booking-form textarea {
  min-height: 92px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.site-footer input:focus {
  border-color: var(--rbt-saffron);
  box-shadow: 0 0 0 3px rgba(255, 121, 0, 0.14);
}

.form-note {
  color: var(--rbt-muted);
  font-size: 0.82rem;
}

.notice {
  margin: 0 0 14px;
  padding: 11px 12px;
  border-radius: var(--rbt-radius);
  font-size: 0.92rem;
  font-weight: 800;
}

.notice--success {
  color: #11534d;
  background: rgba(8, 124, 120, 0.12);
}

.notice--error {
  color: #8d2a1e;
  background: rgba(232, 93, 74, 0.14);
}

.service-band {
  position: relative;
  z-index: 2;
  background: var(--rbt-paper);
  padding: 38px 0 76px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-item,
.package-card,
.fleet-card,
.route-card,
.testimonial-card,
.faq-item {
  border: 1px solid var(--rbt-line);
  border-radius: var(--rbt-radius);
  background: var(--rbt-panel);
  box-shadow: 0 10px 30px rgba(45, 32, 18, 0.07);
}

.service-item {
  min-height: 156px;
  padding: 20px;
}

.service-icon,
.fleet-card__icon,
.route-card__marker {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--rbt-ink);
  background: rgba(255, 199, 96, 0.45);
}

.service-icon svg,
.fleet-card__icon svg,
.route-card__marker svg,
.floating-contact svg,
.booking-form button svg,
.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.service-item h3,
.fleet-card h3,
.route-card h3,
.testimonial-card h3,
.faq-item h3 {
  margin: 14px 0 8px;
  font-size: 1.02rem;
  line-height: 1.22;
}

.service-item p,
.package-card p,
.fleet-card p,
.route-card p,
.testimonial-card p,
.faq-item p {
  margin: 0;
  color: var(--rbt-muted);
}

.section {
  padding: 86px 0;
}

.section--paper {
  background: var(--rbt-paper);
}

.section--dark {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(25, 24, 21, 0.95), rgba(33, 31, 25, 0.88)),
    var(--rbt-hero-image);
  background-position: center;
  background-size: cover;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading__copy {
  max-width: 690px;
}

.section-heading h2 {
  font-size: 3.7rem;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--rbt-muted);
  font-size: 1.04rem;
}

.section--dark .section-heading p,
.section--dark .route-card p,
.section--dark .testimonial-card p {
  color: rgba(255, 255, 255, 0.74);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  position: relative;
  display: grid;
  grid-template-rows: 210px 1fr;
  min-height: 500px;
  overflow: hidden;
}

.package-card__media {
  position: relative;
  overflow: hidden;
  background-image: var(--rbt-package-image, var(--rbt-hero-image));
  background-size: cover;
  background-position: center;
}

.package-card:nth-child(2) .package-card__media {
  background-position: 18% 54%;
}

.package-card:nth-child(3) .package-card__media {
  background-position: 82% 42%;
}

.package-card:nth-child(4) .package-card__media {
  background-position: 44% 78%;
}

.package-card:nth-child(5) .package-card__media {
  background-position: 10% 34%;
}

.package-card:nth-child(6) .package-card__media {
  background-position: 70% 62%;
}

.package-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 24, 21, 0.03), rgba(25, 24, 21, 0.32)),
    linear-gradient(135deg, rgba(255, 121, 0, 0.16), rgba(8, 124, 120, 0.12));
}

.package-card__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #261d11;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.package-card__body {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: #fff;
}

.package-card h3 {
  margin: 0;
  color: var(--rbt-ink);
  font-size: 1.25rem;
  line-height: 1.18;
}

.package-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.package-card__details {
  border: 1px solid rgba(35, 27, 17, 0.08);
  border-radius: 8px;
  background: rgba(255, 199, 96, 0.12);
}

.package-card__details summary {
  cursor: pointer;
  padding: 10px 12px;
  color: var(--rbt-ink);
  font-weight: 900;
}

.package-card__details ul,
.package-card__pricing ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card__details ul {
  padding: 0 12px 12px;
}

.package-card__details li,
.package-card__pricing li {
  color: var(--rbt-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.package-card__pricing {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(8, 124, 120, 0.08);
}

.package-card__pricing strong {
  color: var(--rbt-ink);
  font-size: 0.86rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 10px;
  border-radius: 999px;
  color: #40372b;
  background: rgba(255, 199, 96, 0.28);
  font-size: 0.78rem;
  font-weight: 900;
}

.package-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--rbt-line);
}

.price {
  display: grid;
  line-height: 1.2;
}

.price span {
  color: var(--rbt-muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price strong {
  color: var(--rbt-saffron);
  font-size: 1.08rem;
}

/*==========================
 Vehicle Section New Layout
===========================*/

#fleet .section-heading{

    margin-bottom:35px;

}

#fleet .fleet-showcase{

    width:100%;
    height:320px;

    margin-bottom:40px;

    border-radius:14px;

    background-position:center;
    background-size:cover;

}

#fleet .fleet-showcase__badge{

    max-width:420px;

}

#fleet .fleet-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

#fleet .fleet-card{

    height:100%;

}

#fleet .fleet-card__content{

    display:flex;

    flex-direction:column;

    height:100%;

}

#fleet .fleet-card ul{

    margin-bottom:20px;

}

#fleet .fleet-card__actions{

    margin-top:auto;

}

.vehicle-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 18px;

    border-radius:40px;

    background:#ff7900;

    color:#fff;

    font-size:14px;

    font-weight:700;

    text-decoration:none;

}

.vehicle-btn:hover{

    background:#e76d00;

    color:#fff;

}

#fleet .fleet-view-all{

    text-align:center;

    margin-top:45px;

}

#fleet .fleet-view-all .button{

    min-width:240px;

}

@media(max-width:1200px){

    #fleet .fleet-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:767px){

    #fleet .fleet-grid{

        grid-template-columns:1fr;

    }

    #fleet .fleet-showcase{

        height:240px;

    }

}

.fleet-showcase {
  position: relative;
  min-height: 500px;
  border-radius: var(--rbt-radius);
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(25, 24, 21, 0.05), rgba(25, 24, 21, 0.48)),
    var(--rbt-hero-image);
  background-position: 78% center;
  background-size: cover;
  box-shadow: var(--rbt-shadow);
}

.fleet-showcase.vehicle-banner{
  position: relative;
  min-height: 500px;
  border-radius: var(--rbt-radius);
  overflow: hidden;
  background:
linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)),
url(assets/images/rajasthan-banner.jpg);
  background-position: 78% center;
  background-size: cover;
  box-shadow: var(--rbt-shadow);

}

.fleet-showcase__badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 20px;
  border-radius: var(--rbt-radius);
  color: #fff;
  background: rgba(25, 24, 21, 0.72);
  backdrop-filter: blur(16px);
}

.fleet-showcase__badge strong {
  display: block;
  font-size: 1.48rem;
  line-height: 1.12;
}

.fleet-showcase__badge span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fleet-card {
  min-height: 218px;
  padding: 20px;
}

.fleet-card--vehicle {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
}

.fleet-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--rbt-paper);
}

.fleet-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fleet-card__content {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.fleet-card__content h3 {
  margin: 0;
}

.fleet-card__content p {
  margin: 0;
}

.fleet-card__pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.fleet-card__pricing span {
  display: grid;
  gap: 2px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 199, 96, 0.28);
}

.fleet-card__pricing small {
  color: var(--rbt-muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fleet-card__pricing strong {
  color: var(--rbt-ink);
  font-size: 1rem;
}

.fleet-card ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 3px 0 0;
  color: var(--rbt-muted);
  list-style: none;
}

.fleet-card li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fleet-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rbt-teal);
}

.fleet-card__extra {
  padding-top: 10px;
  border-top: 1px solid var(--rbt-line);
  font-size: 0.86rem;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.route-card {
  display: flex;
  gap: 14px;
  min-height: 160px;
  padding: 19px;
}

.section--dark .route-card,
.section--dark .testimonial-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.route-card__marker {
  flex: 0 0 auto;
  color: #fff;
  background: var(--rbt-teal);
}

.route-card h3 {
  margin-top: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  align-items: center;
}

.logo-feature {
  display: grid;
  place-items: center;
  min-height: 470px;
  border: 1px solid var(--rbt-line);
  border-radius: var(--rbt-radius);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 199, 96, 0.24), transparent 30%),
    radial-gradient(circle at 88% 84%, rgba(8, 124, 120, 0.14), transparent 33%),
    #fff;
  box-shadow: var(--rbt-shadow);
}

.logo-feature img {
  width: min(84%, 520px);
}

.content-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.content-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.content-list svg {
  width: 24px;
  height: 24px;
  color: var(--rbt-teal);
}

.content-list strong {
  display: block;
  line-height: 1.25;
}

.content-list span {
  display: block;
  color: var(--rbt-muted);
}

.testimonial-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card,
.faq-item {
  min-height: 210px;
  padding: 20px;
}

.testimonial-card__stars {
  color: var(--rbt-gold);
  font-size: 1.06rem;
  letter-spacing: 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--rbt-radius);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8, 124, 120, 0.95), rgba(25, 24, 21, 0.9)),
    var(--rbt-hero-image);
  background-position: center;
  background-size: cover;
  box-shadow: var(--rbt-shadow);
}

.cta-panel h2 {
  margin: 0;
  font-size: 2.7rem;
  line-height: 1.04;
}

.cta-panel p {
  max-width: 680px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  color: #fff;
  background: #171511;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.7fr));
  gap: 28px;
  width: var(--rbt-container);
  margin: 0 auto;
  padding: 64px 0 42px;
}

.footer-brand img {
  width: 116px;
  height: auto;
  margin-bottom: 14px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  font-size: 1.04rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  outline: none;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: var(--rbt-container);
  min-height: 62px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.floating-contact a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  color: #fff;
  background: var(--rbt-teal);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.floating-contact a:first-child {
  background: var(--rbt-saffron);
}

.entry-content {
  width: var(--rbt-container);
  margin: 0 auto;
  padding: 70px 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
  line-height: 1.08;
}

.entry-content a {
  color: var(--rbt-teal);
  font-weight: 800;
}

.empty-page {
  min-height: 60vh;
  padding: 90px 0;
  background: var(--rbt-paper);
}

.inner-page {
  background: #fff;
}

.inner-hero {
  display: flex;
  align-items: flex-end;
  min-height: 380px;
  padding: 96px 0 76px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(25, 24, 21, 0.86), rgba(25, 24, 21, 0.38)),
    url("assets/images/rajasthan-cab-hero.png") center / cover no-repeat;
}

.inner-hero h1 {
  max-width: 900px;
  margin: 12px 0 18px;
  font-size: 4.4rem;
  line-height: 0.98;
}

.inner-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
  font-weight: 650;
}

.inner-section {
  padding: 76px 0;
}

.inner-section--paper {
  background: var(--rbt-paper);
}

.inner-section--content {
  padding-top: 0;
}

.inner-split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
  gap: 34px;
  align-items: center;
}

.inner-copy h2 {
  max-width: 680px;
  margin: 0 0 18px;
  font-size: 3rem;
  line-height: 1;
}

.inner-copy p {
  max-width: 690px;
  color: var(--rbt-muted);
  font-size: 1.05rem;
}

.inner-feature {
  min-height: 440px;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--rbt-line);
  border-radius: var(--rbt-radius);
  background:
    linear-gradient(135deg, rgba(255, 199, 96, 0.78), rgba(8, 124, 120, 0.16)),
    #fff;
  box-shadow: var(--rbt-shadow);
}

.inner-feature img {
  width: min(280px, 100%);
  margin: 0 auto;
}

.inner-feature__stats,
.contact-stack,
.value-grid,
.blog-grid {
  display: grid;
  gap: 18px;
}

.inner-feature__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inner-feature__stats span {
  display: grid;
  gap: 2px;
  padding: 14px;
  border-radius: var(--rbt-radius);
  color: #302b25;
  background: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.inner-feature__stats strong {
  font-size: 1.05rem;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card,
.contact-card,
.blog-card {
  border: 1px solid var(--rbt-line);
  border-radius: var(--rbt-radius);
  background: #fff;
  box-shadow: 0 16px 36px rgba(45, 32, 18, 0.08);
}

.value-card,
.contact-card {
  padding: 24px;
}

.value-card h3,
.contact-card h2 {
  margin: 16px 0 8px;
  line-height: 1.1;
}

.value-card p,
.contact-card p {
  margin: 0;
  color: var(--rbt-muted);
}

.contact-layout {
  align-items: start;
}

.contact-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card a {
  color: var(--rbt-teal);
  font-weight: 900;
  word-break: break-word;
}

.contact-form-panel {
  position: sticky;
  top: 130px;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  overflow: hidden;
}

.blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--rbt-paper);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--rbt-muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.16;
}

.blog-card p {
  margin: 0;
  color: var(--rbt-muted);
}

.text-link {
  color: var(--rbt-teal);
  font-weight: 900;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.blog-pagination .page-numbers {
  display: inline-grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--rbt-line);
  border-radius: 999px;
  color: var(--rbt-ink);
  background: #fff;
  font-weight: 900;
}

.blog-pagination .current {
  color: #fff;
  border-color: var(--rbt-teal);
  background: var(--rbt-teal);
}

.empty-page--blog {
  display: grid;
  justify-items: start;
  gap: 14px;
  min-height: 360px;
  padding: 48px;
  border-radius: var(--rbt-radius);
}

.empty-page--blog h2,
.empty-page--blog p {
  margin: 0;
}

@media (max-width: 1100px) {
  .hero__inner,
  .fleet-layout,
  .split-section,
  .inner-split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    max-width: 720px;
  }

  .service-grid,
  .package-grid,
  .routes-grid,
  .testimonial-grid,
  .faq-grid,
  .site-footer__top,
  .value-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    background-position: 62% center;
  }

  .hero h1 {
    font-size: 4.9rem;
  }

  .section-heading h2 {
    font-size: 3rem;
  }

  .inner-hero h1,
  .inner-copy h2 {
    font-size: 3rem;
  }

  .hero__inner {
    align-items: center;
  }

  .contact-form-panel {
    position: static;
  }
}

@media (max-width: 1080px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .top-strip__inner {
    justify-content: center;
  }

  .top-strip__actions {
    display: none;
  }

  .header-main {
    min-height: 78px;
  }

  .header-actions {
    margin-left: auto;
  }

  .mobile-menu-toggle {
    position: fixed;
    top: 18px;
    right: 14px;
    z-index: 80;
    display: inline-grid !important;
    border-color: rgba(25, 24, 21, 0.2);
    box-shadow: 0 8px 20px rgba(25, 24, 21, 0.08);
  }

  .primary-navigation {
    position: fixed;
    inset: 114px 14px auto;
    display: none;
    padding: 16px;
    border: 1px solid var(--rbt-line);
    border-radius: var(--rbt-radius);
    background: #fff;
    box-shadow: var(--rbt-shadow);
  }

  body.admin-bar .primary-navigation {
    inset-block-start: 160px;
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation ul {
    display: grid;
    gap: 4px;
  }

  .primary-navigation a {
    width: 100%;
    justify-content: flex-start;
    border-radius: var(--rbt-radius);
  }

  .primary-navigation .menu-item-has-children > a::after {
    margin-left: auto;
  }

  .primary-navigation .sub-menu,
  .primary-navigation .sub-menu .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 4px 0 4px 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .primary-navigation .sub-menu a {
    white-space: normal;
  }

  .header-actions .button,
  .header-actions .icon-button {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 74px 0 86px;
  }

  .hero h1 {
    max-width: 8.8ch;
    font-size: 3.2rem;
    line-height: 1;
  }

  .hero__lead {
    font-size: 1.08rem;
  }

  .section-heading h2 {
    font-size: 2.35rem;
  }

  .inner-hero {
    min-height: 330px;
    padding: 72px 0 58px;
  }

  .inner-hero h1,
  .inner-copy h2 {
    font-size: 2.45rem;
  }

  .cta-panel h2 {
    font-size: 2.2rem;
  }

  .hero__metrics,
  .fleet-grid,
  .form-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .section,
  .service-band {
    padding: 58px 0;
  }

  .section-heading {
    display: grid;
  }

  .fleet-showcase,
  .logo-feature,
  .inner-feature {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  :root {
    --rbt-container: min(1180px, calc(100vw - 28px));
  }

  .top-strip {
    display: none;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .site-branding {
    min-width: 0;
  }

  .site-branding img {
    width: 70px;
    height: 58px;
  }

  .site-branding__name {
    max-width: 145px;
    font-size: 0.86rem;
  }

  .site-branding__tagline {
    max-width: 145px;
    font-size: 0.68rem;
  }

  .header-main {
    position: relative;
    padding-right: 54px;
  }

  .header-actions {
    position: absolute;
    right: 0;
  }

  .mobile-menu-toggle {
    display: inline-grid;
  }

  .header-main,
  .container,
  .hero__inner,
  .entry-content,
  .site-footer__top,
  .site-footer__bottom-inner {
    width: calc(100vw - 28px);
  }

  .hero h1 {
    font-size: 3rem;
  }

  .inner-hero h1,
  .inner-copy h2 {
    font-size: 2.2rem;
  }

  .hero__lead {
    max-width: 30ch;
  }

  .booking-panel p {
    max-width: 30ch;
  }

  .eyebrow {
    max-width: 100%;
    white-space: normal;
  }

  .primary-navigation {
    inset-block-start: 90px;
  }

  .hero__inner {
    padding-top: 54px;
  }

  .hero__actions .button,
  .section-actions .button,
  .cta-panel .button {
    width: 100%;
  }

  .service-grid,
  .package-grid,
  .routes-grid,
  .testimonial-grid,
  .faq-grid,
  .site-footer__top,
  .value-grid,
  .contact-stack,
  .blog-grid,
  .inner-feature__stats {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }

  .fleet-card__pricing {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 24px;
  }

  .inner-section {
    padding: 58px 0;
  }

  .inner-feature,
  .empty-page--blog {
    padding: 24px;
  }

  .site-footer__bottom-inner {
    display: grid;
    padding: 16px 0;
  }
}
/* Vehicle Card Fix */

.fleet-card--vehicle{
    display:flex;
    flex-direction:column;
    height:100%;
}

.fleet-card__content{
    display:flex;
    flex-direction:column;
    flex:1;
}

.fleet-card__content ul{
    margin-bottom:20px;
}

.fleet-card__actions{
    margin-top:auto;
}

.vehicle-btn{
    display:inline-block;
    padding:10px 18px;
    background:#ff7900;
    color:#fff;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.vehicle-btn:hover{
    background:#e36800;
    color:#fff;
}

.fleet-view-all{
    text-align:center;
    margin-top:35px;
}

.fleet-view-all .button{
    min-width:220px;
}

.single-hero{
    padding:60px 0;
    background:#f8f6ef;
}

.single-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

@media(max-width:991px){
    .single-grid{
        grid-template-columns:1fr;
    }
}

/*==========================
 Blog Single
===========================*/

.blog-single-section{

    padding:80px 0;

    background:#f8f8f8;

}

.blog-layout{

    display:grid;

    grid-template-columns:2fr 340px;

    gap:40px;

}

.blog-content{

    background:#fff;

    border-radius:16px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.blog-featured-image img{

    width:100%;

    border-radius:16px;

    margin-bottom:30px;

}

.blog-meta{

    color:#777;

    margin-bottom:15px;

    display:flex;

    gap:10px;

    flex-wrap:wrap;

}

.blog-title{

    margin-bottom:25px;

}

.blog-entry{

    line-height:1.9;

}

.blog-entry img{

    max-width:100%;

    height:auto;

}

.blog-tags{

    margin-top:30px;

    padding-top:20px;

    border-top:1px solid #eee;

}

.post-navigation{

    display:flex;

    justify-content:space-between;

    margin-top:40px;

    padding-top:20px;

    border-top:1px solid #eee;

}

.blog-sidebar{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.sidebar-widget{

    background:#fff;

    padding:25px;

    border-radius:16px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.sidebar-widget h3{

    margin-bottom:20px;

}

.sidebar-widget ul{

    margin:0;

    padding:0;

    list-style:none;

}

.sidebar-widget li{

    margin-bottom:15px;

    padding-bottom:15px;

    border-bottom:1px solid #eee;

}

.sidebar-widget li:last-child{

    border:none;

}

.sidebar-widget a{

    text-decoration:none;

    color:#222;

}

.sidebar-widget a:hover{

    color:#ff7900;

}

@media(max-width:991px){

.blog-layout{

grid-template-columns:1fr;

}

}
.phoneicon,
.whatsappicon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:20px;
    height:20px;
    color:#fff;
    background:transparent;
}

.phoneicon svg,
.whatsappicon svg{
    width:20px;
    height:20px;
    stroke:#fff;
    fill:none;
}

.whatsappicon svg{
    fill:#fff;
}
/*=========================================
 BOOKING POPUP
=========================================*/

.booking-popup{
    position:fixed;
    inset:0;
    display:none;
    z-index:99999;
}

.booking-popup.active{
    display:flex;
    align-items:center;
    justify-content:center;
}

.booking-popup__overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.booking-popup__content{
    position:relative;
    width:95%;
    max-width:720px;
    background:#fff;
    border-radius:18px;
    padding:35px;
    z-index:2;
    max-height:90vh;
    overflow-y:auto;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.booking-popup__close{
    position:absolute;
    right:18px;
    top:16px;
    border:0;
    background:none;
    font-size:34px;
    cursor:pointer;
    color:#222;
    line-height:1;
}

body.popup-open{
    overflow:hidden;
}


/*=========================================
 HEADING
=========================================*/

.booking-popup__content h2{
    margin:0;
    font-size:38px;
    font-weight:700;
    color:#1f2937;
}

.booking-popup__content>p{
    margin:8px 0 22px;
    color:#666;
    font-size:15px;
    line-height:1.6;
}


/*=========================================
 CF7 RESET
=========================================*/

.wpcf7 form p{
    margin:0 !important;
    padding:0 !important;
}

.wpcf7-form-control-wrap{
    display:block;
}

/*=========================================
 GRID
=========================================*/

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.field--full{
    grid-column:1/-1;
}


/*=========================================
 LABELS
=========================================*/

.booking-form label,
.wpcf7 label{
    display:block;
    margin-bottom:7px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    color:#333;
    letter-spacing:.5px;
}


/*=========================================
 INPUTS
=========================================*/

.booking-form input,
.booking-form select,
.booking-form textarea,
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea{

    width:100%;
    height:50px;
    border:1px solid #d8d8d8;
    border-radius:10px;
    padding:0 15px;
    background:#fff;
    font-size:15px;
    transition:.3s;

}

.booking-form textarea,
.wpcf7 textarea{

    height:120px;
    padding:14px 15px;
    resize:none;

}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus{

    border-color:#ff7a00;
    box-shadow:0 0 0 4px rgba(255,122,0,.12);
    outline:none;

}


/*=========================================
 SUBMIT BUTTON
=========================================*/

.booking-submit,
.wpcf7-submit{

    width:100% !important;
    height:52px !important;
    /* margin-top:22px !important; */
    background:#ff7a00 !important;
    color:#fff !important;
    border:none !important;
    border-radius:10px !important;
    font-size:16px !important;
    font-weight:700 !important;
    cursor:pointer;
    transition:.3s;

}

.booking-submit:hover,
.wpcf7-submit:hover{

    background:#e66c00 !important;
    transform:translateY(-2px);

}


/*=========================================
 NOTE
=========================================*/

.form-note{

    margin-top:12px;
    text-align:center;
    font-size:13px;
    color:#777;
}


/*=========================================
 VALIDATION
=========================================*/

.wpcf7-not-valid-tip{

    font-size:12px;
    margin-top:5px;

}

.wpcf7-response-output{

    margin:18px 0 0 !important;
    padding:12px 16px !important;
    border-radius:10px;
}


/*=========================================
 MOBILE
=========================================*/

@media(max-width:767px){

.booking-popup__content{

padding:22px;
margin:15px;

}

.booking-popup__content h2{

font-size:30px;

}

.form-grid{

grid-template-columns:1fr;

}

.field--full{

grid-column:auto;

}

}
.booking-form .form-grid > p{
    margin:0 !important;
    width:100%;
}

.booking-form .form-grid > p:last-of-type{
    grid-column:1 / -1;
}

.booking-form .form-grid > p:last-of-type textarea{
    width:100% !important;
    min-height:140px;
}

/* ===== ONLY FIX TEXTAREA ===== */

.booking-form .form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
}

.booking-form .form-grid > p{
    margin:0 !important;
}

.booking-form .form-grid > p:nth-child(7){
    grid-column:1 / -1;
}

.booking-form .form-grid > p:nth-child(7) textarea{
    width:100% !important;
    min-height:120px;
    box-sizing:border-box;
}

.booking-form .form-grid > p:nth-child(8){
    grid-column:1 / -1;
}
.contact-map-section{
    margin-top:60px;
    width:100%;
}

.contact-map-section h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:25px;
    text-align:center;
}

.contact-map-section iframe{
    width:100%;
    height:700px;
    border:0;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}
.page-id-5 .inner-section {
    padding-top: 50px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
/* Mobile Contact Form Fix */
@media (max-width: 767px) {

    .booking-form,
    .booking-form .form-grid {
        display: block;
    }

    .booking-form .field,
    .booking-form .field--full {
        width: 100%;
        margin-bottom: 16px;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea,
    .booking-form .wpcf7-form-control {
        width: 100%;
        box-sizing: border-box;
    }

    .booking-form textarea {
        min-height: 120px;
    }

    .booking-form button,
    .booking-submit input[type="submit"] {
        width: 100%;
    }
}
@media (max-width: 767px){

    .booking-form,
    .booking-form *,
    .wpcf7,
    .wpcf7 form,
    .form-grid,
    .form-grid > p{
        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;
        box-sizing:border-box;
    }

    .form-grid{
        display:flex !important;
        flex-direction:column !important;
    }

    .form-grid > p{
        display:block !important;
        flex:0 0 100% !important;
    }

    .field{
        display:block !important;
        width:100% !important;
    }

    .wpcf7-form-control-wrap{
        display:block !important;
        width:100% !important;
    }

    .wpcf7 input,
    .wpcf7 select,
    .wpcf7 textarea{
        display:block !important;
        width:100% !important;
        max-width:100% !important;
    }
}