@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Cairo:wght@200..1000&display=swap");
:root {
  /* CarPay Brand Colors */
  --main-color: #152583;
  --second-color: #ca75a3;
  --third-color: #efd18d;

  --gray-light: #e5e7eb;
  --fourth-color: #9ca3af;
  --black-color: #000000;
  --white-color: #ffffff;

  --background-btn: linear-gradient(135deg, #ca75a3 0%, #efd18d 100%);
  --background: linear-gradient(-135deg, #ca75a3 0%, #efd18d 100%);
  --background-btn-hover: linear-gradient(-135deg, #ca75a3 0%, #efd18d 100%);

  --placeholder-color: #9ca3af;
  --padding: 20px;
  --radius: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul li {
  list-style: none !important;
}
a {
  text-decoration: none;
  color: inherit;
}

html,
body {
  scroll-behavior: smooth !important;
  font-family: "Archivo", sans-serif;
}
[dir="rtl"] body {
  font-family: "Cairo", sans-serif;
}
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--background-btn);
  border-radius: 4px;
}

.text-main {
  color: var(--main-color);
}

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

.btn-send {
  background: var(--background-btn);
  color: var(--white-color);
  padding: 10px 32px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  width: fit-content !important;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 90, 150, 0.2);
  transition: all 0.5s ease-in-out;
  cursor: pointer;

  i {
    font-size: 14px;
    transition: transform 0.3s ease;
  }
  &:hover {
    background: var(--background-btn-hover);
    color: var(--white-color);
    box-shadow: 0 12px 30px rgba(0, 90, 150, 0.3);
    border: none;
    i {
      transform: translateX(5px);
    }
  }
}

.btn-more {
  background: transparent;
  color: var(--third-color);
  padding: 10px 0 5px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  text-align: justify;
  display: inline-flex;
  justify-content: start;
  align-items: center;
  i {
    transform: rotate(-45deg);
    transition: all 0.3s ease;
  }
  &:hover {
    i {
      transform: rotate(0deg);
    }
  }
}
.btn-contact {
  background: var(--white-color);
  color: var(--main-color);
  padding: 12px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  i {
    transform: rotate(-45deg);
    transition: all 0.3s ease;
  }
  &:hover {
    background: var(--background-btn-hover);
    color: #fff;
    border: none;
    i {
      transform: rotate(0deg);
    }
  }
}
.header-section {
  h2 {
    color: var(--main-color);
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  p {
    color: #575757;
  }
}

/* Cars Section */
.cars-section {
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  min-height: 100vh;

  /* Sidebar */
  .cars-sidebar {
    position: sticky;
    top: 100px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    height: fit-content;
    max-height: 100vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 16px;

    &::-webkit-scrollbar {
      width: 6px;
    }

    &::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
    }

    &::-webkit-scrollbar-thumb {
      background: linear-gradient(
        to bottom,
        var(--second-color),
        var(--main-color)
      );
      border-radius: 10px;

      &:hover {
        background: linear-gradient(
          to bottom,
          var(--main-color),
          var(--second-color)
        );
      }
    }

    .sidebar-search,
    .sidebar-filter {
      .form-label {
        color: var(--main-color);
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 10px;
        display: block;
        letter-spacing: 0.3px;
      }

      .input-group {
        border-radius: 50px;
        overflow: hidden;
        background: #f8f9fa;
        border: 2px solid #e5e7eb;
        transition: all 0.3s ease;

        &:focus-within {
          border-color: var(--second-color);
          box-shadow: 0 0 0 4px rgba(202, 117, 163, 0.1);
        }

        .input-group-text {
          color: var(--second-color);
          background: transparent;
          border: none;
          padding: 12px 15px;
        }

        .form-control {
          border: none;
          background: transparent;
          color: #000;
          font-size: 14px;
          padding: 12px 15px;
          font-weight: 500;

          &:focus {
            box-shadow: none;
            background: transparent;
          }

          &::placeholder {
            color: #9ca3af;
          }
        }
      }

      .form-select {
        border: 2px solid #e5e7eb;
        background: #f8f9fa;
        color: #000;
        font-size: 14px;
        font-weight: 500;
        padding: 12px 15px;
        border-radius: 50px !important;
        transition: all 0.3s ease;
        cursor: pointer;

        &:focus {
          box-shadow: 0 0 0 4px rgba(202, 117, 163, 0.1);
          border-color: var(--second-color);
          background: #fff;
        }

        &:hover {
          border-color: var(--second-color);
          background: #fff;
        }
      }
    }

    .sidebar-categories {
      .form-label {
        color: var(--main-color);
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 14px;
        letter-spacing: 0.3px;
      }

      .sidebar-category-btn {
        width: 100%;
        padding: 14px 18px;
        border: 2px solid #e5e7eb;
        background: #f8f9fa;
        color: #000;
        font-weight: 600;
        font-size: 14px;
        border-radius: 50px !important;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
        position: relative;
        overflow: hidden;

        &::before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          height: 100%;
          width: 4px;
          background: var(--second-color);
          transform: scaleY(0);
          transition: transform 0.3s ease;
        }

        i {
          color: var(--second-color);
          font-size: 18px;
          width: 24px;
          text-align: center;
          transition: all 0.3s ease;
        }

        .badge {
          background: var(--gray-light);
          color: var(--main-color);
          padding: 5px 12px;
          border-radius: 20px;
          font-size: 11px;
          font-weight: 700;
          min-width: 35px;
          text-align: center;
          transition: all 0.3s ease;
        }

        &:hover {
          background: #fff;
          border-color: var(--second-color);
          color: #000;
          transform: translateX(5px);
          box-shadow: 0 4px 12px rgba(202, 117, 163, 0.2);

          &::before {
            transform: scaleY(1);
          }

          i {
            transform: scale(1.1);
          }

          .badge {
            background: var(--second-color);
            color: #fff;
          }
        }

        &.active {
          background: linear-gradient(
            135deg,
            var(--background-btn) 0%,
            var(--second-color) 100%
          );
          color: var(--black-color);
          border-color: var(--second-color);
          box-shadow: 0 6px 20px rgba(202, 117, 163, 0.4);

          &::before {
            transform: scaleY(1);
            background: rgba(255, 255, 255, 0.3);
          }

          i {
            color: var(--black-color);
            transform: scale(1.1);
          }

          .badge {
            background: rgb(234 234 234 / 70%);
            color: var(--black-color);
            border: 1px solid rgba(253, 254, 253, 0.5);
          }
        }
      }
    }

    .btn-outline-secondary {
      border: 2px solid #e5e7eb;
      color: #6b7280;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 50px !important;
      background: #fff;
      transition: all 0.3s ease;

      &:hover {
        background: var(--background-btn-hover);
        border-color: var(--second-color);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(202, 117, 163, 0.3);
      }
    }
  }

  /* Car Cards */
  .car-card-link {
    text-decoration: none;
    display: block;
    height: 100%;

    &:hover {
      text-decoration: none;
    }
  }

  .car-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 2px;
      background: linear-gradient(
        135deg,
        var(--second-color),
        var(--main-color)
      );
      -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1;
      pointer-events: none;
    }

    &:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(107, 70, 193, 0.2);
      border-color: var(--second-color);

      &::before {
        opacity: 1;
      }

      .car-image {
        transform: scale(1.1);
      }

      .car-name {
        color: var(--second-color);
      }
    }

    .car-image-wrapper {
      position: relative;
      overflow: hidden;
      width: 100%;
      aspect-ratio: 16 / 10;
      background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
      border-radius: 20px 20px 0 0;

      &::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          transparent 0%,
          rgba(0, 0, 0, 0.1) 100%
        );
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
      }

      &:hover::after {
        opacity: 1;
      }

      .car-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
      }
    }

    .car-content {
      padding: 28px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      background: #fff;
      position: relative;
      z-index: 2;

      .car-name {
        color: #000;
        font-size: 22px;
        font-weight: 700;
        margin: 0 0 18px 0;
        line-height: 1.3;
        transition: color 0.3s ease;
      }

      .car-badge {
        background: var(--second-color);
        color: #fff;
        padding: 8px 14px;
        border-radius: 25px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        display: inline-block;
        letter-spacing: 0.5px;
        box-shadow: 0 2px 8px rgba(202, 117, 163, 0.3);

        &.badge-new {
          background: linear-gradient(135deg, #10b981, #059669);
        }

        &.badge-featured {
          background: linear-gradient(135deg, #f59e0b, #d97706);
        }
      }

      .car-specs {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding-bottom: 20px;
        border-bottom: 2px solid #f1f1f1;

        .spec-item {
          color: #6b7280;
          font-size: 13px;
          font-weight: 600;
          padding: 8px 14px;
          background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
          border-radius: 10px;
          border: 1px solid #e5e7eb;
          transition: all 0.3s ease;

          &:hover {
            background: #fff;
            border-color: var(--main-color);
            color: var(--main-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(21, 37, 131, 0.15);
          }
        }
      }

      .car-pricing {
        display: flex;
        align-items: baseline;
        gap: 8px;
        padding-top: 20px;
        border-top: 2px solid #f1f1f1;

        .price-amount {
          font-size: 32px;
          font-weight: 800;
          color: var(--second-color);
          line-height: 1;
          background: linear-gradient(
            135deg,
            var(--second-color),
            var(--main-color)
          );
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .price-currency {
          font-size: 15px;
          color: #6b7280;
          font-weight: 600;
        }
      }
    }
  }
}

/* Recently Added Section */
.recently-added-section {
  background: #f8f9fa;
  position: relative;

  .header-section {
    margin-bottom: 50px;

    h2 {
      font-size: 38px;
      font-weight: 700;
      color: var(--main-color);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;

      &::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(
          to right,
          var(--second-color),
          var(--main-color)
        );
        border-radius: 2px;
      }
    }

    .lead {
      color: #6b7280;
      font-size: 18px;
      font-weight: 500;
      margin-top: 25px;
    }
  }

  /* Tabs Navigation */
  .cars-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    border: none;
    position: relative;

    &::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: #e5e7eb;
      z-index: 0;
    }

    .nav-item {
      margin: 0 8px;

      .nav-link {
        border: none;
        background: transparent;
        color: #6b7280;
        font-weight: 600;
        font-size: 15px;
        padding: 12px 24px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        align-items: center;
        gap: 8px;
        z-index: 1;
        overflow: hidden;
        .badge {
          background: #e5e7eb;
          color: #6b7280;
          padding: 4px 10px;
          border-radius: 12px;
          font-size: 11px;
          font-weight: 700;
          min-width: 28px;
          text-align: center;
          transition: all 0.3s ease;
        }

        &:hover {
          color: var(--second-color);
          background: rgba(202, 117, 163, 0.1);

          .badge {
            background: var(--second-color);
            color: #fff;
          }
        }

        &.active {
          color: #fff;
          background: var(--background-btn);
          box-shadow: 0 4px 15px rgba(202, 117, 163, 0.3);

          .badge {
            background: rgba(255, 255, 255, 0.3);
            color: #fff;
          }
        }
      }
    }
  }

  /* Tab Content */
  .tab-content {
    .tab-pane {
      animation: fadeInUp 0.5s ease;
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Car Cards */
  .car-card-link {
    text-decoration: none;
    display: block;
    height: 100%;

    &:hover {
      text-decoration: none;
    }
  }

  .car-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;

    &:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(107, 70, 193, 0.15);
      border-color: var(--second-color);

      .car-image {
        transform: scale(1.08);
      }

      .car-name {
        color: var(--second-color);
      }
    }

    .car-image-wrapper {
      position: relative;
      overflow: hidden;
      width: 100%;
      aspect-ratio: 16 / 10;
      background: #f5f5f5;
      border-radius: 16px 16px 0 0;

      .car-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
      }
    }

    .car-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      background: #fff;

      .car-name {
        color: #000;
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 16px 0;
        line-height: 1.3;
        transition: color 0.3s ease;
      }

      .car-badge {
        background: var(--second-color);
        color: #fff;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        display: inline-block;

        &.badge-new {
          background: #10b981;
        }

        &.badge-featured {
          background: #f59e0b;
        }
      }

      .car-specs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding-bottom: 16px;
        border-bottom: 1px solid #e5e7eb;

        .spec-item {
          color: #6b7280;
          font-size: 13px;
          font-weight: 500;
          padding: 6px 16px;
          background: #f8f9fa;
          border-radius: 50px;
          border: 1px solid #e5e7eb;
          transition: all 0.3s ease;

          &:hover {
            background: #fff;
            border-color: var(--main-color);
            color: var(--main-color);
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(21, 37, 131, 0.08);
          }
        }
      }

      .car-pricing {
        margin-top: auto;
        display: flex;
        align-items: baseline;
        gap: 6px;
        padding-top: 16px;
        border-top: 1px solid #f1f1f1;

        .price-amount {
          font-size: 26px;
          font-weight: 700;
          background: linear-gradient(
            135deg,
            var(--second-color),
            var(--main-color)
          );
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          line-height: 1;
        }

        .price-currency {
          font-size: 14px;
          color: #6b7280;
          font-weight: 500;
        }
      }
    }
  }
}

