/*
  Navjivan Honda - Frontend Styles
  Author: Navjivan Honda Dev Team
  Version: 1.0
*/


/* ============================================
   1. CSS Variables / Root
   ============================================ */
:root {
    --primary: #e70323;
    --primary-dark: #c4021e;
    --primary-light: #ff1a3a;
    --primary-rgb: 231, 3, 35;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --border-color: #e9ecef;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --section-padding: 80px 0;
    --section-padding-mobile: 50px 0;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --whatsapp-green: #25d366;
    --whatsapp-dark: #128c7e;
}


/* ============================================
   2. Reset / Base
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: #333;
    background-color: var(--white);
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
}


/* ============================================
   3. Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.text-gray { color: var(--gray) !important; }
.text-dark { color: var(--black) !important; }
.text-white { color: var(--white) !important; }


/* ============================================
   4. Top Bar
   ============================================ */
.top-bar {
    background: var(--black);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 2px solid var(--primary);
}

.top-bar-left span {
    margin-right: 20px;
    display: inline-block;
}

.top-bar-left span i {
    color: var(--primary);
    margin-right: 6px;
    font-size: 12px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.social-link {
    color: var(--white);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    font-size: 13px;
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-auth {
    color: var(--white);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-auth:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}


/* ============================================
   5. Main Header / Navigation
   ============================================ */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    z-index: 1030;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.main-header.header-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 10px 0;
    transition: var(--transition);
}

.header-scrolled .navbar {
    padding: 5px 0;
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
}

.navbar-brand .logo {
    transition: var(--transition);
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.header-scrolled .navbar-brand .logo {
    height: 42px;
    max-width: 170px;
}

.navbar-nav .nav-item {
    position: relative;
    margin: 0 2px;
}

.navbar-nav .nav-item .nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
    padding: 8px 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    border-radius: 4px;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
    background: var(--white);
}

.navbar-nav .nav-item .nav-link.active {
    color: var(--primary);
    background: var(--white);
}

.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar-nav .nav-item .nav-link:hover::after,
.navbar-nav .nav-item .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}


/* ============================================
   6. Navbar Toggler (Hamburger)
   ============================================ */
.navbar-toggler {
    border: none;
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
    width: 35px;
    height: 35px;
    position: relative;
    background: transparent;
}

.navbar-toggler-icon {
    background-image: none !important;
    width: 25px;
    height: 2px;
    background: var(--white);
    display: block;
    position: relative;
    transition: var(--transition);
    margin: 0 auto;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
}


/* ============================================
   7. Mega Menu
   ============================================ */
.mega-menu {
    padding: 20px 25px;
    border: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--shadow-lg);
    margin-top: 0;
    border-top: 3px solid var(--primary);
    min-width: 400px;
}

.mega-menu .mega-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--black);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-menu .dropdown-item {
    padding: 7px 12px;
    font-size: 14px;
    color: #555;
    border-radius: 4px;
    transition: var(--transition);
}

.mega-menu .dropdown-item:hover {
    background: rgba(var(--primary-rgb), 0.06);
    color: var(--primary);
    padding-left: 18px;
}

.dropdown:hover > .dropdown-menu {
    display: block;
    animation: fadeInUp 0.3s ease;
}


/* ============================================
   8. WhatsApp Float
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 999;
    width: 55px;
    height: 55px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .whatsapp-icon {
    color: var(--white);
    font-size: 28px;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}


/* ============================================
   9. Scroll to Top
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4);
    transition: var(--transition);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.5);
}


/* ============================================
   10. Hero / Banner Slider
   ============================================ */
.hero-slider {
    position: relative;
}

.hero-slider .owl-stage-outer {
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: var(--white);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-slider .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 6px;
    transition: var(--transition);
}

.hero-slider .owl-dots .owl-dot.active span {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-slider .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    color: var(--white) !important;
    font-size: 20px !important;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.hero-slider .owl-nav button:hover {
    background: var(--primary) !important;
}

.hero-slider .owl-nav .owl-prev {
    left: 20px;
}

.hero-slider .owl-nav .owl-next {
    right: 20px;
}


/* ============================================
   11. Buttons
   ============================================ */
.btn-honda {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-honda::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-honda:hover::before {
    left: 100%;
}

.btn-honda:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.4);
}

.btn-honda:active {
    transform: translateY(0);
}

.btn-honda-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-honda-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-honda-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-honda-white:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-honda-sm {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-honda-lg {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    border-color: var(--whatsapp-dark);
    color: var(--white);
}


/* ============================================
   12. Section Styles
   ============================================ */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 12px;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin-top: 12px;
}

