/* ============================================
   Online Tempo Traveller — Main Stylesheet
   Corporate Design | High Conversion
   Tech: Bootstrap 5 + Custom CSS + Inter Font
   ============================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
  --ott-primary: #F5B800;
  --ott-primary-dark: #D9A000;
  --ott-primary-light: rgba(245, 184, 0, 0.1);
  --ott-secondary: #1B1F2B;
  --ott-secondary-light: #252A3A;
  --ott-accent: #FF6B35;
  --ott-light: #F8F9FC;
  --ott-text: #2D2D2D;
  --ott-text-light: #6B7280;
  --ott-white: #fff;
  --ott-border: #E5E7EB;
  --ott-success: #10B981;
  --ott-primary-contrast: #1B1F2B;
  --ott-radius: 8px;
  --ott-radius-lg: 12px;
  --ott-radius-xl: 16px;
  --ott-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --ott-shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
  --ott-shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
  --ott-shadow-xl: 0 20px 40px rgba(0,0,0,0.1);
  --ott-transition: all 0.3s ease;
  --ott-font-heading: 'Inter', 'Segoe UI', -apple-system, sans-serif;
  --ott-font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* === GLOBAL === */
* { box-sizing: border-box; }

body {
  font-family: var(--ott-font-body);
  color: var(--ott-text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ott-font-heading);
  font-weight: 700;
  line-height: 1.3;
}

a {
  color: var(--ott-primary-dark);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: var(--ott-secondary); }

img {
  max-width: 100%;
  height: auto;
}

/* === TOP BAR === */
.ott-topbar {
  background: var(--ott-secondary);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 0.4rem 0;
  letter-spacing: 0.01em;
}

.ott-topbar a {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.ott-topbar a:hover { color: var(--ott-white); }

.ott-topbar-divider {
  opacity: 0.3;
  margin: 0 0.25rem;
}

.ott-topbar-rating {
  color: var(--ott-primary);
  font-weight: 600;
}

.ott-topbar-rating i { margin-right: 2px; }

/* === NAVBAR === */
.ott-navbar {
  background: var(--ott-white);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  border-top: 3px solid var(--ott-primary);
  box-shadow: var(--ott-shadow);
  transition: box-shadow 0.3s;
}

.ott-navbar.scrolled {
  box-shadow: var(--ott-shadow-lg);
}

.ott-navbar .navbar-brand img {
  height: 56px;
  width: auto;
}

.ott-navbar .nav-link {
  color: var(--ott-secondary);
  font-weight: 500;
  padding: 0.75rem 0.85rem;
  font-size: 0.92rem;
  transition: color 0.2s;
  position: relative;
}

.ott-navbar .nav-link:hover,
.ott-navbar .nav-link.active {
  color: var(--ott-primary-dark);
}

.ott-navbar .dropdown-menu {
  border: 1px solid var(--ott-border);
  border-radius: var(--ott-radius);
  box-shadow: var(--ott-shadow-lg);
  padding: 0.5rem 0;
  border-top: 2px solid var(--ott-primary);
}

.ott-navbar .dropdown-item {
  font-size: 0.9rem;
  padding: 0.45rem 1.25rem;
  transition: var(--ott-transition);
}

.ott-navbar .dropdown-item:hover {
  background: var(--ott-primary-light);
  color: var(--ott-secondary);
}

.btn-enquiry {
  background: var(--ott-primary);
  color: var(--ott-primary-contrast) !important;
  border: none;
  padding: 0.5rem 1.1rem;
  border-radius: var(--ott-radius);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--ott-transition);
}

.btn-enquiry:hover {
  background: var(--ott-primary-dark);
  color: var(--ott-primary-contrast) !important;
  transform: translateY(-1px);
}

.btn-enquiry-outline {
  background: transparent;
  color: var(--ott-secondary) !important;
  border: 2px solid var(--ott-secondary);
  padding: 0.4rem 1rem;
  border-radius: var(--ott-radius);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--ott-transition);
}

.btn-enquiry-outline:hover {
  background: var(--ott-secondary);
  color: var(--ott-white) !important;
}