/*  
##################################################
#                  SOCIAL ICONS                  #
##################################################
*/
.social-icon {
  inset-inline-start: 0 !important;
  margin-inline-start: 16px;
  margin-bottom: 50px;
  width: fit-content;
  height: fit-content;

  a {
    background: var(--background-btn) !important;
    color: var(--white-color);
    padding: 0.8rem;
    border-radius: 50px;
    margin: 0.5rem;
    text-decoration: none;
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    border: none;
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    &:hover {
      background: var(--background-btn-hover) !important;
      border: none;
      color: var(--white-color);
      transform: translateY(-5px) scale(1.05);
      filter: brightness(1.1);
    }
  }
}

.back-to-top {
  position: fixed;
  bottom: 50px;
  inset-inline-end: 30px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: var(--background-btn) !important;
  color: var(--white-color);
  border-radius: 50px;
  border: none;
  font-size: 25px;
  text-decoration: none;
  display: none;
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  z-index: 998;
  cursor: pointer;

  &:hover {
    background: var(--background-btn-hover) !important;
    border: none;
    color: var(--white-color);
    transform: translateY(-5px) scale(1.05);
  }
}

.back-to-top.show {
  display: flex !important;
}

/*  
##################################################
#                  LOADING                       #
##################################################
*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  .loader-container {
    position: relative;

    width: 250px;
    height: 250px;
  }

  .pulse-circle img {
    width: 100%;
    height: 100%;
  }
}

/*  
##################################################
#                   Header / Navbar              #
##################################################
*/

