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

:root {
  /* Gojatra Brand Theme Core */
  --primary-color: #1a1c20;
  --secondary-color: #2a2d34;

  /* Accents - Orange and Green */
  --accent-orange: #ff6b00;
  /* Brand Orange */
  --accent-orange-hover: #e56000;
  --accent-green: #189e47;
  /* Brand Green */
  --accent-green-hover: #14833a;

  --header-footer-bg: #0a6b2c;

  --gradient-brand: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-green) 100%);

  /* Backgrounds */
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-subtle: #f0f0f0;

  /* Typography */
  --text-dark: #111111;
  --text-light: #666666;
  --text-muted: #999999;

  /* Borders and Shadows */
  --border-color: rgba(0, 0, 0, 0.08);
  --border-light: #eaeaec;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
  --shadow-accent: 0 10px 20px rgba(255, 107, 0, 0.2);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

/* For premium headings */
.serif-heading {
  font-family: 'Playfair Display', serif;
}

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

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 48px 0;
}

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

.section-title {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color);
  letter-spacing: -0.04em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  /* Pill shape for premium feel */
  font-weight: 500;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  border: 1px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--bg-white);
  border: none;
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.btn-accent {
  background-color: var(--accent-green);
  color: var(--bg-white);
  border: none;
}

.btn-accent:hover {
  background-color: var(--accent-green-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(24, 158, 71, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--accent-orange);
  color: var(--bg-white);
}

/* Header */
.header {
  background-color: var(--header-footer-bg);
  padding: 5px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--accent-orange);
}

.header .container {
  max-width: 100%;
  padding: 0 60px;
}

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

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.05em;
}

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

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links li a {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--bg-white);
  padding: 8px 16px;
  border-radius: 20px;
  transition: var(--transition-fast);
}

.nav-links li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--bg-white);
}

.auth-buttons {
  display: flex;
  gap: 15px;
}

.auth-buttons .btn {
  padding: 10px 24px;
  font-size: 0.95rem;
}

@media (max-width: 1250px) {
  .header .container {
    padding: 0 20px;
  }
  .nav-menu {
    gap: 15px;
  }
  .nav-links {
    gap: 10px;
  }
  .nav-links li a {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
  .auth-buttons {
    gap: 10px;
  }
  .auth-buttons .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 100%), url('../images/hero-bg.jpg') center/cover no-repeat;
  height: 85vh;
  display: flex;
  align-items: center;
  color: var(--bg-white);
  position: relative;
}

.hero-content {
  max-width: 700px;
}

.hero-content h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.05em;
}

.hero-content h1 span.orange {
  color: var(--accent-orange);
}

.hero-content h1 span.green {
  color: var(--accent-green);
}

.hero-content p {
  font-size: 1.35rem;
  margin-bottom: 40px;
  opacity: 0.85;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* Footer */
.footer {
  background-color: var(--header-footer-bg);
  color: var(--bg-white);
  padding: 80px 0 30px;
}

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

.footer-col h3 {
  font-size: 1.25rem;
  margin-bottom: 25px;
  font-weight: 500;
  color: var(--accent-color);
}

.footer-col ul {
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 15px;
  word-break: break-word;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
  color: var(--bg-white);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}

/* Form Styles */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-size: 1.05rem;
  background-color: var(--bg-subtle);
  transition: var(--transition-smooth);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23111111%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
  background-size: 12px auto;
  padding-right: 40px;
}

/* Cards */
.card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
}

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

.card-body {
  padding: 30px;
}

/* Custom premium tweaks for index specific sections */
.premium-number {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--accent-color);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-color);
  font-size: 1.5rem;
}

/* How It Works Section */
.hiw-section {
  background-color: #f8fff9;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hiw-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #e8f9ed 0%, transparent 60%);
  border-radius: 50%;
  z-index: 1;
}

.hiw-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #e8f9ed 0%, transparent 60%);
  border-radius: 50%;
  z-index: 1;
}

.hiw-bg-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(10, 107, 44, 0.05) 2px, transparent 2px);
  background-size: 30px 30px;
  z-index: 1;
}

