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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background-color: #0d0e12;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #f07a1a;
}

:target::before {
  content: "";
  display: block;
  height: 80px;
  margin-top: -80px;
  visibility: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: #0d0e12;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background-color: rgba(13, 14, 18, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.navbar {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}
.navbar-brand .brand-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar-nav .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 1.5rem 1rem;
  transition: color 0.2s ease;
  position: relative;
  white-space: nowrap;
}
.navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background-color: #f07a1a;
  transition: left 0.3s ease, right 0.3s ease;
}
.navbar-nav .nav-item .nav-link:hover, .navbar-nav .nav-item .nav-link.active {
  color: #ffffff;
}
.navbar-nav .nav-item .nav-link:hover::after, .navbar-nav .nav-item .nav-link.active::after {
  left: 1rem;
  right: 1rem;
}
.navbar-nav .nav-item .nav-link.active {
  color: #f07a1a;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-actions .btn-sign-in {
  background-color: #f07a1a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.navbar-actions .btn-sign-in:hover {
  background-color: #d96a10;
  color: #ffffff;
  transform: translateY(-1px);
}
.navbar-actions .btn-sign-in:active {
  transform: translateY(0);
}
.navbar-actions .btn-sign-up {
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.navbar-actions .btn-sign-up:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(240, 122, 26, 0.15);
}
.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #13151c;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
  }
  .navbar-nav .nav-link {
    padding: 0.75rem 1.5rem;
  }
  .navbar-nav .nav-link::after {
    display: none;
  }
  .navbar-actions {
    padding: 0.75rem 1.5rem 0.5rem;
    flex-direction: column;
    align-items: stretch;
  }
  .navbar-actions .btn-sign-in,
  .navbar-actions .btn-sign-up {
    text-align: center;
    width: 100%;
  }
}
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f07a1a;
  margin-bottom: 0.75rem;
}

.accent-italic {
  color: #f07a1a;
  font-style: italic;
  font-family: "Georgia", "Times New Roman", serif;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 700px;
}

.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background-color: #0d0e12;
  background-image: url("../assets/images/hero-bg.jpg");
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}
.section-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.85) 0%, rgba(13, 14, 18, 0.7) 50%, rgba(13, 14, 18, 0.4) 100%);
  z-index: 1;
}
.section-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 120px;
}
.section-hero .hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f07a1a;
  margin-bottom: 1.25rem;
}
.section-hero .hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-hero .hero-title .accent-italic {
  font-size: 1.05em;
}
.section-hero .hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-search-form {
  background-color: rgba(19, 21, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-search-form .form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.4rem;
}
.hero-search-form .form-control,
.hero-search-form .form-select {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0.65rem 0.9rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.hero-search-form .form-control::placeholder,
.hero-search-form .form-select::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.hero-search-form .form-control:focus,
.hero-search-form .form-select:focus {
  background-color: rgba(255, 255, 255, 0.09);
  border-color: #f07a1a;
  box-shadow: 0 0 0 3px rgba(240, 122, 26, 0.15);
  color: #ffffff;
}
.hero-search-form .form-control option,
.hero-search-form .form-select option {
  background-color: #13151c;
  color: #ffffff;
}
.hero-search-form .btn-search {
  background-color: #f07a1a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.hero-search-form .btn-search:hover {
  background-color: #d96a10;
  transform: translateY(-2px);
}
.hero-search-form .btn-search:active {
  transform: translateY(0);
}
@media (max-width: 767.98px) {
  .hero-search-form {
    padding: 1rem;
  }
  .hero-search-form .row > [class*=col-] {
    margin-bottom: 0.75rem;
  }
}

.section-vehicles {
  padding: 100px 0;
  background-color: #13151c;
}
@media (max-width: 767.98px) {
  .section-vehicles {
    padding: 60px 0;
  }
}
.section-vehicles .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-vehicles .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

.vehicle-card {
  background-color: #1a1c22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(240, 122, 26, 0.3);
}
.vehicle-card .vehicle-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background-color: #0d0e12;
}
.vehicle-card .vehicle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vehicle-card .vehicle-img-wrap:hover img {
  transform: scale(1.05);
}
.vehicle-card .vehicle-img-wrap .vehicle-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #f07a1a;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.vehicle-card .vehicle-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vehicle-card .vehicle-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.vehicle-card .vehicle-year {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
}
.vehicle-card .vehicle-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}
.vehicle-card .vehicle-stars i {
  color: #f5c518;
  font-size: 0.8rem;
}
.vehicle-card .vehicle-specs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.vehicle-card .vehicle-specs .spec-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
}
.vehicle-card .vehicle-specs .spec-badge i {
  font-size: 0.7rem;
  color: #f07a1a;
}
.vehicle-card .vehicle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.vehicle-card .vehicle-footer .vehicle-price .from-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  line-height: 1;
}
.vehicle-card .vehicle-footer .vehicle-price .price-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f07a1a;
  line-height: 1.2;
}
.vehicle-card .vehicle-footer .vehicle-price .per-day {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}
.vehicle-card .vehicle-footer .btn-book {
  background-color: #f07a1a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.vehicle-card .vehicle-footer .btn-book:hover {
  background-color: #d96a10;
  transform: translateY(-1px);
}