/* === HERO SECTION === */
.ott-hero {
  background: linear-gradient(135deg, var(--ott-secondary) 0%, var(--ott-secondary-light) 50%, #1e2235 100%);
  color: var(--ott-white);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--ott-primary);
}

.ott-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
  pointer-events: none;
}

.ott-hero-tagline {
  color: var(--ott-primary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.ott-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ott-hero .lead {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.ott-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ott-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.ott-hero-chip i { color: var(--ott-primary); }

.ott-hero .btn-light {
  background: var(--ott-primary);
  color: var(--ott-primary-contrast);
  border: none;
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  border-radius: var(--ott-radius);
  transition: var(--ott-transition);
}

.ott-hero .btn-light:hover {
  background: var(--ott-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.4);
}

.ott-hero .btn-outline-light {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--ott-white);
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: var(--ott-radius);
  transition: var(--ott-transition);
}

.ott-hero .btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--ott-white);
}

/* === LEAD FORM === */
.ott-lead-form {
  background: var(--ott-white);
  border-radius: var(--ott-radius-xl);
  overflow: hidden;
  box-shadow: var(--ott-shadow-xl);
}

.ott-lead-form-header {
  background: var(--ott-secondary);
  color: var(--ott-white);
  padding: 1rem 1.5rem;
  text-align: center;
}

.ott-lead-form-header h3 {
  color: var(--ott-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.ott-lead-form-header p {
  font-size: 0.82rem;
  opacity: 0.7;
}

.ott-lead-form form {
  padding: 1.25rem 1.5rem 1rem;
}

.ott-input-icon {
  position: relative;
}

.ott-input-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ott-text-light);
  font-size: 0.9rem;
  z-index: 2;
  transition: color 0.2s;
}

.ott-input-icon input {
  padding-left: 2.25rem;
}

.ott-input-icon input:focus + i,
.ott-input-icon input:focus ~ i {
  color: var(--ott-primary-dark);
}

.ott-lead-form .form-control,
.ott-lead-form .form-select {
  border: 1px solid var(--ott-border);
  border-radius: var(--ott-radius);
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  transition: var(--ott-transition);
}

.ott-lead-form .form-control:focus,
.ott-lead-form .form-select:focus {
  border-color: var(--ott-primary);
  box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.15);
}

.ott-form-urgency {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ott-accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.ott-form-urgency i { color: var(--ott-accent); }

.btn-submit {
  background: var(--ott-primary);
  color: var(--ott-primary-contrast);
  border: none;
  padding: 0.7rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--ott-radius);
  width: 100%;
  cursor: pointer;
  transition: var(--ott-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover {
  background: var(--ott-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.3);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* === STATS STRIP === */
.ott-stats-strip {
  background: var(--ott-primary);
  padding: 1.75rem 0;
}

.ott-stat-item {
  text-align: center;
  padding: 0.5rem;
}

.ott-stat-number {
  font-family: var(--ott-font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ott-primary-contrast);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.ott-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ott-primary-contrast);
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* === SECTIONS === */
.ott-section {
  padding: 4rem 0;
}

.ott-section-light {
  background: var(--ott-light);
}

.ott-section-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--ott-secondary);
  margin-bottom: 0.5rem;
}

.ott-section-subtitle {
  color: var(--ott-text-light);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* === FLEET CARDS === */
.ott-fleet-card {
  background: var(--ott-white);
  border-radius: var(--ott-radius-lg);
  overflow: hidden;
  box-shadow: var(--ott-shadow);
  transition: var(--ott-transition);
  height: 100%;
  border: 1px solid var(--ott-border);
  border-bottom: 3px solid transparent;
}

.ott-fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ott-shadow-lg);
  border-bottom-color: var(--ott-primary);
}

.ott-fleet-card .ott-fleet-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.ott-fleet-card .ott-fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ott-fleet-card:hover .ott-fleet-img img {
  transform: scale(1.07);
}

.ott-fleet-card .card-body {
  padding: 1.25rem;
}

.ott-fleet-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ott-secondary);
  margin-bottom: 0.4rem;
}

.ott-fleet-card .btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ott-primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0;
  background: none;
  border: none;
  transition: var(--ott-transition);
}

.ott-fleet-card .btn-book i {
  transition: transform 0.3s;
}

