/* Custom CSS for Arora Dealer Site - Light Theme */
body {
    font-family: 'Kanit', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.navbar .navbar-brand span:first-child {
    color: #212529;
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    color: #495057;
}

.nav-link:hover {
    color: #e63946;
}

.nav-link.active {
    color: #e63946;
}

/* Hero Section */
.hero-slider {
    height: 95vh;
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel-item {
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active,
.carousel-item.active .hero-slide {
    opacity: 1;
}

/* Hero video background (YouTube) */
.hero-slide-video .hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide-video .hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.78vh;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 10%;
    left: 10%;
    z-index: 10;
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Buttons */
.btn-primary {
    background-color: #e63946;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-primary:hover {
    background-color: #d62828;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #212529;
    color: #212529;
    padding: 10px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #212529;
    color: #fff;
}

/* Cards */
.card {
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #e63946;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #212529;
}

.price-tag {
    color: #e63946;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Category - Discover Arora (kart yapısı) */
.discover-section .category-slider-nav {
    display: flex;
    gap: 0.5rem;
}

.btn-slider-nav {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 10px;
    background: #e9ecef;
    color: #212529;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
}

.btn-slider-nav:hover {
    background: #dee2e6;
    color: #212529;
}

.category-slider-wrap {
    overflow: hidden;
}

.category-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.category-card-new {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem 1.25rem;
    transition: box-shadow 0.3s, transform 0.3s;
    color: #212529;
}

.category-card-new:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
    color: #212529;
}

.category-card-new .category-card-img {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.category-card-new .category-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-card-new .category-card-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
    color: #212529;
}

.category-card-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #e9ecef;
    color: #212529;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: background 0.2s;
}

.category-card-new:hover .category-card-btn {
    background: #dee2e6;
}

/* Featured Models - kartlı yapı */
.featured-models-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.featured-model-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

.featured-model-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.featured-model-img-col {
    min-height: 420px;
}

.featured-model-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    background: #f8f9fa;
}

.featured-model-watermark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 800;
    color: rgba(0,0,0,0.04);
    white-space: nowrap;
    letter-spacing: 0.02em;
    pointer-events: none;
}

.featured-model-img-wrap img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
}

.featured-model-content-col .featured-model-content {
    padding: 2.5rem 3rem;
}

.featured-model-tagline {
    color: #e63946;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.featured-model-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.featured-model-desc {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-featured-model {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0.75rem 1.25rem;
    background: #212529;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn-featured-model:hover {
    background: #000;
    color: #fff;
}

.btn-featured-model-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: 0.5rem;
    background: #e63946;
    color: #fff;
    font-size: 0.8rem;
}

@media (max-width: 767.98px) {
    .featured-model-img-col {
        min-height: 300px;
    }
    .featured-model-img-wrap {
        min-height: 300px;
        padding: 2rem;
    }
    .featured-model-img-wrap img {
        max-height: 260px;
    }
    .featured-model-content-col .featured-model-content {
        padding: 2rem 1.5rem;
    }
    .featured-model-title {
        font-size: 1.65rem;
    }
}

/* Modeller sayfası - navbar ile uyumlu, sidebar + grid */
.models-page-wrap {
    background-color: #f5f5f5;
    min-height: 100vh;
    padding-top: 5.5rem; /* fixed navbar yüksekliği + boşluk */
    padding-bottom: 3rem;
}

.models-page-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 576px) {
    .models-page-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (min-width: 992px) {
    .models-page-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.models-sidebar {
    background: #fff;
    border-right: 1px solid #eee;
}

.models-sidebar-inner {
    padding: 1rem 0;
    position: sticky;
    top: 5.5rem; /* navbar altında sticky */
}

@media (max-width: 991.98px) {
    .models-sidebar {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .models-sidebar-inner {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0.75rem 1rem;
        gap: 0;
        position: static;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        background: #fff;
    }
    .models-sidebar-inner::-webkit-scrollbar {
        display: none;
    }
    .models-sidebar-link {
        flex: 0 0 auto;
        border-bottom: none;
        border-right: 1px solid #eee;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .models-sidebar-link:last-child {
        border-right: none;
    }
    .models-sidebar-link.active {
        box-shadow: inset 0 -2px 0 0 #e63946;
    }
    .models-main {
        padding-top: 1rem;
    }
}

.models-sidebar-link {
    display: block;
    padding: 0.85rem 1.5rem;
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
    transition: color 0.2s;
}

.models-sidebar-link:hover {
    color: #666;
}

.models-sidebar-link.active {
    color: #e63946;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
    box-shadow: inset 0 -2px 0 0 #e63946;
}

.models-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.25rem;
    padding-left: 0.25rem;
}

.models-main {
    padding: 0 1rem 2rem 1.25rem;
}

@media (min-width: 992px) {
    .models-main {
        padding: 0 1.5rem 2rem 1.5rem;
    }
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}

.model-card {
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s;
}

.model-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.model-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
}

.model-card-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
    order: 1;
}

.model-card-img-wrap {
    position: relative;
    flex: 1;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    order: 2;
}

.model-card-img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
}

.model-card-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #e63946;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.model-card-btn {
    display: block;
    text-align: center;
    padding: 0.6rem 1rem;
    background: #fff;
    color: #999;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #ddd;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    order: 3;
}

.model-card:hover .model-card-btn {
    background: #f8f8f8;
    color: #666;
    border-color: #ccc;
}

.models-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.models-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

/* Footer */
footer {
    background-color: #212529;
    border-top: 1px solid #dee2e6;
    padding: 3rem 0;
}

footer .text-secondary {
    color: rgba(255,255,255,0.8) !important;
}

footer a.text-secondary:hover {
    color: #fff !important;
}

/* Tabs */
.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
    color: #6c757d;
    border: none;
    border-bottom: 2px solid transparent;
}

.nav-tabs .nav-link.active {
    background: transparent;
    color: #e63946;
    border-bottom: 2px solid #e63946;
}

.nav-tabs .nav-link:hover {
    color: #212529;
    border-color: transparent;
}

/* Blog */
.blog-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.form-control {
    background-color: #fff;
    border: 1px solid #ced4da;
    color: #212529;
}

.form-control:focus {
    background-color: #fff;
    border-color: #e63946;
    color: #212529;
    box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.25);
}

.form-label,
.text-muted {
    color: #495057 !important;
}
