html {
  font-family: "Figtree", sans-serif;
}

.nav-mobile {
  background: #454545;
  padding: 0.2rem;
  display: flex;
  color: #fff;
  justify-content: end;
  align-items: center;
  padding-right: 2rem;
}

.nav-mobile p {
  display: flex;
  margin-bottom: 0;
  align-items: center;
  font-weight: 600;
  font-size: 0.8rem;
}

.nav-mobile p a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.nav-mobile p a:hover {
  color: rgb(0, 255, 98);
}

.nav-mobile p i {
  margin-right: 0.7rem;
  margin-left: 0.7rem;
  font-size: 1rem;
}

.navbar {
  padding: 0 !important;
  border-bottom: 0.1rem solid red;
}

.navbar .navbar-brand {
  width: 20vw;
}

.navbar .navbar-brand img {
  width: 100%;
  height: auto;
  padding: 0.5rem;
}

.navbar .navbar-brand.castrol-logo {
  display: flex;
}

.navbar .navbar-brand.castrol-logo img {
  max-height: 80%;
  width: auto;
  margin-left: auto;
}

.navbar .nav-link {
  font-size: 1rem;
  font-weight: 400;
  padding: 0 3rem !important;
  text-transform: uppercase;
  min-height: 4.6rem;
  display: flex;
  align-items: center;
}

.navbar .nav-link.active {
  border-bottom: 0.2rem solid red;
}

.main-banner {
  display: flex;
  height: 89vh;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%), url("banner.jpg");
  background-size: cover;
  background-position: center;
}

.main-banner h1 {
  font-size: 4rem;
  font-weight: 700;
  font-family: "Figtree", sans-serif;
  color: white;
  line-height: 4rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.main-banner h1 span {
  font-weight: 100;
}

.main-banner p {
  color: white;
  font-size: 1.2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 100;
}

.we-offer {
  position: relative;
  margin-top: -7rem;
  padding-bottom: 4rem;
}

.we-offer .offer-card {
  display: flex;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  color: #454545;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  z-index: 2;
  padding-left: 25%;
  overflow: visible;
  height: 100%;
}

.we-offer .offer-card i {
  width: 5rem;
  height: 5rem;
  font-size: 3rem;
  color: #ccc;
  position: absolute;
  top: 0;
  transform: translateY(-70%);
  background: white;
  padding: 1rem;
  border-radius: 50%;
  border: 0.2rem solid red;
  display: flex;
  align-items: center;
  justify-content: center;
}

.we-offer .offer-card:before {
  content: "";
  width: 90%;
  height: 10rem;
  transform: skew(20deg);
  background: red;
  position: absolute;
  z-index: -1;
  box-shadow: 5px 6px 11px -4px rgba(67, 67, 67, 0.75);
}

.we-offer .offer-card:after {
  content: "";
  width: 90%;
  height: 10rem;
  transform: skew(20deg);
  background: #fff;
  position: absolute;
  z-index: -1;
  left: 15%;
}

.we-offer .offer-card small {
  font-weight: 300;
  text-align: center;
}

.we-offer .offer-card p {
  margin-bottom: 0;
  text-transform: uppercase;
  text-align: center;
}

.about-us h2 {
  font-size: 3rem;
  font-weight: 700;
}

.about-us img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.services {
  background-color: #f8f9fa;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(220, 53, 69, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.services-header h2 {
  color: #1a1a1a;
  font-size: 3.5rem;
  letter-spacing: -1px;
}

.header-line {
  width: 80px;
  height: 4px;
  background-color: #dc3545;
  border-radius: 2px;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 50px 35px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  background: #ffffff;
  transform: translateY(-15px);
  border-color: rgba(220, 53, 69, 0.5);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.1);
}

.service-icon-box {
  width: 80px;
  height: 80px;
  background: #fdf2f2;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon-box {
  background: #dc3545;
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 10px 20px rgba(220, 53, 69, 0.2);
}

.service-icon-box img {
  height: 40px;
  width: auto;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon-box img {
  filter: brightness(0) invert(1);
}

.service-card h3 {
  color: #1a1a1a;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.service-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.service-card:hover p {
  color: #333;
}

.a-img {
  max-width: 100%;
}

.auto-elektronika {
  background: #efefef;
}

.text-section .box {
  box-shadow: 0px 2px 11px -3px rgba(213, 213, 213, 0.75);
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  background: #fff;
}

.text-section .box h2 span {
  font-weight: 700;
  color: #dc3545;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .navbar .nav-link {
    padding: 0 1.5rem !important;
  }
}

