﻿/* ═══════════════════════════════════════
   ANNEX HOME APPLIANCES — GLOBAL STYLES
   ═══════════════════════════════════════ */

:root {
    --navy: #0f3460;
    --orange: #e05a1a;
    --dark: #1a1a2e;
    --light: #f8f9fc;
    --text: #333;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    color: var(--text);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* ── Buttons ── */
.btn-orange {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition:
        background 0.2s,
        transform 0.1s;
}

.btn-orange:hover {
    background: #c94e15;
    color: #fff;
    transform: translateY(-1px);
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-navy:hover {
    background: #0a2a50;
    color: #fff;
}

/* ── Navbar ── */
#mainNav {
    background: #ffffff;
    padding: 10px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

#mainNav.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 6px 0;
}

#mainNav .nav-link {
    color: #1a1a2e !important;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 6px 12px !important;
    border-radius: 6px;
    transition: all 0.2s;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: #e05a1a !important;
}

#mainNav .dropdown-menu {
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 8px;
}

#mainNav .dropdown-item {
    border-radius: 6px;
    font-size: 0.9rem;
    padding: 8px 14px;
    color: #1a1a2e;
    transition: all 0.2s;
}

#mainNav .dropdown-item:hover {
    background: #e05a1a;
    color: #fff;
}

/* Toggler dark mode for white bg */
#mainNav .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.2);
}

#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Get Quote button */
#mainNav .btn-orange {
    background: #e05a1a;
    color: #fff !important;
}

#mainNav .btn-orange:hover {
    background: #c94e15;
    color: #fff !important;
}

/* ── Brand ── */
.brand-icon {
    width: 38px;
    height: 38px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
}

.brand-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.brand-sub {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Section Titles ── */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.section-title span {
    color: var(--orange);
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
    margin-top: 8px;
}

.title-line {
    width: 50px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
    margin: 12px 0;
}

/* ── Product Card ── */
.product-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: var(--orange);
}

.product-card .img-wrap {
    height: 200px;
    overflow: hidden;
    background: #f8f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .img-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover .img-wrap img {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 16px;
}

.product-card .cat-badge {
    font-size: 0.72rem;
    background: rgba(15, 52, 96, 0.08);
    color: var(--navy);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.product-card .prod-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin: 8px 0 4px;
    line-height: 1.3;
}

.product-card .prod-price {
    color: var(--orange);
    font-weight: 700;
    font-size: 1rem;
}

.product-card .btn-inquiry {
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 7px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    width: 100%;
    transition: background 0.2s;
}

.product-card .btn-inquiry:hover {
    background: var(--orange);
}

/* ── Category Card ── */
.cat-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
    height: 160px;
}

.cat-card:hover {
    transform: translateY(-4px);
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 52, 96, 0.85), transparent);
    display: flex;
    align-items: flex-end;
    padding: 14px;
}

.cat-card .overlay span {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

/* ── Stats Strip ── */
.stats-strip {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    padding: 0;
    overflow: hidden;
}

.stat-item {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s;
}

.stat-last {
    border-right: none;
}

.stat-item:hover {
    background: rgba(224, 90, 26, 0.12);
}

.stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(224, 90, 26, 0.15);
    border: 1px solid rgba(224, 90, 26, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #e05a1a;
    margin: 0 auto 14px;
    transition: all 0.3s;
}

.stat-item:hover .stat-icon {
    background: #e05a1a;
    color: #fff;
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: inline-block;
}

.stat-plus {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e05a1a;
    display: inline-block;
    vertical-align: top;
    margin-top: 4px;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat-last {
        border-bottom: none;
    }
}

/* ── Footer ── */
.footer-main {
    background: var(--dark);
    border-top: 3px solid var(--orange);
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

.footer-brand span {
    color: var(--orange);
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--orange);
}

.text-orange {
    color: var(--orange) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Inquiry Modal ── */
.modal-header {
    background: var(--navy);
    color: #fff;
}

.modal-header .btn-close {
    filter: invert(1);
}

/* ── Breadcrumb ── */
.page-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
    padding: 40px 0;
    color: #fff;
}

.page-banner h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
    color: var(--orange);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ── Utility ── */
.bg-light-blue {
    background: #f0f4ff;
}

.rounded-12 {
    border-radius: 12px;
}

.object-fit-cover {
    object-fit: cover;
}

/* ── Hero Section ── */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 60%, #16213e 100%);
    min-height: 88vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    width: 100%;
    padding: 80px 0 60px;
}