.header {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5rem;
  transition: all 0.3s ease;

  .navbar {
    background-color: var(--white-color);
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;

    /* ================================
       LOGO
    ================================ */
    .navbar-brand {
      img {
        transition: transform 0.3s ease;
      }

      &:hover img {
        transform: scale(1.05);
      }
    }

    /* ================================
       NAVBAR TOGGLER
    ================================ */
    .navbar-toggler {
      box-shadow: none !important;
      border: none !important;
      padding: 0.25rem 0.5rem;

      &:focus {
        box-shadow: none;
      }
    }

    /* ================================
       NAV LINKS
    ================================ */
    .nav-item {
      .nav-link {
        color: var(--main-color);
        font-weight: 600;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1rem;
        transition: all 0.3s ease;
        position: relative;
        border-radius: var(--radius);
        margin: 0 0.25rem;

        i {
          transition: transform 0.3s ease;
        }

        &:hover {
          color: var(--main-color);
          background-color: rgba(107, 70, 193, 0.1);
        }

        &.active {
          background-color: rgba(107, 70, 193, 0.1);
          color: var(--white-color);
        }
      }
    }

    /* ================================
       DROPDOWN MENU
    ================================ */
    .nav-item.dropdown {
      position: relative;

      &:hover .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(-10px);
      }

      .nav-link {
        i {
          transition: transform 0.3s ease;
        }

        &:hover i {
          transform: rotate(180deg);
        }
      }
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      transform: translateY(-10px);
      border: none;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      padding: 0.75rem;
      margin-top: 0.5rem;
      background-color: var(--white-color);
      z-index: 999;
      min-width: 220px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;

      .dropdown-item {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        color: var(--black-color);
        font-weight: 500;
        font-size: 14px;
        display: block;
        text-decoration: none;

        &:hover {
          background: linear-gradient(
            135deg,
            rgba(202, 117, 163, 0.1) 0%,
            rgba(239, 209, 141, 0.1) 100%
          );
          color: var(--main-color);
          padding-left: 1.5rem;
          transform: translateX(5px);
        }

        &:active {
          background: linear-gradient(
            135deg,
            rgba(202, 117, 163, 0.2) 0%,
            rgba(239, 209, 141, 0.2) 100%
          );
          color: var(--main-color);
        }
      }
    }

    /* ================================
       MEGA MENU
    ================================ */
    .mega-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      width: 100%;
      padding: 2rem;
      margin: 0.5rem 0 0 0;
      border: none;
      border-radius: 12px;
      background-color: var(--white-color);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      z-index: 999;

      .mega-title {
        text-decoration: none;
        color: var(--black-color);
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
        display: block;
        padding: 0.5rem 0;

        &:hover {
          color: var(--main-color);
          padding-left: 8px;
        }
      }
    }
  }
}

/* Scroll Effect */
.header.scrolled {
  top: 10px;

  .navbar {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
  }
}

/* ================================
   OFFCANVAS (MOBILE MENU)
================================ */
.offcanvas {
  background-color: var(--white-color);
  border-left: 1px solid rgba(107, 70, 193, 0.1);

  .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
  }

  .offcanvas-body {
    padding: 1.5rem;
  }

  /* ================================
     MOBILE NAV LINKS
  ================================ */
  .nav-link {
    color: var(--main-color);
    font-weight: 600;
    font-size: 16px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    margin-bottom: 0.5rem;

    i {
      transition: transform 0.3s ease;
    }

    &:hover {
      color: var(--white-color);
      background: var(--background-btn);
    }
  }

  /* ================================
     DROPDOWN IN MOBILE
  ================================ */
  .dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: none;
    background-color: rgba(107, 70, 193, 0.05);
    margin: 0.5rem 0;
    padding: 0.5rem;

    .dropdown-item {
      padding: 0.5rem 1rem;
      border-radius: 6px;
      transition: all 0.3s ease;

      &:hover {
        background-color: rgba(107, 70, 193, 0.1);
        color: var(--main-color);
      }
    }
  }

  /* ================================
     CONTACT INFO
  ================================ */
  .list-contact {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(107, 70, 193, 0.1);
    margin-top: 1rem;

    strong {
      color: var(--main-color);
      font-weight: 600;
      display: block;
      margin-bottom: 0.5rem;
    }

    span {
      color: var(--third-color);
    }

    a {
      color: var(--main-color);
      transition: color 0.3s ease;
      display: block;
      margin-bottom: 1rem;

      &:hover {
        color: var(--fourth-color);
      }
    }
  }

  /* ================================
     SOCIAL ICONS
  ================================ */
  .header-social {
    display: flex;
    gap: 12px;
    padding-top: 1rem;
    border-top: 1px solid rgba(107, 70, 193, 0.1);
    margin-top: 1rem;

    .social-link {
      width: 42px;
      height: 42px;
      border-radius: 50px;
      background: rgba(107, 70, 193, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--main-color);
      transition: all 0.3s ease;
      font-size: 18px;

      &:hover {
        background: var(--background-btn);
        color: var(--white-color);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
      }
    }
  }
}

/*  
##################################################
#                     Home                       #
##################################################
*/
/* ================= Hero Base ================= */

.hero {
  position: relative;

  .hero-slider {
    height: 100vh;
    overflow-x: hidden;
    img {
      height: 100vh;
      width: 100%;
      object-fit: cover;
    }
    .overlay {
      position: absolute;
      inset: 0;

      background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
      z-index: 0;
    }
    /* ================= Hero Content ================= */

    .hero-content {
      position: absolute;
      left: 5%;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      opacity: 0;

      &.active {
        opacity: 1;
      }

      /* Slogan */
      .hero-slogan {
        display: inline-block;
        margin-bottom: 14px;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 600;
        color: var(--white-color);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
      }

      /* Title */
      h1 {
        font-size: 48px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 12px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
      }

      /* Paragraph */
      p {
        max-width: 600px;
        color: #f1f1f1;
        opacity: 0;
        transform: translateY(30px);
        transition: all 1s ease;
        font-size: 20px;
        line-height: 1.6;
      }

      /* Button */
      .btn-contact {
        opacity: 0;
        transform: translateY(30px);
        transition: all 1.2s ease;
      }

      /* ===== Active Animations ===== */

      &.active {
        .hero-slogan {
          opacity: 1;
          transform: translateY(0);
        }

        h1 {
          opacity: 1;
          transform: translateY(0);
        }

        p {
          opacity: 1;
          transform: translateY(0);
        }

        .btn-contact {
          opacity: 1;
          transform: translateY(0);
        }
      }
    }
  }
}

.hero-mobile {
  .hero-slider-mobile {
    height: 60vh;
    overflow: hidden;
    position: relative;

    .swiper-slide {
      height: 60vh;
    }

    img {
      height: 60vh;
      width: 100%;
      object-fit: cover;
    }

    .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.6) 100%
      );
      z-index: 1;
    }

    /* ================= Hero Content ================= */
    .hero-content {
      position: absolute;
      left: 5%;
      right: 5%;
      bottom: 30%;
      z-index: 2;
      opacity: 0;

      &.active {
        opacity: 1;
      }

      /* Title */
      h1 {
        font-size: 28px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.8s ease;
        line-height: 1.3;
      }

      /* Paragraph */
      p {
        color: #f1f1f1;
        opacity: 0;
        transform: translateY(20px);
        transition: all 1s ease;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 0;
      }

      /* ===== Active Animations ===== */
      &.active {
        h1 {
          opacity: 1;
          transform: translateY(0);
        }

        p {
          opacity: 1;
          transform: translateY(0);
        }
      }
    }
  }

  /* Car Search Form for Mobile */
  .car-search-form-section {
    bottom: -40px;
    z-index: 3;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;

    .car-search-form {
      background: var(--white-color);
      padding: 1.5rem;
      border-radius: 50px !important;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);

      .form-label {
        font-weight: 600;
        color: var(--main-color);
        margin-bottom: 0.5rem;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .form-control {
        border: 2px solid rgba(107, 70, 193, 0.2);
        border-radius: 50px;
        padding: 0.65rem 1rem;
        font-size: 14px;
        transition: all 0.3s ease;
        background-color: var(--white-color);
        height: 45px;

        &:focus {
          border-color: var(--second-color);
          outline: none;
          box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }
      }

      .btn-search {
        background: var(--background-btn);
        border: none;
        border-radius: 50px;
        color: var(--white-color);
        padding: 0.65rem 1.2rem;
        height: 45px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        font-size: 16px;
        font-weight: 600;

        &:hover {
          background: var(--background-btn-hover);
          transform: translateY(-2px);
          box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
        }

        i {
          font-size: 16px;
        }
      }
    }
  }
}

