/* frontend/assets/css/style.css */
body {
  background: #f8f9fa;
  color: #14532d;
  font-family: 'Segoe UI', Arial, sans-serif;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  color: #14532d;
  font-weight: 700;
  letter-spacing: 0.5px;
}

a {
  color: #166534;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #ffd700;
}

.btn-success, .btn-success:focus {
  background: #166534 !important;
  border: none;
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(20,83,45,0.08);
  transition: background 0.2s;
}
.btn-success:hover {
  background: #14532d !important;
  color: #fff !important;
}

.card, .shadow {
  box-shadow: 0 4px 24px rgba(20,83,45,0.08) !important;
  border-radius: 12px;
}

input, select, textarea {
  background: #f8f9fa;
  color: #14532d;
  border: 1px solid #166534;
  border-radius: 6px;
}
input:focus, select:focus, textarea:focus {
  border-color: #ffd700;
  background: #fff;
  color: #14532d;
}

/* NAVBAR */
.custom-navbar {
  background: linear-gradient(90deg, #14532d 70%, #166534 100%);
  border-bottom: 2px solid #166534;
  box-shadow: 0 2px 16px rgba(20,83,45,0.10);
  z-index: 100;
}
.logo-text {
  color: #ffd700 !important;
  letter-spacing: 1.5px;
  font-size: 1.7rem;
  text-shadow: 0 2px 8px rgba(20,83,45,0.10);
  font-family: 'Segoe UI', Arial, sans-serif;
}
.navbar-nav .nav-link {
  color: #f8f9fa !important;
  font-weight: 500;
  margin-right: 8px;
  font-size: 1.08rem;
  letter-spacing: 0.2px;
  border-radius: 6px;
  padding: 8px 16px;
  transition: color 0.18s, background 0.18s;
  display: flex;
  align-items: center;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
  color: #ffd700 !important;
  background: rgba(255,255,255,0.06);
  text-decoration: none;
}
.navbar-nav .dropdown-toggle::after {
  margin-left: 0.4em;
  vertical-align: middle;
}
#selected-lang, #selected-currency {
  font-weight: 700;
  color: #ffd700;
  margin-left: 2px;
  letter-spacing: 0.5px;
}
.dropdown-menu {
  min-width: 120px;
  font-size: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(20,83,45,0.10);
}
.dropdown-item {
  color: #14532d;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.dropdown-item:hover, .dropdown-item:focus {
  background: #166534;
  color: #ffd700;
}
.fas.fa-globe, .fas.fa-coins {
  color: #ffd700;
  font-size: 1.1em;
  margin-right: 2px;
}
.navbar-toggler {
  border: none;
  outline: none;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 2px #ffd700;
}
@media (max-width: 991.98px) {
  .custom-navbar {
    padding-bottom: 6px;
  }
  .navbar-nav .nav-link {
    margin-right: 0;
    margin-bottom: 4px;
    padding: 10px 18px;
    text-align: left;
  }
  .navbar-nav .dropdown-menu {
    min-width: 100px;
    font-size: 1rem;
  }
}