.hiw-connector-wave {
  position: absolute;
  top: 75px;
  left: 150px;
  right: 150px;
  height: 100px;
  width: calc(100% - 300px);
  z-index: 0;
}

.hiw-steps-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 2;
  margin-top: 40px;
}

.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 320px;
  position: relative;
  z-index: 2;
}

.hiw-icon-circle {
  width: 150px;
  height: 150px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(24, 158, 71, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 25px;
  z-index: 5;
}

.hiw-inner-icon {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hiw-inner-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--accent-green);
  opacity: 0.05;
  border-radius: 50%;
}

.hiw-inner-icon svg {
  width: 60px;
  height: 60px;
  z-index: 2;
}

.hiw-badge-new {
  position: absolute;
  top: -5px;
  background: #0a6b2c;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
  border: 4px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hiw-text-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  position: relative;
  width: 100%;
}

.hiw-text-card::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 15px 15px 15px;
  border-style: solid;
  border-color: transparent transparent white transparent;
}

.hiw-text-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0 0 40px;
  border-color: transparent transparent transparent #0a6b2c;
  border-bottom-left-radius: 20px;
}

.hiw-text-card h3 {
  color: var(--accent-green);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.hiw-text-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.hiw-connector-dot {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-top: 57px;
}

.hiw-connector-dot::after {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--accent-orange);
  border-radius: 50%;
}

.hiw-connector-line {
  position: absolute;
  top: 75px;
  left: 150px;
  right: 150px;
  height: 2px;
  border-top: 3px dashed rgba(24, 158, 71, 0.4);
  z-index: 0;
}

@media (max-width: 1100px) {
  .hiw-steps-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hiw-step {
    width: calc(50% - 15px);
  }

  .hiw-connector-dot,
  .hiw-connector-line,
  .hiw-connector-wave {
    display: none;
  }
}

@media (max-width: 992px) {
  .hiw-step {
    width: calc(50% - 10px);
  }

  .hiw-icon-circle {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }

  .hiw-inner-icon {
    width: 60px;
    height: 60px;
  }

  .hiw-inner-icon svg {
    width: 35px;
    height: 35px;
  }

  .hiw-text-card {
    padding: 20px 15px;
  }

  .hiw-text-card::after {
    border-width: 20px 0 0 20px;
  }

  .hiw-text-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .hiw-text-card p {
    font-size: 0.85rem;
  }

  .hiw-steps-container {
    gap: 15px;
  }
}

/* Why Choose Us Section */
.wcu-section {
  background-color: #f8fff9;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.wcu-steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
  margin-top: 40px;
}

.wcu-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.wcu-icon-circle {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(24, 158, 71, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: -60px;
  z-index: 5;
}

.wcu-text-card {
  background: white;
  padding: 80px 20px 40px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  position: relative;
  width: 100%;
  z-index: 4;
}

.wcu-text-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0 0 40px;
  border-color: transparent transparent transparent #0a6b2c;
  border-bottom-left-radius: 20px;
}

.wcu-text-card h3 {
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-weight: 700;
}

.wcu-text-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.wcu-bottom-icon {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f0f0f0;
}

.wcu-bottom-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-green);
  fill: none;
  stroke-width: 2;
}

.wcu-connector-line {
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 3px dashed rgba(24, 158, 71, 0.4);
  z-index: 0;
}

@media (max-width: 1200px) {
  .wcu-steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .wcu-connector-line {
    display: none;
  }
}

@media (max-width: 992px) {
  .wcu-steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 15px;
  }

  .wcu-icon-circle {
    width: 80px;
    height: 80px;
    margin-bottom: -40px;
  }

  .wcu-icon-circle .hiw-inner-icon {
    width: 50px;
    height: 50px;
  }

  .wcu-icon-circle .hiw-inner-icon svg {
    width: 30px;
    height: 30px;
  }

  .wcu-text-card {
    padding: 50px 10px 30px 10px;
  }

  .wcu-text-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .wcu-text-card p {
    font-size: 0.8rem;
  }

  .wcu-bottom-icon {
    width: 35px;
    height: 35px;
    bottom: -15px;
  }

  .wcu-bottom-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Explore Cars Section */