.hero-pages {
  .hero-content {
    margin-top: 80px;
  }
  .breadcrumb-item {
    color: var(--white-color);
  }
  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
  }
}

/*  
##################################################
#              Car Search Form                    #
##################################################
*/
.car-search-form-section {
  bottom: 0px;
  z-index: 2;

  padding-top: 2rem !important;

  .car-search-form {
    background: var(--white-color);
    padding: 2rem;
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);

    .form-label {
      font-weight: 600;
      color: var(--main-color);
      margin-bottom: 0.5rem;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .form-control {
      border: 2px solid rgba(107, 70, 193, 0.2);
      border-radius: 50px;
      padding: 0.75rem 1rem;
      font-size: 15px;
      transition: all 0.3s ease;
      background-color: var(--white-color);
      color: var(--black-color);
      height: 50px;

      &:focus {
        border-color: var(--main-color);
        box-shadow: 0 0 0 0.2rem rgba(107, 70, 193, 0.15);
        outline: none;
      }

      &::placeholder {
        color: var(--placeholder-color);
      }

      option {
        padding: 0.5rem;
      }
    }

    .btn-search {
      background: var(--background-btn);
      color: var(--white-color);
      border: none;
      border-radius: 50px;

      height: 50px;
      width: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      cursor: pointer;
      font-size: 18px;
      box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);

      &:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
      }

      &:active {
        transform: translateY(0);
      }
    }

    .form-group {
      position: relative;

      .form-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--placeholder-color);
        pointer-events: none;
        z-index: 1;
        font-size: 12px;
      }

      .form-control {
        padding-left: 40px;
      }
    }

    .quick-search-toggle {
      color: var(--main-color);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: all 0.3s ease;

      &:hover {
        color: var(--second-color);
        text-decoration: none;
      }

      i {
        font-size: 12px;
        transition: transform 0.3s ease;
      }
    }

    .advanced-search-section {
      animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .btn-show-results {
      background: linear-gradient(135deg, #ca75a3 0%, #efd18d 100%);
      color: var(--white-color);
      border: none;
      border-radius: 50px;
      padding: 0.75rem 2rem;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
      height: 50px;
      
      

      &:hover {
        background: var(--second-color);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(21, 37, 131, 0.3);
      }

      &:active {
        transform: translateY(0);
      }
    }
  }
}

/*  
##################################################
#                   Categories                   #
##################################################
*/

/*  
##################################################
#                    Product                     #
##################################################
*/

/*  
##################################################
#                    About US                    #
##################################################
*/

/*  
##################################################
#                   Contact US                   #
##################################################
*/
/* .contact-section {
  position: relative;
  &::before {
    position: absolute;
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--main-color) 50%, #0b3c5d 100%);
    opacity: 0.8;
  }
  .contact-cards {
    background: linear-gradient(
      135deg,
      rgba(16, 34, 46, 0.8),
      rgba(255, 255, 255, 0.2)
    );
    backdrop-filter: blur(10px);
    color: var(--white-color);
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    .col-lg-4 {
      border-right: 1px solid var(--white-color);
      &:last-of-type {
        border-right: none;
      }
    }
    .contact-card {
      .icon {
        width: 60px;
        height: 60px;
        background: rgba(72, 150, 199, 0.1);
        color: #4896c7;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 22px;
        margin: 0 auto 15px;
      }
      h5 {
        font-weight: 600;
        margin-bottom: 8px;
      }
      p {
        font-size: 14px;
        color: white;
      }
      a,
      span {
        display: block;
        font-size: 16px;
        color: var(--third-color);
        text-decoration: none;
      }
      a:hover {
        color: var(--white-color);
      }
    }
  }

  .contact-form {
    background: linear-gradient(
      135deg,
      rgba(16, 34, 46),
      rgba(255, 255, 255, 0.1)
    );
    backdrop-filter: blur(10px);
    color: var(--white-color);
    input,
    textarea {
      background-color: var(--main-color);
      border-color: #0b3c5d;
      &::placeholder {
        color: var(--white-color);
      }
    }
  }
  .map-wrapper {
    width: 100%;
    height: 100%;
  }

  .map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
}
.contact {
  .contact-tabs {
    background: linear-gradient(
      135deg,
      rgba(16, 34, 46, 0.8),
      rgba(255, 255, 255, 0.2)
    );

    backdrop-filter: blur(10px);
    color: var(--white-color);
    height: 100%;
    width: 100%;
    transition: all 0.35s ease;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    .nav-item {
      flex: 1;
      .nav-link {
        text-wrap: nowrap;
        border-radius: 0px;
        font-size: 18px;
        font-weight: 500;
        background: rgba(16, 34, 46, 0.2);
        color: var(--second-color);
        width: 100%;

        height: 100%;
        &.active {
          background: rgba(11, 60, 93, 0.502);
          padding: 30px 20px;
          width: 100%;
          color: var(--white-color);
        }
      }
    }
  }
  .contact-cards {
    background: linear-gradient(
      135deg,
      rgba(16, 34, 46, 0.8),
      rgba(255, 255, 255, 0.2)
    );
    backdrop-filter: blur(10px);
    color: var(--white-color);

    padding: 30px 20px;
    text-align: center;

    transition: all 0.35s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    .col-lg-3 {
      border-right: 1px solid var(--white-color);
      &:last-of-type {
        border-right: none;
      }
    }
    .contact-card {
      .icon {
        width: 60px;
        height: 60px;
        background: rgba(72, 150, 199, 0.1);
        color: #4896c7;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 22px;
        margin: 0 auto 15px;
      }
      h5 {
        font-weight: 600;
        margin-bottom: 8px;
      }
      p {
        font-size: 14px;
        color: white;
      }
      a,
      span {
        display: block;
        font-size: 16px;
        color: var(--third-color);
        text-decoration: none;
      }
      a:hover {
        color: var(--white-color);
      }
    }
  }

  .contact-form {
    background: linear-gradient(
      135deg,
      rgba(16, 34, 46),
      rgba(255, 255, 255, 0.1)
    );
    backdrop-filter: blur(10px);
    color: var(--white-color);
    input,
    textarea {
      background-color: var(--main-color);
      border-color: #0b3c5d;
      &::placeholder {
        color: var(--white-color);
      }
    }
  }
  .map-wrapper {
    width: 100%;
    height: 100%;
  }

  .map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
} */
/*  
##################################################
#                    Blogs                       #
##################################################
*/
.blogs-section {
  .blog-card {
    h5 {
      font-size: 18px !important;
      line-height: 20px;
      line-clamp: 2;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      display: -webkit-box;
      overflow: hidden;
    }
    .badge {
      background: var(--background-btn);
    }
  }
}

