/** MODERN STICKY NAVIGATION
=======================================================**/

.modern-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(204, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    height: 80px;
}

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    height: 70px;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-brand .brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-brand .brand-link:hover {
    transform: scale(1.05);
}

.brand-logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.modern-navbar.scrolled .brand-logo {
    height: 45px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 0;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #cc0000, #ff4444);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-item.active .nav-link::before {
    width: 100%;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: #cc0000;
}

/* Dropdown Styles */
.dropdown,
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(204, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    margin-top: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.mega-dropdown {
    min-width: 250px;
    padding: 30px;
}

.nav-item:hover .dropdown,
.nav-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.dropdown-content {
    display: flex;
    gap: 30px;
}

.dropdown-section h4 {
    color: #cc0000;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.dropdown-item {
    color: #2c3e50;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: block;
}

.dropdown-item:hover {
    background: rgba(204, 0, 0, 0.1);
    color: #cc0000;
    transform: translateX(5px);
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-toggle {
    background: none;
    border: none;
    color: #2c3e50;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-toggle:hover {
    background: rgba(204, 0, 0, 0.1);
    color: #cc0000;
    transform: scale(1.1);
}

.cta-button {
    background: linear-gradient(135deg, #cc0000, #ff4444);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.4);
    color: white;
    text-decoration: none;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
}

.search-form {
    position: relative;
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 20px 60px 20px 25px;
    font-size: 18px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    outline: none;
    color: #2c3e50;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.search-input::placeholder {
    color: #7f8c8d;
}

.search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #cc0000, #ff4444);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
}

.search-submit:hover {
    transform: translateY(-50%) scale(1.1);
}

.search-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    position: relative;
    max-height: 100vh;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
    flex-shrink: 0;
    min-height: 80px;
}

.mobile-brand-logo {
    height: 40px;
    width: auto;
    flex-shrink: 0;
    position: relative;
}

.mobile-menu-close {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #2c3e50;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.mobile-nav {
    flex: 1;
}

.mobile-nav-item {
    margin-bottom: 0px;
}

.mobile-nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #ff4444;
    padding-left: 10px;
}

.mobile-submenu {
    padding-left: 20px;
    margin-top: 10px;
    display: none;
}

.mobile-nav-item.active .mobile-submenu {
    display: block;
}

.mobile-submenu-item {
    color: rgba(44, 62, 80, 0.8);
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
    display: block;
    transition: all 0.3s ease;
}

.mobile-submenu-item:hover {
    color: #ff4444;
    padding-left: 10px;
}

.mobile-menu-footer {
    padding: 30px 0;
    text-align: center;
    margin-top: auto;
    flex-shrink: 0;
}