.explore-cars-section {
  background-color: #fcfcfc;
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.explore-subtitle {
  color: var(--accent-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.dot-orange {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-orange);
}

.explore-title-wrapper {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}

.explore-desc {
  color: var(--text-light);
  font-size: 1.1rem;
}

.explore-features-pill {
  background: white;
  border-radius: 50px;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  width: max-content;
  margin: 0 auto 50px auto;
  position: relative;
  z-index: 5;
  flex-wrap: wrap;
  border: 1px solid #f0f0f0;
}

.explore-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
}

.explore-feature svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-green);
  fill: none;
  stroke-width: 2;
}

.explore-cards-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}

.explore-card {
  background: white;
  border-radius: 20px;
  padding: 40px 25px 30px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 6px solid transparent;
}

.theme-green {
  border-bottom-color: var(--accent-green);
}

.theme-orange {
  border-bottom-color: var(--accent-orange);
}

.card-number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.95rem;
  z-index: 2;
}

.theme-green .card-number {
  background: var(--accent-green);
}

.theme-orange .card-number {
  background: var(--accent-orange);
}

.card-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-ring {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 3px solid #f0f0f0;
}

.theme-green .card-icon-ring {
  border-top-color: var(--accent-green);
  border-right-color: var(--accent-green);
  transform: rotate(45deg);
}

.theme-orange .card-icon-ring {
  border-top-color: var(--accent-orange);
  border-right-color: var(--accent-orange);
  transform: rotate(45deg);
}

.card-icon-wrapper svg {
  width: 45px;
  height: 45px;
  z-index: 2;
}

.theme-green .card-icon-wrapper svg {
  stroke: var(--accent-green);
  fill: none;
  stroke-width: 2;
}

.theme-orange .card-icon-wrapper svg {
  stroke: var(--accent-orange);
  fill: none;
  stroke-width: 2;
}

.explore-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.theme-green h3 {
  color: var(--accent-green);
}

.theme-orange h3 {
  color: var(--accent-orange);
}

.card-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 40px;
}

.card-divider {
  width: 40px;
  height: 2px;
  background: #eee;
  margin-bottom: 20px;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  width: 100%;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 12px;
}

.card-features li svg {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  padding: 3px;
  flex-shrink: 0;
}

.theme-green .card-features li svg {
  background: #e8f9ed;
  stroke: var(--accent-green);
}

.theme-orange .card-features li svg {
  background: #fff0e6;
  stroke: var(--accent-orange);
}

.card-btn {
  margin-top: auto;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  background: white;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.theme-green .card-btn {
  border: 1.5px solid var(--accent-green);
  color: var(--accent-green);
}

.theme-orange .card-btn {
  border: 1.5px solid var(--accent-orange);
  color: var(--accent-orange);
}

.theme-green .card-btn:hover {
  background: var(--accent-green);
  color: white;
}

.theme-orange .card-btn:hover {
  background: var(--accent-orange);
  color: white;
}

.card-bottom-accent {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.1;
}

.theme-green .card-bottom-accent {
  background: var(--accent-green);
}

.theme-orange .card-bottom-accent {
  background: var(--accent-orange);
  left: auto;
  right: -30px;
}


/* Support Banner */
.explore-support-banner {
  background: var(--accent-green);
  border-radius: 15px;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  position: relative;
  z-index: 5;
  flex-wrap: wrap;
  gap: 20px;
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.banner-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-green);
  fill: none;
  stroke-width: 2;
}

.banner-text h4 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
}

.banner-text p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.btn-white {
  background: white;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.btn-white:hover {
  background: #f0f0f0;
  color: var(--accent-green);
}

.btn-white svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-green);
  fill: none;
  stroke-width: 2;
}

