@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --primary: #1B3A2D;      /* Deep Forest Green (Uttarakhand Mountains) */
  --primary-rgb: 27, 58, 45;
  --accent: #E8A020;       /* Warm Saffron Gold (Dev Bhoomi Theme) */
  --accent-rgb: 232, 160, 32;
  --dark: #0F1F18;         /* Rich Dark Slate-Green */
  --dark-rgb: 15, 31, 24;
  --light: #F5F0E8;        /* Warm Cream Background */
  --light-rgb: 245, 240, 232;
  --text: #2C2C2C;         /* Charcoal for maximum readability */
  --muted: #7A7A6E;        /* Soft Sage Grey */
  --white: #ffffff;
  --whatsapp: #25D366;     /* Official WhatsApp Green */
  --whatsapp-hover: #128C7E;
  
  /* Layout & Spacing */
  --section-padding: 6rem;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 6px rgba(15, 31, 24, 0.05);
  --shadow-md: 0 10px 20px rgba(15, 31, 24, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 31, 24, 0.12);
  --glow: 0 0 15px rgba(232, 160, 32, 0.4);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--light);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border: 2px solid var(--dark);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
}

/* Alternating Section Backgrounds & Textures */
.section-dark {
  background-color: var(--dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: #dfdfd5;
}

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

/* Subtle dot pattern for dark sections */
.bg-dark-texture {
  position: relative;
}

.bg-dark-texture::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    radial-gradient(rgba(232, 160, 32, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(27, 58, 45, 0.3) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  opacity: 1;
  pointer-events: none;
  z-index: -1;
}

/* Accent Labels */
.accent-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-wrapper.left-aligned {
  text-align: left;
  margin-left: 0;
}

.section-title-wrapper p {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-dark .section-title-wrapper p {
  color: #c5c5b5;
}

/* Diagonal Clip-Path Dividers */
.diagonal-top-dark {
  clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%);
  margin-top: -4vw;
  padding-top: calc(4vw + var(--section-padding));
}

.diagonal-bottom-dark {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
  margin-bottom: -4vw;
  padding-bottom: calc(4vw + var(--section-padding));
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 1rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow);
  background-color: #f7b030;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-dark-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-dark-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Premium Card Base */
.premium-card {
  background-color: var(--white);
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--glow);
}

/* Glassmorphism Stat Card */
.glass-card {
  background: rgba(27, 58, 45, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 2rem;
  color: var(--white);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px);
  background: rgba(27, 58, 45, 0.6);
  border-color: rgba(232, 160, 32, 0.3);
  box-shadow: var(--glow);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1010;
  transition: var(--transition);
  padding: 1.5rem 0;
}

.header-scrolled {
  background: rgba(15, 31, 24, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(232, 160, 32, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  height: 55px;
  transition: var(--transition);
}

.logo-img {
  height: 95px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.header-scrolled .logo {
  height: 45px;
}

.header-scrolled .logo-img {
  height: 78px;
}

.footer-logo {
  height: 50px;
}

.footer-logo .logo-img {
  height: 86px;
}

.logo span {
  color: var(--accent);
}

.logo-icon {
  font-size: 1.6rem;
  color: var(--accent);
  filter: drop-shadow(0 0 5px rgba(232, 160, 32, 0.5));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  z-index: 1020;
  width: 44px;
  height: 44px;
  padding: 10px;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-right: -10px;
}

.hamburger:hover .hamburger-line {
  background-color: var(--accent);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
  border-radius: 1px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  background: #0f1f18; /* Fallback */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.05);
  animation: zoomBg 20s infinite alternate;
}

@keyframes zoomBg {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(15, 31, 24, 0.9) 0%, rgba(27, 58, 45, 0.75) 50%, rgba(15, 31, 24, 0.9) 100%);
  z-index: 2;
}

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero h1 span {
  font-family: var(--font-accent);
  color: var(--accent);
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1rem;
}

.hero-subtext {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: rgba(245, 240, 232, 0.9);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Animated Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
  cursor: pointer;
  transition: var(--transition);
}

.scroll-indicator:hover {
  opacity: 1;
  color: var(--accent);
}

.scroll-indicator span {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-indicator-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ==========================================================================
   TRUST BAR / STATS
   ========================================================================== */
.trust-bar {
  margin-top: -5rem;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(245, 240, 232, 0.7);
  font-weight: 600;
}

/* ==========================================================================
   POPULAR ROUTES
   ========================================================================== */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.route-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 350px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  border-left: 4px solid var(--accent);
  cursor: pointer;
}

.route-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: var(--transition);
}

.route-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(15, 31, 24, 0.95) 0%, rgba(15, 31, 24, 0.4) 60%, transparent 100%);
  z-index: 2;
  transition: var(--transition);
}

