/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #ffa500;
    font-weight: 600;
}

p, span, div {
    color: #ffffff;
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 0.1rem 0; /* Daha da az padding */
    min-height: 40px;
    transition: all 0.3s ease;
    z-index: 1050;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    min-height: 40px;
}

.logo-img {
    max-height: 56px !important;
    width: auto;
    margin-right: 8px;
    transform: scale(1);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-us {
    color: #ffa500;
}

.brand-car {
    color: #ffffff;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffa500 !important;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-button .btn:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffa500;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
}
.hero-image img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
    background: transparent;
}

/* Hero Stars Effect */
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-stars {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.hero-star {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #888 0%, #222 100%);
    opacity: 0.85;
    animation: star-blink 2s infinite alternate;
    box-shadow: 0 0 8px 2px #fff2, 0 0 16px 4px #fff1;
}
.hero-star.s1 { opacity: 0.7; animation-duration: 1.5s; }
.hero-star.s2 { opacity: 1; animation-duration: 2.2s; }
.hero-star.s3 { opacity: 0.9; animation-duration: 1.8s; }
.hero-star.s4 { opacity: 1; animation-duration: 2.7s; }
.hero-star.s5 { opacity: 0.95; animation-duration: 2.4s; }

@keyframes star-blink {
    0% { opacity: 0.5; filter: brightness(1.2); }
    50% { opacity: 1; filter: brightness(2.2); }
    100% { opacity: 0.5; filter: brightness(1.2); }
}

/* About Section */
.about-section {
    background-color: #0a0a0a;
}

.feature-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.1);
}

.feature-icon {
    color: #ffa500;
}

/* Offices Section */
.offices-section {
    background-color: #000000;
}

.office-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
}

.office-map iframe {
    border-radius: 15px 15px 0 0;
}

.office-info h3 {
    color: #ffa500;
    margin-bottom: 0.5rem;
}

.office-info p {
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding-top: 120px;
}

/* Search Section */
.search-section {
    background-color: #0a0a0a;
}

.search-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.form-label {
    color: #ffffff;
    font-weight: 500;
}

.form-select {
    background-color: #333;
    border: 1px solid #555;
    color: #ffffff;
}

.form-select:focus {
    background-color: #444;
    border-color: #ffa500;
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
    color: #ffffff;
}

/* Cars Section */
.cars-section {
    background-color: #000000;
}

/* Araç kartı görseli için boşluksuz, orantılı ve responsive görünüm (final) */
.car-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(135deg, #181818 60%, #222 100%);
    box-shadow: 0 4px 24px 0 #000a, 0 0 0 0 #ffa50000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.car-image img {
    max-width: 100%;
    max-height: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px 16px 0 0;
    background: #181818;
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
}
@media (max-width: 768px) {
    .car-image img {
        max-height: 140px;
    }
}
@media (max-width: 480px) {
    .car-image img {
        max-height: 90px;
    }
}
.car-info {
    padding: 20px 18px 0 18px;
    margin-top: 0;
}
@media (max-width: 768px) {
    .car-info {
        padding: 12px 6px 0 6px;
    }
}
@media (max-width: 480px) {
    .car-info {
        padding: 6px 2px 0 2px;
    }
}

.car-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ffa500;
    color: #000000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.car-info h3 {
    color: #ffa500;
    margin-bottom: 1rem;
}

.car-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.car-details span {
    color: #cccccc;
    font-size: 0.9rem;
}

.car-details i {
    color: #ffa500;
    margin-right: 5px;
}

.car-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature {
    background-color: #333;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.car-price {
    margin-bottom: 1rem;
}

.car-price p {
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}

.car-actions {
    display: flex;
    gap: 0.5rem;
}

.car-actions .btn {
    flex: 1;
}

/* Buttons */
.btn-warning {
    background-color: #ffa500;
    border-color: #ffa500;
    color: #000000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #e69500;
    border-color: #e69500;
    color: #000000;
    transform: translateY(-2px);
}