.reservation-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(20,83,45,0.10);
  margin-top: -32px;
  margin-bottom: 32px;
}
.reservation-card h2 {
  color: #14532d;
  letter-spacing: 1px;
}
.reservation-card .form-label {
  color: #166534;
  font-weight: 600;
}
.reservation-card .form-control, .reservation-card .form-select {
  border-radius: 8px;
  border: 1.5px solid #166534;
  background: #f8f9fa;
  color: #14532d;
  font-weight: 500;
  transition: border-color 0.2s;
}
.reservation-card .form-control:focus, .reservation-card .form-select:focus {
  border-color: #ffd700;
  background: #fff;
  color: #14532d;
  box-shadow: 0 0 0 2px #ffd70033;
}
.reservation-card .btn-success {
  background: linear-gradient(90deg, #166534 0%, #14532d 100%) !important;
  border: none;
  color: #fff !important;
  font-weight: 700;
  border-radius: 24px;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px rgba(20,83,45,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.reservation-card .btn-success:hover, .reservation-card .btn-success:focus {
  background: linear-gradient(90deg, #14532d 0%, #166534 100%) !important;
  color: #ffd700 !important;
  box-shadow: 0 4px 24px rgba(20,83,45,0.13);
}
@media (max-width: 768px) {
  .reservation-card {
    padding: 1.2rem;
    margin-top: 12px;
  }
  .reservation-card h2 {
    font-size: 1.3rem;
  }
}

.reservation-section {
  width: 100vw;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}
.modern-res-card {
  margin-left: auto;
  margin-right: auto;
  padding: 1.6rem 2.2rem 1.2rem 2.2rem;
  background: linear-gradient(90deg, #f8f9fa 60%, #e6f4ea 85%, #d1e7dd 100%);
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(20,83,45,0.08);
  margin-top: -32px;
  margin-bottom: 28px;
}
/* Stepper */
.stepper {
  gap: 0.3rem;
}
.step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #14532d;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  border: 1.5px solid #166534;
}
.step-circle.step-active {
  background: linear-gradient(90deg, #ffd700 0%, #166534 100%);
  color: #fff;
  border-color: #ffd700;
  box-shadow: 0 1px 6px rgba(255,215,0,0.08);
}
.step-line {
  flex: 1 1 0;
  height: 2px;
  background: linear-gradient(90deg, #e0e0e0 0%, #166534 100%);
  border-radius: 1px;
  margin: 0 4px;
}
/* Floating label + ikon */
.with-icon .form-control, .with-icon .form-select {
  padding-left: 1.7rem;
  font-size: 1rem;
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid #166534;
}
.with-icon label {
  left: 0.4rem;
  font-size: 0.98rem;
  color: #166534;
  font-weight: 500;
}
.with-icon i {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #166534;
  font-size: 0.95em;
  pointer-events: none;
}
.form-floating.with-icon {
  position: relative;
}
.form-floating.with-icon label {
  padding-left: 1.1rem;
}
/* Adım geçişi fade animasyonu */
.step-fade {
  opacity: 1;
  transition: opacity 0.25s;
}
.step-fade-in {
  opacity: 1 !important;
  animation: fadeInStep 0.25s;
}
.step-fade-out {
  opacity: 0 !important;
  animation: fadeOutStep 0.25s;
}
@keyframes fadeInStep {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeOutStep {
  from { opacity: 1; }
  to { opacity: 0; }
}
/* Butonlar */
.modern-res-card .btn-success, .modern-res-card .btn-outline-secondary {
  font-size: 1rem;
  border-radius: 16px;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
}
.modern-res-card .btn-success {
  background: linear-gradient(90deg, #166534 0%, #14532d 100%) !important;
  color: #fff !important;
  border: none;
  box-shadow: 0 1px 6px rgba(20,83,45,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.modern-res-card .btn-success:hover, .modern-res-card .btn-success:focus {
  background: linear-gradient(90deg, #14532d 0%, #166534 100%) !important;
  color: #ffd700 !important;
  box-shadow: 0 2px 12px rgba(20,83,45,0.10);
}
.modern-res-card .btn-outline-secondary {
  border: 1.5px solid #166534;
  color: #166534;
  background: #fff;
  transition: background 0.18s, color 0.18s;
}
.modern-res-card .btn-outline-secondary:hover, .modern-res-card .btn-outline-secondary:focus {
  background: #166534;
  color: #fff;
}
@media (max-width: 991.98px) {
  .modern-res-card {
    padding: 1.1rem 0.7rem 1rem 0.7rem;
    margin-top: -12px;
  }
  .step-circle {
    width: 22px;
    height: 22px;
    font-size: 0.92rem;
  }
}
@media (max-width: 768px) {
  .reservation-section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .modern-res-card {
    padding: 0.5rem 0.2rem 0.5rem 0.2rem;
    margin-top: 0;
    border-radius: 10px;
  }
  .with-icon .form-control, .with-icon .form-select {
    min-height: 34px;
    font-size: 0.92rem;
  }
  .stepper {
    gap: 0.1rem;
  }
}

/* Modern Rezervasyon Section */
.reservation-modern-section {
  background: linear-gradient(90deg, #f8fafc 0%, #e8f5e9 100%);
  min-height: 420px;
  border: none;
}
.reservation-modern-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.reservation-modern-form {
  width: 100%;
  margin: 0 auto;
}
/* Minimalist Stepper */
.modern-stepper {
  gap: 12px;
}
.modern-step-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #4caf50;
  background: #fff;
  transition: background 0.2s, border 0.2s;
  position: relative;
}
.modern-step-circle.modern-step-active {
  background: #4caf50;
  border-color: #388e3c;
}
.modern-step-line {
  flex: 1 1 0;
  height: 2px;
  background: #b2dfdb;
  margin: 0 2px;
}
/* Inputlar */
.modern-label {
  font-size: 0.95rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
  display: block;
}
.modern-input-group {
  position: relative;
}
.modern-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #b2dfdb;
  background: transparent;
  font-size: 1.15rem;
  padding: 0.5rem 0.5rem 0.5rem 2.2rem;
  outline: none;
  transition: border-color 0.2s;
  color: #222;
  border-radius: 0;
  box-shadow: none;
}
.modern-input:focus {
  border-bottom: 2px solid #4caf50;
  background: transparent;
}
.modern-input.is-invalid {
  border-bottom: 2px solid #e53935;
  background: transparent;
}
.modern-input-group i {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #4caf50;
  font-size: 1.1rem;
  pointer-events: none;
}
/* Butonlar */
.modern-btn, .modern-btn-outline {
  font-size: 1.15rem;
  padding: 0.7rem 2.5rem;
  border-radius: 1.5rem;
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: none;
}
.modern-btn {
  background: #4caf50;
  color: #fff;
}
.modern-btn:hover, .modern-btn:focus {
  background: #388e3c;
  color: #fff;
}
.modern-btn-outline {
  background: transparent;
  color: #4caf50;
  border: 2px solid #4caf50;
}
.modern-btn-outline:hover, .modern-btn-outline:focus {
  background: #e8f5e9;
  color: #388e3c;
  border-color: #388e3c;
}
/* Step Animasyonları */
.step-fade {
  opacity: 1;
  transition: opacity 0.25s;
}
.step-fade-in {
  opacity: 1;
  animation: fadeInStep 0.25s;
}
.step-fade-out {
  opacity: 0;
  animation: fadeOutStep 0.25s;
}
@keyframes fadeInStep {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeOutStep {
  from { opacity: 1; }
  to { opacity: 0; }
}
/* Grid ve Responsive */
.reservation-modern-form .row {
  --bs-gutter-x: 2rem;
}
@media (min-width: 992px) {
  .reservation-modern-form .row {
    flex-wrap: nowrap;
  }
  #step1 > .col-lg, #step2 > .col-lg {
    min-width: 0;
    flex: 1 1 0;
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .reservation-modern-wrapper {
    padding: 0 0.5rem;
  }
  .reservation-modern-form .row {
    --bs-gutter-x: 0.5rem;
  }
}
@media (max-width: 767.98px) {
  .reservation-modern-section {
    padding: 2rem 0 1.5rem 0;
  }
  .modern-btn, .modern-btn-outline {
    width: 100%;
    padding: 0.7rem 0;
  }
}

/* Reservation Hero Section */
.reservation-hero-section {
  background: #f8fafc;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  padding-top: 0 !important;
}
.reservation-hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 220px;
  width: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100%25" height="220" viewBox="0 0 1440 220" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 80C180 160 420 0 720 40C1020 80 1260 220 1440 120V0H0V80Z" fill="%23f8fafc"/></svg>') no-repeat top center/cover;
  z-index: 0;
  opacity: 1;
}
.reservation-hero-row, .reservation-hero-head {
  position: relative;
  z-index: 1;
}
.reservation-hero-row {
  min-height: 480px;
}
.reservation-hero-img-col {
  background: none;
}
.reservation-hero-img {
  max-width: 110%;
  max-height: 700px;
  object-fit: contain;
  display: block;
  transition: max-width 0.2s, max-height 0.2s;
}
/* Form Kartı */
.reservation-card-box {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 12px 40px 0 rgba(60,72,88,0.18), 0 1.5px 8px 0 rgba(60,72,88,0.10);
  border-radius: 1.5rem;
  max-width: 400px;
  width: 100%;
  border: 1.5px solid #e3e8ee;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.reservation-card-box:hover {
  box-shadow: 0 20px 60px 0 rgba(60,72,88,0.22), 0 2px 12px 0 rgba(60,72,88,0.13);
  border-color: #b2dfdb;
}
.reservation-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3a4a;
  margin-bottom: 0.25rem;
}
.reservation-desc {
  font-size: 1rem;
  color: #6c7a89;
  margin-bottom: 1.5rem;
}
.reservation-label {
  font-size: 1rem;
  font-weight: 600;
  color: #3b5998;
  margin-bottom: 0.25rem;
  display: block;
}
.reservation-input-group {
  position: relative;
}
.reservation-input {
  border-radius: 0.75rem !important;
  border: 1.5px solid #e3e8ee;
  background: #f8fafc;
  font-size: 1rem;
  padding-left: 2.2rem !important;
  min-height: 44px;
  color: #2d3a4a;
  box-shadow: none !important;
  transition: border-color 0.2s;
}
.reservation-input:focus {
  border-color: #3b5998;
  background: #fff;
}
.reservation-input-icon {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #3b5998;
  font-size: 1.1rem;
  z-index: 2;
  pointer-events: none;
}
.reservation-btn {
  background: linear-gradient(90deg, #3b5998 0%, #4caf50 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 1.5rem;
  padding: 0.85rem 0;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(60,72,88,0.10);
  transition: background 0.2s, color 0.2s;
}
.reservation-btn:hover, .reservation-btn:focus {
  background: linear-gradient(90deg, #2d3a4a 0%, #388e3c 100%);
  color: #fff;
}
@media (max-width: 991.98px) {
  .reservation-hero-row {
    min-height: 0;
  }
  .reservation-hero-img-col {
    display: none !important;
  }
  .reservation-card-box {
    margin: 0 auto;
    max-width: 98vw;
  }
  .reservation-hero-section .reservation-hero-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 90vw;
    max-height: 260px;
    object-fit: contain;
  }
  .reservation-hero-section .d-block.d-lg-none {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .reservation-hero-section {
    padding-top: 0 !important;
  }
}
@media (max-width: 575.98px) {
  .reservation-card-box {
    padding: 1.2rem 0.5rem;
    border-radius: 1rem;
  }
  .reservation-title {
    font-size: 1.15rem;
  }
}

.reservation-hero-head {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
  padding-top: 1.5rem;
}
.reservation-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #24543a;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}
.reservation-hero-subtitle {
  font-size: 1.25rem;
  color: #4caf50;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .reservation-hero-title {
    font-size: 1.6rem;
  }
  .reservation-hero-subtitle {
    font-size: 1rem;
  }
  .reservation-hero-head {
    margin-bottom: 1.2rem;
    padding-top: 0.5rem;
  }
}

.reservation-input-group i,
.reservation-input-group .reservation-input-icon {
  color: #388e3c !important;
  font-size: 1.05rem;
  min-width: 1.2em;
  margin-right: 0.35em;
}
.reservation-label {
  color: #388e3c;
}
.reservation-input,
.reservation-input:focus {
  border-color: #b2dfdb;
  color: #388e3c;
}
.reservation-input:focus {
  border-color: #388e3c;
  background: #fff;
}
.reservation-input::placeholder {
  color: #b2dfdb;
  opacity: 1;
}
.reservation-input:disabled, .reservation-input[readonly] {
  background: #f8fafc;
  color: #b2dfdb;
}
.input-group .reservation-input-icon {
  display: flex;
  align-items: center;
  padding: 0 0.3em 0 0.2em;
  background: transparent;
  border: none;
  font-size: 1.05rem;
}
/* .reservation-input-group:focus-within .reservation-input-icon,
.reservation-input-group:focus-within i {
  color: #388e3c !important;
} */

.video-section {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
.video-section .video-title {
  color: #24543a;
  font-size: 2rem;
  font-weight: 700;
}
.video-subtitle {
  color: #388e3c;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.video-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 20px rgba(20,83,45,0.08);
  border: none;
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}
.video-card:hover {
  box-shadow: 0 8px 32px rgba(20,83,45,0.15);
  transform: translateY(-4px);
}
.video-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.video-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 1.25rem 1.25rem 0 0;
}
.video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.video-card:hover .video-img {
  transform: scale(1.05);
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20,83,45,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.video-card:hover .video-overlay {
  background: rgba(20,83,45,0.5);
}
.play-button {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.play-button i {
  color: #166534;
  font-size: 1.5rem;
  margin-left: 3px;
}
.video-card:hover .play-button {
  transform: scale(1.1);
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.video-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.video-content .video-title {
  color: #24543a;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.video-text {
  color: #388e3c;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.video-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #166534;
  font-size: 0.9rem;
  font-weight: 600;
}
.video-duration i {
  font-size: 0.85rem;
}
@media (max-width: 991.98px) {
  .video-section .video-title {
    font-size: 1.5rem;
  }
  .video-thumbnail {
    height: 180px;
  }
  .video-content {
    padding: 1.25rem;
  }
  .video-content .video-title {
    font-size: 1.1rem;
  }
}
@media (max-width: 767.98px) {
  .video-thumbnail {
    height: 160px;
  }
  .play-button {
    width: 50px;
    height: 50px;
  }
  .play-button i {
    font-size: 1.2rem;
  }
}

.advantages-section {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
.advantages-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  width: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100%25" height="120" viewBox="0 0 1440 120" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 40C180 80 420 0 720 20C1020 40 1260 120 1440 60V0H0V40Z" fill="%23f8fafc"/></svg>') no-repeat top center/cover;
  z-index: 0;
  opacity: 1;
}
.advantages-row, .advantages-title, .advantages-desc {
  position: relative;
  z-index: 1;
}
.advantages-title {
  font-size: 2rem;
  font-weight: 700;
  color: #24543a;
}
.advantages-desc {
  color: #388e3c;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.advantage-box {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 18px 0 rgba(60,72,88,0.10);
  border: 1.5px solid #e3e8ee;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.advantage-box:hover {
  box-shadow: 0 10px 32px 0 rgba(60,72,88,0.16);
  border-color: #b2dfdb;
  transform: translateY(-4px) scale(1.03);
}
.advantage-icon {
  font-size: 2.2rem;
  color: #388e3c;
  margin-bottom: 0.5rem;
}
.advantage-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #24543a;
  margin-bottom: 0.25rem;
}
.advantage-text {
  color: #4caf50;
  font-size: 1rem;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .advantages-title {
    font-size: 1.3rem;
  }
  .advantage-icon {
    font-size: 1.5rem;
  }
  .advantage-box {
    padding: 1.2rem 0.7rem;
  }
}

.faq-section {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
.faq-title {
  font-size: 2rem;
  font-weight: 700;
  color: #24543a;
}
.faq-desc {
  color: #388e3c;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.faq-accordion .accordion-item {
  border-radius: 1rem;
  box-shadow: 0 2px 12px 0 rgba(60,72,88,0.08);
  border: 1.5px solid #e3e8ee;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-accordion .accordion-item:hover, .faq-accordion .accordion-item:focus-within {
  box-shadow: 0 6px 24px 0 rgba(60,72,88,0.13);
  border-color: #b2dfdb;
}
.faq-accordion .accordion-button {
  font-weight: 600;
  color: #24543a;
  background: #fff;
  border: none;
  box-shadow: none;
  outline: none;
  font-size: 1.08rem;
  padding: 1.1rem 1.25rem;
  transition: color 0.2s;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: #388e3c;
  background: #f3f7f0;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-accordion .accordion-body {
  color: #4caf50;
  font-size: 1rem;
  background: #fff;
  padding: 1.1rem 1.25rem 1.2rem 1.25rem;
}
@media (max-width: 991.98px) {
  .faq-title {
    font-size: 1.3rem;
  }
  .faq-accordion .accordion-button {
    font-size: 1rem;
    padding: 0.9rem 0.7rem;
  }
  .faq-accordion .accordion-body {
    font-size: 0.97rem;
    padding: 0.9rem 0.7rem 1rem 0.7rem;
  }
}

.fleet-section {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
.fleet-title {
  font-size: 2rem;
  font-weight: 700;
  color: #24543a;
}
.fleet-desc {
  color: #388e3c;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.fleet-box {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 18px 0 rgba(60,72,88,0.10);
  border: 1.5px solid #e3e8ee;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  padding-top: 2.2rem;
}
.fleet-box:hover {
  box-shadow: 0 10px 32px 0 rgba(60,72,88,0.16);
  border-color: #b2dfdb;
  transform: translateY(-4px) scale(1.03);
}
.fleet-icon {
  font-size: 2.5rem;
  color: #388e3c;
  margin-bottom: 0.5rem;
}
.fleet-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #24543a;
  margin-bottom: 0.25rem;
}
.fleet-text {
  color: #4caf50;
  font-size: 1rem;
  margin-bottom: 0;
}
.fleet-img {
  width: 100%;
  max-width: 260px;
  max-height: 120px;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: none;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  display: block;
  margin-top: -40px;
  margin-bottom: 0.5rem;
}
.fleet-features {
  margin-top: 1rem;
  text-align: left;
  display: inline-block;
}
.fleet-features li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.4em;
  color: #388e3c;
  font-size: 1rem;
  font-weight: 500;
}
.fleet-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #4caf50;
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1em;
}
@media (max-width: 991.98px) {
  .fleet-img {
    max-width: 180px;
    max-height: 80px;
    margin-top: -24px;
  }
  .fleet-box {
    padding-top: 1.2rem;
  }
  .fleet-features li {
    font-size: 0.97rem;
  }
}

.our-fleet-section {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
.our-fleet-title {
  font-size: 2rem;
  font-weight: 700;
  color: #24543a;
}
.our-fleet-desc {
  color: #388e3c;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.our-fleet-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 2px 10px 0 rgba(60,72,88,0.07);
  border: none;
  transition: box-shadow 0.2s, transform 0.2s;
}
.our-fleet-card:hover {
  box-shadow: 0 10px 32px 0 rgba(60,72,88,0.13);
  transform: scale(1.035);
}
.our-fleet-img {
  width: 100%;
  max-width: 260px;
  max-height: 120px;
  object-fit: contain;
  border-radius: 1rem;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  display: block;
  margin-top: -40px;
  margin-bottom: 0.5rem;
}
.our-fleet-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #24543a;
  margin-bottom: 0.25rem;
}
.our-fleet-short {
  color: #4caf50;
  font-size: 1rem;
  margin-bottom: 0;
}
.our-fleet-features li {
  color: #388e3c;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.our-fleet-features i {
  color: #4caf50;
  font-size: 1.1em;
}
@media (max-width: 991.98px) {
  .our-fleet-title {
    font-size: 1.3rem;
  }
  .our-fleet-img {
    max-width: 180px;
    max-height: 80px;
    margin-top: -24px;
  }
  .our-fleet-features li {
    font-size: 0.97rem;
  }
}

.price-list-section {
  background: #f8fafc;
}
.price-list-title {
  color: #24543a;
  font-size: 2rem;
  font-weight: 700;
}
.price-list-desc {
  color: #388e3c;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.price-list-row {
  margin-left: 0;
  margin-right: 0;
}
.price-list-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: #24543a;
  border-radius: 1.1rem;
  box-shadow: 0 2px 10px 0 rgba(60,72,88,0.07);
  border: none;
  padding: 1.1rem 1.3rem;
  font-size: 1.08rem;
  font-weight: 500;
  min-height: 64px;
  margin-bottom: 1.1rem;
  transition: box-shadow 0.18s, transform 0.18s;
  min-width: 0;
  overflow: hidden;
  gap: 1rem;
}
.price-list-box:last-child {
  margin-bottom: 0;
}
.price-list-icon {
  color: #388e3c;
  font-size: 1.5rem;
  margin-right: 1rem;
}
.price-list-route {
  flex: 1 1 0;
  color: #24543a;
  font-size: 1.08rem;
  font-weight: 500;
  margin-left: 0.5rem;
}
.price-list-price {
  flex: 0 0 auto;
  margin-left: 1.2rem;
  white-space: nowrap;
  overflow: visible;
  font-weight: 900 !important;
  color: #166534 !important;
  font-size: 1.1rem !important;
}
.price-list-box:hover {
  box-shadow: 0 10px 32px 0 rgba(60,72,88,0.13);
  transform: scale(1.025);
}
.price-list-from, .price-list-to {
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .price-list-title {
    font-size: 1.3rem;
  }
  .price-list-box {
    font-size: 1rem;
    padding: 0.9rem 0.7rem;
    min-height: 54px;
  }
  .price-list-price {
    font-size: 1.1rem;
  }
}
@media (max-width: 767.98px) {
  .price-list-row > div {
    border-right: none !important;
  }
  .price-list-box {
    border-right: none;
  }
}
.price-list-from {
  color: #388e3c;
  font-weight: 600;
  font-size: 1.05rem;
}
.price-list-to {
  color: #24543a;
  font-weight: 700;
  font-size: 1.08rem;
}
.price-list-arrow {
  color: #b2dfdb;
  font-size: 1.1rem;
  font-weight: 900;
}
@media (max-width: 991.98px) {
  .price-list-from, .price-list-to {
    font-size: 0.97rem;
  }
} 