.ott-fleet-card:hover .btn-book {
  color: var(--ott-secondary);
}

.ott-fleet-card:hover .btn-book i {
  transform: translateX(4px);
}

/* === HOW IT WORKS === */
.ott-how-it-works {
  position: relative;
}

.ott-step {
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.ott-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ott-primary);
  color: var(--ott-primary-contrast);
  font-family: var(--ott-font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.3);
}

.ott-step-icon {
  font-size: 1.5rem;
  color: var(--ott-primary-dark);
  margin-bottom: 0.5rem;
}

.ott-step h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ott-secondary);
  margin-bottom: 0.5rem;
}

.ott-step p {
  font-size: 0.9rem;
  color: var(--ott-text-light);
  line-height: 1.6;
}

/* Connector line between steps */
.ott-steps-row {
  position: relative;
}

.ott-steps-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 25%;
  right: 25%;
  height: 2px;
  border-top: 2px dashed var(--ott-primary);
  opacity: 0.4;
  z-index: 1;
}

/* === ROUTE IMAGE CARDS === */
.ott-route-img-card {
  position: relative;
  border-radius: var(--ott-radius-lg);
  overflow: hidden;
  height: 220px;
  display: block;
  transition: var(--ott-transition);
}

.ott-route-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ott-route-img-card:hover img {
  transform: scale(1.08);
}

.ott-route-img-card .ott-route-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: var(--ott-white);
}

.ott-route-img-card h6 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ott-white);
  margin-bottom: 0.15rem;
}

.ott-route-img-card small {
  opacity: 0.8;
  font-size: 0.82rem;
}

.ott-route-img-card .ott-route-link {
  color: var(--ott-primary);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.4rem;
}

.ott-route-img-card:hover {
  box-shadow: var(--ott-shadow-lg);
}

/* Route pills */
.ott-route-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--ott-border);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ott-secondary);
  background: var(--ott-white);
  transition: var(--ott-transition);
}

.ott-route-pill:hover {
  border-color: var(--ott-primary);
  background: var(--ott-primary-light);
  color: var(--ott-secondary);
}

/* === TRUST / WHY US === */
.ott-trust-card {
  background: var(--ott-white);
  border-radius: var(--ott-radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--ott-border);
  border-left: 4px solid var(--ott-primary);
  transition: var(--ott-transition);
  height: 100%;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ott-trust-card:hover {
  box-shadow: var(--ott-shadow-md);
  border-left-color: var(--ott-primary-dark);
}

.ott-trust-card i {
  font-size: 1.75rem;
  color: var(--ott-primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ott-trust-card h6 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ott-secondary);
  margin-bottom: 0.3rem;
}

.ott-trust-card p {
  font-size: 0.88rem;
  color: var(--ott-text-light);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Old trust item (backward compat for inner pages) */
.ott-trust-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.ott-trust-item i {
  font-size: 2.5rem;
  color: var(--ott-primary);
  margin-bottom: 0.75rem;
}

.ott-trust-item h6 {
  font-weight: 600;
  color: var(--ott-secondary);
  margin-bottom: 0.3rem;
}

/* === REVIEW CARDS === */
.ott-google-rating {
  margin-bottom: 0.5rem;
}

.ott-rating-number {
  font-family: var(--ott-font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--ott-secondary);
  line-height: 1;
}

.ott-rating-stars {
  color: #FBBC04;
  font-size: 1.3rem;
  margin: 0.25rem 0;
  letter-spacing: 2px;
}

.ott-rating-label {
  color: var(--ott-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.ott-review-card {
  background: var(--ott-white);
  border: 1px solid var(--ott-border);
  border-radius: var(--ott-radius-lg);
  padding: 1.5rem;
  height: 100%;
  transition: var(--ott-transition);
  position: relative;
}

.ott-review-card:hover {
  box-shadow: var(--ott-shadow-md);
  border-color: var(--ott-primary);
}

.ott-review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.ott-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ott-primary);
  color: var(--ott-primary-contrast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.ott-review-stars {
  color: #FBBC04;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.ott-review-google {
  margin-left: auto;
  font-size: 1.25rem;
  color: #4285f4;
}

.ott-review-text {
  font-size: 0.9rem;
  color: var(--ott-text);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.ott-review-date {
  font-size: 0.78rem;
  color: var(--ott-text-light);
}

/* === CTA BANNER === */
.ott-cta-banner {
  background: linear-gradient(135deg, var(--ott-secondary) 0%, #1e2235 100%);
  color: var(--ott-white);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ott-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(245, 184, 0, 0.03) 60px,
    rgba(245, 184, 0, 0.03) 61px
  );
  pointer-events: none;
}

.ott-cta-banner h2 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  position: relative;
}

.ott-cta-banner p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  position: relative;
}

/* === ACCORDION === */
.ott-accordion .accordion-item {
  border: 1px solid var(--ott-border);
  border-radius: var(--ott-radius) !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.ott-accordion .accordion-button {
  font-family: var(--ott-font-heading);
  font-weight: 600;
  color: var(--ott-secondary);
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
}

.ott-accordion .accordion-button:not(.collapsed) {
  background: var(--ott-primary-light);
  color: var(--ott-secondary);
  box-shadow: none;
}

.ott-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.15);
  border-color: transparent;
}

.ott-accordion .accordion-body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ott-text);
}

