:root {
  --color-primary: #1d4ed8;
  --color-secondary: #0ea5e9;
  --color-text: #111827;
  --color-success: #16a34a;
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-dark: #eef2f4;
  --color-bg-light: #f1f5f9;
  --elevation-1: 0 8px 40px rgba(0, 0, 0, 0.1);
  --elevation-2: 0 20px 60px rgba(0, 0, 0, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #444;
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", serif;
  color: var(--color-text);
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

img {
  max-width: 100%;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 10px;
}

/* HEADER TOP */
#headertop {
  background: #111;
  padding: 8px 0;
  font-size: 0.82rem;
}

#headertop span {
  color: #aaa;
  margin-right: 16px;
}

#headertop span i {
  color: var(--color-secondary);
  margin-right: 5px;
}

#headertop .social-icons a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.75rem;
  margin-left: 5px;
  transition: 0.3s;
}

#headertop .social-icons a:hover {
  background: var(--color-primary);
  color: #fff;
}

/* HEADER */
#nav {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 990;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: 0.4s;
}

#nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.14);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}

.logo-name {
  font-family: "Montserrat", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-text);
}

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

.navbar-nav .nav-link {
  font-size: 0.87rem;
  font-weight: 500;
  color: #333 !important;
  padding: 26px 13px !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px 3px 0 0;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 55%;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary) !important;
}

/* HOME */
#home {
  position: relative;
  min-height: 100vh;
  background: url('../img/car_img1.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, .75) 0%,
      rgba(0, 0, 0, .45) 45%,
      rgba(0, 0, 0, .20) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content h1 span {
  color: #fffacd;
}

.hero-content p {
  font-size: 1.15rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 0;
}

.hero-content .warranty-first-text {
  padding-top: 15px;
}

@media (max-width: 991px) {
  #home {
    text-align: center;
  }

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

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
  .navbar-nav .nav-link {
    font-size: 1.5rem;
    padding: 15px 13px !important;
  }
  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: 0;
  }
}

section {
  padding: 88px 0;
}

.section-subtitle {
  font-family: "Allura", cursive;
  font-size: 2.35rem;
  color: var(--color-success);
  display: block;
  margin-bottom: 4px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-title span {
  color: var(--color-primary);
}

.section-line {
  width: 58px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  margin: 0 auto 12px;
}

.section-line.lft {
  margin-left: 0;
}

.btn-red {
  background: linear-gradient(135deg, var(--color-primary), #c01e12);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.93rem;
  box-shadow: 0 8px 24px rgba(232, 40, 26, 0.35);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(232, 40, 26, 0.45);
  color: #fff;
}

/* ABOUT US SECTION */
#about {
  background: #fff;
}

.about-image-wrapper {
  position: relative;
}

.about-main-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--elevation-1);
}

.about-main-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.experience-badge {
  position: absolute;
  top: 28px;
  left: -16px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(232, 40, 26, 0.4);
}

.experience-badge .experience-number {
  font-family: "Montserrat", serif;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.experience-badge small {
  font-size: 0.7rem;
  opacity: 0.9;
}

.why-content{
    max-width: 950px;
    margin: 50px auto 0;
}

.why-item{
    position: relative;
    padding: 25px 30px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    border-left: 4px solid var(--color-primary);
    transition: all 0.3s ease;
}

.why-item:hover{
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.why-title{
    position: relative;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
    font-family: "Montserrat", sans-serif;
}

.why-item .section-description{
    margin-bottom: 0;
    line-height: 1.8;
}

#whychooseus{
    background: var(--color-bg-dark);
}

/* OPENING HOURS */
#opening-hours {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  position: relative;
  overflow: hidden;
}

.opening-hours-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 28px;
}

.opening-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.opening-hours-row:last-child {
  border: none;
}

.opening-hours-day {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 500;
}

.opening-time {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.status-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.status-indicator.on {
  background: #4ade80;
  box-shadow: 0 0 7px #4ade80;
}

.status-indicator.off {
  background: #ff6b6b;
}


.form-label-custom {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 5px;
  display: block;
}

.form-control-custom {
  width: 100%;
  border: 2px solid #eee;
  border-radius: 9px;
  padding: 11px 15px;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: 0.3s;
  color: var(--color-text);
  background: #fff;
  appearance: auto;
}

.form-control-custom:focus {
  border-color: var(--color-primary);
}

.contact-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

/* CONTACT US SECTION */
#contact-section {
  background: #fff;
}