.btn-outline-warning {
    color: #ffa500;
    border-color: #ffa500;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-warning:hover {
    background-color: #ffa500;
    border-color: #ffa500;
    color: #000000;
    transform: translateY(-2px);
}

.btn-outline-light {
    color: #ffffff;
    border-color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid #333;
}

.footer h3, .footer h4 {
    color: #ffa500;
    margin-bottom: 1rem;
}

.footer p {
    color: #cccccc;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffa500;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #ffa500;
    color: #000000;
    transform: translateY(-2px);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #ffa500;
    margin-right: 10px;
    width: 20px;
}

.working-hours p {
    margin-bottom: 0.5rem;
}

.footer-divider {
    border-color: #333;
    margin: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .car-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .car-actions {
        flex-direction: column;
    }
    
    .search-card {
        padding: 1rem;
    }
    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button .btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .office-card {
        margin-bottom: 1rem;
    }
}

/* Animations */

/* Contact Page Styles */
.contact-section {
    background-color: #000000;
}

.contact-form-card, .contact-info-card, .map-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.contact-form-card h3, .contact-info-card h3, .map-card h3 {
    color: #ffa500;
    margin-bottom: 1.5rem;
}

.form-control {
    background-color: #333;
    border: 1px solid #555;
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 8px;
}

.form-control:focus {
    background-color: #444;
    border-color: #ffa500;
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
    color: #ffffff;
}

.form-control::placeholder {
    color: #999;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #ffa500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #000000;
    font-size: 1.2rem;
}

.contact-details h5 {
    color: #ffa500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-details p {
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffa500;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.social-buttons .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
}

.map-container iframe {
    border-radius: 15px;
}

.map-section {
    background-color: #0a0a0a;
}

/* About Page Styles */
.about-content {
    background-color: #000000;
}

.about-text h2 {
    color: #ffa500;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
}

.stats-row {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item h3 {
    color: #ffa500;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
}

/* Mission Vision */
.mission-vision {
    background-color: #0a0a0a;
}

.mission-card, .vision-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    height: 100%;
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: #ffa500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    color: #000000;
    font-size: 2rem;
}

.mission-card h3, .vision-card h3 {
    color: #ffa500;
    text-align: center;
    margin-bottom: 1rem;
}

.mission-card p, .vision-card p {
    color: #ffffff;
    text-align: center;
    line-height: 1.6;
}

/* Values */
.values-section {
    background-color: #000000;
}

.value-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: #ffa500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    color: #000000;
    font-size: 1.5rem;
}

.value-card h4 {
    color: #ffa500;
    margin-bottom: 1rem;
}

.value-card p {
    color: #ffffff;
    line-height: 1.6;
}

/* Team */
.team-section {
    background-color: #0a0a0a;
}

.team-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    margin-bottom: 1.5rem;
}

.team-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #ffa500;
}

.team-info h4 {
    color: #ffa500;
    margin-bottom: 0.5rem;
}

.team-position {
    color: #ffa500;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: #ffffff;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    background-color: #000000;
}

.advantage-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background-color: #ffa500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.advantage-icon i {
    color: #000000;
    font-size: 1.5rem;
}

.advantage-card h4 {
    color: #ffa500;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #ffffff;
    line-height: 1.6;
}

/* Car Detail Page Styles */
.car-detail-section {
    background-color: #000000;
}

/* Araç detay sayfası ana görseli büyük ve responsive */
.car-gallery .main-image img {
    width: 100%;
    height: 600px;
    max-width: 100%;
    max-height: 70vh;
    object-fit: cover;
    border-radius: 15px;
    background: #181818;
    display: block;
}
@media (max-width: 992px) {
    .car-gallery .main-image img {
        height: 400px;
        max-height: 50vh;
    }
}
@media (max-width: 768px) {
    .car-gallery .main-image img {
        height: 240px;
        max-height: 35vh;
    }
}
@media (max-width: 480px) {
    .car-gallery .main-image img {
        height: 140px;
        max-height: 25vh;
    }
}