.route-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  width: 100%;
  color: var(--white);
}

.route-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.route-name {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.route-price-tag {
  display: inline-block;
  background-color: var(--accent);
  color: var(--dark);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* Route Hover Effects */
.route-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(232, 160, 32, 0.25);
}

.route-card:hover .route-bg {
  transform: scale(1.1);
}

.route-card:hover .route-overlay {
  background: linear-gradient(to top, rgba(27, 58, 45, 0.95) 0%, rgba(15, 31, 24, 0.3) 60%, rgba(27, 58, 45, 0.2) 100%);
}

.route-card:hover .route-icon {
  transform: translateX(5px);
  color: var(--white);
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: rgba(232, 160, 32, 0.3);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(232, 160, 32, 0.1);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--accent);
  color: var(--dark);
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.why-card p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 0;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 6px;
  padding: 2.5rem;
  position: relative;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3rem;
  color: rgba(232, 160, 32, 0.12);
  line-height: 1;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-accent);
}

.author-info h4 {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* ==========================================================================
   CONTACT STRIP / CTA BANNER
   ========================================================================== */
.cta-banner {
  background-color: var(--primary);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(232, 160, 32, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(245, 240, 232, 0.8);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   PAGE HERO (Subpages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 10rem 0 6rem;
  background-color: var(--dark);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.25;
}

.page-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(15, 31, 24, 0.9) 0%, rgba(27, 58, 45, 0.7) 100%);
  z-index: 2;
}

.page-hero .container {
  position: relative;
  z-index: 3;
}

.page-hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.breadcrumb a {
  color: rgba(245, 240, 232, 0.7);
}

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

.breadcrumb span {
  color: var(--accent);
}

.breadcrumb-separator {
  color: rgba(245, 240, 232, 0.4);
}

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.service-card {
  display: flex;
  gap: 2rem;
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 6px;
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--glow);
}

.service-icon-wrapper {
  flex-shrink: 0;
}

.service-icon {
  width: 65px;
  height: 65px;
  background-color: rgba(27, 58, 45, 0.05);
  color: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
  border-left: 2px solid var(--accent);
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--accent);
  transform: scale(1.05);
}

.service-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-info p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Custom Route Section */
.custom-route-box {
  background: var(--dark);
  border-radius: 8px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--accent);
  margin-top: 5rem;
}

.custom-route-box h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.custom-route-box p {
  color: rgba(245, 240, 232, 0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.split-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.split-image-container {
  position: relative;
}

.split-image-container::before {
  content: "";
  position: absolute;
  top: 15px; left: 15px; width: 100%; height: 100%;
  border: 3px solid var(--accent);
  z-index: 1;
  border-radius: 6px;
  pointer-events: none;
}

.split-image {
  border-radius: 6px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  height: auto;
  display: block;
}

.split-content h2 {
  margin-bottom: 1.5rem;
}

.split-content p {
  color: var(--text);
  margin-bottom: 1.5rem;
}

/* Icon List */
.icon-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.icon-list-item i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.icon-list-text h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.icon-list-text p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.4;
}

/* Driver Section */
.drivers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.driver-card {
  background-color: var(--white);
  padding: 2.5rem;
  text-align: center;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--accent);
  transition: var(--transition);
}

.driver-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.driver-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(27, 58, 45, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--primary);
  margin: 0 auto 1.5rem;
  border: 2px dashed var(--accent);
  transition: var(--transition);
}

.driver-card:hover .driver-icon {
  background-color: var(--primary);
  color: var(--accent);
  border-style: solid;
}

.driver-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.driver-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* Fleet Showcase */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.fleet-card {
  background-color: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--accent);
  transition: var(--transition);
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.fleet-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.fleet-details {
  padding: 2rem;
}