.contact-info-card {
  background: var(--color-text);
  border-radius: 18px;
  padding: 38px;
  height: 100%;
}

.contact-info-card h4 {
  color: #fff;
  margin-bottom: 7px;
}

.contact-info-card .contact-subtitle {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  margin-bottom: 26px;
}

.contact-item {
  display: flex;
  gap: 13px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(232, 40, 26, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-details strong {
  display: block;
  color: #aaa;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1px;
  font-family: "Inter", sans-serif;
}

.contact-details span {
  color: #fff;
  font-size: 0.87rem;
}

/* FOOTER */
footer {
  background: var(--color-text);
  padding: 68px 0 0;
}

.footer-logo-name {
  font-family: "Montserrat", serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
}

.footer-logo-name span {
  color: var(--color-primary);
}

.footer-description {
  color: #777;
  font-size: 0.86rem;
  line-height: 1.8;
  margin-top: 9px;
}

.footer-social-icons {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}

.footer-social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.88rem;
  transition: 0.3s;
}

.footer-social-icons a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  margin-top: 46px;
}

.footer-copyright p {
  color: #555;
  font-size: 0.8rem;
  margin: 0;
}

.footer-copyright span {
  color: var(--color-primary);
}

.footer-copyright a {
  color: #555;
  font-size: 0.8rem;
  margin-left: 18px;
}

.footer-copyright a:hover {
  color: var(--color-secondary);
}

#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--color-primary), #c01e12);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(232, 40, 26, 0.38);
  opacity: 0;
  transform: translateY(18px);
  transition: 0.4s;
}

#back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  transform: translateY(-4px) !important;
}

@media (max-width: 767px) {
  section {
    padding: 55px 0;
  }

  #headertop .headertop-contact span:last-child {
    display: none;
  }

  .contact-form-card {
    padding: 22px 18px;
  }
   .navbar-nav .nav-link {
    font-size: 1.2rem;
    padding: 15px 13px !important;
  }
  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: 0;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
}

/* FAQ accordion styling aligned with site colors */
.accordion-item{
  border:none;
  margin-bottom:12px;
  border-radius:12px;
  overflow:hidden;
}
.accordion-button{
  background:var(--color-text);
  color:#fff;
  font-weight:600;
}
.accordion-button:not(.collapsed){
  background:var(--color-secondary);
  color:#fff;
  box-shadow:none;
}
.accordion-button::after{
  filter:brightness(0) invert(1);
}
.accordion-body{
  background:var(--color-bg-dark);
  color:var(--color-text);
}

.modal-header {
  background: var(--color-text);
  color: white;
}
.modal-header .modal-title {
  font-family: "Montserrat", serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.modal-header .btn-close {
  color: #fff;
  filter: invert(1);
}
.modal-header .btn-close:hover {
  color: #fff;
}
.modal-body {
  font-size: 0.9rem;
}
.modal-content {
  border-radius: 12px;
  box-shadow: var(--elevation-2);
}
.modal-footer .btn-primary, .modal-footer .btn-primary:active, .modal-footer .btn-primary:focus, .modal-footer .btn-primary:hover {
  background: var(--color-text);
  border-color: var(--color-text);
  font-size: 0.9rem;
}
.site-logo {
    height: 50px;
    width: auto;
    background: white;
}
/*Reviews*/

.review-card{
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all .35s ease;
    border-top: 4px solid #0d6efd;
    overflow: hidden;
     min-width: 300px;
    max-width: 350px;
}

.review-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.review-card::before{
    content: "\201C";
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 90px;
    color: rgba(13,110,253,0.08);
    font-family: serif;
}

.review-stars{
    color:#ffc107;
    font-size:18px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.review-card h5{
    font-weight:700;
    margin-bottom:15px;
    color:#0f172a;
}

.review-card p{
    color:#64748b;
    line-height:1.7;
    margin-bottom:0;
}
.review-header{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
}

.review-avatar{
    width:50px;
    height:50px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#60a5fa);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;
    flex-shrink:0;
}

.review-header h5{
    margin:0;
}

section#warranty-first {
    padding-bottom: 0 !important;
}

#warranty-first img{
    width:100%;
}