.mobile-cta-button {
    background: linear-gradient(135deg, #cc0000, #ff4444);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Hero and Subpage Headers */
.hero-section {
    margin-top: 80px;
}

.subpage-header {
    margin-top: 80px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 60px 0;
}

.subpage-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.subpage-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar-nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 15px;
    }

    .mega-dropdown {
        min-width: 200px;
        padding: 25px;
    }

    .dropdown {
        min-width: 200px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .modern-navbar {
        height: 70px;
        padding: 0 15px;
    }

    .modern-navbar.scrolled {
        height: 65px;
    }

    .navbar-container {
        padding: 0 15px;
    }

    .navbar-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .brand-logo {
        height: 40px;
    }

    .modern-navbar.scrolled .brand-logo {
        height: 35px;
    }

    .hero-section {
        margin-top: 70px;
    }

    .subpage-header {
        margin-top: 70px;
        padding: 40px 0;
    }

    .subpage-title {
        font-size: 32px;
    }

    .search-container {
        width: 95%;
    }

    .search-input {
        padding: 15px 50px 15px 20px;
        font-size: 16px;
    }

    .search-submit {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .modern-navbar {
        height: 60px;
    }

    .modern-navbar.scrolled {
        height: 55px;
    }

    .brand-logo {
        height: 35px;
    }

    .modern-navbar.scrolled .brand-logo {
        height: 30px;
    }

    .hero-section {
        margin-top: 60px;
    }

    .subpage-header {
        margin-top: 60px;
        padding: 30px 0;
    }

    .subpage-title {
        font-size: 24px;
    }

    .mobile-nav-link {
        font-size: 16px;
        padding: 15px 0;
    }

    .mobile-submenu-item {
        font-size: 14px;
        padding: 8px 0;
    }
}

/** GENERAL
=======================================================**/

.caps-first {
  text-transform: capitalize !important;
}

.section-title {
  padding-left: 15px;
}

.full-width {
  width: 100%;
}

hr + .no-margin {
  margin-top: 0px; /** EDITED, default 50px **/
}

hr.top-margin {
  margin-top: 50px; /** EDITED, default 50px **/
}

.list-unstyled-3 {
  padding-left: 0;
  list-style: none;
}

.list-unstyled-3 > li {
  font-size: 16px;
  margin-bottom: 10px;
}

.lead > p {
  margin-top: 25px;
}

.panel-note > p {
  margin-top: 5px;
  margin-bottom: 15px;
}

#btn-page:hover > a {
  color: #fff;
}

.modern-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin: 50px 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.modern-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #cc0000, #ff4444);
  border-radius: 2px;
}

.modern-section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(204, 0, 0, 0.1) 20%, rgba(204, 0, 0, 0.3) 50%, rgba(204, 0, 0, 0.1) 80%, transparent 100%);
  margin: 60px auto 40px auto;
  position: relative;
}

.modern-section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 2px solid #cc0000;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(204, 0, 0, 0.2);
}

.modern-section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: linear-gradient(45deg, #cc0000, #ff4444);
  border-radius: 50%;
}

div.news ul li {
  list-style: disc;
  margin-left: 30px;
  padding-left: 15px;
}

div.news ol li {
  list-style: decimal;
  margin-left: 30px;
  padding-left: 15px;
}

.btn-apps,
.btn-apps:active,
.btn-apps:visited {
  color: #fff !important;
  background-color: #cc0000 !important;
  border-color: #cc0000 !important;
}

.btn-apps:hover {
  color: #cc0000 !important;
  background-color: transparent !important;
  border-color: #cc0000 !important;
}

/** LOGO HEADER
=======================================================**/
@media only screen and (min-width: 1200px) {
  .logo-img {
    max-height: 100%;
  }
  .swiper-home {
    margin-top: 70px;
    margin-left: -5px;
    margin-right: -5px;
  }
  .swiper-other {
    margin-top: 70px;
    margin-left: -5px;
    margin-right: -5px;
  }
}
@media only screen and (max-width: 1199px) {
  .logo-img {
    max-height: 100%;
  }
  .swiper-home {
    margin-top: 0px;
    margin-left: -5px;
    margin-right: -5px;
  }
  .swiper-other {
    margin-top: 0px;
    margin-left: -5px;
    margin-right: -5px;
  }
}

@media only screen and (max-width: 768px) {
  .logo-img {
    max-width: 250px;
    padding-top: 5px;
  }
  .swiper-home {
    margin-top: 60px;
    margin-left: -5px;
    margin-right: -5px;
  }
  .swiper-other {
    margin-top: 60px;
    margin-left: -5px;
    margin-right: -5px;
  }
}

@media only screen and (max-width: 480px) {
  .logo-img {
    max-width: 180px;
    padding-top: 10px;
  }
  .swiper-home {
    margin-top: 50px;
    margin-left: -5px;
    margin-right: -5px;
  }
  .swiper-other {
    margin-top: 50px;
    margin-left: -5px;
    margin-right: -5px;
  }
}