/*  
##################################################
#                  Blog Details                  #
##################################################
*/
/* .blog-details-section {
  background-color: var(--main-color);
  .contact-form {
    background: linear-gradient(
      135deg,
      rgba(16, 34, 46),
      rgba(255, 255, 255, 0.1)
    );
    backdrop-filter: blur(10px);
    color: var(--white-color);
    input,
    textarea {
      background-color: var(--main-color);
      border-color: #0b3c5d;
      &::placeholder {
        color: var(--white-color);
      }
    }
  }
  .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #6b7280;
    i {
      color: var(--white-color);
      margin-right: 6px;
    }
  }

  .article-content p {
    line-height: 1.8;
    color: var(--white-color);
  }
  .section-title {
    color: var(--white-color);
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
  }

  .custom-list {
    padding-left: 20px;
    li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 15px;
      color: var(--white-color);
      &::before {
        content: "✔";
        position: absolute;
        left: -15px;
        color: var(--white-color);
        font-size: 14px;
      }
    }
  }
} */

/*  
##################################################
#            Recently Added Cars Section          #
##################################################
*/

/*  
##################################################
#                  About Us Section               #
##################################################
*/
.about-intro-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 !important;

  .about-bg-pattern {
    position: absolute;
    inset: 0;

    z-index: 0;
    pointer-events: none;
  }

  .container-fluid {
    position: relative;
    z-index: 1;
  }

  .car-window-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;

    img {
      transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
      transform-origin: center;
      display: block;
    }

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100%;
      background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.3) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%,
        transparent 100%
      );
      backdrop-filter: blur(2px);
      transform: translateY(-100%);
      transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
      z-index: 2;
      pointer-events: none;
      border-radius: 24px;
    }

    &::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.05);
      opacity: 1;
      transition: opacity 0.7s ease;
      z-index: 1;
      pointer-events: none;
      border-radius: 24px;
    }

    &:hover {
      img {
        transform: scale(1.1);
        filter: brightness(1.2) contrast(1.15) saturate(1.1);
      }

      &::before {
        transform: translateY(0);
      }

      &::after {
        opacity: 0;
      }
    }
  }

  .about-content-wrapper {
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;

      .label-text {
        background: var(--background-btn);
        color: var(--white-color);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        box-shadow: 0 4px 15px rgba(107, 70, 193, 0.25);
      }

      .label-line {
        width: 60px;
        height: 2px;
        background: var(--background-btn);
        border-radius: 2px;
      }
    }

    .main-heading {
      font-size: 56px;
      font-weight: 800;
      line-height: 1.2;
      color: var(--main-color);
      margin: 0 0 30px 0;
      letter-spacing: -1px;

      .gradient-text {
        background: var(--background-btn);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
      }
    }

    .lead-text {
      font-size: 18px;
      line-height: 1.8;
      color: #4b5563;
      margin: 0 0 20px 0;
      font-weight: 500;

      strong {
        color: var(--main-color);
        font-weight: 700;
      }
    }

    .description-text {
      font-size: 16px;
      line-height: 1.8;
      color: #6b7280;
      margin: 0 0 50px 0;
    }
  }

  .about-visual-wrapper {
    position: relative;
    height: 100%;

    .visual-card {
      position: relative;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
      background: var(--white-color);

      .card-glow {
        position: absolute;
        inset: -2px;
        background: var(--background-btn);
        border-radius: 32px;
        opacity: 0.3;
        filter: blur(20px);
        z-index: 0;
        animation: pulse-glow 3s ease-in-out infinite;
      }

      .card-image {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        height: 750px;
        z-index: 1;

        .main-image {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .image-gradient-overlay {
          position: absolute;
          inset: 0;
          background: linear-gradient(
            180deg,
            transparent 0%,
            rgba(107, 70, 193, 0.2) 100%
          );
          z-index: 2;
        }
      }

      .floating-badge {
        position: absolute;
        background: var(--white-color);
        padding: 12px 20px;
        border-radius: 50px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        font-weight: 600;
        color: var(--main-color);
        z-index: 3;
        animation: float 3s ease-in-out infinite;

        i {
          color: var(--second-color);
          font-size: 16px;
        }

        &.badge-1 {
          top: 30px;
          left: 30px;
          animation-delay: 0s;
        }

        &.badge-2 {
          top: 50%;
          right: 30px;
          transform: translateY(-50%);
          animation-delay: 1s;
        }

        &.badge-3 {
          bottom: 30px;
          left: 50%;
          transform: translateX(-50%);
          animation-delay: 2s;
        }
      }

      &:hover .main-image {
        transform: scale(1.1);
      }
    }
  }

  @keyframes pulse-glow {
    0%,
    100% {
      opacity: 0.3;
    }
    50% {
      opacity: 0.5;
    }
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  @media (max-width: 992px) {
    padding: 60px 0 !important;

    .about-content-wrapper {
      margin-bottom: 50px;

      .main-heading {
        font-size: 38px;
      }

      .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
      }
    }

    .about-visual-wrapper .visual-card .card-image {
      height: 400px;
    }

    .features-showcase {
      margin-top: 50px;
    }
  }
}
.features-showcase {
  margin-top: 80px;

  .showcase-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    height: 100%;

    &:hover {
      transform: translateY(-15px);
      box-shadow: 0 20px 60px rgba(107, 70, 193, 0.2);
      border-color: var(--second-color);

      .card-icon-wrapper {
        transform: scale(1.1) rotate(5deg);

        .icon-bg {
          transform: scale(1.2);
          opacity: 1;
          background: var(--background-btn-hover);
        }
        img {
          filter: brightness(0) invert(1);
        }
        i {
          color: white;
        }
      }
    }

    .card-icon-wrapper {
      position: relative;
      width: 80px;
      height: 80px;
      margin: 0 auto 30px;
      transition: transform 0.4s ease;

      .icon-bg {
        position: absolute;
        inset: 0;
        background: var(--gray-light);
        border-radius: 50%;
        opacity: 0.8;
        transition: all 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      img {
        position: relative;
        z-index: 2;
        width: 30px;
        height: 30px;
      }

      i {
        position: relative;
        z-index: 2;
        font-size: 48px;
        color: var(--main-color);
        transition: all 0.4s ease;
      }
    }

    h4 {
      font-size: 22px;
      font-weight: 700;
      color: var(--main-color);
      margin: 0 0 15px 0;
    }

    p {
      font-size: 14px;
      line-height: 1.7;
      color: #6b7280;
      margin: 0;
    }
  }
}
.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  margin-top: 50px;

  .stat-item {
    width: 100%;
    text-align: center;
    padding: 30px 20px;
    background: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;

    &:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(107, 70, 193, 0.15);
      border-color: var(--second-color);
    }

    .stat-number {
      font-size: 48px;
      font-weight: 800;
      background: var(--background-btn);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 10px;
    }

    .stat-label {
      font-size: 14px;
      color: #6b7280;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
  }
}
/*  
##################################################
#            Available Brands Section             #
##################################################
*/
.available-brands-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f8f9ff 100%);

  .header-section {
    h2 {
      color: var(--main-color);
      font-size: 35px;
      font-weight: bold;
      margin-bottom: 20px;
    }
    p {
      color: #575757;
      font-size: 18px;
    }
  }

  .brands-swiper-wrapper {
    padding: 30px 0 60px;
    position: relative;
  }

  .brandsSwiper {
    .swiper-slide {
      height: auto;
    }
  }

  .brand-card-link {
    text-decoration: none;
    display: block;
    height: 100%;

    &:hover {
      text-decoration: none;
    }
  }

  .brand-card {
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: var(--white-color);

    .brand-logo {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 20px;
      overflow: hidden;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: grayscale(30%);
        opacity: 0.9;
        transition: all 0.4s ease;
      }
    }

    .brand-name-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.7) 100%
      );
      padding: 20px;
      z-index: 2;
    }

    .brand-name {
      color: var(--white-color);
      font-size: 22px;
      font-weight: 700;
      margin: 0;
      text-align: center;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
    }

    &:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 40px rgba(107, 70, 193, 0.2);

      .brand-logo {
        img {
          filter: grayscale(0%);
          opacity: 1;
          transform: scale(1.1);
        }
      }

      .brand-name-overlay {
        background: linear-gradient(
          180deg,
          transparent 0%,
          hsla(42, 75%, 75%, 0.642) 100%
        );
      }

      .brand-name {
        transform: translateY(-3px);
      }
    }
  }
}