@media (max-width: 991px) {
  .navbar .navbar-brand {
    width: 40vw;
  }

  .navbar .navbar-nav {
    padding-right: 0;
    text-align: center;
  }

  .navbar .nav-link {
    min-height: auto;
    padding: 1rem !important;
    justify-content: center;
  }

  .navbar .nav-link.active {
    border-bottom: none;
    background: rgba(255, 0, 0, 0.1);
  }

  .services-header h2 {
    font-size: 2.8rem;
  }

  .main-banner h1 {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .contact-form form .half input {
    min-width: 100%;
  }

  .nav-mobile {
    justify-content: center;
    padding-right: 0;
  }

  .main-banner {
    height: auto;
    min-height: 60vh;
    padding: 80px 0;
  }

  .main-banner h1 {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }

  .we-offer {
    margin-top: 0;
    padding-top: 4rem;
  }

  .we-offer .offer-card {
    padding-left: 0;
    margin-bottom: 3rem;
    height: auto;
  }

  .we-offer .offer-card:before,
  .we-offer .offer-card:after {
    transform: skew(0);
    width: 100%;
    left: 0;
    height: 100%;
  }

  .we-offer .offer-card i {
    position: relative;
    transform: none;
    margin-bottom: 1rem;
    top: auto;
  }

  .services {
    padding: 60px 0;
  }

  .services-header h2 {
    font-size: 2.2rem;
  }

  .service-card {
    padding: 35px 25px;
    align-items: center;
    text-align: center;
  }

  .service-icon-box {
    margin-bottom: 20px;
  }

  .service-card h3 {
    font-size: 1.4rem;
  }

  .trust {
    padding-top: 8rem;
  }

  .trust p {
    font-size: 1.1rem;
    padding: 1rem;
  }

  .auto-elektronika .p-5 {
    padding: 1.5rem !important;
  }

  footer .time li {
    width: 100%;
  }

  .phone-fix {
    display: none;
    /* Hide fixed phone on small mobile to avoid clutter */
  }
}

@media (max-width: 480px) {
  .main-banner h1 {
    font-size: 1.8rem;
  }

  .services-header h2 {
    font-size: 1.8rem;
  }
}

.trust {
  position: relative;
  padding-top: 7rem;
  color: #ddd;
  padding-bottom: 2rem;
}

.trust .trust-logo {
  display: flex;
  align-items: center;
  border: 1rem solid rgb(255, 255, 255);
  background: #f0f0f0;
  position: absolute;
  padding: 1rem;
  top: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.trust p {
  padding: 2rem 0;
  text-align: center;
  font-size: 1.5rem;
}

.castrol {
  background: #009343;
  color: white;
  border-top: 0.3rem solid #005c2a;
  border-bottom: 0.3rem solid #005c2a;
}

.castrol .row {
  padding: 3rem 0;
}

.castrol .row .castrol-logo {
  height: 5rem;
}

.castrol .row p {
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-section {
  background: #fff;
}

.contact-info-box .contact-icon {
  width: 50px;
  height: 50px;
  background: #fdf2f2;
  color: #dc3545;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-link {
  text-decoration: none;
  color: #6c757d;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #dc3545;
}

.contact-form-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-card .form-control {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1rem 0.75rem;
}

.contact-form-card .form-control:focus {
  background-color: #fff;
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.1);
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(220, 53, 69, 0.2) !important;
}

.map-mini iframe {
  filter: grayscale(0.2);
  transition: all 0.5s ease;
}

.map-mini:hover iframe {
  filter: grayscale(0);
}

.phone-fix {
  position: fixed;
  right: 0;
  top: 50%;
  color: white;
  background: #454545;
  padding: 1rem;
  border-radius: 0.5rem 0 0 0.5rem;
  border: 0.1rem solid red;
  border-right: none;
  z-index: 99;
  transform: translateX(70%);
  transition: all 0.5s;
}

.phone-fix:hover {
  transform: translateX(0%);
}

.phone-fix i {
  margin-right: 1rem;
}

.phone-fix a {
  text-decoration: none;
  color: white;
}

footer {
  background: #000;
  border-top: 0.2rem solid red;
  color: white;
  padding-top: 3rem;
}

footer img {
  width: 90%;
}

footer ul {
  padding: 0;
  list-style: none;
  margin-top: 2rem;
}

footer ul li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

footer ul li span {
  margin-right: 1rem;
}

footer ul li span i {
  color: rgb(220, 191, 0);
}

footer .footer-links {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

footer .footer-links li {
  margin-bottom: 0.8rem;
}

footer .footer-links li a {
  color: #858585;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer .footer-links li a:hover {
  color: #dc3545;
  padding-left: 5px;
}

footer .time li {
  display: flex;
  justify-content: space-between;
  width: 15rem;
  margin-bottom: 0.5rem;
}

footer .time li span {
  color: rgb(220, 191, 0);
}

.stock-links {
  background: black;
}

.stock-links a {
  color: black;
  text-align: center;
  line-height: 0;
}

/* Gallery Styling */
.gallery-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("banner.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.gallery-container {
  padding: 60px 0;
}

.gallery-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  border: 1px solid #eee;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #dc3545;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.gallery-info {
  padding: 15px;
  text-align: center;
}

.gallery-info h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
}

/* Lightbox Modal Styling */
#lightboxModal .modal-content {
  background-color: rgba(0, 0, 0, 0.9);
  border: none;
}

#lightboxModal .modal-body {
  padding: 0;
  position: relative;
}

#lightboxModal .modal-img {
  max-width: 100%;
  max-height: 85vh;
  margin: auto;
  display: block;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 2rem;
  transition: background 0.3s;
  border-radius: 50%;
  z-index: 10;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

#lightboxCaption {
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.5);
}

.btn-close-white {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 11;
  filter: invert(1) grayscale(100%) brightness(200%);
}

@media (max-width: 767px) {
  .lightbox-nav {
    padding: 10px 15px;
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=style.css.map */