.hero-badge {
    background: rgba(224, 90, 26, 0.15);
    color: #e05a1a;
    border: 1px solid rgba(224, 90, 26, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-title span {
    color: #e05a1a;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 480px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.hero-img-wrap {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(224, 90, 26, 0.1);
    border: 2px dashed rgba(224, 90, 26, 0.3);
    animation: spin 20s linear infinite;
}

.hero-icon {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ── Category Card New ── */
.cat-card-new {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s;
    height: 100%;
}

.cat-card-new:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #e05a1a;
}

.cat-card-new img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.cat-card-icon {
    height: 130px;
    background: linear-gradient(135deg, #0f3460, #1a1a2e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #e05a1a;
}

.cat-card-body {
    padding: 12px 14px;
}

.cat-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a2e;
}

.cat-count {
    font-size: 0.75rem;
    color: #888;
    margin-top: 2px;
}

/* ── Why Us ── */
.why-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.why-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #e05a1a;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f3460, #1a1a2e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #e05a1a;
    margin: 0 auto 16px;
}

.why-card h5 {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.87rem;
    color: #666;
    margin: 0;
}

/* ── CTA ── */
.cta-section {
    padding: 60px 0;
    background: #f0f4ff;
}

.cta-box {
    background: linear-gradient(135deg, #0f3460, #1a1a2e);
    border-radius: 16px;
    padding: 48px 40px;
}

.cta-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

/* ── Btn Outline Navy ── */
.btn-outline-navy {
    border: 2px solid #0f3460;
    color: #0f3460;
    font-weight: 600;
    border-radius: 6px;
    padding: 8px 20px;
    transition: all 0.2s;
}

.btn-outline-navy:hover {
    background: #0f3460;
    color: #fff;
}

/* ── Counter animation ── */
.stat-item .number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e05a1a;
    line-height: 1;
}

.stat-item .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 1.3rem;
    }
}

/* ── Success Animation ── */
.success-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: #fff;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.4);
}

.success-animation {
    animation: fadeUp 0.4s ease;
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#main-content {
    margin-left: 0 !important;
    margin-top: 0 !important;
}

/* ── Hero Slider — Image Only ── */
.hero-slider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.banner-img-link {
    display: block;
    width: 100%;
}

.banner-slide-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.carousel-item {
    line-height: 0;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #e05a1a;
    border-color: #e05a1a;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 16px;
    height: 16px;
}

/* Indicators */
.carousel-indicators {
    bottom: 16px;
    gap: 6px;
    margin: 0;
}

.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0;
    margin: 0;
    transition: all 0.3s;
}

.carousel-indicators button.active {
    background: #e05a1a;
    border-color: #e05a1a;
    width: 26px;
    border-radius: 4px;
}

@media(max-width: 768px) {
    .banner-slide-img {
        max-height: 280px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }
}

/* ── Filter Sidebar ── */
.filter-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 80px;
}

.filter-title {
    background: var(--navy);
    color: #fff;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 0.9rem;
}

.filter-list {
    list-style: none;
    padding: 10px;
    margin: 0;
}

.filter-list li a {
    display: flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 8px;
    color: #444;
    font-size: 0.88rem;
    transition: all 0.2s;
    text-decoration: none;
}

.filter-list li a:hover,
.filter-list li a.active {
    background: var(--orange);
    color: #fff;
}

.filter-list li a .count {
    margin-left: auto;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 1px 8px;
    font-size: 0.75rem;
}