/*  
##################################################
#            Featured Offers Section              #
##################################################
*/
.featured-offers-section {
  background-color: var(--white-color);

  .header-section {
    h2 {
      color: var(--main-color);
      font-size: 35px;
      font-weight: bold;
      margin-bottom: 20px;
    }
    p {
      color: #575757;
      font-size: 18px;
    }
  }

  .offer-card {
    background: var(--white-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;

    &:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 30px rgba(107, 70, 193, 0.15);
    }

    .offer-image-wrapper {
      position: relative;
      overflow: hidden;
      height: 250px;
      width: 100%;

      .offer-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s ease;
      }

      .offer-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--background-btn);
        color: var(--white-color);
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 2;

        &.badge-new {
          background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }

        &.badge-business {
          background: linear-gradient(135deg, #8b5cf6 0%, #6b46c1 100%);
        }
      }
    }

    &:hover .offer-image-wrapper .offer-image {
      transform: scale(1.1);
    }

    .offer-content {
      padding: 30px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;

      .offer-title {
        color: var(--main-color);
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.3;
      }

      .offer-description {
        color: #575757;
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
        flex-grow: 1;
      }

      .offer-features {
        margin-bottom: 25px;
        display: flex;
        flex-direction: column;
        gap: 12px;

        .feature-item {
          display: flex;
          align-items: center;
          gap: 12px;
          color: #575757;
          font-size: 14px;

          i {
            width: 32px;
            height: 32px;
            background: var(--gray-light);
            color: var(--main-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
          }
        }
      }

      .btn-offer {
        background: var(--background-btn);
        color: var(--white-color);
        padding: 14px 28px;
        border-radius: var(--radius);
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
        border: none;
        cursor: pointer;

        &:hover {
          background: var(--background-btn-hover);
          transform: translateY(-2px);
          box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
          color: var(--white-color);
        }

        i {
          transition: transform 0.3s ease;
        }

        &:hover i {
          transform: translateX(5px);
        }
      }
    }
  }
}

/*  
##################################################
#            Finance Partners Section             #
##################################################
*/
.finance-partners-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);

  .header-section {
    h2 {
      color: var(--main-color);
      font-size: 35px;
      font-weight: bold;
      margin-bottom: 20px;
    }
    p {
      color: #575757;
      font-size: 18px;
    }
  }

  .partnersSwiper {
    padding-bottom: 50px;

    .swiper-slide {
      height: auto;
    }
  }

  .partner-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;

    .partner-logo {
      width: 100%;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      filter: grayscale(100%);
      opacity: 0.6;
      transition: all 0.3s ease;

      img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        transition: all 0.3s ease;
      }
    }

    &:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 30px rgba(107, 70, 193, 0.15);
      border-color: var(--second-color);

      .partner-logo {
        filter: grayscale(0%);
        opacity: 1;

        img {
          transform: scale(1.1);
        }
      }
    }
  }

  .swiper-navigation-partners {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;

    .swiper-button-prev-partners,
    .swiper-button-next-partners {
      position: static;
      width: 50px;
      height: 50px;
      margin: 0;
      background: var(--white-color);
      border-radius: 50%;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      pointer-events: all;
      transition: all 0.3s ease;

      &::after {
        display: none;
      }

      i {
        font-size: 18px;
        color: var(--main-color);
        transition: all 0.3s ease;
      }

      &:hover {
        background: var(--main-color);
        transform: scale(1.1);

        i {
          color: var(--white-color);
        }
      }
    }
  }

  .swiper-pagination-partners {
    bottom: 0 !important;

    .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      background: #d1d5db;
      opacity: 1;
      transition: all 0.3s ease;

      &-active {
        background: var(--main-color);
        width: 24px;
        border-radius: 5px;
      }
    }
  }
}

/*  
##################################################
#                    Footer                      #
##################################################
*/
footer {
  background: var(--background);
  .footer-logo {
    filter: brightness(0) invert(1);
  }
  .footer-title {
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
  }

  .footer-text {
    line-height: 1.8;
    color: var(--white-color);
  }

  .footer-list,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-list {
    li {
      margin-bottom: 12px;
    }
  }

  .footer-link {
    color: var(--white-color);
    text-decoration: none;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;

    &:hover {
      color: var(--third-color);
      padding-left: 6px;
    }
  }
  .footer-contact {
    li {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      color: var(--white-color);
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s ease;

      &:hover {
        color: var(--third-color);
      }
    }
  }
  .footer-divider {
    border-color: rgba(255, 255, 255, 0.4);
    margin: 40px 0 20px;
  }
  .copyright {
    p {
      margin: 0;
      font-size: 18px;
      color: var(--white-color);
    }

    a {
      color: var(--white-color);
      text-decoration: none;

      &:hover {
        color: var(--third-color);
      }
    }
  }
  .footer-social {
    margin-top: 16px;
    display: flex;
    gap: 12px;

    a {
      width: 38px;
      height: 38px;
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;

      &:hover {
        background: var(--third-color);
        color: var(--main-color);
        transform: translateY(-3px);
      }
    }
  }
}

/*  
##################################################
#                Car Details Section             #
##################################################
*/