.fleet-details h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fleet-details h3 span {
  font-size: 0.8rem;
  font-family: var(--font-accent);
  color: var(--accent);
  background-color: rgba(232, 160, 32, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-weight: 700;
}

.fleet-specs {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 1rem 0;
  margin-bottom: 1.5rem;
}

.fleet-spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.fleet-spec-item i {
  color: var(--primary);
}

/* Map Section */
.map-section {
  padding: 0;
  height: 450px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.map-embed {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 3.5rem;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent);
}

.contact-form-wrapper h2 {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.75rem;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(27, 58, 45, 0.15);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background-color: #faf9f6;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.1);
}

.form-input::placeholder {
  color: #a0a095;
}

/* Inline Errors */
.error-msg {
  display: none;
  color: #d93838;
  font-size: 0.8rem;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  position: absolute;
  bottom: -1.3rem;
  left: 0;
}

.form-input.is-invalid {
  border-color: #d93838;
  background-color: rgba(217, 56, 56, 0.02);
}

.form-input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(217, 56, 56, 0.1);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-card {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem;
  border-radius: 6px;
  border-left: 4px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(232, 160, 32, 0.04) 1px, transparent 1px);
  background-size: 16px 16px;
}

.info-card-content {
  position: relative;
  z-index: 2;
}

.info-card h2 {
  color: var(--white);
  margin-bottom: 2rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background-color: rgba(232, 160, 32, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.info-text p,
.info-text a {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.9);
  margin-bottom: 0;
}

.info-text a:hover {
  color: var(--accent);
}

.info-map-wrapper {
  border-radius: 6px;
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 5rem 0 2rem;
  position: relative;
}

/* Mountain Silhouette SVG top of footer */
.footer-mountain-svg {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 62px;
  z-index: 5;
  pointer-events: none;
}

.footer-mountain-path {
  fill: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-about .logo {
  color: var(--white);
}

.footer-tagline {
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--accent);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 0.25rem;
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border: 1px solid rgba(232, 160, 32, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

/* ==========================================================================
   BLOG DETAILS & RICH TEXT ARTICLE STYLING
   ========================================================================== */
.blog-post-wrapper {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.blog-main-content {
  flex: 2.5;
  min-width: 0;
}

.blog-sidebar {
  flex: 1;
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-reader-card {
  background: var(--white);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(27, 58, 45, 0.08);
}

.blog-meta-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(27, 58, 45, 0.08);
  font-size: 0.85rem;
  color: var(--muted);
}

.blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-accent);
  font-weight: 600;
}

.blog-meta-item i {
  color: var(--accent);
}

.blog-reader-content {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.85;
  color: #2c3e50;
}

.blog-reader-content h2,
.blog-reader-content h3,
.blog-reader-content h4 {
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.blog-reader-content h2 {
  font-size: 1.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(232, 160, 32, 0.25);
}

.blog-reader-content h3 {
  font-size: 1.45rem;
}

.blog-reader-content h4 {
  font-size: 1.2rem;
}

.blog-reader-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.85;
  color: #333333;
}

.blog-reader-content ul,
.blog-reader-content ol {
  margin: 1.75rem 0;
  background: #FAF7F2;
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem 1.25rem 2.5rem;
  border-radius: 0 8px 8px 0;
  list-style-position: outside;
}

.blog-reader-content li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  color: var(--primary);
  line-height: 1.6;
}

.blog-reader-content li:last-child {
  margin-bottom: 0;
}

.blog-reader-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: rgba(27, 58, 45, 0.04);
  border-left: 4px solid var(--primary);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary);
  border-radius: 0 8px 8px 0;
}

.blog-reader-content a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
  transition: var(--transition);
}

.blog-reader-content a:hover {
  color: var(--primary);
}

.blog-reader-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-sm);
  display: block;
}

.blog-reader-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
  border-radius: 6px;
  overflow: hidden;
}

.blog-reader-content table th,
.blog-reader-content table td {
  padding: 0.85rem 1.2rem;
  border: 1px solid #eef2f3;
  text-align: left;
}

.blog-reader-content table th {
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-accent);
}

.blog-reader-content table tr:nth-child(even) {
  background-color: #fafbfc;
}

/* Sidebar Cards */
.sidebar-widget {
  background: var(--white);
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 58, 45, 0.08);
}

.sidebar-widget-title {
  font-size: 1.15rem;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
}

.sidebar-recent-post {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
  text-decoration: none;
  transition: transform 0.2s;
}

.sidebar-recent-post:last-child {
  margin-bottom: 0;
}

.sidebar-recent-post:hover {
  transform: translateX(4px);
}

.sidebar-recent-img {
  width: 65px;
  height: 65px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.sidebar-recent-info h4 {
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--primary);
  margin: 0 0 0.3rem 0;
  font-family: var(--font-body);
  font-weight: 600;
}

.sidebar-recent-info span {
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 991px) {
  .blog-post-wrapper {
    flex-direction: column;
  }
  .blog-sidebar {
    position: static;
    width: 100%;
  }
  .blog-reader-card {
    padding: 1.75rem;
  }
}