/* === FOOTER === */
.ott-footer {
  background: var(--ott-secondary);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
}

.ott-footer-trust {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.ott-footer-trust i {
  color: var(--ott-primary);
}

.ott-footer-brand {
  margin-bottom: 1rem;
}

.ott-footer-brand img {
  border-radius: 6px;
  max-width: 200px;
  height: auto;
  margin-bottom: 0.5rem;
  display: block;
}

.ott-footer h5 {
  color: var(--ott-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.ott-footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--ott-primary);
}

.ott-footer-brand h5 {
  margin-bottom: 0;
  padding-bottom: 0;
}

.ott-footer-brand h5::after { display: none; }

.ott-footer a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.ott-footer a:hover { color: var(--ott-white); }

.ott-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ott-footer ul li {
  margin-bottom: 0.4rem;
}

.ott-footer ul li a::before {
  content: '\203A';
  margin-right: 0.4rem;
  color: var(--ott-primary);
}

.ott-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ott-footer-contact a,
.ott-footer-contact span {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}

.ott-footer-contact i {
  color: var(--ott-primary);
  width: 20px;
  flex-shrink: 0;
}

.ott-footer-callback h6 {
  color: var(--ott-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ott-footer-callback .form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--ott-white);
  font-size: 0.85rem;
}

.ott-footer-callback .form-control::placeholder {
  color: rgba(255,255,255,0.4);
}

.ott-footer-callback .form-control:focus {
  border-color: var(--ott-primary);
  box-shadow: none;
  background: rgba(255,255,255,0.12);
}

.btn-callback {
  background: var(--ott-primary);
  color: var(--ott-primary-contrast);
  border: none;
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  padding: 0.35rem 0.85rem;
  border-radius: var(--ott-radius);
  transition: var(--ott-transition);
}

.btn-callback:hover {
  background: var(--ott-primary-dark);
}

.ott-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* === WHATSAPP FLOAT === */
.ott-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1100;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--ott-transition);
}

.ott-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* === MOBILE STICKY CTA BAR === */
.ott-mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  display: none;
  background: var(--ott-white);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 0;
}

.ott-mobile-cta-bar.visible {
  display: flex !important;
}

.ott-mcta-call,
.ott-mcta-whatsapp {
  flex: 1;
  text-align: center;
  padding: 0.85rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.ott-mcta-call {
  background: var(--ott-primary);
  color: var(--ott-primary-contrast);
}

.ott-mcta-whatsapp {
  background: #25d366;
  color: var(--ott-white);
}

/* === PAGE CONTENT (inner pages — backward compat) === */
.ott-page-content {
  padding: 2rem 0 3rem;
}

.ott-page-content h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ott-secondary);
  margin-bottom: 1rem;
}

.ott-page-content h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ott-secondary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.ott-page-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.6rem;
}

.ott-page-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.ott-page-content ul, .ott-page-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.ott-page-content li { margin-bottom: 0.4rem; }

.ott-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.ott-page-content table th,
.ott-page-content table td {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--ott-border);
  font-size: 0.95rem;
}