@media (max-width: 1200px) {
  .explore-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .explore-features-pill {
    width: 100%;
    border-radius: 20px;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .explore-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Compress cards to make them more square on mobile */
  .explore-card {
    padding: 20px 10px 15px !important;
  }

  .explore-card .card-icon-wrapper {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 12px !important;
  }

  .explore-card .card-icon-wrapper svg {
    width: 30px !important;
    height: 30px !important;
  }

  .explore-card h3 {
    font-size: 1.1rem !important;
    margin-bottom: 8px !important;
  }

  .explore-card .card-desc {
    font-size: 0.75rem !important;
    margin-bottom: 10px !important;
    min-height: auto !important;
  }

  .explore-card .card-divider {
    margin: 10px 0 !important;
  }

  .explore-card .card-features {
    margin: 0 0 15px 0 !important;
  }

  .explore-card .card-features li {
    font-size: 0.75rem !important;
    margin-bottom: 6px !important;
    gap: 5px !important;
  }

  .explore-card .card-btn {
    padding: 8px 12px !important;
    font-size: 0.8rem !important;
    width: 100%;
  }

  .explore-support-banner {
    flex-direction: column;
    text-align: center;
    padding: 15px 20px;
  }

  .banner-left {
    flex-direction: column;
  }
}

/* Modern Hero Section */
.hero-modern {
  position: relative;
  padding: 100px 0 180px 0;
  min-height: 600px;
  background: url('../images/banner%20(2).png') no-repeat center center;
  background-size: cover;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}

.hero-modern .container {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-modern-content {
  max-width: 550px;
  padding-top: 20px;
}

.badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f9ed;
  border: 1px solid #c2ebd1;
  color: var(--accent-green);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.hero-modern h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  color: #111;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -1px;
}

.hero-modern h1 span.text-green {
  color: var(--accent-green);
}

.hero-modern h1 span.text-orange {
  color: var(--accent-orange);
}

.hero-modern p {
  font-size: 1.25rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 95%;
  text-shadow: 0px 2px 4px rgba(255, 255, 255, 0.9);
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btns .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

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

.btn-orange-solid:hover {
  background: transparent;
  color: var(--accent-orange);
}

.btn-outline-green {
  background: white;
  color: var(--accent-green);
  border: 2px solid #e0e0e0;
}

.btn-outline-green:hover {
  border-color: var(--accent-green);
}

/* Floating Cards Right */
.hero-right-visuals {
  position: relative;
  width: 350px;
  height: 400px;
}

.floating-feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: absolute;
  right: 0;
  width: 260px;
  border: 1px solid #f0f0f0;
}

.card-safe {
  top: 20px;
}

.card-trusted {
  top: 110px;
}

.card-support {
  top: 200px;
}

.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-light-green {
  background: #e8f9ed;
  color: var(--accent-green);
}

.bg-light-orange {
  background: #fff0e6;
  color: var(--accent-orange);
}

.bg-light-gray {
  background: #f0f5f1;
  color: var(--accent-green);
}

.floating-text h5 {
  margin: 0 0 3px 0;
  font-size: 0.9rem;
  color: #111;
}

.floating-text p {
  margin: 0;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.2;
}

/* Search Box Container */
.search-wrapper-absolute {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.search-box-white {
  background: var(--accent-green);
  border-radius: 15px;
  padding: 20px 30px;
  box-shadow: 0 15px 40px rgba(24, 158, 71, 0.2);
  display: flex;
  align-items: flex-end;
  gap: 15px;
  border: none;
}

.search-box-white .form-group {
  margin-bottom: 0;
  flex: 1;
}

.search-box-white label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
}

.search-box-white .form-control {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  height: 48px;
  padding: 0 15px;
  width: 100%;
}

.search-box-white .form-control:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
}