.text-center .section-title::after {
    margin: 12px auto 0;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-bg {
    background: var(--light-gray);
}

.section-bg-dark {
    background: var(--black);
    color: var(--white);
}

.section-bg-dark .section-title {
    color: var(--white);
}

.section-bg-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}


/* ============================================
   13. Model Cards
   ============================================ */
.model-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    margin-bottom: 30px;
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.model-card .model-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    padding: 20px;
}

.model-card .model-image img {
    max-height: 180px;
    object-fit: contain;
    transition: var(--transition-slow);
}

.model-card:hover .model-image img {
    transform: scale(1.08);
}

.model-card .model-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.model-card .model-badge .badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.model-card .model-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.model-card:hover .model-overlay {
    opacity: 1;
}

.model-card .model-overlay a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition);
    transform: translateY(20px);
}

.model-card:hover .model-overlay a {
    transform: translateY(0);
}

.model-card .model-overlay a:hover {
    background: var(--primary);
    color: var(--white);
}

.model-card .model-content {
    padding: 20px;
}

.model-card .model-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 5px;
    color: var(--black);
}

.model-card .model-category {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
    display: block;
}

.model-card .model-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.model-card .model-price small {
    font-size: 12px;
    color: var(--gray);
    font-weight: 400;
}

.model-card .model-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.model-card .model-actions .btn-honda {
    flex: 1;
    justify-content: center;
    font-size: 12px;
    padding: 8px 15px;
}

.wishlist-toggle {
    width: 38px;
    height: 38px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.wishlist-toggle:hover,
.wishlist-toggle.in-wishlist {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}


/* ============================================
   14. Model Grid
   ============================================ */
.model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (min-width: 992px) {
    .model-grid.grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.model-grid .model-card {
    margin-bottom: 0;
}


/* ============================================
   15. Why Choose Us / Icon Boxes
   ============================================ */
.icon-box {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.icon-box:hover::before {
    transform: scaleX(1);
}

.icon-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.icon-box .icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.icon-box:hover .icon-wrapper {
    background: var(--primary);
}

.icon-box .icon-wrapper i {
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.icon-box:hover .icon-wrapper i {
    color: var(--white);
}

.icon-box h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: var(--black);
}

.icon-box p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.7;
}


/* ============================================
   16. Offer Cards
   ============================================ */
.offer-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.offer-card .offer-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.offer-card .offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.offer-card:hover .offer-image img {
    transform: scale(1.08);
}

.offer-card .offer-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 35px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 2;
    letter-spacing: 0.5px;
}

.offer-card .offer-content {
    padding: 20px;
}

.offer-card .offer-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--black);
}

.offer-card .offer-desc {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
}

.offer-card .offer-countdown {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.offer-card .offer-countdown .countdown-item {
    text-align: center;
    background: var(--light-gray);
    border-radius: 6px;
    padding: 8px 12px;
    min-width: 50px;
}

.offer-card .offer-countdown .countdown-item .countdown-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary);
    display: block;
}

.offer-card .offer-countdown .countdown-item .countdown-label {
    font-size: 10px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ============================================
   17. Blog Cards
   ============================================ */
.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-card .blog-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-card .blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    min-width: 55px;
}

.blog-card .blog-date .date-day {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    display: block;
    line-height: 1;
}

.blog-card .blog-date .date-month {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card .blog-content {
    padding: 20px;
}

.blog-card .blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
}

.blog-card .blog-meta span i {
    margin-right: 5px;
    color: var(--primary);
}

.blog-card .blog-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card .blog-title a {
    color: var(--black);
}

.blog-card .blog-title a:hover {
    color: var(--primary);
}

.blog-card .blog-excerpt {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
}


/* ============================================
   18. Service Cards
   ============================================ */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card .service-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-card .service-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: var(--black);
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-card .service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card .service-link:hover {
    gap: 10px;
}


/* ============================================
   19. Branch Cards
   ============================================ */
.branch-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.branch-card .branch-image {
    height: 200px;
    overflow: hidden;
}

.branch-card .branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.branch-card:hover .branch-image img {
    transform: scale(1.05);
}

.branch-card .branch-content {
    padding: 20px;
}

.branch-card .branch-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: var(--black);
}

.branch-card .branch-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.branch-card .branch-info li {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.branch-card .branch-info li i {
    color: var(--primary);
    margin-top: 3px;
    min-width: 14px;
}


/* ============================================
   20. Testimonial Carousel
   ============================================ */
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    margin: 15px 0;
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 60px;
    color: var(--primary);
    position: absolute;
    top: 15px;
    left: 25px;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card .testimonial-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(var(--primary-rgb), 0.1);
}

.testimonial-card .testimonial-author .author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--black);
    margin-bottom: 2px;
}