.ott-page-content table th {
  background: var(--ott-light);
  font-weight: 600;
}

.ott-page-content figure { margin: 1.5rem 0; }

.ott-page-content figcaption {
  font-size: 0.85rem;
  color: var(--ott-text-light);
  text-align: center;
  margin-top: 0.5rem;
}

.ott-sidebar-form {
  position: sticky;
  top: 90px;
}

/* === BREADCRUMB === */
.ott-breadcrumb {
  background: var(--ott-light);
  padding: 0.75rem 0;
  font-size: 0.85rem;
}

.ott-breadcrumb a { color: var(--ott-text-light); }
.ott-breadcrumb .active { color: var(--ott-text); }

/* === THANK YOU === */
.ott-thankyou {
  text-align: center;
  padding: 4rem 0;
}

.ott-thankyou .checkmark {
  font-size: 4rem;
  color: var(--ott-success);
  margin-bottom: 1rem;
}

.ott-thankyou h1 {
  color: var(--ott-secondary);
  font-size: 2rem;
}

/* === BLOG CARDS === */
.ott-blog-card {
  background: var(--ott-white);
  border-radius: var(--ott-radius-lg);
  overflow: hidden;
  box-shadow: var(--ott-shadow);
  margin-bottom: 1.5rem;
  transition: var(--ott-transition);
  border: 1px solid var(--ott-border);
}

.ott-blog-card:hover {
  box-shadow: var(--ott-shadow-md);
}

.ott-blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ott-blog-card .card-body { padding: 1.25rem; }

.ott-blog-card h5 a {
  color: var(--ott-secondary);
  font-weight: 600;
}

.ott-blog-card h5 a:hover { color: var(--ott-primary-dark); }

/* Old route card (backward compat) */
.ott-route-card {
  background: var(--ott-white);
  border: 1px solid var(--ott-border);
  border-radius: var(--ott-radius);
  padding: 1.25rem;
  text-align: center;
  transition: var(--ott-transition);
}

.ott-route-card:hover {
  border-color: var(--ott-primary);
  box-shadow: 0 4px 12px rgba(245, 184, 0, 0.15);
}

.ott-route-card h6 {
  font-weight: 600;
  color: var(--ott-secondary);
  margin-bottom: 0.3rem;
}

.ott-route-card small { color: var(--ott-text-light); }

/* Old fleet card price (backward compat) */
.ott-fleet-card .price {
  color: var(--ott-primary-dark);
  font-weight: 700;
  font-size: 1.1rem;
}

/* === ANIMATION CLASSES === */
.ott-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ott-fade-in.ott-visible {
  opacity: 1;
  transform: translateY(0);
}

.ott-fade-in-delay-1 { transition-delay: 0.1s; }
.ott-fade-in-delay-2 { transition-delay: 0.2s; }
.ott-fade-in-delay-3 { transition-delay: 0.3s; }

@keyframes ottPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 184, 0, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(245, 184, 0, 0); }
}

.ott-pulse {
  animation: ottPulse 2s ease-in-out infinite;
}

@keyframes ottShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.ott-shake {
  animation: ottShake 0.4s ease;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .ott-hero { padding: 2.5rem 0; }
  .ott-hero h1 { font-size: 1.7rem; }
  .ott-lead-form { margin-top: 2rem; }
  .ott-section-title { font-size: 1.5rem; }
  .ott-section { padding: 3rem 0; }
  .ott-stat-number { font-size: 1.8rem; }
  .ott-steps-row::before { display: none; }
  .ott-cta-banner h2 { font-size: 1.5rem; }
}