.thumbnail-images .thumbnail-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-images .thumbnail-img:hover {
    opacity: 0.8;
    border-color: #ffa500;
}

.thumbnail-images .thumbnail-img.active {
    border: 2px solid #ffa500;
    box-shadow: 0 0 0 2px #fff, 0 2px 8px rgba(255,165,0,0.15);
}

.car-info-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.car-info-card h3 {
    color: #ffa500;
    margin-bottom: 1.5rem;
}

.car-specs {
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

.spec-item i {
    color: #ffa500;
    width: 20px;
    margin-right: 10px;
}

.spec-item span {
    color: #ffffff;
}

.car-features-list {
    margin-bottom: 2rem;
}

.car-features-list h4 {
    color: #ffa500;
    margin-bottom: 1rem;
}

.car-features-list ul {
    list-style: none;
    padding: 0;
}

.car-features-list li {
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.car-features-list li i {
    color: #ffa500;
    margin-right: 10px;
    font-size: 0.8rem;
}

.car-description {
    margin-bottom: 2rem;
}

.car-description h4 {
    color: #ffa500;
    margin-bottom: 1rem;
}

.car-description p {
    color: #ffffff;
    line-height: 1.6;
}

.car-actions {
    margin-top: 2rem;
}

.car-badge-large {
    background-color: #ffa500;
    color: #000000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

/* Reservation Section */
.reservation-section {
    background-color: #0a0a0a;
}

.reservation-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.reservation-card h3 {
    color: #ffa500;
}

/* Similar Cars */
.similar-cars {
    background-color: #000000;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: #ffa500;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #666;
}

/* Responsive adjustments for car detail */
@media (max-width: 768px) {
    .car-info-card {
        position: static;
        margin-top: 2rem;
    }
    
    .car-gallery .main-image img {
        height: 300px;
    }
    
    .thumbnail-images .thumbnail-img {
        height: 60px;
    }
}

/* Blog Page Styles */
.blog-section {
    background-color: #000000;
}

.blog-post {
    background-color: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.featured-post {
    border: 2px solid #ffa500;
}

.post-image {
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ffa500;
    color: #000000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-meta span {
    color: #cccccc;
}

.post-meta i {
    color: #ffa500;
    margin-right: 5px;
}

.post-content h2, .post-content h3 {
    color: #ffa500;
    margin-bottom: 1rem;
}

.post-content h2 a, .post-content h3 a {
    color: #ffa500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content h2 a:hover, .post-content h3 a:hover {
    color: #e69500;
}

.post-content p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Sidebar Styles */
.sidebar-widget {
    margin-bottom: 2rem;
}

.widget-card {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.widget-card h4 {
    color: #ffa500;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

.category-list a:hover {
    color: #ffa500;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.recent-post-content h6 {
    margin-bottom: 0.5rem;
}

.recent-post-content h6 a {
    color: #ffa500;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.3;
}

.recent-post-content h6 a:hover {
    color: #e69500;
}

.post-date {
    color: #cccccc;
    font-size: 0.8rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: #333;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #ffa500;
    color: #000000;
}

.newsletter-form p {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Pagination */
.pagination {
    margin-top: 3rem;
}

.page-link {
    background-color: #1a1a1a;
    border-color: #333;
    color: #ffffff;
    padding: 0.75rem 1rem;
}

.page-link:hover {
    background-color: #ffa500;
    border-color: #ffa500;
    color: #000000;
}

.page-item.active .page-link {
    background-color: #ffa500;
    border-color: #ffa500;
    color: #000000;
}

.page-item.disabled .page-link {
    background-color: #1a1a1a;
    border-color: #333;
    color: #666;
}

/* Responsive adjustments for blog */
@media (max-width: 768px) {
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .recent-post-item {
        flex-direction: column;
        text-align: center;
    }
    
    .recent-post-image {
        width: 100%;
        height: 120px;
        margin-bottom: 1rem;
    }
    
    .tags {
        justify-content: center;
    }
}

/* Blog Detail Page Styles */
.blog-detail-section {
    background-color: #000000;
}

.blog-detail-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    margin-bottom: 2rem;
}

.blog-header {
    padding: 2rem 2rem 1rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-meta span {
    color: #cccccc;
    display: flex;
    align-items: center;
}

.blog-meta i {
    color: #ffa500;
    margin-right: 5px;
}

.blog-meta .category {
    background-color: #ffa500;
    color: #000000;
    padding: 3px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
}

.blog-header h1 {
    color: #ffa500;
    font-size: 2rem;
    line-height: 1.3;
    margin: 0;
}

.blog-image {
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.blog-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-content {
    padding: 0 2rem 2rem;
    color: #ffffff;
    line-height: 1.8;
}

.blog-content h3 {
    color: #ffa500;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.blog-content p {
    margin-bottom: 1rem;
}

.blog-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-tags {
    padding: 0 2rem 1rem;
    border-top: 1px solid #333;
}

.blog-tags h5 {
    color: #ffa500;
    margin-bottom: 1rem;
}

.blog-share {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid #333;
}

.blog-share h5 {
    color: #ffa500;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.share-buttons .btn {
    font-size: 0.9rem;
}

/* Comments Section */
.comments-section {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #333;
}

.comments-section h3 {
    color: #ffa500;
    margin-bottom: 2rem;
}

.comment-form {
    background-color: #0a0a0a;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.comment-form h4 {
    color: #ffa500;
    margin-bottom: 1rem;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-avatar {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #ffa500;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-header h6 {
    color: #ffa500;
    margin: 0;
    font-weight: 600;
}

.comment-date {
    color: #cccccc;
    font-size: 0.8rem;
}

.comment-content p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.comment-content .btn-link {
    color: #ffa500;
    text-decoration: none;
    padding: 0;
    font-size: 0.9rem;
}

.comment-content .btn-link:hover {
    color: #e69500;
}

/* Related Posts */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.related-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-post-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.related-post-content h6 {
    margin-bottom: 0.5rem;
}

.related-post-content h6 a {
    color: #ffa500;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.3;
}

.related-post-content h6 a:hover {
    color: #e69500;
}

/* Responsive adjustments for blog detail */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 1.5rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-image {
        padding: 0 1rem;
    }
    
    .blog-content {
        padding: 0 1rem 1rem;
    }
    
    .blog-tags, .blog-share {
        padding: 1rem;
    }
    
    .comment-item {
        flex-direction: column;
        text-align: center;
    }
    
    .comment-avatar {
        align-self: center;
    }
    
    .comment-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .share-buttons {
        justify-content: center;
    }
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.alert-info {
    background-color: rgba(23, 162, 184, 0.2);
    color: #17a2b8;
    border-left: 4px solid #17a2b8;
}

.extraservice-card {
  box-shadow: 0 2px 16px 0 #222, 0 0 0 0 #ffa50000;
  transition: box-shadow 0.3s, border 0.3s, transform 0.3s;
  border: 1px solid #222;
  background: #111;
}
.extraservice-card:hover {
  box-shadow: 0 8px 32px 0 #ffa50088, 0 0 24px 4px #ffa50044;
  border: 2px solid #ffa500;
  transform: translateY(-10px) scale(1.03);
  z-index: 2;
}
.extraservice-card:hover .card-title {
  color: #ffb733 !important;
  text-shadow: 0 2px 8px #ffa50055;
} 
.logo-slider {
  width: 100%;
  overflow: hidden;
  background: #111;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  align-items: center;
  width: calc(200px * 20); /* logo sayısına göre ayarla */
  animation: scroll-logos 30s linear infinite;
}

.logo-track img {
  height: 60px;
  width: auto;
  margin: 0 30px;
  object-fit: contain;
  transition: transform 0.3s;
  background: transparent;
}

.logo-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .logo-track img {
    height: 40px;
    margin: 0 15px;
  }
}
/* LOGO SLIDER - KESİN RESPONSIVE ÇÖZÜM */
@media (max-width: 600px) {
  .logo-slider {
    overflow-x: hidden !important;
    white-space: nowrap !important;
    padding: 8px 0 !important;
    width: 100vw !important;
    box-sizing: border-box !important;
    background: #111 !important;
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important;  /* IE 10+ */
  }
  .logo-slider::-webkit-scrollbar {
    display: none !important; /* Chrome/Safari/Webkit */
  }
  .logo-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: auto !important;
    min-width: 100vw !important;
    animation: none !important;
  }
  .logo-track img {
    max-width: 48px !important;
    min-width: 32px !important;
    height: 36px !important;
    margin: 0 8px !important;
    display: block !important;
    object-fit: contain !important;
    background: transparent !important;
  }
}
nav .logo-img, .navbar .logo-img, .logo-img {
    max-height: 80px !important;
    height: auto !important;
    width: auto !important;
    min-height: 0 !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 8px 0 0 !important;
    display: inline-block !important;
}
.page-header {
    padding-top: 140px !important;
    padding-bottom: 40px !important;
    margin-top: 0 !important;
}
@media (min-width: 768px) {
  .search-card form .form-label {
    margin-bottom: 0.5rem;
  }
  .search-card form .form-control,
  .search-card form .form-select {
    min-height: 48px;
  }
  .search-card form .btn {
    min-height: 48px;
  }
}
#hero-split-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 100;
  pointer-events: none;
  display: flex;
  transition: opacity 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}

#hero-split-overlay .split-piece {
  width: 50%;
  height: 100%;
  /* Modern degrade ve blur efekti */
  background: linear-gradient(120deg, #181818 60%, #222 100%);
  box-shadow: 0 0 60px 0 #000a, 0 0 120px 0 #ffa50022;
  backdrop-filter: blur(2.5px);
  transition: transform 1s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.7s;
  will-change: transform;
  border-radius: 0 40px 40px 0;
  opacity: 0.98;
}

#hero-split-overlay .right {
  border-radius: 40px 0 0 40px;
  box-shadow: 0 0 60px 0 #000a, 0 0 120px 0 #ffa50022;
}

#hero-split-overlay .left {
  border-right: 1px solid #222;
  transform: translateX(0);
}

#hero-split-overlay .right {
  border-left: 1px solid #222;
  transform: translateX(0);
}

#hero-split-overlay.split .left {
  transform: translateX(-120%);
  box-shadow: 0 0 0 0 #0000;
  opacity: 0.7;
}

#hero-split-overlay.split .right {
  transform: translateX(120%);
  box-shadow: 0 0 0 0 #0000;
  opacity: 0.7;
}

/* Car Detail Gallery Carousel */
.thumbnail-carousel-wrapper {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 10px;
}
.thumbnail-carousel {
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: max-content;
    min-width: 100%;
    align-items: center;
    scrollbar-width: thin;
    scrollbar-color: #ffa500 #222;
}
.thumbnail-carousel::-webkit-scrollbar {
    height: 6px;
    background: #222;
}
.thumbnail-carousel::-webkit-scrollbar-thumb {
    background: #ffa500;
    border-radius: 4px;
}
.thumbnail-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    background: #111;
}
.thumbnail-img:hover {
    border: 2px solid #ffa500;
    transform: scale(1.05);
}
.thumbnail-img.active {
    border: 2px solid #ffa500;
    box-shadow: 0 0 0 2px #fff, 0 2px 8px rgba(255,165,0,0.15);
}
@media (max-width: 768px) {
    .thumbnail-img {
        width: 60px;
        height: 45px;
    }
    .thumbnail-carousel {
        gap: 8px;
    }
}