.testimonial-card .testimonial-author .author-title {
    font-size: 13px;
    color: var(--gray);
}

.testimonial-card .testimonial-rating {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-carousel .owl-dots {
    margin-top: 30px;
}

.testimonial-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ddd;
    margin: 0 5px;
    transition: var(--transition);
}

.testimonial-carousel .owl-dots .owl-dot.active span {
    background: var(--primary);
    width: 25px;
    border-radius: 5px;
}


/* ============================================
   21. CTA Section
   ============================================ */
.cta-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(231, 3, 35, 0.6) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* ============================================
   22. Newsletter Section
   ============================================ */
.newsletter-section {
    background: var(--primary);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.newsletter-section h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 8px;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    overflow: hidden;
    padding: 4px;
}

.newsletter-form .input-group .form-control {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 12px 20px;
    font-size: 14px;
}

.newsletter-form .input-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .input-group .form-control:focus {
    box-shadow: none;
}

.newsletter-form .input-group .btn-honda-white {
    border-radius: 50px !important;
    padding: 10px 30px;
    font-weight: 600;
}


/* ============================================
   23. About Page Styles
   ============================================ */
.about-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.about-hero .about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.about-hero .about-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.about-hero .about-hero-content h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 10px;
}

.about-hero .about-hero-content .breadcrumb {
    background: transparent;
    padding: 0;
}

.about-hero .about-hero-content .breadcrumb-item,
.about-hero .about-hero-content .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.about-hero .about-hero-content .breadcrumb-item.active {
    color: var(--primary);
}

.about-hero .about-hero-content .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.mission-vision {
    padding: 40px;
    border-radius: var(--border-radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.mission-vision:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.mission-vision .mv-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.mission-vision .mv-icon i {
    font-size: 24px;
    color: var(--primary);
}

.mission-vision h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
}

.mission-vision p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0;
}

.team-member-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    text-align: center;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-member-card .member-image {
    height: 250px;
    overflow: hidden;
}

.team-member-card .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-member-card:hover .member-image img {
    transform: scale(1.05);
}

.team-member-card .member-info {
    padding: 20px;
}

.team-member-card .member-info h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--black);
}

.team-member-card .member-info span {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

.team-member-card .member-social {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-member-card .member-social a {
    width: 32px;
    height: 32px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 13px;
    transition: var(--transition);
}

.team-member-card .member-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.achievement {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.achievement:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.achievement .achievement-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}

.achievement .achievement-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 5px;
}

.achievement .achievement-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}


/* ============================================
   24. Models Page
   ============================================ */
.models-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.models-hero .models-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.models-hero .models-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.models-hero .models-hero-content h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.filter-bar {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.filter-bar .filter-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-bar .form-select,
.filter-bar .form-control {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    padding: 10px 15px;
}

.filter-bar .form-select:focus,
.filter-bar .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.1);
}

.pagination {
    margin-top: 30px;
    justify-content: center;
}

.pagination .page-link {
    color: var(--black);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    margin: 0 3px;
    border-radius: 6px !important;
    font-size: 14px;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}


/* ============================================
   25. Model Detail Page
   ============================================ */
.model-detail-hero {
    background: var(--light-gray);
    padding: 50px 0;
}

.model-gallery {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.model-gallery .gallery-carousel img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.model-specs {
    margin-top: 30px;
}

.model-specs .spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.model-specs .spec-item:last-child {
    border-bottom: none;
}

.model-specs .spec-item .spec-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.model-specs .spec-item .spec-value {
    font-size: 14px;
    color: var(--black);
    font-weight: 600;
}

.model-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.model-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    color: #555;
}

.model-features .feature-item i {
    color: var(--primary);
    font-size: 16px;
}