@media (max-width: 767px) {
  .ott-footer-trust span:nth-child(n+3) { display: none; }
  .ott-footer-trust .mx-2 { display: none; }
  .ott-route-img-card { height: 180px; }
  .ott-whatsapp-float { bottom: 70px; }

  /* Prevent iOS Safari zoom on input focus (requires 16px minimum) */
  .ott-lead-form .form-control,
  .ott-lead-form .form-select,
  .ott-footer-callback .form-control {
    font-size: 16px;
  }

  /* Add bottom padding so mobile CTA bar doesn't overlap footer content */
  body { padding-bottom: 56px; }

  /* Ensure all inner page tables scroll horizontally */
  .ott-page-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Blog post legacy WordPress FAQ SVG icons — constrain size */
  .uagb-icon svg,
  .uagb-faq-icon-wrap svg {
    width: 16px;
    height: 16px;
  }

  /* Blog post legacy FAQ questions — readable font size */
  .uagb-question {
    font-size: 1rem;
    line-height: 1.4;
  }

  /* CTA buttons full width on mobile */
  .ott-cta-banner .btn-lg,
  .ott-hero .btn-lg {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .ott-hero { padding: 2rem 0; }
  .ott-hero h1 { font-size: 1.4rem; }
  .ott-hero .lead { font-size: 0.92rem; }
  .ott-lead-form form { padding: 1rem 1.25rem 0.75rem; }
  .ott-fleet-card .ott-fleet-img { height: 160px; }
  .ott-section { padding: 2.5rem 0; }
  .ott-stat-number { font-size: 1.5rem; }
  .ott-stat-label { font-size: 0.75rem; }
  .ott-section-title { font-size: 1.3rem; }
  .ott-rating-number { font-size: 2.25rem; }
  .ott-route-img-card { height: 160px; }
}

/* === PRINT === */
@media print {
  .ott-navbar, .ott-topbar, .ott-whatsapp-float, .ott-mobile-cta-bar,
  .ott-lead-form, .ott-cta-banner, .ott-footer-callback { display: none !important; }
  .ott-hero { background: #333 !important; -webkit-print-color-adjust: exact; }
}


/* ============================================
   UNIVERSAL FIXES v2 — Form UI + FAQ Width
   ============================================ */

/* === Form Input Icons — visible and properly positioned === */
.ott-input-icon {
  position: relative;
  display: block;
}

.ott-input-icon > i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 1rem;
  z-index: 2;
  pointer-events: none;
}

.ott-input-icon > input,
.ott-input-icon > input.form-control,
.ott-lead-form .ott-input-icon > input,
.ott-lead-form .ott-input-icon > .form-control,
.ott-input-icon > select {
  padding-left: 44px !important;
}

/* === Form Controls — clean styling === */
.ott-lead-form .form-control,
.ott-lead-form .form-select {
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding-top: 13px;
  padding-right: 15px;
  padding-bottom: 13px;
  padding-left: 15px;
  font-size: 15px;
  background: #fff;
  color: #333;
  transition: border-color 0.2s, box-shadow 0.2s;
  height: auto;
}

/* Inputs with icons need extra left padding for the icon */
.ott-input-icon .form-control {
  padding-left: 42px !important;
}

.ott-lead-form .form-control:focus,
.ott-lead-form .form-select:focus {
  border-color: #F5B800;
  box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.15);
  outline: none;
}

.ott-lead-form .form-control::placeholder {
  color: #aaa;
  font-size: 14px;
  opacity: 1;
}

/* Date input placeholder color */
.ott-lead-form input[type="date"] {
  color: #aaa;
}
.ott-lead-form input[type="date"]:not([value=""]):valid {
  color: #333;
}

/* === Submit button === */
.ott-lead-form .btn-submit {
  width: 100%;
  padding: 14px 20px;
  background: #F5B800;
  color: #1B1F2B;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ott-lead-form .btn-submit:hover {
  background: #D9A000;
  transform: translateY(-1px);
}

/* === Form header === */
.ott-lead-form-header {
  background: #1B1F2B;
  color: #fff;
  padding: 22px 20px;
  text-align: center;
}

.ott-lead-form-header h3 {
  color: #F5B800;
  margin: 0 0 4px;
  font-size: 1.3rem;
}

.ott-lead-form-header p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin: 0;
}

/* === Lead form wrapper === */
.ott-lead-form {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

.ott-lead-form form {
  padding: 20px;
}

/* === Urgency line === */
.ott-form-urgency {
  text-align: center;
  color: #e74c3c;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* === Sidebar form sticky === */
.ott-sidebar-form {
  position: sticky;
  top: 90px;
}

/* === FAQ wrapper when outside page-content section === */
.ott-faq-wrapper {
  padding: 40px 0;
}