/* Ofislerimiz bölümü - modern ve profesyonel görünüm (güncellenmiş hover ve butonlar) */
.office-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 420px;
  max-height: 480px;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 #0008, 0 0 0 0 #ffa50000;
  border: 1.5px solid #222;
  background: #181818;
  overflow: hidden;
  transition: box-shadow 0.3s, border 0.3s, transform 0.3s, filter 0.3s;
}
.office-card:hover {
  box-shadow: 0 12px 40px 0 #ffa50099, 0 0 32px 8px #ffa50033;
  border: 2.5px solid #ffa500;
  transform: translateY(-12px) scale(1.035);
  z-index: 3;
  filter: brightness(1.08) saturate(1.12);
}
.office-card:hover .office-map iframe {
  filter: grayscale(0%) contrast(1.18) brightness(1.18) drop-shadow(0 0 16px #ffa50055);
}
.office-map {
  flex: 0 0 220px;
  min-height: 220px;
  max-height: 220px;
  overflow: hidden;
  background: #23272f;
  border-radius: 20px 20px 0 0;
  border-bottom: 1.5px solid #222;
  position: relative;
}
.office-map iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 220px !important;
  max-height: 220px !important;
  display: block;
  border-radius: 20px 20px 0 0;
  border: none;
  filter: grayscale(10%) contrast(1.08) brightness(1.08);
  transition: filter 0.3s;
}
.office-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #181818;
  border-radius: 0 0 20px 20px;
  min-height: 160px;
  padding: 28px 22px 22px 22px;
  box-shadow: 0 -2px 12px 0 #0002;
}
.office-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffa500;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
}
.office-info p {
  color: #eaeaea;
  font-size: 1.08rem;
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.office-card:hover .office-info h3,
.office-card:hover .office-info a.btn {
  color: #ffa500 !important;
  border-color: #ffa500 !important;
  background: #fff1 !important;
}
.office-card .office-info a.btn {
  transition: color 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 8px;
  padding: 10px 0;
  margin-top: auto;
  width: 100%;
  min-width: 160px;
  max-width: 100%;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px 0 #ffa50011;
}
.office-card:hover .office-info a.btn {
  box-shadow: 0 4px 16px 0 #ffa50044;
  background: #fff7 !important;
  color: #ffa500 !important;
  border-color: #ffa500 !important;
}
@media (max-width: 991px) {
  .office-card {
    min-height: 380px;
    max-height: 440px;
  }
  .office-map, .office-map iframe {
    min-height: 180px !important;
    max-height: 180px !important;
  }
}
@media (max-width: 767px) {
  .office-card {
    min-height: 320px;
    max-height: 380px;
  }
  .office-map, .office-map iframe {
    min-height: 140px !important;
    max-height: 140px !important;
  }
  .office-info {
    padding: 18px 10px 16px 10px;
  }
  .office-info h3 {
    font-size: 1.2rem;
  }
  .office-info p {
    font-size: 0.98rem;
  }
  .office-card .office-info a.btn {
    font-size: 0.98rem;
    padding: 8px 0;
    min-width: 120px;
  }
}

/* Blog Kartları Responsive ve Profesyonel Görünüm */
.blog-post.card {
    border-radius: 16px;
    background: #181818;
    margin-bottom: 2rem;
    transition: box-shadow 0.2s;
}
.blog-post.card:hover {
    box-shadow: 0 8px 32px rgba(255, 176, 0, 0.12);
}
.blog-post .post-image img {
    object-fit: cover;
    border-radius: 0;
    min-height: 100px;
    max-height: 350px;
}
@media (max-width: 991px) {
    .blog-post .post-image img {
        max-height: 220px;
    }
}
@media (max-width: 767px) {
    .blog-post .post-image img {
        max-height: 160px;
    }
    .blog-post .post-content {
        padding: 1rem !important;
    }
}

/* Araç kartlarında butonlar her zaman en altta hizalı ve profesyonel */
.car-card {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #23252b;
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 #000a;
    overflow: hidden;
    padding-bottom: 24px;
    flex-grow: 1;
}
.car-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.car-actions {
    margin-top: auto;
    display: flex;
    gap: 0.5rem;
}
.car-actions .btn {
    flex: 1;
}
@media (max-width: 992px) {
    .car-card {
        min-height: 420px;
    }
}
@media (max-width: 768px) {
    .car-card {
        min-height: 320px;
    }
}
@media (max-width: 480px) {
    .car-card {
        min-height: 220px;
    }
}