.filter-list li a.active .count {
    background: rgba(255, 255, 255, 0.25);
}

/* ── Product Detail ── */
.main-img-wrap {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.main-img:hover {
    transform: scale(1.04);
}

.no-img-placeholder {
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fc;
    border-radius: 12px;
}

.thumb-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumb-item {
    width: 72px;
    height: 72px;
    border: 2px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item.active,
.thumb-item:hover {
    border-color: var(--orange);
}

.cat-badge-link {
    display: inline-block;
    background: rgba(15, 52, 96, 0.08);
    color: var(--navy);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-decoration: none;
}

.product-detail-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 8px;
}

.product-meta {
    color: #666;
    font-size: 0.88rem;
}

.detail-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    margin: 12px 0;
}

.min-order-badge {
    display: inline-flex;
    align-items: center;
    background: #f0f4ff;
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.product-short-desc {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #555;
    background: #f8f9fc;
    padding: 6px 12px;
    border-radius: 6px;
}

.trust-item i {
    color: var(--orange);
}

/* ── Product Tabs ── */
.product-tabs {
    border-bottom: 2px solid #eee;
    gap: 4px;
}

.product-tabs .nav-link {
    border: none;
    border-radius: 8px 8px 0 0;
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    background: #f8f9fc;
    margin-bottom: -2px;
}

.product-tabs .nav-link.active {
    background: var(--navy);
    color: #fff;
    border-bottom: 2px solid var(--navy);
}

.product-tab-content {
    background: #fff;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 24px;
    color: #555;
    line-height: 1.8;
    font-size: 0.93rem;
}

/* ── Specs Table ── */
.specs-table {
    border-radius: 8px;
    overflow: hidden;
}

.spec-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row.even {
    background: #f8f9fc;
}

.spec-key {
    width: 200px;
    min-width: 200px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
    border-right: 1px solid #eee;
}

.spec-val {
    padding: 10px 16px;
    font-size: 0.88rem;
    color: #444;
    flex: 1;
}

/* ── Pagination ── */
.pagination-custom {
    gap: 4px;
}

.pagination-custom .page-link {
    border-radius: 8px !important;
    border: 1px solid #eee;
    color: var(--navy);
    padding: 8px 14px;
    font-size: 0.88rem;
    transition: all 0.2s;
}

.pagination-custom .page-item.active .page-link {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.pagination-custom .page-link:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

@media (max-width: 768px) {
    .spec-key {
        width: 130px;
        min-width: 130px;
    }

    .product-detail-title {
        font-size: 1.3rem;
    }

    .main-img-wrap {
        height: 260px;
    }
}

/* ═══════════════════════════════
   ABOUT PAGE — MODERN UI
   ═══════════════════════════════ */

.about-main-section {
    overflow: hidden;
}

.about-label {
    display: inline-flex;
    align-items: center;
    background: rgba(224, 90, 26, 0.1);
    color: #e05a1a;
    border: 1px solid rgba(224, 90, 26, 0.25);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 6px;
}

.about-title-line {
    width: 55px;
    height: 4px;
    background: linear-gradient(to right, #e05a1a, #ff8c42);
    border-radius: 2px;
    margin-bottom: 20px;
}

.about-desc {
    color: #555;
    line-height: 1.85;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

/* Feature Items */
.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f8f9fc;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.2s;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
}

.about-feature-item:hover {
    border-color: #e05a1a;
    background: #fff5f0;
    transform: translateX(4px);
}

.about-feature-icon {
    width: 24px;
    height: 24px;
    background: #e05a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* Right Wrap */
.about-right-wrap {
    position: relative;
    padding: 20px 0 0;
}

/* Experience Badge */
.exp-badge {
    position: absolute;
    top: 0;
    left: -10px;
    background: linear-gradient(135deg, #e05a1a, #ff8c42);
    color: #fff;
    border-radius: 16px;
    padding: 14px 20px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(224, 90, 26, 0.4);
    min-width: 100px;
}

.exp-number {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.exp-label {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1.3;
    margin-top: 4px;
}

/* About Image */
.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-top: 30px;
}

.about-img-main img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.4s;
}

.about-img-main:hover img {
    transform: scale(1.04);
}

/* Showcase Grid */
.about-icon-showcase {
    margin-top: 30px;
    padding: 24px;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(15, 52, 96, 0.3);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 8px;
    text-align: center;
    transition: all 0.3s;
    cursor: default;
}

.showcase-item:hover {
    background: rgba(224, 90, 26, 0.2);
    border-color: rgba(224, 90, 26, 0.4);
    transform: translateY(-3px);
}

.showcase-item.featured {
    background: rgba(224, 90, 26, 0.15);
    border-color: rgba(224, 90, 26, 0.4);
}

.showcase-item i {
    font-size: 1.5rem;
    color: #e05a1a;
    display: block;
    margin-bottom: 6px;
}

.showcase-item span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* Stats Row */
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.about-stat-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.about-stat-card:hover {
    border-color: #e05a1a;
    box-shadow: 0 8px 24px rgba(224, 90, 26, 0.15);
    transform: translateY(-3px);
}

.asc-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #e05a1a;
    line-height: 1;
}

.asc-label {
    font-size: 0.75rem;
    color: #888;
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Journey Timeline */
.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #e05a1a, #0f3460);
    border-radius: 2px;
}

.journey-item {
    display: flex;
    gap: 30px;
    margin-bottom: 36px;
    position: relative;
    align-items: flex-start;
}

.journey-year {
    min-width: 60px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f3460;
    padding-top: 14px;
    text-align: right;
}

.journey-content {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 18px 22px;
    flex: 1;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.journey-content::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 20px;
    width: 16px;
    height: 16px;
    background: #e05a1a;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #e05a1a;
}

.journey-content:hover {
    border-color: #e05a1a;
    box-shadow: 0 8px 28px rgba(224, 90, 26, 0.15);
    transform: translateX(4px);
}

.journey-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.journey-content p {
    font-size: 0.88rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-main-title {
        font-size: 1.7rem;
    }

    .exp-badge {
        left: 0;
    }

    .journey-timeline {
        padding-left: 0;
    }

    .journey-timeline::before {
        left: 50px;
    }

    .about-stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ═══════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════ */

/* Strip Cards */
.contact-strip {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    padding: 40px 0;
    margin-top: -1px;
}

.contact-strip-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 20px 18px;
    text-decoration: none;
    transition: all 0.3s;
    height: 100%;
}

.contact-strip-card:hover {
    background: rgba(224, 90, 26, 0.2);
    border-color: rgba(224, 90, 26, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-strip-card.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.5);
}

.contact-strip-card.email:hover {
    background: rgba(224, 90, 26, 0.2);
    border-color: rgba(224, 90, 26, 0.5);
}

.contact-strip-card .csc-icon {
    width: 48px;
    height: 48px;
    background: rgba(224, 90, 26, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #e05a1a;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-strip-card:hover .csc-icon {
    background: #e05a1a;
    color: #fff;
}

.csc-body {
    flex: 1;
}

.csc-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.csc-value {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 700;
    margin: 3px 0;
}

.csc-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.csc-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    transition: all 0.3s;
}

.contact-strip-card:hover .csc-arrow {
    color: #e05a1a;
    transform: translateX(4px);
}

/* Info List */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fff;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-info-row:hover:not(.no-hover) {
    border-color: #e05a1a;
    box-shadow: 0 6px 20px rgba(224, 90, 26, 0.12);
    transform: translateX(4px);
}

.cir-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.cir-body {
    flex: 1;
}

.cir-label {
    font-size: 0.72rem;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cir-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 2px 0;
}

.cir-action {
    font-size: 0.75rem;
    color: #e05a1a;
    font-weight: 500;
}

/* GST Badge */
.gst-badge {
    display: inline-flex;
    align-items: center;
    background: #f0f4ff;
    color: #0f3460;
    border: 1px solid #d0daf5;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
}

/* Contact Form Wrap */
.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.cfm-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cfm-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0f3460, #1a1a2e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #e05a1a;
    flex-shrink: 0;
}

/* Input with Icon */
.input-icon-wrap {
    position: relative;
}

.input-icon-wrap i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 0.85rem;
    z-index: 2;
    transition: color 0.2s;
}

.input-icon-wrap.textarea i {
    top: 16px;
    transform: none;
}

.form-control.with-icon {
    padding-left: 36px;
}

.input-icon-wrap:focus-within i {
    color: #e05a1a;
}

.form-control:focus {
    border-color: #e05a1a;
    box-shadow: 0 0 0 3px rgba(224, 90, 26, 0.12);
}

.form-select:focus {
    border-color: #e05a1a;
    box-shadow: 0 0 0 3px rgba(224, 90, 26, 0.12);
}

/* Map */
.contact-map-section {
    margin-top: 40px;
}

.map-wrapper {
    position: relative;
}

.map-overlay-label {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a2e;
    z-index: 10;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-overlay-label i {
    color: #e05a1a;
}

.map-directions-btn {
    background: #e05a1a;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

.map-directions-btn:hover {
    background: #c94e15;
    color: #fff;
}

@media (max-width: 768px) {
    .contact-form-wrap {
        padding: 20px 16px;
    }

    .map-overlay-label {
        font-size: 0.75rem;
        padding: 8px 12px;
        max-width: 90%;
        white-space: normal;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
    }
}

s

/* ── Inquiry Page ── */
.inquiry-page-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {

    .contact-form-box,
    .inquiry-page-box {
        padding: 24px 16px;
    }

    .about-icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 54px;
    height: 54px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #1da851;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* ── Top Info Bar ── */
.top-info-bar {
    background: #0f3460;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
}

.top-info-item {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    white-space: nowrap;
}

.top-info-item:hover {
    color: #e05a1a;
}

.top-info-item i {
    color: #e05a1a;
    font-size: 0.78rem;
}

.top-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
}

.top-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background 0.2s;
    white-space: nowrap;
}

.top-whatsapp:hover {
    background: #1da851;
    color: #fff;
}

/* ── Social Icons ── */
.social-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icon:hover {
    background: #e05a1a;
    border-color: #e05a1a;
    color: #fff;
    transform: translateY(-2px);
}

/* ═══════════════════════════════
   BRANDS SLIDER
   ═══════════════════════════════ */
.brands-section {
    padding: 50px 0;
    background: #f8f9fc;
    overflow: hidden;
}

.brands-track-wrap {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.brands-track-wrap::before,
.brands-track-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
}

.brands-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fc, transparent);
}