.car-details-section {
  /* Titles */
  h2 {
    font-size: 28px;
    font-weight: 700;
  }

  h5 {
    font-size: 18px;
    font-weight: 600;
  }

  h6 {
    font-size: 16px;
    font-weight: 600;
  }

  p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Car Header Card */
  .car-header-card {
    border: 1px solid #e5e7eb;
  }

  /* Car Image */
  .car-details-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

    img {
      transition: transform 0.3s ease;
    }

    &:hover img {
      transform: scale(1.02);
    }
  }

  /* Specs Grid Card */
  .specs-grid-card {
    border: 1px solid #e5e7eb;

    .spec-item-card {
      background: #f8f9fa;
      border: 1px solid #e5e7eb;
      transition: all 0.3s ease;

      i {
        color: var(--main-color);
      }

      &:hover {
        background: #fff;
        border-color: var(--second-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      }

      .fw-bold {
        color: var(--second-color);
        font-size: 15px;
      }
    }
  }

  /* Description Card */
  .description-card {
    border: 1px solid #e5e7eb;
  }

  /* Finance Offer Sticky */
  .finance-offer-card-sticky {
    position: sticky;
    top: 100px;
  }

  .finance-offer-card {
    background: #ffffff;
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--background-btn);
    }

    .card-body {
      padding: 24px;
    }

    h5 {
      font-size: 18px;
      font-weight: 700;
      color: #000;
      margin-bottom: 0;
    }

    /* Countdown Timer */
    .countdown-timer {
      background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 16px;
      margin: 20px 0;

      p {
        color: #000;
        font-weight: 600;
        margin-bottom: 12px;
      }

      .countdown-container {
        .countdown-item {
          background: #fff;
          border: 2px solid var(--gray-light);
          border-radius: 10px;
          padding: 12px 16px;
          min-width: 70px;
          text-align: center;

          .countdown-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--second-color);
            line-height: 1.2;
            margin-bottom: 4px;
          }

          .countdown-label {
            font-size: 11px;
            color: #6b7280;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
          }
        }

        .countdown-separator {
          font-size: 24px;
          font-weight: 700;
          color: var(--second-color);
          display: flex;
          align-items: center;
          padding: 0 4px;
        }
      }
    }

    .offer-details {
      margin: 20px 0;

      .bg-light {
        background: #f8f9fa !important;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        padding: 14px 12px !important;
        transition: all 0.3s ease;

        &:hover {
          border-color: var(--second-color);
          transform: translateY(-2px);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .fs-5 {
          font-size: 22px !important;
          font-weight: 700;
          color: #000;
          margin-bottom: 4px;
        }

        .small {
          font-size: 12px;
          color: #6b7280;
          font-weight: 500;
        }
      }
    }

    .offer-info {
      background: #f8f9fa;
      border-radius: 10px;
      padding: 16px;
      border: 1px solid #e5e7eb;

      .small {
        color: #000;
        line-height: 1.6;

        strong {
          color: #000;
          font-weight: 600;
        }

        i {
          color: var(--second-color);
          font-size: 14px;
        }
      }
    }

    .finance-summary {
      background: #f8f9fa;
      border-radius: 12px;
      padding: 16px;
      border: 1px solid #e5e7eb;

      .finance-item {
        .small {
          color: #6b7280;
          font-size: 13px;
        }

        .fw-bold {
          color: #000;
        }

        .fs-5 {
          color: var(--second-color);
        }
      }
    }

    .offer-benefits {
      h6 {
        font-size: 14px;
        color: #000;
        font-weight: 700;
        margin-bottom: 12px;
      }

      ul {
        li {
          font-size: 13px;
          padding: 6px 0;
          color: #000;

          i {
            color: var(--second-color);
            font-size: 12px;
          }
        }
      }
    }

    .offer-features {
      margin: 20px 0;

      h6 {
        font-size: 16px;
        color: #000;
        font-weight: 700;
        margin-bottom: 12px;

        i {
          color: var(--second-color);
        }
      }

      ul {
        li {
          font-size: 14px;
          padding: 8px 0;
          color: #000;

          i {
            color: var(--second-color);
          }
        }
      }
    }

    .btn-finance-offer {
      background: var(--background-btn);
      color: #fff;
      border: none;
      font-size: 17px;
      font-weight: 700;
      padding: 16px 24px;
      border-radius: 50px;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
      box-shadow: 0 6px 20px rgba(202, 117, 163, 0.3);
      position: relative;
      overflow: hidden;

      &::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.3),
          transparent
        );
        transition: left 0.5s ease;
      }

      &:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(202, 117, 163, 0.4);
        color: #fff;

        &::before {
          left: 100%;
        }

        i {
          transform: translateX(5px);
        }
      }

      i {
        transition: transform 0.3s ease;
      }
    }

    .small {
      font-size: 12px;
      color: #6b7280;
      margin-top: 12px;

      i {
        color: #6b7280;
      }
    }
  }

  .car-specs {
    h5 {
      font-size: 18px;
      color: #000;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .d-flex {
      padding: 10px 12px;
      background: #f8f9fa;
      border-radius: 8px;
      border: 1px solid #e5e7eb;
      margin-bottom: 8px;

      i {
        font-size: 18px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(202, 117, 163, 0.1);
        border-radius: 8px;
        color: var(--second-color);
      }

      span.small {
        font-size: 12px;
        color: #6b7280;
      }

      p {
        font-size: 14px;
        color: #000;
        font-weight: 600;
        margin: 0;
      }
    }
  }

  .finance-details {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;

    h5 {
      font-size: 18px;
      color: #000;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .d-flex {
      padding: 10px 0;
      border-bottom: 1px solid #e5e7eb;

      &:last-child {
        border-bottom: none;
      }

      span:first-child {
        font-size: 14px;
        color: #6b7280;
      }

      span:last-child {
        font-size: 15px;
        color: #000;
        font-weight: 600;
      }
    }
  }

  .car-pricing {
    .price-amount {
      font-size: 32px;
      color: var(--second-color);
      font-weight: 700;
      background: linear-gradient(
        135deg,
        var(--second-color),
        var(--main-color)
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .price-currency {
      font-size: 16px;
      color: #6b7280;
    }
  }

  .mb-4 {
    h5 {
      font-size: 18px;
      color: #000;
      font-weight: 700;
    }

    p {
      font-size: 15px;
      color: #000;
      line-height: 1.7;
    }
  }

  .btn-outline-primary {
    border: 2px solid var(--second-color);
    color: var(--second-color);
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 24px;

    &:hover {
      background: var(--second-color);
      color: #fff;
      border-color: var(--second-color);
    }
  }

  .spec-details {
    .d-flex {
      padding: 10px 0;
      border-bottom: 1px solid #e5e7eb;

      &:last-child {
        border-bottom: none;
      }

      span.text-muted {
        font-size: 14px;
        color: #6b7280;
      }

      span.fw-bold {
        font-size: 15px;
        color: #000;
        font-weight: 600;
      }
    }
  }

  .card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;

    .card-body {
      padding: 20px;
    }

    h5 {
      font-size: 18px;
      color: #000;
      font-weight: 700;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;

      i {
        font-size: 20px;
        color: var(--second-color);
      }
    }
  }

  .text-center.shadow-sm {
    border: 1px solid #e5e7eb;
    border-radius: 20px !important;
    background: #fff;
    padding: 20px !important;

    i {
      font-size: 32px;
      margin-bottom: 12px;
      color: var(--second-color);
    }

    h6 {
      font-size: 16px;
      color: #000;
      font-weight: 700;
      margin-bottom: 8px;
    }

    p {
      font-size: 14px;
      color: #000;
      line-height: 1.5;
    }
  }

  ul.list-unstyled {
    li {
      padding: 8px 0;
      font-size: 14px;
      color: #000;

      i {
        color: var(--second-color);
        margin-right: 8px;
      }
    }
  }

  .card.shadow-sm.border-0 {
    border: 1px solid #e5e7eb !important;
    border-radius: 12px;
    background: #fff;

    .card-body {
      padding: 24px 20px;
    }

    i {
      font-size: 36px;
      margin-bottom: 12px;
      color: var(--second-color);
    }

    h6 {
      font-size: 16px;
      color: #000;
      font-weight: 700;
      margin-bottom: 8px;
    }

    p {
      font-size: 14px;
      color: #000;
    }
  }

  h3.fw-bold.text-main {
    font-size: 24px;
    color: #000;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-light);
  }

  .accordion {
    .accordion-item {
      border: 1px solid #e5e7eb;
      border-radius: 50px !important;
      margin-bottom: 12px;
      background: #fff;
      overflow: hidden;

      .accordion-header {
        .accordion-button {
          background: #f8f9fa;
          border: none;
          padding: 16px 20px;
          font-size: 16px;
          font-weight: 700;
          color: #000;
          box-shadow: none;

          &:not(.collapsed) {
            background: var(--background-btn);
            color: #fff;
            box-shadow: none;

            i {
              color: #fff;
            }

            &::after {
              filter: brightness(0) invert(1);
            }
          }

          &:focus {
            box-shadow: none;
            border-color: transparent;
          }

          i {
            font-size: 18px;
            margin-right: 10px;
            color: var(--second-color);
          }
        }
      }

      .accordion-collapse {
        .accordion-body {
          padding: 30px 20px;
          background: #fff;
        }
      }
    }
  }
}