.model-colors {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.model-colors .color-item {
    text-align: center;
}

.model-colors .color-item .color-swatch {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 5px;
}

.model-colors .color-item .color-swatch:hover,
.model-colors .color-item .color-swatch.active {
    border-color: var(--primary);
}

.model-colors .color-item .color-name {
    font-size: 12px;
    color: var(--gray);
    display: block;
}

.price-table {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.price-table .price-header {
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.price-table .price-header h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.price-table .price-header .price-amount {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
}

.price-table .price-body {
    padding: 20px;
}

.price-table .price-body .price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.price-table .price-body .price-row:last-child {
    border-bottom: none;
}

.price-table .price-body .price-row .price-label {
    color: var(--gray);
}

.price-table .price-body .price-row .price-value {
    color: var(--black);
    font-weight: 600;
}

.variant-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.variant-selector .variant-option {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    min-width: 120px;
}

.variant-selector .variant-option:hover,
.variant-selector .variant-option.active {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.variant-selector .variant-option .variant-name {
    font-weight: 600;
    font-size: 14px;
    display: block;
    color: var(--black);
}

.variant-selector .variant-option .variant-price {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}


/* ============================================
   26. Booking Page
   ============================================ */
.booking-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 0;
}

.booking-steps .step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--light-gray);
    position: relative;
}

.booking-steps .step:first-child {
    border-radius: 50px 0 0 50px;
}

.booking-steps .step:last-child {
    border-radius: 0 50px 50px 0;
}

.booking-steps .step.active {
    background: var(--primary);
    color: var(--white);
}

.booking-steps .step.active .step-number {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.booking-steps .step.completed {
    background: var(--primary-dark);
    color: var(--white);
}

.booking-steps .step .step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.booking-steps .step .step-label {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 40px;
}

.booking-summary {
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    position: sticky;
    top: 100px;
}

.booking-summary h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.booking-summary .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.booking-summary .summary-item .summary-label {
    color: var(--gray);
}

.booking-summary .summary-item .summary-value {
    font-weight: 600;
    color: var(--black);
}

.booking-summary .summary-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    margin-top: 15px;
    border-top: 2px solid var(--border-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.booking-summary .summary-total .total-label {
    color: var(--black);
}

.booking-summary .summary-total .total-value {
    color: var(--primary);
}


/* ============================================
   27. Service Page
   ============================================ */
.service-form {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 40px;
}

.service-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-types .service-type-item {
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.service-types .service-type-item:hover,
.service-types .service-type-item.active {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.03);
}

.service-types .service-type-item i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-types .service-type-item h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 5px;
}

.service-types .service-type-item span {
    font-size: 13px;
    color: var(--gray);
}


/* ============================================
   28. Finance / EMI Calculator Page
   ============================================ */
.finance-calculator {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 40px;
}

.finance-calculator .form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
}

.finance-calculator .form-range::-webkit-slider-thumb {
    background: var(--primary);
}

.finance-calculator .form-range::-moz-range-thumb {
    background: var(--primary);
}

.emi-result-display {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    margin-top: 20px;
}

.emi-result-display .emi-amount {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.emi-result-display .emi-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.emi-breakdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.emi-breakdown .breakdown-item {
    text-align: center;
    padding: 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.emi-breakdown .breakdown-item .breakdown-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--black);
}

.emi-breakdown .breakdown-item .breakdown-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.emi-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.emi-table thead th {
    background: var(--primary);
    color: var(--white);
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.emi-table tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

.emi-table tbody tr:hover {
    background: rgba(var(--primary-rgb), 0.03);
}

.emi-table tbody tr:nth-child(even) {
    background: var(--light-gray);
}

.finance-form {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 40px;
}


/* ============================================
   29. Contact Page
   ============================================ */
.contact-info-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    margin-bottom: 30px;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-info-card .contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-info-card .contact-icon i {
    font-size: 24px;
    color: var(--primary);
}

.contact-info-card h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.contact-info-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.7;
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 40px;
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    font-size: 14px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.1);
}

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


/* ============================================
   30. Gallery Page
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-overlay i {
    color: var(--white);
    font-size: 36px;
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail::after {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(var(--primary-rgb), 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    transition: var(--transition);
}

.video-thumbnail:hover::after {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}


/* ============================================
   31. Blog Page / Sidebar
   ============================================ */
.blog-list {
    margin-bottom: 30px;
}

.sidebar .widget {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar .widget .widget-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    color: var(--black);
}

.sidebar .widget .widget-search .input-group {
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.sidebar .widget .widget-search .form-control {
    border: none;
    padding: 10px 15px;
    font-size: 14px;
}

.sidebar .widget .widget-search .form-control:focus {
    box-shadow: none;
}

.sidebar .widget .widget-search .btn-search {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
}

.sidebar .widget .widget-categories ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar .widget .widget-categories ul li:last-child {
    border-bottom: none;
}

.sidebar .widget .widget-categories ul li a {
    color: #555;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar .widget .widget-categories ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.sidebar .widget .widget-categories ul li a span {
    background: var(--light-gray);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 12px;
}

.sidebar .widget .widget-posts .recent-post {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar .widget .widget-posts .recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar .widget .widget-posts .recent-post .post-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar .widget .widget-posts .recent-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar .widget .widget-posts .recent-post .post-info .post-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}

.sidebar .widget .widget-posts .recent-post .post-info .post-title a {
    color: var(--black);
}

.sidebar .widget .widget-posts .recent-post .post-info .post-title a:hover {
    color: var(--primary);
}

.sidebar .widget .widget-posts .recent-post .post-info .post-date {
    font-size: 12px;
    color: var(--gray);
}

.sidebar .widget .widget-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar .widget .widget-tags a {
    padding: 5px 12px;
    background: var(--light-gray);
    border-radius: 50px;
    font-size: 13px;
    color: #555;
    transition: var(--transition);
}

.sidebar .widget .widget-tags a:hover {
    background: var(--primary);
    color: var(--white);
}


/* ============================================
   32. Blog Detail Page
   ============================================ */
.blog-detail {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 40px;
}

.blog-detail .blog-detail-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 25px;
}