.brands-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fc, transparent);
}

.brands-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: brandScroll 25s linear infinite;
}

.brands-track:hover {
    animation-play-state: paused;
}

@keyframes brandScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-slide {
    flex-shrink: 0;
}

.brand-logo-wrap {
    width: 160px;
    height: 80px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.brand-logo-wrap:hover {
    border-color: #e05a1a;
    box-shadow: 0 4px 20px rgba(224, 90, 26, 0.15);
    transform: translateY(-3px);
}

.brand-logo-wrap img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(60%);
    opacity: 0.75;
    transition: all 0.3s;
}

.brand-logo-wrap:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-name-only {
    font-size: 0.9rem;
    font-weight: 700;
    color: #444;
    text-align: center;
}

/* ═══════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════ */
.testimonials-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
}

.testimonials-section .section-title {
    color: #fff;
}

.testimonials-section .section-title span {
    color: #e05a1a;
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-section .title-line {
    background: #e05a1a;
}

.testi-slider {
    position: relative;
    overflow: hidden;
    padding: 10px 0 20px;
}

.testi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testi-card {
    flex: 0 0 calc(25% - 18px);
    max-width: calc(25% - 18px);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 28px;
    position: relative;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.testi-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(224, 90, 26, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testi-quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    color: rgba(224, 90, 26, 0.3);
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.testi-stars i {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.2);
}

.testi-stars i.active {
    color: #ffc107;
}

.testi-review {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-client {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e05a1a;
    flex-shrink: 0;
}

.testi-avatar-letter {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e05a1a, #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.92rem;
}

.testi-company {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

/* Dots */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.testi-dot.active {
    background: #e05a1a;
    width: 24px;
    border-radius: 4px;
}

/* Arrows */
.testi-arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.testi-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-arrow:hover {
    background: #e05a1a;
    border-color: #e05a1a;
    transform: scale(1.1);
}

@media (max-width: 1199px) {
    .testi-card {
        flex: 0 0 calc(33.333% - 18px);
        max-width: calc(33.333% - 18px);
    }
}

@media (max-width: 991px) {
    .testi-card {
        flex: 0 0 calc(50% - 18px);
        max-width: calc(50% - 18px);
    }
}

@media (max-width: 575px) {
    .testi-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ═══════════════════════════════
   DEALERSHIP PAGE
   ═══════════════════════════════ */

/* Partner Cards */
.partner-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.partner-card:hover {
    border-color: #e05a1a;
    box-shadow: 0 8px 28px rgba(224, 90, 26, 0.15);
    transform: translateY(-4px);
}

.partner-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f3460, #1a1a2e);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #e05a1a;
    margin: 0 auto 16px;
    transition: all 0.3s;
}

.partner-card:hover .partner-icon {
    background: linear-gradient(135deg, #e05a1a, #ff8c42);
    color: #fff;
}

.partner-card h6 {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.partner-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Form Wrap */
.dealership-form-wrap {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #eee;
}

.dealership-form-header {
    background: linear-gradient(135deg, #0f3460, #1a1a2e);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.dfh-icon {
    width: 56px;
    height: 56px;
    background: rgba(224, 90, 26, 0.2);
    border: 2px solid rgba(224, 90, 26, 0.4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #e05a1a;
    flex-shrink: 0;
}

.dealership-form-header h4 {
    color: #fff;
}

/* Form Sections */
.dealership-form {
    padding: 0;
}

.form-section {
    padding: 28px 36px;
    border-bottom: 1px solid #f0f0f0;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.fs-num {
    width: 28px;
    height: 28px;
    background: #e05a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Upload Box */
.upload-box {
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-box:hover,
.upload-box.drag-over {
    border-color: #e05a1a;
    background: rgba(224, 90, 26, 0.04);
}

.upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.upload-content i {
    font-size: 2rem;
    color: #aaa;
    display: block;
    margin-bottom: 8px;
}

.upload-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: #555;
}

.upload-hint {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 4px;
}

.upload-filename {
    font-size: 0.85rem;
    font-weight: 600;
    color: #28a745;
    margin-top: 6px;
    word-break: break-all;
}

/* Submit Wrap */
.form-submit-wrap {
    background: #f8f9fc;
    padding: 24px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.form-submit-info {
    font-size: 0.85rem;
    color: #666;
}

/* Detail Fields (Admin) */
.detail-field {
    padding: 12px 16px;
    background: #f8f9fc;
    border-radius: 8px;
    height: 100%;
}

.detail-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    font-weight: 600;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1a1a2e;
}

@media(max-width: 768px) {
    .dealership-form-header {
        padding: 20px;
    }

    .form-section {
        padding: 20px 16px;
    }

    .form-submit-wrap {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }
}

/* Dealership Modal Size Fix */
#dealershipModal .modal-dialog {
    max-width: 860px;
    max-height: 90vh;
}

#dealershipModal .modal-content {
    max-height: 90vh;
    overflow: hidden;
}

#dealershipModal .modal-body {
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

#dealershipModal .form-section {
    padding: 10px 24px;
}

#dealershipModal .dealership-form-header {
    padding: 18px 24px;
}

#dealershipModal .form-section-title {
    margin-bottom: 8px;
}

#dealershipModal .form-label {
    margin-bottom: 2px;
}

#dealershipModal .form-control,
#dealershipModal .form-select {
    padding: 5px 10px;
}

#dealershipModal .form-control.with-icon {
    padding-left: 32px;
}

#dealershipModal .input-icon-wrap i {
    font-size: 0.78rem;
}