.btn-view-more {
  background-color: transparent;
  color: #f07a1a;
  border: 2px solid #f07a1a;
  border-radius: 8px;
  padding: 0.75rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-view-more:hover {
  background-color: #f07a1a;
  color: #ffffff;
  transform: translateY(-2px);
}

.section-stats {
  padding: 70px 0;
  background-color: #0d0e12;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.section-stats .stat-item {
  text-align: center;
  padding: 1rem;
}
.section-stats .stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767.98px) {
  .section-stats .stat-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.section-stats .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.section-stats .stat-number span.accent-num {
  color: #f07a1a;
}
@media (max-width: 767.98px) {
  .section-stats .stat-number {
    font-size: 2.5rem;
  }
}
.section-stats .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.section-about {
  padding: 100px 0;
  background-color: #13151c;
}
@media (max-width: 767.98px) {
  .section-about {
    padding: 60px 0;
  }
}
.section-about .about-text-col {
  padding-right: 3rem;
}
@media (max-width: 991.98px) {
  .section-about .about-text-col {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}
.section-about .about-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.feature-boxes {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-box {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background-color: #1a1c22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.feature-box:hover {
  border-color: rgba(240, 122, 26, 0.3);
  transform: translateX(4px);
}
.feature-box .feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: rgba(240, 122, 26, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-box .feature-icon i {
  font-size: 1.25rem;
  color: #f07a1a;
}
.feature-box .feature-content .feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}
.feature-box .feature-content .feature-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

.about-image-col .about-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
}
.about-image-col .about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.about-image-col .about-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13, 14, 18, 0.6) 100%);
  border-radius: 16px;
}

.section-testimonials {
  padding: 100px 0;
  background-color: #0d0e12;
}
@media (max-width: 767.98px) {
  .section-testimonials {
    padding: 60px 0;
  }
}
.section-testimonials .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-testimonials .section-header .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

.testimonial-card {
  background-color: #1a1c22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
}
.testimonial-card:hover {
  border-color: rgba(240, 122, 26, 0.25);
  transform: translateY(-4px);
}
.testimonial-card .quote-icon {
  font-size: 3rem;
  color: #f07a1a;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}
.testimonial-card .testimonial-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  font-style: italic;
}
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonial-card .testimonial-author .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f07a1a;
  flex-shrink: 0;
}
.testimonial-card .testimonial-author .author-info .author-name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.1rem;
}
.testimonial-card .testimonial-author .author-info .author-location {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}
.testimonial-card .testimonial-author .author-stars {
  margin-left: auto;
  display: flex;
  gap: 2px;
}
.testimonial-card .testimonial-author .author-stars i {
  color: #f5c518;
  font-size: 0.8rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.testimonial-controls .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.testimonial-controls .dot.active, .testimonial-controls .dot:hover {
  background-color: #f07a1a;
  transform: scale(1.3);
}
.testimonial-controls .btn-prev,
.testimonial-controls .btn-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1a1c22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.testimonial-controls .btn-prev:hover,
.testimonial-controls .btn-next:hover {
  background-color: #f07a1a;
  border-color: #f07a1a;
  color: #ffffff;
}

.section-cta {
  position: relative;
  padding: 100px 0;
  background-color: #13151c;
  background-image: url("../assets/images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}
.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 14, 18, 0.9) 0%, rgba(13, 14, 18, 0.75) 100%);
}
.section-cta .cta-content {
  position: relative;
  z-index: 1;
}
.section-cta .cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-cta .cta-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.section-cta .cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-cta .btn-cta-primary {
  background-color: #f07a1a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.section-cta .btn-cta-primary:hover {
  background-color: #d96a10;
  transform: translateY(-2px);
}
.section-cta .btn-cta-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.section-cta .btn-cta-outline:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .section-cta {
    padding: 60px 0;
  }
  .section-cta .btn-cta-primary,
  .section-cta .btn-cta-outline {
    width: 100%;
    max-width: 320px;
  }
}