.blog-detail .blog-detail-image img {
    width: 100%;
    height: auto;
}

.blog-detail .blog-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--gray);
}

.blog-detail .blog-detail-meta span i {
    color: var(--primary);
    margin-right: 5px;
}

.blog-detail .blog-detail-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.blog-detail .blog-detail-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    margin: 25px 0;
    background: var(--light-gray);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 1rem;
    color: #555;
}

.blog-detail .blog-detail-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--gray);
    font-style: normal;
}

.comments-section {
    margin-top: 40px;
}

.comments-section .comments-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.375rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.comment-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-item .comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-item .comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-item .comment-body .comment-author {
    font-weight: 600;
    font-size: 15px;
    color: var(--black);
    margin-bottom: 3px;
}

.comment-item .comment-body .comment-date {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 8px;
}

.comment-item .comment-body .comment-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.comment-item .comment-body .comment-reply {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.comment-item .comment-body .comment-reply:hover {
    color: var(--primary-dark);
}

.comment-item.children {
    margin-left: 65px;
}

.comment-form {
    margin-top: 30px;
}

.comment-form .form-control {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    font-size: 14px;
}

.comment-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.1);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}


/* ============================================
   33. Offers Page
   ============================================ */
.offer-banner {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.offer-banner .offer-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(231, 3, 35, 0.5));
}

.offer-banner .offer-banner-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: var(--white);
}

.offer-banner .offer-banner-content h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 10px;
}

.offer-banner .offer-banner-content .offer-badge {
    display: inline-block;
    background: var(--primary);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.offer-countdown {
    display: flex;
    gap: 15px;
}

.offer-countdown .countdown-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px 15px;
    min-width: 60px;
    backdrop-filter: blur(10px);
}

.offer-countdown .countdown-box .countdown-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    display: block;
    color: var(--white);
}

.offer-countdown .countdown-box .countdown-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-detail {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 40px;
}

.offer-detail .offer-detail-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 25px;
}

.offer-detail .offer-terms {
    margin-top: 25px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.offer-detail .offer-terms h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 10px;
}

.offer-detail .offer-terms ul {
    list-style: disc;
    padding-left: 20px;
}

.offer-detail .offer-terms ul li {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}


/* ============================================
   34. Compare Page
   ============================================ */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.compare-table thead th {
    background: var(--black);
    color: var(--white);
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compare-table thead th:first-child {
    text-align: left;
    min-width: 150px;
}

.compare-table tbody td {
    padding: 12px 15px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.compare-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--gray);
    background: var(--light-gray);
}

.compare-table tbody tr:hover td {
    background: rgba(var(--primary-rgb), 0.03);
}

.compare-table tbody tr:nth-child(even) td:first-child {
    background: #f0f0f0;
}

.compare-remove {
    color: #dc3545;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.compare-remove:hover {
    transform: scale(1.2);
}


/* ============================================
   35. Cart / Wishlist Styles
   ============================================ */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.cart-table thead th {
    background: var(--black);
    color: var(--white);
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.cart-table tbody td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.cart-table tbody .cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-table tbody .cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-table tbody .cart-product .cart-product-name {
    font-weight: 600;
    color: var(--black);
}

.cart-table tbody .cart-product .cart-product-name:hover {
    color: var(--primary);
}

.cart-table .qty-input {
    width: 60px;
    text-align: center;
    padding: 5px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.cart-table .cart-remove {
    color: #dc3545;
    cursor: pointer;
    font-size: 16px;
}

.cart-totals {
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    padding: 25px;
}

.cart-totals h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.cart-totals .cart-total-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
}

.cart-totals .cart-total-item.total {
    border-top: 2px solid var(--border-color);
    margin-top: 10px;
    padding-top: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
}

.cart-totals .cart-total-item.total .amount {
    color: var(--primary);
}

.wishlist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 15px;
}

.wishlist-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--light-gray);
    padding: 10px;
}

.wishlist-item .wishlist-info {
    flex: 1;
}

.wishlist-item .wishlist-info h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 5px;
}

.wishlist-item .wishlist-info .wishlist-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.wishlist-item .wishlist-actions {
    display: flex;
    gap: 8px;
}


/* ============================================
   36. Auth Pages
   ============================================ */
.auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    background: var(--light-gray);
}