#dealershipModal .upload-box {
    min-height: 70px;
    padding: 10px;
}

#dealershipModal .upload-content i {
    font-size: 1.4rem;
}

#dealershipModal .upload-text {
    font-size: 0.8rem;
}

#dealershipModal .upload-hint {
    font-size: 0.7rem;
}

#dealershipModal .form-submit-wrap {
    padding: 10px 24px;
}

#dealershipModal .fs-num {
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
}

#dealershipModal .dfh-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
}

#dealershipModal .dealership-form-header h5 {
    font-size: 1rem;
}

#dealershipModal .row.g-3 {
    --bs-gutter-y: 0.4rem;
    --bs-gutter-x: 0.8rem;
}

/* ── Dealership Modal Responsive ── */
@media (max-width: 991px) {
    #dealershipModal .modal-dialog {
        max-width: 95vw;
        margin: 10px auto;
    }
}

@media (max-width: 767px) {
    #dealershipModal .modal-dialog {
        max-width: 100%;
        margin: 0;
        height: 100%;
        max-height: 100%;
    }

    #dealershipModal .modal-content {
        max-height: 100vh;
        border-radius: 0;
    }

    #dealershipModal .modal-body {
        max-height: calc(100vh - 70px);
    }

    #dealershipModal .dealership-form-header {
        padding: 12px 16px;
    }

    #dealershipModal .dealership-form-header h5 {
        font-size: 0.9rem;
    }

    #dealershipModal .dealership-form-header p {
        display: none;
    }

    #dealershipModal .form-section {
        padding: 10px 14px;
    }

    #dealershipModal .form-section-title {
        margin-bottom: 8px;
    }

    #dealershipModal .form-submit-wrap {
        flex-direction: column;
        text-align: center;
        padding: 12px 14px;
        gap: 10px;
    }

    #dealershipModal .btn-orange {
        width: 100%;
    }

    #dealershipModal .form-submit-info {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    #dealershipModal .modal-body {
        max-height: calc(100vh - 60px);
    }

    #dealershipModal .form-control,
    #dealershipModal .form-select {
        font-size: 0.82rem;
        padding: 5px 8px;
    }

    #dealershipModal .form-control.with-icon {
        padding-left: 30px;
    }

    #dealershipModal .dfh-icon {
        display: none;
    }
}

