/*==================================================
TOWIS
STYLE.CSS
PART 1
==================================================*/
/*==================================================
GOOGLE FONT
==================================================*/
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");
/*==================================================
RESET
==================================================*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* * {
  outline: 1px solid red;
} */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  background: #ffffff;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  transition: 0.35s;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  border: none;
  outline: none;
}
input,
textarea,
select {
  outline: none;
  box-shadow: none !important;
}
/*==================================================
VARIABLES
==================================================*/
:root {
  --primary: #ffc107;
  --secondary: #111111;
  --dark: #222222;
  --text: #666666;
  --white: #ffffff;
  --border: #e7e7e7;
  --bg: #f8f8f8;
  --radius: 12px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  --transition: 0.4s ease;
}
/*==================================================
TYPOGRAPHY
==================================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  color: var(--secondary);
  font-weight: 600;
  line-height: 1.2;
}
h1 {
  font-size: 72px;
}
h2 {
  font-size: 46px;
}
h3 {
  font-size: 32px;
}
h4 {
  font-size: 24px;
}
p {
  margin-bottom: 20px;
}
.section-padding {
  padding: 120px 0;
}
.section-title h2 {
  max-width: 650px;
}
.section-subtitle {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
/*==================================================
BUTTON
==================================================*/
.btn {
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-warning {
  background: var(--primary);
  border: none;
  color: #111;
}
.btn-warning:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
/*==================================================
PRELOADER
==================================================*/
#preloader {
  position: fixed;
  inset: 0;
  background: #111;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.6s;
}
.loader-wrapper {
  text-align: center;
}
.loader-wrapper h5 {
  color: #fff;
  margin-top: 30px;
  font-size: 20px;
  letter-spacing: 1px;
}
.tow-loader {
  width: 280px;
}
.truck {
  color: var(--primary);
  font-size: 70px;
  animation: truckMove 2s infinite ease-in-out;
}
.loading-line {
  height: 4px;
  margin-top: 25px;
  background: #333;
  border-radius: 30px;
  overflow: hidden;
}
.loading-line span {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--primary);
  animation: loading 1.6s infinite;
}
@keyframes loading {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(380%);
  }
}
@keyframes truckMove {
  0% {
    transform: translateX(-15px);
  }
  50% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(-15px);
  }
}
/*==================================================
HEADER
==================================================*/
#header {
  /* position: fixed; */
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.4s;
}
#header.sticky {
  background: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.navbar {
  padding: 10px 0;
}
.navbar-brand img {
  /* height: 55px; */
  height: 70px;
}
.navbar-nav {
  gap: 30px;
}
.nav-link {
  color: #ffc107;
  font-weight: 600;
  position: relative;
}
#header.sticky .nav-link {
  color: #111;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.35s;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.header-icons {
  margin-left: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-icons a {
  color: #fff;
  font-size: 20px;
}
#header.sticky .header-icons a {
  color: #111;
}
.phone {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #111 !important;
}
/*==================================================
HERO
==================================================*/
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-content {
  color: #fff;
}
.hero-phone {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.hero-content h1 {
  color: #fff;
  margin-bottom: 25px;
}
.hero-content p {
  max-width: 520px;
  margin-bottom: 35px;
  color: #ddd;
}
.hero-image {
  position: relative;
  text-align: center;
}
.hero-image .truck {
  max-width: 900px;
  margin: auto;
  animation: floatTruck 4s infinite ease-in-out;
}
.hero-image .car {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 250px;
  animation: floatCar 4s infinite;
}
@keyframes floatTruck {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes floatCar {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(18px);
  }
}
/*==================================================
VEHICLE SECTION
==================================================*/
.vehicle-section {
  margin-top: -70px;
  position: relative;
  z-index: 5;
  padding-bottom: 100px;
}
.vehicle-box {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  transition: 0.4s;
  box-shadow: var(--shadow);
  height: 100%;
}
.vehicle-box img {
  /* width: 90px; */
  width: auto;
  margin: 0 auto 25px;
}
.vehicle-box h5 {
  margin-bottom: 10px;
}
.vehicle-box:hover {
  transform: translateY(-12px);
}
.vehicle-box:hover {
  background: var(--primary);
}
.vehicle-box:hover h5,
.vehicle-box:hover p {
  color: #111;
}
/*==================================================
SERVICES SECTION
==================================================*/
.services-section {
  position: relative;
  background: #fff;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-item {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 28px;
  transition: var(--transition);
  cursor: pointer;
}
.service-item:hover,
.service-item.active {
  border-color: var(--primary);
  transform: translateX(8px);
  box-shadow: var(--shadow);
}
.service-number {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-right: 25px;
  transition: var(--transition);
}
.service-item:hover .service-number,
.service-item.active .service-number {
  background: var(--primary);
}
.service-content {
  flex: 1;
}
.service-content h4 {
  margin: 0;
  font-size: 24px;
}
.service-arrow {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}
.service-item:hover .service-arrow,
.service-item.active .service-arrow {
  background: var(--primary);
  transform: rotate(-45deg);
}
.service-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.service-image img {
  width: 100%;
  border-radius: 24px;
  transition: 0.6s;
}
.service-image:hover img {
  transform: scale(1.05);
}
/*==================================================
FEATURE SECTION
==================================================*/
.feature-section {
  background: var(--bg);
  padding: 110px 0;
}
.feature-box {
  background: #fff;
  border-radius: 20px;
  padding: 45px 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.12);
  color: var(--primary);
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  transition: var(--transition);
}
.feature-box:hover .feature-icon {
  background: var(--primary);
  color: #111;
  transform: rotateY(180deg);
}
.feature-box h4 {
  margin-bottom: 18px;
}
.feature-box p {
  margin: 0;
}
/*==================================================
EMERGENCY BANNER
==================================================*/
.emergency-banner {
  position: relative;
  overflow: hidden;
  padding: 170px 0;
  color: #fff;
}
.banner-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.banner-content {
  max-width: 600px;
}
.banner-content h2 {
  color: #fff;
  font-size: 58px;
  margin-bottom: 25px;
}
.banner-content p {
  color: #ddd;
  margin-bottom: 35px;
}
.banner-content .btn {
  padding: 18px 40px;
}
/*==================================================
ABOUT SECTION
==================================================*/
.about-section {
  background: #fff;
}
.about-images {
  position: relative;
}
.about-main-image {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.about-main-image img {
  width: 100%;
  transition: 0.6s;
}
.about-main-image:hover img {
  transform: scale(1.06);
}
.experience-badge {
  position: absolute;
  right: -30px;
  bottom: 45px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #111;
  box-shadow: var(--shadow);
}
.experience-badge span {
  font-family: "Oswald", sans-serif;
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
}
.experience-badge small {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
/*==================================================
COUNTER
==================================================*/
.counter-box {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  text-align: center;
  padding: 35px 20px;
  transition: var(--transition);
}
.counter-box:hover {
  background: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.counter {
  font-family: "Oswald", sans-serif;
  font-size: 56px;
  color: #111;
  margin-bottom: 8px;
}
.counter-box p {
  margin: 0;
  font-weight: 600;
  color: #555;
}
/*==================================================
GALLERY
==================================================*/
.gallery-section {
  padding: 30px;
  background: #f5f5f5;
}
.gallery-item {
  overflow: hidden;
  border-radius: 22px;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: 0.6s;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 193, 7, 0.18);
  opacity: 0;
  transition: 0.35s;
  z-index: 1;
}
.gallery-item:hover::before {
  opacity: 1;
}
.gallery-item::after {
  content: "+";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 42px;
  font-family: "Oswald", sans-serif;
  opacity: 0;
  transition: 0.35s;
  z-index: 2;
}
.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
/*==================================================
PRICING SECTION
==================================================*/
.pricing-section {
  background: #fff;
  position: relative;
}
.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 50px 40px;
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}
.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}
.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.03);
}
.popular-badge {
  position: absolute;
  right: -42px;
  top: 28px;
  background: var(--primary);
  color: #111;
  padding: 10px 55px;
  transform: rotate(45deg);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.pricing-header {
  text-align: center;
  margin-bottom: 35px;
}
.pricing-header h3 {
  margin-bottom: 15px;
}
.price {
  font-family: "Oswald", sans-serif;
  font-size: 72px;
  color: #111;
  line-height: 1;
}
.price sup {
  font-size: 30px;
  top: -18px;
}
.pricing-header span {
  color: #777;
}
.pricing-card ul {
  margin: 35px 0;
}
.pricing-card li {
  padding: 14px 0;
  border-bottom: 1px solid #efefef;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-card li i {
  color: var(--primary);
}
.pricing-cta {
  margin-top: 60px;
}
.pricing-cta h3 {
  margin-bottom: 20px;
}
.pricing-cta p {
  max-width: 650px;
  margin: 0 auto 35px;
}
/*==================================================
FAQ
==================================================*/
.faq-section {
  background: #fefefe;
}
.faq-image {
  overflow: hidden;
  border-radius: 25px;
}
.faq-image img {
  width: 100%;
  transition: 0.6s;
}
.faq-image:hover img {
  transform: scale(1.06);
}
.accordion-item {
  border: none;
  border-radius: 18px !important;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.accordion-button {
  padding: 24px 28px;
  font-weight: 700;
  background: #fff;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: #111;
}
.accordion-body {
  padding: 25px 28px;
  color: #666;
  background: #fff;
}
/*==================================================
CONTACT
==================================================*/
.contact-section {
  background: #fff;
}
.contact-box {
  background: #fff;
  border-radius: 24px;
  padding: 45px;
  box-shadow: var(--shadow);
}
.form-control,
.form-select {
  min-height: 58px;
  border-radius: 12px;
  border: 1px solid var(--border);
}
textarea.form-control {
  min-height: 170px;
  resize: none;
  padding-top: 18px;
}
.contact-info img {
  border-radius: 24px;
  margin-bottom: 30px;
}
.info-box {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.info-box h4 {
  margin-bottom: 12px;
}
.info-box h2 {
  color: var(--primary);
  font-size: 36px;
}
/*==================================================
MAP
==================================================*/
.map-section iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}
/*==================================================
FOOTER
==================================================*/
.footer {
  background: #111;
  color: #bbb;
  padding-top: 90px;
  position: relative;
}
.footer-logo {
  height: 55px;
}
.footer h4 {
  color: #fff;
  margin-bottom: 28px;
}
.footer ul li {
  margin-bottom: 14px;
}
.footer a {
  color: #bbb;
}
.footer a:hover {
  color: var(--primary);
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.social-icons a:hover {
  background: var(--primary);
  color: #111;
}
.newsletter {
  display: flex;
  margin-top: 25px;
}
.newsletter input {
  flex: 1;
  border: none;
  padding: 16px;
  border-radius: 10px 0 0 10px;
}
.newsletter button {
  width: 60px;
  background: var(--primary);
  color: #111;
  border-radius: 0 10px 10px 0;
}
.footer hr {
  border-color: #2c2c2c;
  margin: 60px 0 25px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 35px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom div {
  display: flex;
  gap: 25px;
}
/*==================================================
BACK TO TOP
==================================================*/
#backToTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--primary);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  z-index: 999;
  box-shadow: var(--shadow);
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
}
#backToTop:hover {
  transform: translateY(-5px);
}
/*==================================================
UTILITY
==================================================*/
.shadow-hover {
  transition: var(--transition);
}
.shadow-hover:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.rounded-xl {
  border-radius: 24px;
}
.bg-light-yellow {
  background: #fff9e7;
}
.text-primary {
  color: var(--primary) !important;
}
/*==================================================
RESPONSIVE
==================================================*/
@media (max-width: 1199px) {
  h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 40px;
  }
  .hero-image .truck {
    max-width: 340px;
  }
  .experience-badge {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 90px 0;
  }
  .navbar {
    background: #fff;
    padding: 18px 0;
  }
  .navbar-nav {
    gap: 0;
    margin-top: 20px;
  }
  .nav-link {
    color: #111 !important;
    padding: 14px 0;
  }
  .header-icons {
    margin-top: 20px;
    margin-left: 0;
  }
  .header-icons a {
    color: #111;
  }
  .hero-section {
    text-align: center;
    padding-top: 50px;
  }
  .hero-content {
    margin-bottom: 60px;
  }
  .hero-content p {
    margin: auto auto 30px;
  }
  .hero-image .car {
    display: none;
  }
  .vehicle-section {
    margin-top: 0;
  }
  .banner-content h2 {
    font-size: 44px;
  }
  .experience-badge {
    right: 20px;
    bottom: 20px;
  }
  .pricing-card.featured {
    transform: none;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 34px;
  }
  h3 {
    font-size: 28px;
  }
  .section-padding {
    padding: 70px 0;
  }
  .hero-section {
    min-height: auto;
  }
  .service-item {
    padding: 18px;
  }
  .service-number {
    width: 55px;
    height: 55px;
    margin-right: 18px;
  }
  .banner-content h2 {
    font-size: 34px;
  }
  .experience-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 30px auto 0;
  }
  .gallery-section {
    padding: 15px;
  }
  .gallery-item img {
    height: 260px;
  }
  .contact-box {
    padding: 30px;
  }
  .footer {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-bottom div {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .hero-phone {
    font-size: 14px;
  }
  .price {
    font-size: 56px;
  }
  .counter {
    font-size: 42px;
  }
  .vehicle-box {
    padding: 25px;
  }
  #backToTop {
    right: 15px;
    bottom: 15px;
  }
}
/* START CUSTOM CSS */
/* Floating Call Button */
.call-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.call-btn:hover {
  background: #e65c00;
  transform: translateY(-3px);
}

.call-icon {
  font-size: 22px;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(255, 107, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .call-btn {
    left: 15px;
    bottom: 20px;
    padding: 12px 16px;
    font-size: 15px;
  }

  .call-icon {
    font-size: 20px;
  }
}
/* END CUSTOM CSS */