.auth-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 450px;
    max-width: 95%;
}

.auth-card .auth-header {
    background: var(--primary);
    padding: 30px;
    text-align: center;
    color: var(--white);
}

.auth-card .auth-header h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 5px;
}

.auth-card .auth-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 14px;
}

.auth-card .auth-body {
    padding: 30px;
}

.auth-card .auth-body .form-control {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    font-size: 14px;
}

.auth-card .auth-body .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.1);
}

.auth-card .auth-body .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.auth-card .auth-footer {
    text-align: center;
    padding: 20px 30px;
    background: var(--light-gray);
    border-top: 1px solid var(--border-color);
}

.auth-card .auth-footer p {
    margin-bottom: 0;
    font-size: 14px;
}

.auth-card .auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-login {
    display: flex;
    gap: 10px;
}

.social-login .btn-social {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.social-login .btn-social:hover {
    border-color: var(--primary);
    color: var(--primary);
}


/* ============================================
   37. Profile Page
   ============================================ */
.profile-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 30px;
}

.profile-card .profile-cover {
    height: 150px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
}

.profile-card .profile-avatar {
    position: absolute;
    bottom: -40px;
    left: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--white);
    overflow: hidden;
    background: var(--white);
}

.profile-card .profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card .profile-info {
    padding: 50px 30px 30px;
}

.profile-card .profile-info h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 3px;
}

.profile-card .profile-info .profile-email {
    font-size: 14px;
    color: var(--gray);
}

.profile-nav {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.profile-nav .nav-link {
    padding: 12px 20px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.profile-nav .nav-link:last-child {
    border-bottom: none;
}

.profile-nav .nav-link i {
    width: 20px;
    color: var(--gray);
    transition: var(--transition);
}

.profile-nav .nav-link:hover,
.profile-nav .nav-link.active {
    background: rgba(var(--primary-rgb), 0.05);
    color: var(--primary);
}

.profile-nav .nav-link:hover i,
.profile-nav .nav-link.active i {
    color: var(--primary);
}

.profile-content {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 30px;
}


/* ============================================
   38. Footer
   ============================================ */
.main-footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 60px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget .footer-logo {
    margin-bottom: 15px;
}

.footer-widget p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-widget h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-widget ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-widget .contact-info li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-widget .contact-info li i {
    color: var(--primary);
    margin-top: 4px;
    min-width: 16px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: var(--transition);
}

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

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--primary);
}

.footer-bottom a:hover {
    color: var(--primary-light);
}


/* ============================================
   39. Form Styles
   ============================================ */
.form-control {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 11px 15px;
    font-size: 14px;
    color: var(--black);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.15);
}

.form-control::placeholder {
    color: #aaa;
}

.form-label {
    font-weight: 500;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 6px;
}

.form-group {
    margin-bottom: 20px;
}

.form-select {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 11px 15px;
    font-size: 14px;
    color: var(--black);
    transition: var(--transition);
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.15);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.15);
}

.input-group-text {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    color: var(--gray);
}

.form-floating > .form-control:focus ~ label {
    color: var(--primary);
}


/* ============================================
   40. Alerts / Flash Messages
   ============================================ */
.flash-message {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    max-width: 450px;
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-lg);
    padding: 15px 20px;
    font-size: 14px;
}

.flash-message .btn-close {
    font-size: 12px;
}

.alert-success {
    background: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
}

.alert-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #856404;
}

.alert-info {
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
    color: #0c5460;
}


/* ============================================
   41. Modal Styles
   ============================================ */
.modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 25px;
}

.modal-header .modal-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
}

.modal-header .btn-close:focus {
    box-shadow: none;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 15px 25px;
}


/* ============================================
   42. Loading Spinner
   ============================================ */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loading-overlay .loading-spinner {
    width: 60px;
    height: 60px;
    border-width: 4px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* ============================================
   43. Animations
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

.slide-up {
    animation: slideUp 0.6s ease;
}

.zoom-in {
    animation: zoomIn 0.5s ease;
}


/* ============================================
   44. Utility Classes
   ============================================ */
.text-honda { color: var(--primary) !important; }
.bg-honda { background-color: var(--primary) !important; }
.bg-honda-dark { background-color: var(--primary-dark) !important; }
.border-honda { border-color: var(--primary) !important; }

.btn-honda-shadow {
    box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.3);
}

.font-heading {
    font-family: var(--font-heading);
}

.font-weight-300 { font-weight: 300; }
.font-weight-400 { font-weight: 400; }
.font-weight-500 { font-weight: 500; }
.font-weight-600 { font-weight: 600; }
.font-weight-700 { font-weight: 700; }
.font-weight-800 { font-weight: 800; }