/* ── Popup Modal ── */
.popup-dialog {
    max-width: 480px;
}

.popup-content {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: background 0.2s;
}

.popup-close:hover {
    background: #e05a1a;
}

.popup-img-wrap {
    line-height: 0;
}

.popup-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.popup-body {
    padding: 16px 20px 8px;
    text-align: center;
}

.popup-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.popup-footer {
    padding: 8px 20px 20px;
}

@media(max-width: 576px) {
    .popup-dialog {
        max-width: 90%;
    }

    .popup-img {
        max-height: 280px;
    }
}

/* ── Zoom Hint ── */
.main-img-wrap {
    position: relative;
    cursor: zoom-in;
}

.zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.main-img-wrap:hover .zoom-hint {
    background: #e05a1a;
}

/* ── Lightbox ── */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 12px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-close:hover {
    background: #e05a1a;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.lightbox-nav:hover {
    background: #e05a1a;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

/* ── Price with Discount ── */
.price-block {
    margin: 14px 0;
}

.detail-price {
    font-size: 1.9rem;
    font-weight: 800;
    color: #e05a1a;
    line-height: 1;
}

.actual-price {
    font-size: 1.15rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.discount-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ── Tax Info ── */
.tax-info {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tax-tag {
    font-size: 0.78rem;
    color: #555;
    background: #f0f4ff;
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
}

@media(max-width: 768px) {
    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }

    .detail-price {
        font-size: 1.5rem;
    }
}