/* Apply Section */
.apply-section {
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  min-height: 100vh;

  .apply-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);

    h2 {
      color: var(--main-color);
      font-size: 32px;
      font-weight: 700;
    }

    .form-section {
      padding: 30px;
      background: #ffffff;
      border-radius: 16px;
      margin-bottom: 30px;
      border: 1px solid #e5e7eb;

      h4 {
        color: var(--main-color);
        font-size: 22px;
        font-weight: 700;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--second-color);
        margin-bottom: 25px;

        i {
          font-size: 24px;
        }
      }

      .form-label {
        color: #000;
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 8px;

        .text-danger {
          color: #dc3545;
        }
      }

      .form-control,
      .form-select {
        border: 2px solid #e5e7eb;
        border-radius: 10px;
        padding: 12px 16px;
        font-size: 14px;
        transition: all 0.3s ease;
        background: #ffffff;

        &:focus {
          border-color: var(--second-color);
          box-shadow: 0 0 0 4px rgba(202, 117, 163, 0.1);
          background: #ffffff;
        }

        &::placeholder {
          color: #9ca3af;
        }
      }

      textarea.form-control {
        min-height: 100px;
        resize: vertical;
      }

      .invalid-feedback {
        display: none;
        font-size: 13px;
        color: #dc3545;
        margin-top: 5px;
      }

      .was-validated .form-control:invalid ~ .invalid-feedback,
      .was-validated .form-select:invalid ~ .invalid-feedback,
      .was-validated .form-check-input:invalid ~ .invalid-feedback {
        display: block;
      }

      .was-validated .form-control:invalid,
      .was-validated .form-select:invalid {
        border-color: #dc3545;
      }

      .form-check {
        padding: 15px;
        background: #ffffff;
        border-radius: 10px;
        border: 2px solid #e5e7eb;

        .form-check-input {
          margin-top: 0.3em;
          cursor: pointer;

          &:checked {
            background-color: var(--second-color);
            border-color: var(--second-color);
          }

          &:focus {
            border-color: var(--second-color);
            box-shadow: 0 0 0 4px rgba(202, 117, 163, 0.1);
          }
        }

        .form-check-label {
          color: #000;
          font-size: 14px;
          cursor: pointer;

          a {
            color: var(--main-color);
            text-decoration: none;
            font-weight: 600;

            &:hover {
              color: var(--second-color);
              text-decoration: underline;
            }
          }
        }
      }

      .alert-info {
        background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
        border: 2px solid #3b82f6;
        border-radius: 12px;
        color: #1e40af;

        i {
          color: #3b82f6;
        }

        ul {
          margin-left: 20px;
          padding-left: 0;

          li {
            margin-bottom: 5px;
            color: #1e40af;
          }
        }
      }

      input[type="file"] {
        cursor: pointer;

        &::file-selector-button {
          background: var(--second-color);
          color: #fff;
          border: none;
          padding: 8px 16px;
          border-radius: 8px;
          margin-right: 10px;
          cursor: pointer;
          font-weight: 600;
          transition: all 0.3s ease;

          &:hover {
            background: var(--main-color);
          }
        }
      }

      small.text-muted {
        font-size: 12px;
        color: #6b7280;
        display: block;
        margin-top: 5px;
      }
    }

    .btn-send {
      font-size: 18px;
      font-weight: 700;
      padding: 14px 40px;
      border-radius: 50px;
      transition: all 0.3s ease;

      &:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(202, 117, 163, 0.4);
      }
    }
  }
}

/* Contact Section */
.contact-section {
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  min-height: 70vh;
  padding: 80px 0;

  .contact-header {
    h2 {
      color: var(--main-color);
      font-size: 42px;
      font-weight: 700;
      position: relative;
      display: inline-block;
      margin-bottom: 20px;

      &::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(
          to right,
          var(--second-color),
          var(--main-color)
        );
        border-radius: 2px;
      }
    }

    .lead {
      color: #6b7280;
      font-size: 18px;
      font-weight: 500;
      margin-top: 30px;
    }
  }

  .contact-form-wrapper {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--background-btn);
    }

    h3 {
      color: var(--main-color);
      font-size: 22px;
      font-weight: 700;

      i {
        font-size: 26px;
      }
    }

    p {
      color: #6b7280;
      font-size: 16px;
    }

    .form-label {
      color: #000;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 8px;

      .text-danger {
        color: #dc3545;
      }
    }

    .input-group {
      border-radius: 50px;
      overflow: hidden;
      border: 2px solid #e5e7eb;
      transition: all 0.3s ease;
      background: #ffffff;

      &:focus-within {
        border-color: var(--second-color);
        box-shadow: 0 0 0 4px rgba(202, 117, 163, 0.1);
      }

      .input-group-text {
        background: #f8f9fa;
        border: none;
        padding: 12px 18px;
        color: var(--second-color);
        font-size: 16px;
      }

      .form-control,
      .form-select {
        border: none;
        border-radius: 0;
        padding: 12px 20px;
        font-size: 14px;
        transition: all 0.3s ease;
        background: transparent;
        color: #000;

        &:focus {
          box-shadow: none;
          background: transparent;
          outline: none;
        }

        &::placeholder {
          color: #9ca3af;
        }
      }

      .form-select {
        cursor: pointer;
      }
    }

    textarea.form-control {
      border: 2px solid #e5e7eb;
      border-radius: 20px;
      min-height: 150px;
      resize: vertical;
      padding: 15px 20px;
      transition: all 0.3s ease;

      &:focus {
        border-color: var(--second-color);
        box-shadow: 0 0 0 4px rgba(202, 117, 163, 0.1);
        outline: none;
      }

      &::placeholder {
        color: #9ca3af;
      }
    }

    .invalid-feedback {
      display: none;
      font-size: 13px;
      color: #dc3545;
      margin-top: 5px;
    }

    .was-validated .form-control:invalid ~ .invalid-feedback,
    .was-validated .form-select:invalid ~ .invalid-feedback {
      display: block;
    }

    .was-validated .form-control:invalid,
    .was-validated .form-select:invalid,
    .was-validated .input-group:has(.form-control:invalid),
    .was-validated .input-group:has(.form-select:invalid) {
      border-color: #dc3545;
    }
  }

  .contact-info-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--background-btn);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    &:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(107, 70, 193, 0.2);
      border-color: var(--second-color);

      &::before {
        transform: scaleX(1);
      }

      .contact-icon-wrapper {
        transform: scale(1.1) rotate(5deg);
        background: var(--background-btn);

        i {
          color: #fff;
        }
      }

      h4 {
        color: var(--second-color);
      }

      a {
        color: var(--second-color) !important;
        transform: scale(1.05);
      }
    }

    .contact-icon-wrapper {
      width: 40px;
      height: 40px;
      background: linear-gradient(
        135deg,
        rgba(202, 117, 163, 0.1) 0%,
        rgba(239, 209, 141, 0.1) 100%
      );
      border-radius: 50%;
      transition: all 0.4s ease;
      display: flex;
      align-items: center;
      justify-content: center;

      i {
        transition: all 0.4s ease;
        font-size: 20px !important;
      }
    }

    h4 {
      transition: color 0.3s ease;
      font-size: 18px !important;
      color: var(--main-color);
    }

    p {
      font-size: 14px;
      transition: color 0.3s ease;
      color: #6b7280;
    }

    a {
      transition: all 0.3s ease;
      color: var(--main-color);
      font-size: 16px !important;
      &:hover {
        color: var(--second-color) !important;
        transform: scale(1.05);
      }
    }
  }

  .contact-map-wrapper {
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;

    &:hover {
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      border-color: var(--second-color);
    }

    .contact-map-container {
      position: relative;
      padding-bottom: 100%;
      height: 100% !important;
      overflow: hidden;
      background: #f8f9fa;

      .contact-map-iframe {
        border: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 100%;
        /* min-height: 500px; */
      }
    }
  }
}