/** WARNA MOBIL 
=======================================================**/
div.warnamobil {
  width: 75px;
  height: 75px;
  border: 1px solid #000;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/** TABLE SPEK MOBIL 
=======================================================**/
.spekmobil > table {
  border: 1px solid #f3f3ed;
}
.spekmobil > table > thead {
  display: table-header-group;
  border: 1px solid #f3f3ed;
  border-bottom-width: 2px;
}
.spekmobil > table > tbody {
  border: 1px solid #f3f3ed;
}
.spekmobil > table > tbody > tr:hover {
  background-color: #f5f5f5;
}
.spekmobil > table > tbody > tr > td:hover,
.spekmobil > table > tbody > tr > th:hover {
  background-color: #fafafa;
}
.spekmobil > table > thead > tr > th,
.spekmobil > table > thead > tr > td,
.spekmobil > table > tbody > tr > th,
.spekmobil > table > tbody > tr > td,
.spekmobil > table > tfoot > tr > th,
.spekmobil > table > tfoot > tr > td {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 1.78571;
  vertical-align: middle;
  border: 1px solid #e8e8e8;
  text-align: center;
}
.spekmobil > table > tbody > tr > td:nth-child(1) {
  text-align: left;
  background: #fafafa;
}
.spekmobil > table > thead {
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  background: #ebe8e8;
  color: #252525;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: bold;
}
.spekmobil > table > tbody > tr.sub > td {
  background: #f6f4f4;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

/** FLOATING BUTTONS
=======================================================**/
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  outline: none;
}

.floating-btn:hover {
  transform: translateY(-3px);
  text-decoration: none;
  color: white;
}

.floating-btn:focus {
  outline: none;
}

/* Back to Top Button */
.floating-btn.back-to-top {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  box-shadow: 0 4px 20px rgba(204, 0, 0, 0.3);
}

.floating-btn.back-to-top:hover {
  background: linear-gradient(135deg, #e63939 0%, #b30000 100%);
  box-shadow: 0 8px 25px rgba(204, 0, 0, 0.4);
}

.floating-btn.back-to-top i {
  font-weight: normal !important;
}

/* WhatsApp Button */
.floating-btn.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.floating-btn.whatsapp:hover {
  background: linear-gradient(135deg, #128c7e 0%, #0d7377 100%);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.floating-btn.whatsapp i {
  font-weight: normal !important;
  font-family: "Font Awesome 5 Brands" !important;
}

/* Mobile responsive stacking */
@media (max-width: 768px) {
  .floating-buttons {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .floating-btn {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .floating-buttons {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

/* Legacy support for existing .wa-button class */
.wa-button {
  display: none !important;
}

@media screen and (max-width: 991px) {
  div#homethumb {
    min-height: 100%;
  }
}

@media screen and (min-width: 992px) {
  div#homethumb {
    min-height: 205px;
    max-height: 205px;
  }
}

/** Youtube **/
.youtube {
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Google reCAPTCHA v3 */

.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
}
.grecaptcha-badge:hover {
  width: 256px !important;
}

/** FULL WIDTH CONTAINER 
=======================================================**/
.container-fullwidth {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  max-width: 100%;
}

.container-fullwidth:before,
.container-fullwidth:after {
  content: " ";
  display: table;
}

.container-fullwidth:after {
  clear: both;
}

/** MODERN CAR MODEL CARDS 
=======================================================**/
.car-models-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 10px;
}

@media (min-width: 481px) {
  .car-models-grid {
    display: grid !important;
  }
  
  .car-models-carousel {
    display: contents;
  }
  
  .carousel-dots {
    display: none !important;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .car-models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 10px;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .car-models-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .car-models-grid {
    display: block !important;
    position: relative;
    overflow: hidden;
    gap: 0;
    grid-template-columns: none !important;
    padding: 0;
  }
  
  .car-models-carousel {
    display: flex;
    transition: transform 0.3s ease;
    touch-action: pan-y;
    width: 100%;
  }
  
  .car-models-carousel .modern-car-card {
    min-width: 100%;
    flex-shrink: 0;
    margin: 0;
    box-sizing: border-box;
    padding: 0 15px;
  }
  
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
  }
  
  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .carousel-dot.active {
    background-color: #cc0000;
    transform: scale(1.2);
  }
  
  .carousel-dot:hover {
    background-color: #ff4444;
  }
}

.modern-car-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.car-card-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  text-decoration: none;
}

.modern-car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.modern-car-card:hover::before {
  opacity: 1;
}

.modern-car-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #cc0000, #ff4444);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.car-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 50%, #e9ecef 100%);
}

.car-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-car-card:hover .car-card-image img {
  transform: scale(1.08);
}

.car-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(204, 0, 0, 0.1) 0%, rgba(255, 68, 68, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-car-card:hover .car-card-image::after {
  opacity: 1;
}

.car-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(204, 0, 0, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(204, 0, 0, 0.3);
  z-index: 3;
}

.car-card-content {
  padding: 24px;
}

@media (max-width: 480px) {
  .car-card-content {
    padding: 20px;
  }
}

.car-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 16px 0;
  text-transform: none;
  letter-spacing: 0.3px;
  line-height: 1.3;
  text-align: center;
  position: relative;
  padding-bottom: 16px;
}

.car-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #e9ecef;
  border-radius: 1px;
}

.car-card-price {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 16px;
}

.car-card-price .price-label {
  font-size: 13px;
  color: #7f8c8d;
  font-weight: 500;
  margin-bottom: 2px;
}

.car-card-price .price-amount {
  font-size: 22px;
  font-weight: 700;
  color: #cc0000;
  letter-spacing: 0.5px;
}

.car-card-actions {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.car-card-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

.car-card-btn:hover {
  background: linear-gradient(135deg, #128c7e 0%, #0d7377 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
  text-decoration: none;
}

.car-card-btn i {
  font-size: 16px;
  font-family: "Font Awesome 5 Brands" !important;
  font-weight: 400 !important;
  width: auto;
  height: auto;
  line-height: 1;
}

/** UNIVERSAL MODERN CARDS
=======================================================**/
.modern-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.promo-image-45 {
  height: 0;
  padding-bottom: 125%; /* 4:5 aspect ratio (5/4 = 1.25 = 125%) */
  position: relative;
}

.promo-image-45 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modern-card-title-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  max-height: 2.6em;
  padding-bottom: 32px;
}

.modern-card-text-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: 4.5em;
}

.modern-card-meta i {
  font-weight: normal !important;
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.modern-card:hover::before {
  opacity: 1;
}

.modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #cc0000, #ff4444);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.modern-card-image {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 50%, #e9ecef 100%);
}

.modern-card-image.card-image-sm {
  height: 160px;
}

.modern-card-image.card-image-lg {
  height: 240px;
}

.modern-card-image.card-video-43 {
  height: 0;
  padding-bottom: 75%; /* 4:3 aspect ratio */
  position: relative;
}

.modern-card-image.card-video-43 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modern-card-image.card-video-43::after {
  display: none !important;
}

.modern-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-card:hover .modern-card-image img {
  transform: scale(1.08);
}

.modern-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(204, 0, 0, 0.1) 0%, rgba(255, 68, 68, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-card:hover .modern-card-image::after {
  opacity: 1;
}

.modern-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(204, 0, 0, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(204, 0, 0, 0.3);
  z-index: 3;
}

.modern-card-badge.badge-success {
  background: rgba(34, 197, 94, 0.9);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.modern-card-badge.badge-warning {
  background: rgba(249, 115, 22, 0.9);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.modern-card-badge.badge-info {
  background: rgba(59, 130, 246, 0.9);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.modern-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.modern-card-content.card-content-sm {
  padding: 20px;
}

.modern-card-content.card-content-lg {
  padding: 32px;
}

@media (max-width: 480px) {
  .modern-card-content {
    padding: 20px;
  }

  .modern-card-content.card-content-lg {
    padding: 24px;
  }
}

.modern-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 16px 0;
  text-transform: none;
  letter-spacing: 0.3px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 20px;
}

.modern-card-title.title-lg {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.modern-card-title.title-sm {
  font-size: 16px;
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.modern-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #e9ecef;
  border-radius: 1px;
}

.modern-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #7f8c8d;
  font-weight: 500;
}

.modern-card-meta i {
  color: #cc0000;
  margin-right: 6px;
}

.modern-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 20px;
  flex-grow: 1;
}

.modern-card-text.text-lg {
  font-size: 15px;
  line-height: 1.7;
}

.modern-card-price {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 16px;
}

.modern-card-price .price-label {
  font-size: 13px;
  color: #7f8c8d;
  font-weight: 500;
  margin-bottom: 2px;
}

.modern-card-price .price-amount {
  font-size: 20px;
  font-weight: 700;
  color: #cc0000;
  letter-spacing: 0.5px;
}

.modern-card-price .price-amount.price-lg {
  font-size: 24px;
}

.modern-card-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.modern-card-actions.actions-left {
  justify-content: flex-start;
}

.modern-card-actions.actions-right {
  justify-content: flex-end;
}

.modern-card-actions.actions-between {
  justify-content: space-between;
}

.modern-card-btn {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 120px;
}

.modern-card-btn i {
  font-weight: normal !important;
}

.modern-card-btn.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
  min-width: 100px;
}

.modern-card-btn.btn-lg {
  padding: 12px 24px;
  font-size: 14px;
  min-width: 140px;
}

.modern-card-btn.btn-full {
  width: 100%;
}

.modern-card-btn:hover {
  background: linear-gradient(135deg, #e63939 0%, #b30000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
  color: white;
  text-decoration: none;
}

.modern-card-btn.btn-outline {
  background: transparent;
  color: #cc0000;
  border: 2px solid #cc0000;
  box-shadow: none;
}

.modern-card-btn.btn-outline:hover {
  background: #cc0000;
  color: white;
  box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.modern-card-btn.btn-success {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.modern-card-btn.btn-success:hover {
  background: linear-gradient(135deg, #128c7e 0%, #0d7377 100%);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.modern-card-btn i {
  font-size: 14px;
}

.modern-card-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  text-decoration: none;
}

/** Card Grid System **/
.modern-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.modern-card-grid.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.modern-card-grid.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.modern-card-grid.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (max-width: 768px) {
  .modern-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .modern-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/** Responsive Article Grid (8 desktop, 4 mobile) **/
.article-grid-responsive {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .article-grid-responsive {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .article-grid-responsive {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .article-grid-responsive {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .article-grid-responsive .modern-card:nth-child(n+5) {
    display: none; /* Hide items 5-8 on mobile */
  }
}

/** OPERATIONAL HOURS SECTION
=======================================================**/

.operational-hours-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.operational-hours-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(204, 0, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 68, 68, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.operational-hours-section .modern-section-title {
  color: #ffffff;
  margin-bottom: 40px;
}

.operational-hours-section .modern-section-title::after {
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.6));
}

.operational-hours-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.operational-hours-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.operational-hours-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #cc0000, #ff4444);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.operational-hours-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.operational-hours-card:hover::before {
  opacity: 1;
}

.operational-hours-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #cc0000, #ff4444);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(204, 0, 0, 0.3);
  position: relative;
}

.operational-hours-icon::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 18px;
  background: inherit;
  filter: blur(1px);
  opacity: 0.7;
  z-index: -1;
}

.operational-hours-icon i,
.operational-hours-icon .icon-text {
  font-size: 32px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: normal !important;
  display: inline-block;
  font-family: 'FontAwesome' !important;
}

.operational-hours-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.operational-hours-content {
  flex: 1;
}

.operational-hours-title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.operational-hours-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #cc0000, #ff4444);
  border-radius: 2px;
}

.operational-hours-schedule {
  margin-bottom: 32px;
}

.schedule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #cc0000;
  border-radius: 50%;
  opacity: 0.6;
}

.schedule-day {
  font-weight: 600;
  color: #2c3e50;
  font-size: 16px;
  padding-left: 20px;
  flex: 1;
}

.schedule-time {
  font-weight: 700;
  color: #cc0000;
  font-size: 16px;
  background: rgba(204, 0, 0, 0.05);
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

.operational-actions {
  margin-top: 24px;
}

.operational-actions .car-card-btn {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .operational-hours-container {
    gap: 30px;
    margin: 0 20px;
  }

  .operational-hours-card {
    padding: 24px;
  }

  .operational-hours-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .operational-hours-icon i,
  .operational-hours-icon .icon-text {
    font-size: 28px;
    font-weight: normal !important;
    font-family: 'FontAwesome' !important;
  }

  .operational-hours-header {
    gap: 20px;
  }

  .operational-hours-title {
    font-size: 20px;
  }

  .schedule-item {
    padding: 14px 0;
  }

  .schedule-day,
  .schedule-time {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .operational-hours-container {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0 16px;
  }

  .operational-hours-card {
    padding: 20px;
  }

  .operational-hours-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .operational-hours-icon i,
  .operational-hours-icon .icon-text {
    font-size: 24px;
    font-weight: normal !important;
    font-family: 'FontAwesome' !important;
  }

  .operational-hours-header {
    gap: 16px;
  }

  .operational-hours-title {
    font-size: 18px;
  }

  .schedule-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 8px;
  }

  .schedule-day {
    padding-left: 16px;
    flex: 1;
    text-align: left;
  }

  .schedule-time {
    font-size: 14px;
    padding: 4px 10px;
    text-align: right;
  }
}

/** MODERN SPLASH SECTION
=======================================================**/

.modern-splash-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background: #000;
    margin-top: 80px; /* Account for fixed navbar */
}

.modern-splash-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.modern-splash-swiper {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.modern-splash-swiper:active {
    cursor: grabbing;
}

.modern-splash-swiper.dragging {
    cursor: grabbing;
}

.splash-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.splash-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.splash-slide.active {
    opacity: 1;
    pointer-events: all;
}

.splash-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.splash-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(204, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.splash-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease-out;
}

.splash-slide.active .splash-image-container img {
    transform: scale(1.02);
}

.splash-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    text-decoration: none;
    cursor: pointer;
    pointer-events: none;
}

/* Navigation Dots */
.splash-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.splash-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.splash-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.splash-dot:hover {
    transform: scale(1.2);
    border-color: #ffffff;
}

.splash-dot:hover::before {
    width: 6px;
    height: 6px;
}

.splash-dot.active {
    border-color: #cc0000;
    background: rgba(204, 0, 0, 0.2);
    transform: scale(1.1);
}

.splash-dot.active::before {
    width: 6px;
    height: 6px;
}

.dot-inner {
    display: none;
}

/* Navigation Arrows */
.splash-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.splash-prev {
    left: 30px;
}

.splash-next {
    right: 30px;
}

.splash-nav-btn i {
    font-weight: normal !important;
}

/* Responsive Design */
@media (max-width: 991px) {
    .modern-splash-section {
        height: 600px;
        margin-top: 70px;
    }

    .splash-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .splash-prev {
        left: 20px;
    }

    .splash-next {
        right: 20px;
    }

    .splash-pagination {
        bottom: 25px;
        padding: 10px 16px;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .modern-splash-section {
        height: 500px;
        margin-top: 65px;
    }

    .splash-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .splash-prev {
        left: 15px;
    }

    .splash-next {
        right: 15px;
    }

    .splash-pagination {
        bottom: 20px;
        padding: 8px 12px;
        gap: 8px;
    }

    .splash-dot {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }

    .splash-dot.active::before,
    .splash-dot:hover::before {
        width: 4px;
        height: 4px;
    }
}

@media (max-width: 480px) {
    .modern-splash-section {
        height: 500px;
        margin-top: 60px;
    }

    .splash-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }

    .splash-prev {
        left: 12px;
    }

    .splash-next {
        right: 12px;
    }

    .splash-pagination {
        bottom: 15px;
        padding: 6px 10px;
        gap: 6px;
    }

    .splash-dot {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }

    .splash-dot.active::before,
    .splash-dot:hover::before {
        width: 3px;
        height: 3px;
    }
}

/** MODERN SPLIT HERO SECTION
=======================================================**/

.hero-split-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  margin-top: 0; /* No margin needed - hero section comes after banner */
}

.hero-split-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(204, 0, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 68, 68, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 80px;
  align-items: center;
  min-height: 500px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text {
  max-width: 100%;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #2c3e50;
  margin: 0 0 24px 0;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: -0.5px;
}

.hero-highlight {
  color: #cc0000;
  background: linear-gradient(90deg, #cc0000, #ff4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.4;
  color: #cc0000;
  margin: 0 0 20px 0;
  font-weight: 600;
  text-transform: none;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: #6c757d;
  margin: 0 0 30px 0;
  font-weight: 400;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #2c3e50;
  font-size: 16px;
}

.feature-item i {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #cc0000, #ff4444);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 140px;
  text-align: center;
  border: none;
  letter-spacing: 0.3px;
}

.hero-btn i {
  font-size: 16px;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #e63939 0%, #b30000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
  color: white;
  text-decoration: none;
}

.hero-btn-secondary {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.hero-btn-secondary:hover {
  background: linear-gradient(135deg, #e63939 0%, #b30000 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
  text-decoration: none;
}

.hero-btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.hero-btn-whatsapp:hover {
  background: linear-gradient(135deg, #128c7e 0%, #0d7377 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
  text-decoration: none;
}

/* Hero Right - Car Showcase */
.hero-right {
  position: relative;
}

.hero-car-showcase {
  position: relative;
}

.hero-car-image {
  position: relative;
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 50%, #e9ecef 100%);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16/10;
}

.hero-car-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(204, 0, 0, 0.05) 0%, rgba(255, 68, 68, 0.02) 100%);
  z-index: 1;
}

.featured-car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.hero-car-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.badge-text {
  display: block;
  font-size: 12px;
  color: #7f8c8d;
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-price {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #cc0000;
  letter-spacing: 0.3px;
}

.hero-car-models {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 100%;
}

.hero-model-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  min-width: 120px;
}

.hero-model-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #cc0000, #ff4444);
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.hero-model-item:hover,
.hero-model-item.active {
  transform: translateY(-4px);
  border-color: #cc0000;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(204, 0, 0, 0.15);
}

.hero-model-item.active::before {
  opacity: 0;
}

.hero-model-item img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.hero-model-item:hover img {
  transform: scale(1.1);
}

.hero-model-item span {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  transition: color 0.3s ease;
}

.hero-model-item:hover span,
.hero-model-item.active span {
  color: #cc0000;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .hero-content {
    grid-template-columns: 55% 45%;
    gap: 60px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .hero-split-section {
    margin-top: 0;
    min-height: auto;
  }

  .hero-container {
    padding: 60px 20px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-description {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-btn {
    min-width: 130px;
    padding: 12px 22px;
    font-size: 14px;
  }

  .hero-car-models {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .hero-model-item {
    min-width: 120px;
    padding: 12px;
  }

  .hero-model-item img {
    width: 120px;
    height: 85px;
  }
}

@media (max-width: 768px) {
  .hero-split-section {
    margin-top: 0;
  }

  .hero-container {
    padding: 50px 16px;
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .hero-features {
    margin-bottom: 30px;
  }

  .hero-actions {
    gap: 16px;
  }

  .hero-btn {
    min-width: 120px;
    padding: 11px 20px;
    font-size: 13px;
  }

  .hero-car-badge {
    top: 16px;
    right: 16px;
    padding: 12px 16px;
  }

  .badge-text {
    font-size: 11px;
  }

  .badge-price {
    font-size: 16px;
  }

  .hero-car-models {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .hero-model-item {
    min-width: 110px;
    padding: 10px;
  }

  .hero-model-item img {
    width: 110px;
    height: 77px;
  }

  .hero-model-item span {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-split-section {
    margin-top: 0;
  }

  .hero-container {
    padding: 40px 12px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btn {
    width: 100%;
    min-width: auto;
  }

  .hero-car-image {
    margin-bottom: 20px;
    border-radius: 16px;
  }

  .hero-car-badge {
    top: 12px;
    right: 12px;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .hero-car-models {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero-model-item {
    min-width: 120px;
    padding: 12px;
    gap: 10px;
  }

  .hero-model-item img {
    width: 120px;
    height: 85px;
  }

  .hero-model-item span {
    font-size: 14px;
    font-weight: 600;
  }
}

/** MODERN FOOTER
=======================================================**/

.modern-footer {
  background: #2a2a2a;
  color: #ffffff;
  position: relative;
  margin-top: 0;
}

.modern-footer-content {
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}

.modern-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-column {
  padding: 0;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #cc0000, #ff4444);
  border-radius: 2px;
}

/* Contact Column Specific */
.footer-contact {
  grid-row: span 1;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  line-height: 1.8;
}

.contact-item strong {
  color: #ffffff;
  font-weight: 600;
}

.contact-item span {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.contact-item i {
  color: #cc0000;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

.contact-branches {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.branch-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  border-radius: 20px;
  border: none;
  transition: all 0.3s ease;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.branch-link:hover {
  background: linear-gradient(135deg, #e63939 0%, #b30000 100%);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
}

.contact-branches .divider {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

/* Links Lists */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links-list a:hover {
  color: #ffffff;
  text-decoration: none;
  padding-left: 8px;
}

.footer-links-list a i {
  font-size: 12px;
  color: #cc0000;
  transition: transform 0.3s ease;
}

.footer-links-list a:hover i {
  transform: translateX(4px);
  color: #ff4444;
}


/* Footer Bottom */
.modern-footer-bottom {
  background: #1a1a1a;
  border-top: 1px solid rgba(204, 0, 0, 0.3);
  padding: 24px 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
}

.footer-copyright .divider {
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-copyright .privacy-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-copyright .privacy-link:hover {
  color: #ff4444;
  text-decoration: none;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}


.social-icon:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook:hover {
  background: #3b5998;
  border-color: #3b5998;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f56040, #e1306c);
  border-color: #e1306c;
}

.social-icon.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .modern-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }

  .footer-contact {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .modern-footer-content {
    padding: 50px 0 30px;
    text-align: center;
  }

  .modern-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-items: center;
  }

  .footer-contact {
    grid-column: 1 / -1;
    margin-bottom: 25px;
    text-align: center;
  }

  .footer-title {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom-content {
    justify-content: center;
    text-align: center;
  }

  .footer-copyright {
    text-align: center;
  }

  .contact-branches {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .modern-footer-content {
    padding: 45px 0 25px;
    text-align: center;
  }

  .modern-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    justify-items: center;
  }

  .footer-contact {
    grid-column: 1 / -1;
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-branches {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .modern-footer-content {
    padding: 40px 0 20px;
    text-align: center;
  }

  .modern-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .footer-contact {
    grid-column: 1;
    margin-bottom: 35px;
    text-align: center;
  }

  .footer-title {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Keep ATM branches side by side on mobile */
  .contact-branches {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 12px;
  }

  .branch-link {
    padding: 6px 12px;
    font-size: 13px;
    flex-shrink: 0;
  }

  .contact-branches .divider {
    flex-shrink: 0;
  }

  .footer-links-list a {
    font-size: 14px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-copyright p {
    font-size: 13px;
    line-height: 1.6;
  }

  .footer-social-icons {
    gap: 12px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