.section-contact {
  padding: 100px 0;
  background-color: #0d0e12;
  text-align: center;
}
@media (max-width: 767.98px) {
  .section-contact {
    padding: 60px 0;
  }
}
.section-contact .contact-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
@media (max-width: 767.98px) {
  .section-contact .contact-title {
    font-size: 2rem;
  }
}
.section-contact .contact-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-contact .btn-contact-primary {
  background-color: #f07a1a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
  min-width: 200px;
}
.section-contact .btn-contact-primary:hover {
  background-color: #d96a10;
  color: #ffffff;
  transform: translateY(-2px);
}
.section-contact .btn-contact-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #f07a1a;
  border-radius: 8px;
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
  min-width: 200px;
}
.section-contact .btn-contact-outline:hover {
  background-color: #f07a1a;
  color: #ffffff;
  transform: translateY(-2px);
}
@media (max-width: 575.98px) {
  .section-contact .btn-contact-primary,
  .section-contact .btn-contact-outline {
    width: 100%;
    max-width: 300px;
  }
}

.swiper-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background-color: #1a1c22;
  color: #ffffff;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.swiper-nav-btn:hover {
  background-color: #f07a1a;
  border-color: #f07a1a;
  transform: scale(1.08);
}
.swiper-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: background-color 0.2s ease, width 0.2s ease;
}

.swiper-pagination-bullet-active {
  background-color: #f07a1a;
  width: 24px;
  border-radius: 4px;
}

.section-testimonials .testimonials-swiper {
  position: relative;
  padding-bottom: 60px;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 575.98px) {
  .section-testimonials .testimonials-swiper {
    padding-left: 0;
    padding-right: 0;
  }
}
.section-testimonials .testimonials-prev,
.section-testimonials .testimonials-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.section-testimonials .testimonials-prev.testimonials-prev,
.section-testimonials .testimonials-next.testimonials-prev {
  left: -8px;
}
.section-testimonials .testimonials-prev.testimonials-next,
.section-testimonials .testimonials-next.testimonials-next {
  right: -8px;
}
@media (max-width: 575.98px) {
  .section-testimonials .testimonials-prev,
  .section-testimonials .testimonials-next {
    display: none;
  }
}
.section-testimonials .testimonials-pagination {
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}
.section-testimonials .swiper-slide {
  height: auto;
}
.section-testimonials .swiper-slide .testimonial-card {
  height: 100%;
}

.site-footer {
  background-color: #0a0b0f;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 80px;
}

.footer-top {
  padding-bottom: 60px;
}

.footer-brand {
  margin-bottom: 1.5rem;
}
.footer-brand .footer-logo-wrap {
  margin-bottom: 1rem;
}
.footer-brand .footer-logo-wrap .footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-brand .footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.footer-social .social-link:hover {
  background-color: #f07a1a;
  border-color: #f07a1a;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-nav-col .footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-nav-col .footer-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: #f07a1a;
  border-radius: 2px;
}
.footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-col li {
  margin-bottom: 0.6rem;
}
.footer-nav-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
.footer-nav-col a:hover {
  color: #f07a1a;
  padding-left: 4px;
}

.footer-contact-col .footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-contact-col .footer-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: #f07a1a;
  border-radius: 2px;
}
.footer-contact-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-contact-col .contact-item .contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background-color: rgba(240, 122, 26, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.footer-contact-col .contact-item .contact-icon i {
  color: #f07a1a;
  font-size: 0.85rem;
}
.footer-contact-col .contact-item .contact-details .contact-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.footer-contact-col .contact-item .contact-details a,
.footer-contact-col .contact-item .contact-details span {
  font-size: 0.875rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
  display: block;
}
.footer-contact-col .contact-item .contact-details a:hover {
  color: #f07a1a;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0;
  margin-top: 0;
}
.footer-bottom .footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.footer-bottom .footer-credit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  text-align: right;
}
@media (max-width: 767.98px) {
  .footer-bottom .footer-credit {
    text-align: left;
    margin-top: 0.5rem;
  }
}
.footer-bottom .footer-credit a {
  color: #f07a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom .footer-credit a:hover {
  color: #f59a4a;
}

@media (max-width: 767.98px) {
  .site-footer {
    padding-top: 50px;
  }
  .footer-top {
    padding-bottom: 30px;
  }
  .footer-brand {
    margin-bottom: 2rem;
  }
  .footer-brand .footer-tagline {
    max-width: 100%;
  }
  .footer-nav-col,
  .footer-contact-col {
    margin-bottom: 2rem;
  }
}