.search-btn-large {
  background: var(--accent-orange);
  color: white;
  border: none;
  height: 48px;
  border-radius: 8px;
  padding: 0 25px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.search-btn-large:hover {
  background: #e05e00;
}

/* Bottom Features Row */
.bottom-features-row {
  background: #fcfcfc;
  padding: 110px 0 60px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mini-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bg-green-solid {
  background: var(--accent-green);
  color: white;
}

.bg-orange-solid {
  background: var(--accent-orange);
  color: white;
}

.mini-feature-text h5 {
  margin: 0 0 3px 0;
  font-size: 0.95rem;
  color: #111;
}

.mini-feature-text p {
  margin: 0;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .search-box-white {
    flex-wrap: wrap;
  }

  .search-box-white .form-group {
    min-width: 180px;
  }
}

@media (max-width: 992px) {
  .hero-right-visuals {
    display: none;
  }

  .hero-modern-content {
    max-width: 100%;
  }

  .hero-modern::before {
    background: rgba(245, 248, 245, 0.9);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .search-wrapper-absolute {
    position: relative;
    bottom: 0;
    margin-top: -30px;
    padding: 0 20px;
  }

  .bottom-features-row {
    padding-top: 60px;
  }
}

@media (max-width: 992px) {
  .hero-modern-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-btns {
    justify-content: center;
  }

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

  .hero-modern h1 {
    font-size: 2.8rem;
  }
}

/* ========================================================================= */
/* ABOUT PAGE STYLES */
/* ========================================================================= */

.about-features-row {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e8f9ed;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature-text h5 {
  margin: 0 0 2px 0;
  font-size: 0.9rem;
  color: #111;
  font-weight: 700;
}

.about-feature-text p {
  margin: 0;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.2;
}

/* Mission & Vision */
.mission-vision-section {
  padding: 80px 0;
  background: #fcfcfc;
}

.mission-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 25px;
  position: relative;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.mv-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.5;
}

.mv-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mv-card-mission .mv-icon {
  background: #e8f9ed;
  color: var(--accent-green);
}

.mv-card-vision .mv-icon {
  background: #fff0e6;
  color: var(--accent-orange);
}

.mv-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.mv-card-mission .mv-content h3 {
  color: var(--accent-green);
}

.mv-card-vision .mv-content h3 {
  color: var(--accent-orange);
}

.mv-content .divider {
  width: 40px;
  height: 3px;
  margin-bottom: 20px;
}

.mv-card-mission .mv-content .divider {
  background: var(--accent-green);
}

.mv-card-vision .mv-content .divider {
  background: var(--accent-orange);
}

.mv-content p {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Why Choose Us - Features Row */
.about-wcu-section {
  padding: 80px 0 0 0;
}

.about-wcu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-wcu-item {
  text-align: center;
}

.about-wcu-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  background: #e8f9ed;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-wcu-item h5 {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #111;
  font-weight: 700;
}

.about-wcu-item p {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.4;
}

/* Stats Banner */
.stats-banner-dark {
  background: var(--accent-green);
  border-radius: 20px;
  padding: 50px;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-banner-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,50 Q25,25 50,50 T100,50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>') repeat;
  background-size: 100px 100px;
}

.stat-item {
  position: relative;
  z-index: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.stat-item h3 {
  font-size: 2.2rem;
  margin-bottom: 5px;
  font-weight: 800;
}

.stat-item h6 {
  font-size: 0.9rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.stat-item p {
  font-size: 0.75rem;
  opacity: 0.8;
  margin: 0;
}

/* Bottom CTA Banner */
.cta-banner-section {
  padding: 60px 0 100px 0;
}

.cta-banner-dark {
  background: var(--accent-green);
  border-radius: 20px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.cta-banner-left {
  max-width: 500px;
}

.cta-banner-left h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.cta-banner-left h2 span {
  color: #8ce8af;
}

.cta-banner-left p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
}

.cta-banner-right {
  display: flex;
  gap: 15px;
}

@media (max-width: 992px) {
  .mission-cards-wrapper {
    grid-template-columns: 1fr;
  }

  .about-wcu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-banner-dark {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .stat-item {
    border-right: none;
  }

  .cta-banner-dark {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-features-row {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .about-wcu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-banner-dark {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================= */
/* SERVICES PAGE STYLES */
/* ========================================================================= */

.services-page-header {
  text-align: center;
  padding: 80px 0 40px 0;
}

.services-page-header .badge-trust {
  margin: 0 auto 20px auto;
}

.services-page-header h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

.services-page-header p {
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  width: calc(33.333% - 20px);
  background: white;
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service-card-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.service-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e8f9ed;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: #111;
}

.service-card-img {
  height: 120px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fbf9;
  /* slight background just in case image is small */
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  /* to blend white backgrounds if any */
}

.service-card-desc {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  align-self: flex-start;
}

.service-card-btn:hover {
  border-color: var(--accent-green);
  background: var(--accent-green);
  color: white;
}

/* Grey WCU Block */
.services-wcu-block {
  background: #f4f7f5;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 40px;
}

.services-wcu-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .service-card {
    width: calc(50% - 15px);
  }

  .services-wcu-block {
    padding: 40px 20px;
  }
}

@media (max-width: 992px) {
  .service-card {
    width: 100%;
  }
}

/* ========================================================================= */
/* ABOUT PAGE V2 STYLES */
/* ========================================================================= */

.about-hero-v2 {
  padding: 40px 0 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-hero-v2-left {
  flex: 1;
  max-width: 500px;
}

.about-hero-v2-right {
  flex: 1;
}

.hero-stats-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
}

.stat-card-v2 {
  padding: 30px 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-right: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.stat-card-v2:nth-child(even) {
  border-right: none;
}

.stat-card-v2:nth-child(3),
.stat-card-v2:nth-child(4) {
  border-bottom: none;
}

.stat-card-v2 .stat-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e8f9ed;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card-v2 h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 5px;
}

.stat-card-v2 h6 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
}

.stat-card-v2 p {
  font-size: 0.7rem;
  color: #666;
  margin: 0;
}

.mv-card-mission.v2 {
  background: #f4fdf7;
  border: none;
  box-shadow: none;
}

.mv-card-vision.v2 {
  background: #fff8f3;
  border: none;
  box-shadow: none;
}

.core-values-section {
  background: var(--header-footer-bg);
  padding: 50px 0;
  color: white;
  margin-top: 60px;
  border-radius: 20px;
}

.cv-title {
  text-align: center;
  margin-bottom: 50px;
}

.cv-title h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cv-title .divider {
  width: 40px;
  height: 2px;
  background: white;
  margin: 0 auto;
  opacity: 0.5;
}

.cv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cv-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cv-item:last-child {
  border-right: none;
}

.cv-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.cv-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.cv-item p {
  font-size: 0.8rem;
  line-height: 1.6;
  opacity: 0.8;
}

.cta-graphic-section {
  background: linear-gradient(135deg, #f0fbf4 0%, #e8f9ed 100%);
  border-radius: 24px;
  margin: 60px 0 100px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px 0 0;
  overflow: hidden;
}

.cta-graphic-left {
  flex: 1;
  position: relative;
  height: 350px;
  display: flex;
  align-items: flex-end;
}

.cta-graphic-left img {
  height: 120%;
  object-fit: contain;
  object-position: bottom left;
  margin-left: -50px;
  margin-bottom: -20px;
}

.cta-graphic-right {
  flex: 1;
  padding: 60px 0 60px 40px;
}

.cta-graphic-right h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.cta-graphic-right h2 span {
  color: var(--accent-green);
}

.cta-graphic-right p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-graphic-right .hero-btns {
  justify-content: flex-start;
}

@media (max-width: 992px) {
  .about-hero-v2 {
    flex-direction: column;
    text-align: center;
  }

  .about-hero-v2-left {
    max-width: 100%;
    margin: 0 auto;
  }

  .cv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .cv-item {
    border-right: none;
  }

  .cta-graphic-section {
    flex-direction: column;
    padding: 40px;
    text-align: center;
  }

  .cta-graphic-left {
    height: 250px;
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
  }

  .cta-graphic-left img {
    margin: 0;
    height: 100%;
    object-position: bottom center;
  }

  .cta-graphic-right {
    padding: 0;
  }

  .cta-graphic-right .hero-btns {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .hero-stats-grid-v2 {
    grid-template-columns: 1fr;
  }

  .stat-card-v2 {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .stat-card-v2:last-child {
    border-bottom: none;
  }

  .cv-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================= */
/* FIND A RIDE PAGE STYLES */
/* ========================================================================= */

.fr-page-wrapper {
  background-image: url('../images/find-ride-bg.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  min-height: 80vh;
  padding-bottom: 80px;
}

.fr-header {
  text-align: center;
  padding: 60px 0 40px 0;
}

.fr-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.fr-header p {
  font-size: 1.1rem;
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.fr-header p::before,
.fr-header p::after {
  content: '';
  display: block;
  width: 25px;
  height: 2px;
  background: var(--accent-green);
  opacity: 0.5;
}

.fr-search-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Trip Type Tabs */
.fr-trip-type {
  display: flex;
  background: #f4f7f5;
  border-radius: 12px;
  padding: 6px;
  margin-bottom: 30px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.fr-tab {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  background: transparent;
  font-size: 1rem;
}

.fr-tab.active {
  background: var(--accent-green);
  color: white;
  box-shadow: 0 4px 15px rgba(10, 107, 44, 0.2);
}

/* Form Layout */
.fr-form-grid {
  display: grid;
  gap: 25px;
  margin-bottom: 25px;
}

.fr-row-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  align-items: flex-end;
}

.fr-swap-btn {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #e8f9ed;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.fr-swap-btn:hover {
  background: var(--accent-green);
  color: white;
}

.fr-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

/* Custom Inputs */
.fr-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fr-input-group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: #111;
}

.fr-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.fr-input-wrapper .fr-icon {
  position: absolute;
  left: 16px;
  color: #888;
  display: flex;
}

.fr-input-wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%24%2024%22%20fill%3D%22none%22%20stroke%3D%22%23444%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.fr-input {
  width: 100%;
  padding: 15px 16px 15px 45px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #333;
  transition: all 0.3s;
  background: white;
}

.fr-input:focus {
  border-color: var(--accent-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 107, 44, 0.1);
}

/* Gradient Button */
.btn-search-gradient {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff6b00 0%, #ffaa00 100%);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.25);
}

.btn-search-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 107, 0, 0.35);
}

/* Features Block */
.fr-features-block {
  background: #f4f7f5;
  border-radius: 20px;
  padding: 30px;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fr-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.fr-feature-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.fr-feature-text h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}

.fr-feature-text p {
  font-size: 0.75rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 992px) {

  .fr-row-1,
  .fr-row-2,
  .fr-features-block {
    grid-template-columns: 1fr;
  }

  .fr-swap-btn {
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

/* Mobile Header Navigation */
.mobile-menu-icon {
  display: none;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 992px) {
  .header .container.nav {
    position: relative;
    padding: 15px 20px;
  }

  .mobile-menu-icon {
    display: block;
    position: relative;
    z-index: 1000;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--header-footer-bg);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-toggle-checkbox:checked~.nav-menu {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 15px;
  }

  .auth-buttons {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .auth-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

/* Mobile Hero & Search Box Final Layout */
@media (max-width: 992px) {
  .hero-modern {
    flex-direction: column !important;
    /* Stack items vertically */
    padding: 20px 0 30px 0 !important;
    /* Reduced space to make banner height smaller on mobile */
    background-size: 100% auto !important;
    background-position: center center !important;
    /* Center background to move the image up */
    min-height: auto !important;
  }

  .hero-modern h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .hero-modern p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .hero-btns {
    margin-bottom: 10px;
  }

  .hero-btns .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .search-wrapper-absolute {
    position: relative !important;
    margin-top: 10px;
    left: 0;
    width: 100%;
    padding: 0 10px;
    z-index: 10;
  }

  .search-box-white {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
    padding: 10px !important;
    align-items: end !important;
  }

  .search-box-white .form-group {
    min-width: 0 !important;
    margin: 0 !important;
    width: 100%;
  }

  /* Reset span since it is now flex column */
  .search-box-white .form-group:nth-child(1),
  .search-box-white .form-group:nth-child(2) {
    grid-column: auto;
  }

  /* Date, Time, Vehicle, Button span 1 column each */
  .search-box-white label {
    font-size: 0.55rem;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .search-box-white .form-control {
    height: 30px;
    padding: 0 4px;
    font-size: 0.65rem;
  }

  /* Reset button span */
  .search-btn-large {
    grid-column: span 1;
    height: 30px !important;
    min-width: 0 !important;
    padding: 0 !important;
    font-size: 0.75rem;
    justify-content: center;
    margin-top: 0;
  }

  .bottom-features-row {
    padding-top: 40px !important;
  }
}