.text-sm { font-size: 13px; }
.text-xs { font-size: 12px; }

.rounded-custom {
    border-radius: var(--border-radius);
}

.rounded-custom-lg {
    border-radius: var(--border-radius-lg);
}

.shadow-custom {
    box-shadow: var(--shadow);
}

.shadow-custom-hover:hover {
    box-shadow: var(--shadow-hover);
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.bg-gradient-dark {
    background: linear-gradient(135deg, var(--black), #2d2d2d);
}

.overflow-hidden {
    overflow: hidden;
}

.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }

.object-fit-cover {
    object-fit: cover;
}

.object-fit-contain {
    object-fit: contain;
}

.gap-5 { gap: 5px; }
.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }
.gap-20 { gap: 20px; }

.mt-n1 { margin-top: -0.25rem; }
.mt-n2 { margin-top: -0.5rem; }
.mt-n3 { margin-top: -1rem; }

.page-hero {
    position: relative;
    padding: 100px 0 60px;
    background: var(--black);
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.page-hero .breadcrumb {
    background: transparent;
    justify-content: center;
}

.page-hero .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb-item a:hover {
    color: var(--primary);
}

.page-hero .breadcrumb-item.active {
    color: var(--primary);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}


/* ============================================
   45. Responsive - Tablet Landscape
   ============================================ */
@media (max-width: 1199px) {
    .hero-slide {
        height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .model-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .model-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .emi-breakdown {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ============================================
   46. Responsive - Tablet Portrait
   ============================================ */
@media (max-width: 991px) {
    .top-bar {
        display: none;
    }

    .main-header {
        position: sticky;
        top: 0;
    }

    .navbar-collapse {
        background: var(--primary);
        padding: 15px 0;
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .navbar-nav .nav-item .nav-link {
        padding: 10px 15px;
        border-radius: 6px;
        margin: 2px 0;
        color: var(--white);
    }

    .navbar-nav .nav-item .nav-link:hover,
    .navbar-nav .nav-item .nav-link.active {
        color: var(--primary);
        background: var(--white);
    }

    .navbar-nav .nav-item .nav-link::after {
        display: none;
    }

    .mega-menu {
        min-width: auto;
        box-shadow: none;
        border-top: none;
        padding: 10px 20px;
        background: var(--white);
        border-radius: var(--border-radius);
        margin-top: 5px;
    }

    .mega-menu .dropdown-item {
        color: var(--black);
    }

    .mega-menu .mega-title {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .hero-slide {
        height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .model-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-types {
        grid-template-columns: repeat(2, 1fr);
    }

    .emi-breakdown {
        grid-template-columns: repeat(3, 1fr);
    }

    .booking-steps .step .step-label {
        display: none;
    }

    .footer-widget h4::after {
        left: 0;
        transform: none;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .model-detail-hero .model-detail-info {
        margin-top: 30px;
    }

    .profile-nav {
        display: flex;
        flex-wrap: wrap;
        border-radius: var(--border-radius-lg);
    }

    .profile-nav .nav-link {
        border-bottom: none;
        border-right: 1px solid var(--border-color);
    }
}


/* ============================================
   47. Responsive - Mobile Landscape
   ============================================ */
@media (max-width: 767px) {
    .top-bar {
        display: none;
    }

    .navbar-brand .logo {
        height: 40px;
        max-width: 160px;
    }

    .header-scrolled .navbar-brand .logo {
        height: 35px;
        max-width: 140px;
    }

    .hero-slide {
        height: 350px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 4px 12px;
    }

    .hero-slider .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 14px !important;
    }

    .hero-slider .owl-nav .owl-prev {
        left: 10px;
    }

    .hero-slider .owl-nav .owl-next {
        right: 10px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .model-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .model-card .model-image {
        height: 160px;
        padding: 15px;
    }

    .model-card .model-image img {
        max-height: 130px;
    }

    .model-card .model-content {
        padding: 15px;
    }

    .model-card .model-name {
        font-size: 1rem;
    }

    .model-card .model-price {
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .blog-card .blog-image {
        height: 180px;
    }

    .service-types {
        grid-template-columns: 1fr;
    }

    .model-features {
        grid-template-columns: 1fr;
    }

    .emi-breakdown {
        grid-template-columns: 1fr;
    }

    .booking-steps {
        gap: 5px;
    }

    .booking-steps .step {
        padding: 10px 15px;
    }

    .booking-steps .step .step-label {
        display: none;
    }

    .booking-form,
    .service-form,
    .finance-calculator,
    .contact-form,
    .blog-detail,
    .offer-detail {
        padding: 25px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .footer-bottom .text-end {
        text-align: left !important;
        margin-top: 5px;
    }

    .about-hero {
        height: 300px;
    }

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

    .models-hero {
        height: 250px;
    }

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

    .team-member-card .member-image {
        height: 200px;
    }

    .achievement .achievement-number {
        font-size: 2rem;
    }

    .filter-bar .filter-label {
        margin-top: 10px;
    }

    .filter-bar .filter-label:first-child {
        margin-top: 0;
    }

    .page-hero {
        padding: 80px 0 40px;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .offer-banner {
        height: 280px;
    }

    .offer-banner .offer-banner-content {
        padding: 25px;
    }

    .offer-banner .offer-banner-content h2 {
        font-size: 1.5rem;
    }

    .model-detail-hero {
        padding: 30px 0;
    }

    .model-gallery .gallery-carousel img {
        height: 300px;
    }

    .variant-selector .variant-option {
        min-width: 100px;
        padding: 8px 15px;
    }

    .price-table .price-header .price-amount {
        font-size: 1.5rem;
    }

    .flash-message {
        min-width: auto;
        max-width: 90%;
        right: 5%;
        top: 80px;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 15px;
    }

    .whatsapp-float .whatsapp-icon {
        font-size: 22px;
    }

    .scroll-to-top {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}


/* ============================================
   48. Responsive - Small Mobile
   ============================================ */
@media (max-width: 575px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.125rem; }

    .hero-slide {
        height: 300px;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

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

    .model-grid {
        grid-template-columns: 1fr;
    }

    .model-grid.grid-4 {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .btn-honda {
        padding: 10px 22px;
        font-size: 13px;
    }

    .btn-honda-lg {
        padding: 12px 30px;
        font-size: 14px;
    }

    .icon-box {
        padding: 25px 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .booking-form,
    .service-form,
    .finance-calculator,
    .contact-form,
    .blog-detail,
    .offer-detail {
        padding: 20px;
    }

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

    .auth-card .auth-header {
        padding: 20px;
    }

    .profile-card .profile-info {
        padding: 45px 20px 20px;
    }

    .profile-card .profile-avatar {
        left: 20px;
        width: 65px;
        height: 65px;
    }

    .profile-content {
        padding: 20px;
    }

    .compare-table {
        font-size: 12px;
    }

    .compare-table thead th,
    .compare-table tbody td {
        padding: 8px 10px;
    }

    .cart-table thead th {
        font-size: 11px;
        padding: 8px 10px;
    }

    .cart-table tbody td {
        padding: 10px;
    }

    .wishlist-item {
        flex-direction: column;
        text-align: center;
    }

    .wishlist-item .wishlist-actions {
        justify-content: center;
    }

    .comment-item.children {
        margin-left: 30px;
    }

    .offer-countdown .countdown-box {
        min-width: 45px;
        padding: 8px 10px;
    }

    .offer-countdown .countdown-box .countdown-num {
        font-size: 1.2rem;
    }

    .map-container {
        height: 280px;
    }

    .blog-detail .blog-detail-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .sidebar .widget {
        padding: 20px;
    }

    .model-card .model-image { height: 140px; }
    .model-card .model-image img { max-height: 110px; }
    .offer-card .offer-image, .offer-card .offer-img { height: 160px; }
    .blog-card .blog-image, .blog-card .blog-img { height: 160px; }
    .team-member-card .member-image { height: 180px; }
    .gallery-item { height: 180px; }
    .hero-slider .slider-item { min-height: 280px; }
    .about-hero { height: 220px; }
    .models-hero { height: 200px; }
    .model-gallery .gallery-carousel img { height: 220px; }
    .offer-banner { height: 200px; }
    .branch-card .branch-image { height: 160px; }

    .testimonial-card { padding: 20px; margin: 10px 0; }
    .icon-box { padding: 20px 15px; }
    .hero-content { max-width: 100%; }

    .whatsapp-float {
        width: 40px;
        height: 40px;
        right: 12px;
    }
    .whatsapp-float .whatsapp-icon { font-size: 18px; }
    .scroll-to-top {
        width: 34px;
        height: 34px;
        font-size: 13px;
        left: 12px;
    }
}

@media (max-width: 400px) {
    .section-title { font-size: 1.15rem; }
    .section-subtitle { font-size: .82rem; }
    .hero-title { font-size: 1.2rem; }
    .hero-subtitle { font-size: .8rem; }
    .navbar-brand .logo { height: 34px; }
    .model-card .model-name { font-size: .9rem; }
    .model-card .model-price { font-size: 1rem; }
    .model-card .model-image { height: 120px; }
    .hero-slider .slider-item { min-height: 240px; }
    .booking-steps .step { padding: 8px 12px; }
    .booking-steps .step .step-number { width: 26px; height: 26px; font-size: 12px; }
}
