/* Reset and Base Styles */
:root {
    --o: #92ff63;
    --d: #ff5e39;
    --b: #4083c9;
    --lk: #fe9546;
    --empty: #c8c8c8
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "all-round-gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Mobile Container Improvements */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
}

/* Contracts Page Styles */
.contracts-page {
    margin-top: 80px;
    padding: 40px 0;
    min-height: calc(100vh - 80px);
    background: #f8f9fa;
}

.contracts-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sidebar Styles */
.contracts-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 30px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.contracts-sidebar h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    padding: 0 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-menu a {
    display: block;
    padding: 15px 30px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.sidebar-menu a:hover {
    background: #f8f9fa;
    color: #DC143C;
    border-left-color: #DC143C;
}

.sidebar-menu a.active {
    background: #DC143C;
    color: #fff;
    border-left-color: #B91C3C;
}

.sidebar-menu a.active::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #DC143C;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* Content Area Styles */
.contracts-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: 600px;
}

.contract-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #DC143C;
    position: relative;
}

.contract-section h1::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #B91C3C;
}

.contract-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 35px 0 20px 0;
    padding-left: 15px;
    border-left: 4px solid #DC143C;
}

.contract-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #444;
    margin: 25px 0 15px 0;
}

.contract-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.contract-section ul {
    margin: 20px 0;
    padding-left: 0;
}

.contract-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.contract-section ul li::before {
    content: '•';
    color: #DC143C;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.contract-section ul li strong {
    color: #333;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .contracts-layout {
        grid-template-columns: 250px 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .contracts-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contracts-page {
        margin-top: 70px;
        padding: 20px 0;
    }

    .contracts-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .contracts-sidebar {
        position: static;
        order: 2;
    }

    .contracts-content {
        padding: 25px;
        order: 1;
    }

    .contract-section h1 {
        font-size: 28px;
    }

    .contract-section h2 {
        font-size: 22px;
    }

    .contract-section h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .contracts-content {
        padding: 20px;
    }

    .contract-section h1 {
        font-size: 24px;
    }

    .contract-section h2 {
        font-size: 20px;
    }

    .contract-section p,
    .contract-section ul li {
        font-size: 15px;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 8px;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-top: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #DC143C;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #DC143C;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 2px 10px;
}

.dropdown-menu a:hover {
    background: #DC143C;
    color: #fff;
    transform: translateX(5px);
}

.dropdown-menu a::after {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
}

.contact-btn {
    background: #de1e26;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.contact-btn:hover {
    background: #B91C3C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: #DC143C;
    border-color: #fff;
    transform: scale(1.3);
}

/* Mobile touch improvements */
@media (max-width: 768px) {
    .dot {
        width: 16px;
        height: 16px;
        margin: 0 2px;
    }

    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }

    .hero-slider {
        cursor: grab;
    }

    .hero-slider:active {
        cursor: grabbing;
    }
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(220, 20, 60, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    /* grid-template-columns: 1fr 400px; */
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background: #DC143C;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #B91C3C;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.4);
}

.hero-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    color: #DC143C;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: w0px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group select {
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

@media (max-width: 768px) {
    .form-group select {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .form-group select {
        padding: 8px 10px;
        font-size: 12px;
    }
}

.form-group select:focus {
    outline: none;
    border-color: #DC143C;
}

.search-btn {
    background: #DC143C;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .search-btn {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .search-btn {
        padding: 10px;
        font-size: 13px;
    }
}

.search-btn:hover {
    background: #B91C3C;
    transform: translateY(-2px);
}

/* Featured Vehicles Section */
.featured-vehicles {
    padding: 100px 0;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .featured-vehicles {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .featured-vehicles {
        padding: 40px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.7rem;
    }
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #DC143C;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.vehicles-grid {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .vehicles-grid {
        margin-top: 30px;
    }

    .vehicles-grid .slick-slide {
        padding: 0 5px;
    }
}

@media (max-width: 480px) {
    .vehicles-grid {
        margin-top: 20px;
    }

    .vehicles-grid .slick-slide {
        padding: 0 3px;
    }
}

/* Slick Carousel Custom Styles */
.vehicles-grid .slick-slide {
    padding: 0 15px;
}

.vehicles-grid .slick-dots {
    bottom: -50px;
}

.vehicles-grid .slick-dots li button:before {
    color: #DC143C;
    font-size: 12px;
}

.vehicles-grid .slick-dots li.slick-active button:before {
    color: #DC143C;
}

.vehicles-grid .slick-prev,
.vehicles-grid .slick-next {
    width: 50px;
    height: 50px;
    background: #DC143C;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.vehicles-grid .slick-prev:hover,
.vehicles-grid .slick-next:hover {
    background: #B91C3C;
    transform: scale(1.1);
}

.vehicles-grid .slick-prev {
    left: -25px;
}

.vehicles-grid .slick-next {
    right: -25px;
}

.vehicles-grid .slick-prev:before,
.vehicles-grid .slick-next:before {
    display: none;
}

.vehicles-grid .slick-prev i,
.vehicles-grid .slick-next i {
    color: white;
    font-size: 18px;
    line-height: 50px;
}

.vehicles-grid .slick-track {
    display: flex;
    align-items: stretch;
}

.vehicles-grid .slick-slide>div {
    height: 100%;
}

.vehicles-grid .vehicle-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vehicle-card {
    background: white;
    /* border-radius: 20px; */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* border-radius: 15px; */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    /* margin: 10px; */
    border: 2px solid transparent;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.1);
}

.vehicle-card.featured,
.vehicle-card:hover {
    border: 2px solid #DC143C;
    transform: scale(1.05);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #DC143C;
}

.vehicle-card div i:hover {
    border: 3px solid #DC143C;
    transform: scale(1.05);
}

.vehicle-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    /* border-radius: 20px 20px 0 0; */
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.1);
}

.vehicle-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #DC143C;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.vehicle-badge.special {
    background: linear-gradient(135deg, #DC143C, #FF6B6B);
    animation: pulse 2s infinite;
}

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

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.vehicle-info {
    padding: 25px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .vehicle-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .vehicle-info {
        padding: 15px;
    }
}

.vehicle-info h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 1;
    vertical-align: top;
}

.vehicle-card:hover .vehicle-info h3 {
    color: #DC143C;
}

.vehicle-info>p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.vehicle-subtitle {
    color: #333;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.vehicle-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.vehicle-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #666;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.vehicle-card:hover .vehicle-features span {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.vehicle-features i {
    color: #DC143C;
}

.vehicle-price {
    display: block;
    text-align: left;
    /* margin-bottom: 15px; */
}

.vehicle-card:hover .price {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.2);
}

.view-btn-container {
    text-align: center;
    margin-top: auto;
    padding-top: 10px;
}

.view-btn {
    background: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 120px;
}

.view-btn:hover {
    background: #DC143C;
    transform: scale(1.05);
}

.vehicle-card:hover .view-btn {
    background: #DC143C;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
    font-size: 14px;
}

.view-btn:hover {
    background: #DC143C;
    transform: translateY(-2px);
}

/* Timeline Section */
.timeline-section {
    background: #f5f5f5;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 50px;
}

.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

/* Hide timeline on mobile devices */
@media (max-width: 768px) {
    .timeline {
        display: none;
    }
}

.step {
    position: relative;
    text-align: center;
    width: 14%;
}

.circle {
    width: 40px;
    height: 40px;
    background: #e50000;
    border: 4px solid #fff;
    outline: 3px solid #e50000;
    border-radius: 50%;
    margin: auto;
    position: relative;
    z-index: 2;
}

.step p {
    margin-top: 15px;
    font-weight: bold;
    font-size: 13px;
    padding-left: 15px;
    text-align: center;
}

/* Connecting lines between circles */
.step:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 1;
    height: 0;
    border-top: 3px dashed #e50000;
    transform-origin: 0 0;
}

/* Zigzag positioning */
.step:nth-child(odd) .circle {
    transform: translateY(-40px);
}

.step:nth-child(even) .circle {
    transform: translateY(40px);
}

.step:nth-child(odd) p {
    transform: translateY(-40px);
}

.step:nth-child(even) p {
    transform: translateY(40px);
}

/* Adjust connecting lines for zigzag */
.step:nth-child(odd):not(:last-child)::after {
    top: -20px;
    left: 50%;
    width: 190px;
    transform: rotate(25deg);
}

.step:nth-child(even):not(:last-child)::after {
    top: 60px;
    left: 50%;
    width: 190px;
    transform: rotate(-25deg);
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: white;
}

@media (max-width: 768px) {
    .why-choose {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .why-choose {
        padding: 40px 0;
    }
}

.why-choose-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-choose-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 25px;
    position: relative;
}

.why-choose-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #DC143C;
    border-radius: 2px;
}

.why-choose-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    /* max-width: 800px; */
    margin: 0 auto;
}

.features-network {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    padding: 50px 20px;
}

.feature-node {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Cross layout positioning */
.feature-node[data-feature="special-selection"] {
    grid-column: 1;
    grid-row: 1;
}

.feature-node[data-feature="expert-review"] {
    grid-column: 2;
    grid-row: 1;
}

.feature-node[data-feature="special-service"] {
    grid-column: 3;
    grid-row: 1;
}

.feature-node[data-feature="support"] {
    grid-column: 4;
    grid-row: 1;
}

.feature-node[data-feature="quality"] {
    grid-column: 2 / span 2;
    grid-row: 2;
    justify-self: center;
}

.feature-node[data-feature="satisfaction"] {
    grid-column: 2;
    grid-row: 3;
}

.feature-node[data-feature="variety"] {
    grid-column: 3;
    grid-row: 3;
}

.node-circle {
    background: linear-gradient(135deg, #DC143C, #FF6B6B);
    color: white;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.node-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Electric Vehicles Section */
.electric-vehicles {
    padding: 100px 0;
    background: #f8f9fa;
}

.electric-slider {
    margin-top: 50px;
    position: relative;
}

.electric-slider .slick-dots {
    bottom: -50px;
    text-align: center;
}

.electric-slider .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.electric-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.electric-slider .slick-dots li.slick-active button {
    background: #de1e26;
    transform: scale(1.2);
}

.electric-slider .slick-prev,
.electric-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgb(229 28 38);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.electric-slider .slick-prev {
    left: -25px;
}

.electric-slider .slick-next {
    right: -25px;
}

.electric-slider .slick-prev:hover,
.electric-slider .slick-next:hover {
    background: rgba(16, 185, 129, 1);
    transform: translateY(-50%) scale(1.1);
}

.electric-slider .slick-prev:before {
    content: '‹';
    font-size: 24px;
    display: none;
}

.electric-slider .slick-next:before {
    content: '›';
    font-size: 24px;
    display: none;
}

.electric-card,
.commercial-card {
    background: white;
    /* border-radius: 15px; */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    margin: 10px;
    border: 2px solid transparent;
    min-height: 450px !important;
    display: flex;
    flex-direction: column;
}

.electric-card:hover,
.commercial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #e5e5e5;
}

.electric-image,
.commercial-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #f8f9fa;
}

.electric-image img .commercial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.electric-content,
.commercial-content {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.brand-logo {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.brand-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.vehicle-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.3;
}

.vehicle-year {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.vehicle-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 16px;
    opacity: 0.7;
}

.electric-price,
.commercial-price {
    margin-bottom: 15px;
}

.electric-price .price,
.commercial-price .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #DC143C;
    transition: all 0.3s ease;
}

.buy-btn {
    background: #de1e26;
    color: white;
    border: none;
    padding: 12px 30px;
    /* border-radius: 25px; */
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.buy-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Electric Vehicles Responsive */
@media (max-width: 768px) {
    .electric-card {
        margin: 5px;
    }

    .electric-image {
        height: 150px;
    }

    .electric-content {
        padding: 15px;
    }

    .vehicle-name {
        font-size: 1.1rem;
    }

    .electric-price .price {
        font-size: 1.2rem;
    }
}

/* Commercial Vehicles Section */
.commercial-vehicles {
    padding: 100px 0;
    background: white;
}

.commercial-slider,
.commercial-slider2 {
    margin-top: 50px;
    position: relative;
}

.commercial-slider .slick-dots,
.commercial-slider2 .slick-dots {
    bottom: -50px;
    text-align: center;
}

.commercial-slider .slick-dots li,
.commercial-slider2 .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.commercial-slider .slick-dots li button,
.commercial-slider2 .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.commercial-slider .slick-dots li.slick-active button,
.commercial-slider2 .slick-dots li.slick-active button {
    background: #de1e26;
    transform: scale(1.2);
}

.commercial-slider .slick-prev,
.commercial-slider .slick-next,
.commercial-slider2 .slick-prev,
.commercial-slider2 .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgb(222 30 38);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide slick carousel navigation buttons on mobile */
@media (max-width: 768px) {

    .slick-prev,
    .slick-next {
        display: none !important;
    }
}

.commercial-slider .slick-prev,
.commercial-slider2 .slick-prev {
    left: -25px;
}

.commercial-slider .slick-next,
.commercial-slider2 .slick-next {
    right: -25px;
}

.commercial-slider .slick-prev:hover,
.commercial-slider .slick-next:hover,
.commercial-slider2 .slick-prev:hover,
.commercial-slider2 .slick-next:hover {
    background: rgba(245, 158, 11, 1);
    transform: translateY(-50%) scale(1.1);
}

.commercial-slider .slick-prev:before,
.commercial-slider2 .slick-prev:before {
    content: '‹';
    font-size: 24px;
    display: none;
}

.commercial-slider .slick-next:before,
.commercial-slider2 .slick-next:before {
    content: '›';
    font-size: 24px;
    display: none;
}

/* .commercial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #f1f1f1;
} */

.commercial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #DC143C;
}

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

.commercial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.commercial-card:hover .commercial-image img {
    transform: scale(1.1);
}

.commercial-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.commercial-info {
    padding: 25px;
}

.commercial-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.commercial-info>p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.commercial-price {
    /* display: flex; */
    /* justify-content: space-between; */
    align-items: center;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.reviews-slider {
    margin-top: 60px;
    position: relative;
}

.review-item {
    padding: 0 15px;
    outline: none;
}

.review-content {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.review-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 60px;
    color: #DC143C;
    font-family: serif;
    line-height: 1;
}

.review-stars {
    margin-bottom: 25px;
}

.review-stars i {
    color: #FFD700;
    font-size: 18px;
    margin: 0 2px;
}

.review-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.review-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #DC143C;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: #DC143C;
    font-weight: 600;
}

/* Slick Carousel Custom Styles */
.reviews-slider .slick-dots {
    bottom: -60px;
}

.reviews-slider .slick-dots li button:before {
    font-size: 12px;
    color: #DC143C;
    opacity: 0.5;
}

.reviews-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #DC143C;
}

.reviews-slider .slick-prev,
.reviews-slider .slick-next {
    width: 50px;
    height: 50px;
    background: #DC143C;
    border-radius: 50%;
    z-index: 10;
}

.reviews-slider .slick-prev:before,
.reviews-slider .slick-next:before {
    font-size: 20px;
    color: white;
}

.reviews-slider .slick-prev {
    left: -25px;
}

.reviews-slider .slick-next {
    right: -25px;
}

.reviews-slider .slick-prev:hover,
.reviews-slider .slick-next:hover {
    background: #B91C3C;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 0;
    text-align: left;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 70%);
    z-index: -1;
}

.cta-content {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(220 20 60 / 50%);
    /* backdrop-filter: blur(5px); */
    /* padding: 80px 0; */
    z-index: 1;
}

.cta-content .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-text {
    /* max-width: 550px; */
    /* margin-right: 40px; */
    padding-top: 20px;
}

.cta-button-wrapper {
    flex-shrink: 0;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-content p {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 480px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-content .cta-button {
    background: #DC143C;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
    position: relative;
    z-index: 2;
}

.cta-content .cta-button:hover {
    background: #B91C3C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
}

/* About Page Styles */
.about-hero {
    position: relative;
    padding: 0;
    text-align: center;
    overflow: hidden;
    min-height: 400px;
}

.page-title {
    background: #e31e24;
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.page-title h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.about-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.about-hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    position: relative;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hakkimizda Page Title Specific Styles */
body.hakkimizda-page .page-title {
    background-color: #de1e26;
    /* padding: 80px 0; */
    /* text-align: center; */
    position: relative;
    /* box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3); */
    width: 40%;
    border-radius: 20px;
    text-align: center;
    padding: 10px;
    margin: -30px auto;
    /* font-size: 12px; */
}

body.hakkimizda-page .page-title h1 {
    font-size: 1.5rem;
    /* font-weight: 800; */
    color: #ffffff;
    /* margin: 0; */
    /* letter-spacing: 3px; */
    /* text-transform: uppercase; */
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
    /* position: relative; */
    /* z-index: 2; */
}

body.hakkimizda-page .page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.6;
    z-index: 1;
}

.about-content {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap: 0px;
    align-items: flex-start;
    margin-top: 60px;
    background-color: #f2f2f2;
}

.about-intro h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.4;
}

.about-intro p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: justify;
    padding: 20px;
}

/* Vision Mission Values Section */
.vmv-section {
    margin-top: 60px;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vmv-item {
    background: #f2f2f2;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vmv-item:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
}

.vmv-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.vmv-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Image Section */
.image-section {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.about-image-container {
    width: 100%;
    height: 150px;
    margin: 0;
    padding: 0;
    background-image: url('../img/22.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-features {
    margin-top: 50px;
}

/* Team Page Styles */
.team-hero {
    position: relative;
    height: 100vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.team-hero .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Ekibimiz Page Specific Hero Styles */
.ekibimiz-hero .hero-bg-img {
    object-position: center top;
}

.team-hero .hero-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgb(222 31 38 / 80%);
    z-index: -1;
}

.team-hero .hero-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    color: white;
    z-index: 1;
    gap: 10px;
    width: 100%;
}

.team-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.team-hero p {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
}

/* Team Section */
.team-section {
    /* padding: 100px 0; */
    /* background-color: #f8f9fa; */
}

.team-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.team-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* Team Member Card */
.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 8px 25px rgba(0,0,0,0.1); */
    position: relative;
    /* border: 3px solid #DC143C; */
}

.member-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin: 15px;
    width: calc(100% - 30px);
    border-radius: 20px;
    /* border: 4px solid #DC143C; */
    padding: 8px;
    background: #DC143C;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(220, 20, 60, 0.85), rgba(185, 28, 60, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    border-radius: 15px;
}

.member-overlay .social-links {
    display: flex;
    gap: 12px;
}

.member-overlay .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.member-overlay .social-links a {
    background: white;
    color: #DC143C;
}

.member-info {
    /* padding: 20px; */
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    /* margin-bottom: 5px; */
}

.member-position {
    font-size: 1.2rem;
    color: #DC143C;
    font-weight: 600;
    /* margin-bottom: 8px; */
    text-transform: capitalize;
    /* letter-spacing: 1px; */
}

.member-phone {
    font-size: 1.2rem;
    color: #000;
    font-weight: 400;
    line-height: 1;
}

/* About Slider Section */
.about-slider-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-slider-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
}

.about-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.about-slide {
    display: none;
    position: relative;
    /* height: 400px; */
}

.about-slide.active {
    display: block;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.about-slide-overlay {
    position: absolute;
    top: 180px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(220 20 60 / 50%);
    display: flex;
    align-items: top;
    justify-content: center;
    /* border-radius: 15px; */
    /* backdrop-filter: blur(2px); */
}

.about-slide-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.about-slide-content h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-slide-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #dc267f;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 127, 0.3);
}

.about-slider-arrow:hover {
    background-color: #b91c5e;
    transform: translateY(-50%) scale(1.1);
}

.about-slider-prev {
    left: 20px;
}

.about-slider-next {
    right: 20px;
}

.about-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.about-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.about-slider-dot.active {
    background-color: #dc267f;
}

.about-slider-dot:hover {
    background-color: #ff5733;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #DC143C;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.about-image {
    position: relative;
    padding: 20px;
}

.about-image img {
    width: 100%;
    object-fit: cover;
    /* border-radius: 15px; */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #DC143C;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 500;
}

.team-section {
    /* padding: 100px 0; */
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
}

/* Responsive team member styles for smaller screens */
@media (max-width: 768px) {
    .team-member {
        /* border: 2px solid #DC143C; */
        border-radius: 15px;
    }

    .member-image {
        height: 250px;
        margin: 10px;
        width: calc(100% - 20px);
        border-radius: 18px;
        border: 3px solid #DC143C;
        padding: 6px;
        background: #DC143C;
    }

    .member-image img {
        border-radius: 14px;
    }

    .member-info {
        /* padding: 15px; */
    }

    .member-info h3 {
        font-size: 1.2rem;
    }

    .member-position {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .team-member {
        /* border: 2px solid #DC143C; */
    }

    .member-image {
        height: 220px;
        margin: 8px;
        width: calc(100% - 16px);
        border-radius: 15px;
        border: 2px solid #DC143C;
        padding: 4px;
        background: #DC143C;
    }

    .member-image img {
        border-radius: 12px;
    }

    .member-overlay .social-links a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-title h1 {
        font-size: 18px !important;
    }

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

    .about-hero-content p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro h2 {
        font-size: 1.5rem;
    }

    .about-intro p {
        text-align: left;
    }

    .vmv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vmv-item {
        padding: 25px 20px;
    }

    .image-section {
        width: 100%;
        overflow: hidden;
    }

    .about-image-container {
        width: 100%;
        height: 150px;
        background-image: url('../img/22.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .about-slider-section {
        padding: 40px 0;
    }

    .about-slider-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .about-slide {
        height: 300px;
    }

    .about-slide-content h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

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

    .about-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .about-slider-prev {
        left: 10px;
    }

    .about-slider-next {
        right: 10px;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

@media (max-width: 480px) {
    .page-title h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .page-title {
        padding: 30px 0;
    }

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

    .about-content {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 0px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    /* Changed from flex-start to center */
    /* padding-top: 20px; */
    /* Added padding to center from top */
    /* vertical-align: middle; */
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    position: relative;
}

.footer-contact::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #DC143C;
    border-radius: 2px;
}

.footer-contact h4,
.footer-contact .contact-info {
    margin-left: 20px;
}

.footer-contact h4 {
    color: #DC143C;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item span {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.footer-services h4,
.footer-info h4,
.footer-follow h4 {
    color: #DC143C;
    font-size: 16px;
    font-weight: 600;
    /* margin-bottom: 20px; */
}

.footer-services ul,
.footer-info ul {
    list-style: none;
}

.footer-services ul li,
.footer-info ul li {
    margin-bottom: 8px;
}

.footer-services ul li a,
.footer-info ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-services ul li a:hover,
.footer-info ul li a:hover {
    color: #DC143C;
}

.footer-follow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-follow .follow-content {
    flex: 1;
}

.footer-follow .follow-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-section {
    text-align: center;
}

.social-section p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
}

.footer-follow p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.newsletter {
    display: flex;
    margin-bottom: 20px;
    max-width: 300px;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: 1px solid #333;
    background: #2a2a2a;
    color: #fff;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
}

.newsletter input::placeholder {
    color: #999;
}

.newsletter button {
    background: #DC143C;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
}

.newsletter button:hover {
    background: #B91C3C;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-links a:hover {
    background: #DC143C;
    transform: translateY(-2px);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-follow {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-follow .follow-actions {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .newsletter {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-contact::before {
        display: none;
    }

    .footer-contact h4,
    .footer-contact .contact-info {
        margin-left: 0;
    }

    .footer-logo img {
        height: 50px;
    }

    .newsletter {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter input {
        border-radius: 5px;
    }

    .newsletter button {
        border-radius: 5px;
    }
}

.footer-bottom {
    background: #de1e26;
    padding: 15px 0;
    text-align: center;
    margin-top: 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    font-size: 12px;
}

.footer-bottom p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.footer-divider {
    margin: 0 10px;
    color: #fff;
}

/* Responsive Design for Search Filters */
@media (max-width: 1024px) {
    .hero-search-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-search-group {
        min-width: 280px;
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }

    .secondary-filter-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .secondary-filter-group {
        min-width: 120px;
    }

    .vehicles-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .vehicles-hero {
        height: 400px;
    }

    .vehicles-hero h1 {
        font-size: 2.5rem;
    }

    .vehicles-hero p {
        font-size: 1.1rem;
    }

    .secondary-filters-section {
        padding: 40px 0;
    }

    .filters-header h3 {
        font-size: 1.8rem;
    }

    .filters-header p {
        font-size: 1rem;
    }

    .hero-search-row {
        margin-top: 30px;
        gap: 15px;
    }

    .hero-search-group {
        min-width: 250px;
        display: none;
    }

    .hero-search-select {
        padding: 16px 40px 16px 16px;
        font-size: 14px;
    }

    .secondary-filter-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .secondary-filter-group {
        min-width: auto;
    }

    .secondary-filter-select {
        padding: 6px 30px 12px 12px;
        font-size: 13px;
    }

    .secondary-filter-group label {
        padding: 6px 12px 0;
        font-size: 11px;
    }

    .filter-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-filter-reset,
    .btn-filter-apply {
        width: 200px;
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .vehicles-hero {
        height: 350px;
    }

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

    .vehicles-hero p {
        font-size: 1rem;
    }

    .secondary-filters-section {
        padding: 30px 0;
    }

    .filters-header h3 {
        font-size: 1.5rem;
    }

    .filters-header p {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .hero-search-row {
        margin-top: 25px;
        gap: 10px;
        grid-template-columns: 1fr;
    }

    .hero-search-select {
        padding: 14px 35px 14px 14px;
        font-size: 13px;
    }

    .secondary-filter-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }

    .secondary-filter-select {
        padding: 5px 25px 10px 10px;
        font-size: 12px;
    }

    .secondary-filter-group label {
        padding: 5px 10px 0;
        font-size: 10px;
    }

    .btn-filter-reset,
    .btn-filter-apply {
        width: 180px;
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        margin-right: 30px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        padding: 30px 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        /* margin: 15px 0; */
    }

    .nav-menu a {
        font-size: 18px;
        padding: 15px 20px;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Mobile Dropdown */
    .dropdown-toggle {
        position: relative;
    }

    .dropdown-toggle i {
        float: right;
        margin-top: 5px;
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(220, 20, 60, 0.1);
        box-shadow: none;
        border-radius: 0;
        margin: 10px 0;
        display: none;
    }

    /* Mobile Slider Dots */
    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
        border-width: 1px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 10px 20px;
        margin: 0;
        border-radius: 0;
        font-size: 14px;
    }

    .header-actions {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 10px;
        justify-items: center;
    }

    .hero-text {
        width: 100%;
        max-width: 600px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 35px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 16px;
    }

    .hero-form {
        display: none;
    }

    /* Mobile Carousel Adjustments */
    .vehicles-grid .slick-prev,
    .vehicles-grid .slick-next {
        width: 40px;
        height: 40px;
    }

    .vehicles-grid .slick-prev {
        left: -20px;
    }

    .vehicles-grid .slick-next {
        right: -20px;
    }

    .vehicles-grid .slick-prev i,
    .vehicles-grid .slick-next i {
        font-size: 14px;
        line-height: 40px;
    }

    .vehicle-card.featured {
        transform: none;
    }

    .features-network {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
        gap: 30px;
        height: auto;
        padding: 30px 10px;
    }

    .feature-node[data-feature="special-selection"] {
        grid-column: 1;
        grid-row: 1;
    }

    .feature-node[data-feature="expert-review"] {
        grid-column: 2;
        grid-row: 1;
    }

    .feature-node[data-feature="special-service"] {
        grid-column: 1;
        grid-row: 2;
    }

    .feature-node[data-feature="support"] {
        grid-column: 2;
        grid-row: 2;
    }

    .feature-node[data-feature="quality"] {
        grid-column: 1 / span 2;
        grid-row: 3;
        justify-self: center;
    }

    .feature-node[data-feature="satisfaction"] {
        grid-column: 1;
        grid-row: 4;
    }

    .feature-node[data-feature="variety"] {
        grid-column: 2;
        grid-row: 4;
    }

    .connection-lines {
        display: none;
    }

    .node-circle {
        width: 120px;
        height: 120px;
        font-size: 13px;
    }

    .electric-slider .slick-prev,
    .electric-slider .slick-next {
        display: none !important;
    }

    .commercial-slider .slick-prev,
    .commercial-slider .slick-next {
        display: none !important;
    }

    .electric-slider .slick-dots,
    .commercial-slider .slick-dots {
        bottom: -30px;
    }

    .reviews-slider .slick-prev,
    .reviews-slider .slick-next {
        display: none !important;
    }

    .review-content {
        padding: 30px 20px;
    }

    .review-content::before {
        font-size: 40px;
        top: -5px;
        left: 20px;
    }

    .review-author {
        flex-direction: column;
        gap: 10px;
    }

    .author-info {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter input {
        border-radius: 5px;
    }

    .newsletter button {
        border-radius: 5px;
    }

    .cta-section {
        text-align: left;
        min-height: 350px;
    }

    .cta-content {
        padding: 60px 0;
    }

    .cta-content .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }

    .cta-text {
        margin-right: 0;
        max-width: 100%;
    }

    .cta-content h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .cta-content p {
        max-width: 100%;
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .cta-content .cta-button {
        padding: 12px 30px;
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 8px;
        gap: 30px;
        /* display: none!important; */

        grid-template-columns: none !important;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 400px;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 15px;
    }

    .hero-form {
        display: none;
    }

    .main-search-group {
        min-width: 200px;
    }

    .secondary-filter-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .secondary-filter-select {
        padding: 0.6rem 1.8rem 0.6rem 0.7rem;
        font-size: 0.8rem;
    }

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

    .hero-form {
        padding: 20px;
    }

    .node-circle {
        width: 100px;
        height: 100px;
        font-size: 12px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-section {
        min-height: 300px;
    }

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

    .cta-content .container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 0 15px;
    }

    .cta-text {
        margin-right: 0;
        max-width: 100%;
    }

    .cta-content h2 {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }

    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .cta-content .cta-button {
        padding: 12px 25px;
        font-size: 12px;
    }

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

    .cta-content .cta-button {
        padding: 15px 30px;
        font-size: 14px;
    }
}

.faq-page {
    padding: 120px 0 80px;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    min-height: 100vh;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.faq-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #DC143C;
    border-radius: 2px;
}

.faq-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    max-width: 1040px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    /* transform: translateY(-2px); */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
}

.faq-question {
    padding: 15px 30px;
    background: #ececec;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    /* background: #f8f9fa; */
    /* color: #DC143C; */
}

.faq-question.active {
    /* background: white; */
    /* color: #333; */
}

.faq-icon {
    font-size: 1.2rem;
    color: #DC143C;
    transition: transform 0.3s ease;
    background: #DC143C;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-top: 5px;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
    background: #DC143C;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    /* background: #f8f9fa; */
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer-content {
    padding: 25px 30px;
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.back-to-home {
    text-align: center;
    margin-top: 50px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #DC143C;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.back-btn:hover {
    background: #B91C3C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    color: white;
    text-decoration: none;
}

/* Contact Page Styles End */

/* Vehicles Page Styles */
.vehicles-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vehicles-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vehicles-hero .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicles-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(220, 20, 60, 0.3) 100%); */
    z-index: 2;
}

.vehicles-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(220 20 60 / 50%);
    border-radius: 10px;
    /* backdrop-filter: blur(5px); */
    padding: 40px 20px;
    display: block;
    max-width: 100%;
}

.vehicles-hero .hero-text {
    margin-bottom: 40px;
}

.vehicles-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    background: linear-gradient(45deg, #fff, #DC143C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vehicles-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

/* Hero Search Filters */
.hero-search-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    /* margin-top: 40px; */
    position: relative;
    z-index: 2;
    width: 70%;
    margin: 0 auto;
    /* text-align: center; */
}

.hero-search-group {
    position: relative;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-search-select {
    width: 100%;
    padding: 20px 50px 20px 20px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    appearance: none;
    cursor: pointer;
    border-radius: 8px;
}

.hero-search-group i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    pointer-events: none;
}

/* Secondary Filters Section */
.secondary-filters-section {
    background: #000000;
    padding: 20px 0;
    position: relative;
    /* margin-top: -80px; */
    z-index: 4;
    border: none;
    width: 90%;
    margin: -60px auto;
}



.filters-header {
    text-align: center;
    /* margin-bottom: 40px; */
    position: relative;
    z-index: 2;
}

.filters-header h3 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.filters-header p {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.secondary-filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    /* margin-bottom: 40px; */
    position: relative;
    z-index: 2;
}

.secondary-filter-group {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.secondary-filter-group:hover {
    border-color: #DC143C;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.15);
}

.secondary-filter-group label {
    display: block;
    padding: 8px 15px 0;
    font-size: 12px;
    font-weight: 600;
    color: #DC143C;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.secondary-filter-select {
    width: 100%;
    padding: 8px 35px 15px 15px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
    appearance: none;
    cursor: pointer;
    border-radius: 0;
}

.secondary-filter-select:focus {
    outline: none;
}

.secondary-filter-group i {
    position: absolute;
    right: 15px;
    bottom: 15px;
    color: #DC143C;
    font-size: 14px;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.secondary-filter-group:hover i {
    transform: rotate(180deg);
}

.filter-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.btn-filter-reset,
.btn-filter-apply {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-filter-reset {
    background: #6c757d;
    color: white;
}

.btn-filter-reset:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

.btn-filter-apply {
    background: linear-gradient(45deg, #DC143C, #B91C3C);
    color: white;
}

.btn-filter-apply:hover {
    background: linear-gradient(45deg, #B91C3C, #A0182F);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

/* Search Filters */
.search-filters {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.search-filters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

/* Main Search Row */
.main-search-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.main-search-group {
    position: relative;
    min-width: 300px;
}

.main-search-select {
    width: 100%;
    padding: 1.2rem 3rem 1.2rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;
}

.main-search-select:focus {
    outline: none;
    border-color: #e74c3c;
    background: white;
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.3);
}

.main-search-group i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
    font-size: 1rem;
    pointer-events: none;
}

/* Secondary Filters */
.secondary-filters {
    text-align: center;
}

.secondary-filters h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.secondary-filter-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-filter-group {
    position: relative;
    min-width: 140px;
}

.secondary-filter-select {
    width: 100%;
    padding: 0.8rem 2.5rem 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;
}

.secondary-filter-select:focus {
    outline: none;
    border-color: #e74c3c;
    background: white;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.2);
}

.secondary-filter-group i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
    font-size: 0.8rem;
    pointer-events: none;
}

/* Vehicles Grid */
.vehicles-grid {
    /* padding: 3rem 0; */
    background: white;
    width: 80%;
    margin: 0 auto;
}

.vehicles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.vehicles-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.results-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    display: none;
}

.results-count {
    color: #666;
    font-size: 0.9rem;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-options label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.sort-options select {
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
}

/* Vehicle Cards */
.vehicles-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}


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

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.vehicle-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #DC143C, #B91C3C);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vehicle-info {
    padding: 1rem;
    /* text-align: center; */
}

.vehicle-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.vehicle-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.vehicle-details span {
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.vehicle-price {
    /* margin-bottom: 1.5rem; */
    text-align: center;
    padding-bottom: 10px;
}

.vehicle-price .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #DC143C;
}

.vehicle-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-detail,
.btn-contact {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-detail {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #dee2e6;
}

.btn-detail:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.btn-contact {
    background: linear-gradient(135deg, #DC143C, #B91C3C);
    color: white;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #B91C3C, #991B1B);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.page-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #dee2e6;
    background: white;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.page-btn:hover:not(:disabled) {
    border-color: #DC143C;
    color: #DC143C;
}

.page-btn.active {
    background-color: #de1e25;
    color: white;
    border-color: #DC143C;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Team Page Responsive Design */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .team-hero h1 {
        font-size: 3rem;
    }

    .team-section .section-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-hero {
        height: 50vh;
        min-height: 350px;
    }

    .team-hero h1 {
        font-size: 2.5rem;
    }

    .team-hero p {
        font-size: 1.1rem;
    }

    .team-section {
        padding: 80px 0;
    }

    .team-section .section-header {
        margin-bottom: 60px;
    }

    .team-section .section-header h2 {
        font-size: 2rem;
    }

    .member-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 60px auto 0;
    }

    .team-hero {
        height: 40vh;
        min-height: 300px;
    }

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

    .team-hero p {
        font-size: 1rem;
    }

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

    .team-section .section-header {
        margin-bottom: 40px;
    }

    .team-section .section-header h2 {
        font-size: 1.8rem;
    }

    .member-image {
        height: 280px;
    }

    .member-info {
        /* padding: 20px 15px; */
    }

    .member-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .team-hero h1 {
        font-size: 1.8rem;
    }

    .team-section .section-header h2 {
        font-size: 1.6rem;
    }

    .member-overlay .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .vehicles-hero h1 {
        font-size: 2rem;
    }

    .vehicles-hero p {
        font-size: 1rem;
    }

    .filter-form {
        grid-template-columns: 1fr;
    }

    .vehicles-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .results-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .vehicles-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .vehicle-actions {
        flex-direction: column;
    }

    .search-filters {
        padding: 1.5rem 0;
    }

    .vehicles-grid {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .vehicles-hero {
        height: 300px;
    }

    .vehicles-hero h1 {
        font-size: 1.8rem;
    }

    .vehicle-info {
        padding: 1rem;
    }

    .vehicles-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pagination {
        flex-wrap: wrap;
    }
}

/* Active Navigation Link */
.nav-menu a.active {
    color: #DC143C;
    font-weight: 600;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 4px solid #007bff;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    border-left-color: #28a745;
}

.notification-error {
    border-left-color: #dc3545;
}

.notification-warning {
    border-left-color: #ffc107;
}

.notification-info {
    border-left-color: #17a2b8;
}

.notification span {
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Loading State */
.vehicles-container.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Vehicles Page Styles End */
.contact-page {
    padding: 120px 0 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 0;
    /* background: white; */
    /* border-radius: 20px; */
    overflow: hidden;
    padding-bottom: 80px;
}

.contact-map {
    position: relative;
    background: #f8f9fa;
}

.map-container {
    position: relative;
    height: 400px;
    background: #e9ecef;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #DC143C;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50% 50% 50% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transform: translate(-50%, -50%) rotate(-45deg);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.map-marker i {
    transform: rotate(45deg);
}

.contact-info-card {
    padding: 40px;
    /* background: white; */
}

.location-info {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.location-marker {
    background: #DC143C;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.location-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}

.location-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-details p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.contact-details strong {
    color: #333;
}

.working-hours {
    background: #f8f9fa;
    /* padding: 25px; */
    border-radius: 15px;
}

.working-hours h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    /* margin-bottom: 15px; */
}

.hours-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    font-weight: 800;
}

.weekday-hours,
.weekend-hours {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 8px 0;
    gap: 10px;
}

.hours-info .day {
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
}

.hours-info .time {
    color: #DC143C;
    font-weight: 600;
    font-size: 0.9rem;
}

.weekend-hours {
    border-top: 1px solid #dee2e6;
    padding-top: 12px;
    margin-top: 8px;
}

.contact-form-section {
    /* background: #f8f9fa; */
    /* display: flex; */
}

.form-card {
    background: #f2f2f2;
    padding: 40px;
    /* border-radius: 20px; */
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
    border: 1px solid #e9ecef;
    width: 100%;
    max-width: 100%;
}

.form-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DC143C;
    background: white;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

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

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.submit-btn {
    flex: 1;
    background: linear-gradient(135deg, #DC143C 0%, #B91C3C 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    /* letter-spacing: 0.5px; */
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.3);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .contact-page {
        padding: 100px 0 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        margin: 0 20px 60px;
    }

    .contact-info-card {
        padding: 30px;
    }

    .contact-form-section {
        padding: 30px 20px;
    }

    .form-card {
        padding: 30px 25px;
        border-radius: 15px;
    }

    .form-card h2 {
        font-size: 1.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .location-info {
        flex-direction: column;
        gap: 15px;
    }

    .location-marker {
        align-self: flex-start;
    }
}

/* Process and Exchange Section */
.process-exchange {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-section {
    background-color: #fff;
}

.process-section,
.exchange-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.exchange-section {
    margin-bottom: 0;
}

.process-content,
.exchange-content {
    flex: 1;
    padding: 40px;
}

.process-content h2,
.exchange-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.process-content p,
.exchange-content p {
    font-size: 1.1rem;
    /* line-height: 1.8; */
    color: #666;
    text-align: justify;
    font-weight: 600;
}

.process-image,
.exchange-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-image img,
.exchange-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    /* border-radius: 15px; */
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
    padding-right: 30px;
}

.process-image img:hover,
.exchange-image img:hover {
    transform: scale(1.02);
}

/* Exchange Section with Red Background */
.exchange-section {
    /* background: linear-gradient(135deg, #DC143C 0%, #B91C3C 100%); */
    /* border-radius: 20px; */
    padding: 40px 30px;
    /* margin: 0 20px; */
    /* box-shadow: 0 20px 40px rgba(220, 20, 60, 0.2); */
    background-color: #de1e26;
    margin-bottom: 80px;
}

.exchange-content {
    padding: 0;
}

.exchange-content h2 {
    color: white;
    font-size: 2rem;
    /* margin-bottom: 30px; */
    text-align: right;
}

.exchange-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    /* line-height: 1.8; */
}

.exchange-image {
    /* padding-left: 40px; */
}

.exchange-image img {
    /* border-radius: 15px; */
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); */
}

@media (max-width: 768px) {
    .process-exchange {
        padding: 60px 0;
    }

    .process-section,
    .exchange-section {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .exchange-section {
        flex-direction: column-reverse;
        padding: 40px 20px;
        margin: 0 10px;
    }

    .process-content,
    .exchange-content {
        padding: 20px;
        text-align: center;
    }

    .process-content h2,
    .exchange-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .exchange-content h2 {
        font-size: 2.2rem;
    }

    .process-content p,
    .exchange-content p {
        font-size: 1rem;
        text-align: center;
    }

    .exchange-image {
        padding-left: 0;
    }

    .process-image img,
    .exchange-image img {
        max-width: 100%;
    }
}

.main-hero-content {
    grid-template-columns: 1fr 400px;
}

/* Vehicle Detail Page Styles */
.vehicle-detail-page {
    margin-top: 80px;
    padding: 40px 0;
    /* background: #f8f9fa; */
    margin-bottom: 150px;
}

.vehicle-container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.tab-container {
    max-width: 800px;
    margin: -120px auto;
    padding: 0 20px;
    display: grid;
}



.vehicle-info-section {
    /* background: #fff; */
    /* border-radius: 12px; */
    padding: 10px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.vehicle-header {
    /* margin-bottom: 30px; */
}

.breadcrumb {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.vehicle-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 20px; */
}

.vehicle-title h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.vehicle-price .price {
    /* font-size: 2rem; */
    /* font-weight: 700; */
    /* color: #DC143C; */
}

.vehicle-images {
    margin-bottom: 40px;
}

.main-image {
    margin-bottom: 20px;
    /* border-radius: 12px; */
    overflow: hidden;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.main-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #DC143C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.vehicle-tabs {
    margin-top: 30px;
}

.tab-buttons {
    display: flex;
    /* background: #f8f9fa; */
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 30px;
    gap: 70px;
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: #e7e7e7;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

/* 
.tab-btn.active,
.tab-btn:hover {
    background: #DC143C;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
} */

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vehicle-specs {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}

.spec-row {
    display: flex;
    align-items: center;
    padding: 10px;
    /* border-bottom: 1px solid #eee; */
    position: relative;
    width: 90%;
    text-align: left;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 500;
    color: #333;
    /* min-width: 120px; */
}

.spec-dots {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(to right,
            #ddd 0px,
            #ddd 4px,
            transparent 4px,
            transparent 8px);
    margin: 0 15px;
}

.spec-value {
    font-weight: 600;
    color: #DC143C;
}

.vehicle-price-section {
    margin-bottom: 30px;
    text-align: center;
}

.vehicle-price-section .vehicle-price {
    /* background: linear-gradient(135deg, #DC143C, #B91C3C); */
    color: white;
    /* padding: 20px 40px; */
    /* border-radius: 12px; */
    display: inline-block;
    /* box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3); */
    margin: 0;
}

.vehicle-price-section .price {
    font-size: 2.5rem;
    font-weight: 700;
    /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); */
}

.contact-form-section {
    /* align-self: start; */
}

.form-card {
    background: #fff;
    /* border-radius: 12px; */
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.form-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-align: left;
}

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

.contact-form label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #DC143C;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

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

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.submit-btn,
.whatsapp-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn {
    background: #DC143C;
    color: #fff;
}

.submit-btn:hover {
    background: #b91c3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-btn:hover {
    background: #20b358;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.damage-info,
.expert-report {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vehicle-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vehicle-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .vehicle-title h1 {
        font-size: 2rem;
    }

    .vehicle-price .price {
        font-size: 1.5rem;
    }

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

    .tab-buttons {
        flex-direction: column;
    }

    .tab-btn {
        text-align: center;
    }

    .spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .spec-dots {
        display: none;
    }

    .form-card {
        position: static;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

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

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
}

.lightbox-close:hover {
    background: rgba(220, 20, 60, 0.8);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    user-select: none;
}

.lightbox-nav:hover {
    background: rgba(220, 20, 60, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    z-index: 10001;
}

.lightbox-thumbnails {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10001;
    max-width: 90%;
    overflow-x: auto;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.lightbox-thumbnail {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.lightbox-thumbnail:hover,
.lightbox-thumbnail.active {
    border-color: #DC143C;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    .lightbox-nav {
        font-size: 24px;
        width: 50px;
        height: 50px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-counter {
        bottom: 20px;
        font-size: 14px;
        padding: 8px 16px;
    }

    .lightbox-thumbnails {
        display: none;
    }

    .lightbox-thumbnail {
        width: 50px;
        height: 35px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
}

/* Touch gestures for mobile */
@media (max-width: 768px) {
    .lightbox-content {
        touch-action: pan-x;
    }
}

.tab-break-red {
    height: 60px;
    background-color: #de1e26;
    width: 100%;
    margin-top: 30px;
}

.tab-break-grey {
    height: 60px;
    background-color: #f8f9fa;
    width: 100%;
}

.slick-dots li button:before {
    display: none;
}

/* Membership Section Styles */
.membership-section {
    padding: 0;
    background: url('../img/23.png') center center/cover no-repeat;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.membership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.membership-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* align-items: center; */
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.membership-left {
    color: white;
    padding-top: 140px;
}

.welcome-content h1 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px;
    /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); */
    line-height: 1.5;
}

.welcome-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.feature-item i {
    color: #dc2626;
    font-size: 1.2rem;
    background: white;
    border-radius: 50%;
    padding: 2px;
}

.explore-btn {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.membership-right {
    display: flex;
    justify-content: center;
}

.membership-form-container {
    margin-top: 100px;
    margin-bottom: 100px;
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: left;
    margin-bottom: 20px;
}

.form-header h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-header p {
    color: #6b7280;
    font-size: 1rem;
}

.login-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: #b91c1c;
    text-decoration: underline;
}

.membership-form {
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    background: white;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.documents-section {
    margin-top: 30px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.documents-section h3 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.document-upload {
    margin-bottom: 20px;
}

.document-upload label {
    display: block;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.document-upload input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.document-upload input[type="file"]:hover {
    border-color: #dc2626;
    background: #fef2f2;
}

.checkbox-group {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-item input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: #dc2626;
    cursor: pointer;
}

.checkbox-item label {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
    cursor: pointer;
    flex: 1;
}

.submit-btn {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .membership-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
        text-align: center;
    }

    .welcome-content h1 {
        font-size: 2.5rem;
    }

    .welcome-content p {
        font-size: 1.1rem;
    }

    .membership-form-container {
        padding: 30px 20px;
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .documents-section {
        padding: 20px 15px;
    }

    .submit-btn {
        width: 100%;
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .welcome-content h1 {
        font-size: 2rem;
    }

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

    .form-header h2 {
        font-size: 1.6rem;
    }

    .membership-layout {
        padding: 20px 15px;
    }

    .feature-item {
        font-size: 1rem;
    }
}

/* Kapora Ödeme Styles */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.kapora-section {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

.kapora-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
}

.kapora-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #DC143C, #ff6b6b);
    border-radius: 2px;
}

.kapora-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.kapora-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.kapora-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #DC143C, #ff6b6b);
}

.kapora-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #DC143C;
}

.card-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.card-content {
    margin-bottom: 30px;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
    text-align: left;
}

.card-action {
    margin-top: 30px;
}

.btn-primary {
    background-color: #de2027;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    background: linear-gradient(135deg, #b91c3c 0%, #e55555 100%);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Mobile Responsive for Kapora */
@media (max-width: 768px) {
    .main-content {
        padding: 40px 0;
        margin-top: 70px;
    }

    .kapora-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .kapora-options {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .kapora-card {
        padding: 30px 25px;
    }

    .card-header h2 {
        font-size: 1.6rem;
    }

    .card-content p {
        font-size: 1rem;
        text-align: center;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 30px 0;
        margin-top: 60px;
    }

    .kapora-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .kapora-options {
        gap: 25px;
        margin-top: 30px;
    }

    .kapora-card {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .card-header h2 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .card-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* Modal Styles */
.kapora-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.kapora-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.kapora-modal.show .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    background-color: #DC143C;
    color: #fff;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.contact-info-modal h3,
.eft-info-modal h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-info-modal p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-details {
    margin: 0;
}

.contact-details .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.contact-details .contact-item i {
    color: #DC143C;
    font-size: 1.2rem;
    width: 20px;
}

.contact-details .contact-item span {
    font-weight: 500;
    color: #2c3e50;
}

.note {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #DC143C;
    font-size: 0.95rem;
    color: #6c757d;
    margin-top: 20px;
}

.bank-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.bank-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.bank-item strong {
    color: #2c3e50;
    font-weight: 600;
}

.payment-note {
    margin-top: 25px;
}

.payment-note h4 {
    color: #DC143C;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.payment-note ul {
    list-style: none;
    padding: 0;
}

.payment-note li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #6c757d;
    line-height: 1.5;
}

.payment-note li::before {
    content: '•';
    color: #DC143C;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .modal-header {
        padding: 20px 25px;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-body {
        padding: 25px 20px;
    }

    .bank-item {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        border-radius: 15px;
    }

    .modal-header {
        padding: 15px 20px;
        border-radius: 15px 15px 0 0;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 20px 15px;
    }

    .contact-details .contact-item {
        gap: 10px;
    }

    .bank-info {
        padding: 15px;
    }
}

/* Hesabım Sayfası Styles */
.account-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-top: 40px;
    min-height: 600px;
}

.account-sidebar {
    background: #fff;
    border-radius: 15px;
    padding: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.account-sidebar h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    padding: 0 30px;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 20px;
}

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

.account-nav li {
    margin: 0;
}

.account-nav .nav-link {
    display: block;
    padding: 15px 30px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.account-nav .nav-link:hover,
.account-nav .nav-link.active {
    background: linear-gradient(90deg, rgb(221 32 39 / 18%) 0%, rgb(255 107 107 / 1%) 100%);
    color: #DC143C;
    border-left-color: #dd2027;
}

.account-nav .nav-link.logout {
    color: #dc3545;
}

.account-nav .nav-link.logout:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-left-color: #dc3545;
}

.account-main {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.account-section {
    display: none;
}

.account-section.active {
    display: block;
}

.account-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 15px;
}

.account-info-form {
    /* max-width: 600px; */
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #6c757d;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DC143C;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.password-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f8f9fa;
}

.password-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
}

.password-form {
    max-width: 400px;
}

.password-form input {
    background: #fff;
    color: #2c3e50;
}

.password-form input::placeholder {
    color: #adb5bd;
}

.edit-btn,
.change-password-btn {
    background: linear-gradient(135deg, #DC143C 0%, #ff6b6b 100%);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.edit-btn:hover,
.change-password-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.deposits-content,
.favorites-content {
    text-align: center;
    /* padding: 60px 20px; */
    color: #6c757d;
    font-size: 1.1rem;
}

/* Mobile Responsive for Account */
@media (max-width: 768px) {
    .account-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .account-sidebar {
        position: static;
        padding: 20px 0;
    }

    .account-sidebar h2 {
        font-size: 1.5rem;
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .account-nav .nav-link {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .account-main {
        padding: 25px 20px;
    }

    .account-section h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .password-section {
        margin-top: 30px;
        padding-top: 20px;
    }

    .password-section h3 {
        font-size: 1.3rem;
    }

    .edit-btn,
    .change-password-btn {
        width: 100%;
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .account-sidebar {
        padding: 15px 0;
    }

    .account-sidebar h2 {
        font-size: 1.3rem;
        padding: 0 15px;
        margin-bottom: 15px;
    }

    .account-nav .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .account-main {
        padding: 20px 15px;
    }

    .account-section h2 {
        font-size: 1.4rem;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .deposits-content,
    .favorites-content {
        padding: 40px 15px;
        font-size: 1rem;
    }
}

/* Account Notification Styles */
.account-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.account-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 4px solid #007bff;
}

.account-notification.success .notification-content {
    border-left-color: #28a745;
}

.account-notification.error .notification-content {
    border-left-color: #dc3545;
}

.account-notification.info .notification-content {
    border-left-color: #17a2b8;
}

.notification-message {
    font-weight: 500;
    color: #2c3e50;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: #2c3e50;
}

/* Mobile Responsive for Notifications */
@media (max-width: 768px) {
    .account-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Favorites Table Styles */
.favorites-table-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

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

.favorites-table thead {
    background-color: #dd2027;
    color: #fff;
}

.favorites-table th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    border: none;
}

.favorites-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.favorites-table tbody tr:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.favorites-table tbody tr:last-child {
    border-bottom: none;
}

.favorites-table td {
    padding: 20px 15px;
    vertical-align: middle;
    border: none;
}

.car-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car-image:hover img {
    transform: scale(1.1);
}

.car-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.car-variant {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.car-year {
    background-color: black;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.fuel-type {
    background-color: black;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.km-info {
    color: #6c757d;
    font-weight: 500;
}

.price {
    font-size: 16px;
    font-weight: 700;
    color: #DC143C;
}

.date-added {
    color: #6c757d;
    font-size: 13px;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.btn-view,
.btn-remove {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-view {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.btn-remove {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
}

.btn-remove:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.empty-favorites {
    text-align: center;
    padding: 60px 20px;
}

.empty-favorites .empty-state i {
    font-size: 64px;
    color: #DC143C;
    margin-bottom: 20px;
    opacity: 0.7;
}

.empty-favorites .empty-state h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.empty-favorites .empty-state p {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.btn-browse {
    background: linear-gradient(135deg, #DC143C 0%, #ff6b6b 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-browse:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
    text-decoration: none;
    color: #fff;
}

/* Mobile Responsive for Favorites Table */
@media (max-width: 1024px) {
    .favorites-table {
        font-size: 13px;
    }

    .favorites-table th,
    .favorites-table td {
        padding: 15px 10px;
    }

    .car-image {
        width: 60px;
        height: 45px;
    }

    .car-info h4 {
        font-size: 14px;
    }

    .car-variant {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .favorites-table-container {
        overflow-x: auto;
        border-radius: 10px;
    }

    .favorites-table {
        min-width: 800px;
        font-size: 12px;
    }

    .favorites-table th,
    .favorites-table td {
        padding: 12px 8px;
    }

    .car-image {
        width: 50px;
        height: 40px;
    }

    .car-info h4 {
        font-size: 13px;
    }

    .price {
        font-size: 14px;
    }

    .btn-view,
    .btn-remove {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .favorites-table {
        min-width: 700px;
    }

    .empty-favorites .empty-state {
        padding: 40px 15px;
    }

    .empty-favorites .empty-state i {
        font-size: 48px;
    }

    .empty-favorites .empty-state h3 {
        font-size: 20px;
    }

    .empty-favorites .empty-state p {
        font-size: 14px;
    }
}

/* Favorites Notification Styles */
.favorites-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.favorites-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.favorites-notification .notification-content {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 4px solid #007bff;
}

.favorites-notification.success .notification-content {
    border-left-color: #28a745;
}

.favorites-notification.error .notification-content {
    border-left-color: #dc3545;
}

.favorites-notification.info .notification-content {
    border-left-color: #17a2b8;
}

.favorites-notification .notification-message {
    font-weight: 500;
    color: #2c3e50;
    flex: 1;
}

.favorites-notification .notification-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.favorites-notification .notification-close:hover {
    color: #2c3e50;
}

/* Mobile Responsive for Favorites Notifications */
@media (max-width: 768px) {
    .favorites-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* ===== KAPORA ÖDEME SAYFASI STİLLERİ ===== */

/* Main Content */
.deposit-payment-page {
    /* padding: 120px 0 60px; */
    min-height: 100vh;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #dd2027;
    text-align: center;
    margin-bottom: 40px;
    text-align: left;
    position: relative;
    padding: 0;
    background-color: transparent;
}

.page-title::after {
    /* content: ''; */
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

/* Alert Styles */
.warning-alert,
.notice-alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.warning-alert {
    background: linear-gradient(135deg, #fff5f5, #ffeaea);
    border-left: 5px solid #e74c3c;
}

.notice-alert {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    border-left: 5px solid #ff9800;
}

.warning-icon,
.notice-icon {
    font-size: 24px;
    margin-top: 5px;
}

.warning-icon {
    color: #e74c3c;
}

.notice-icon {
    color: #ff9800;
}

.warning-content h3,
.notice-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.warning-content p,
.notice-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.warning-content p:last-child,
.notice-content p:last-child {
    margin-bottom: 0;
}

/* Payment Content */
.payment-content {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

/* Vehicle Info Card */
.vehicle-info-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid #e9ecef;
}

.vehicle-image {
    flex-shrink: 0;
    /* width: 200px; */
    height: 150px;
    /* border-radius: 12px; */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.vehicle-details {
    flex: 1;
}

.vehicle-details h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px !important;
    background: #f8f9fa;
    border-radius: 8px;
    /* border-left: 3px solid #e74c3c; */
}

.spec-label {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.9rem;
}

.spec-value {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.vehicle-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.deposit-info {
    text-align: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.deposit-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    opacity: 0.9;
}

.deposit-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}

.btn-view-detail {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-view-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Bank Accounts Section */
.bank-accounts-section {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.bank-accounts-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.bank-note {
    text-align: center;
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 1rem;
}

.bank-accounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.bank-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bank-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.bank-card.yapı-kredi::before {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.bank-card.garanti::before {
    background: linear-gradient(135deg, #fd7e14, #e63946);
}

.bank-card.ziraat::before {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bank-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bank-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 20px; */
    color: #6c757d;
}

.bank-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.bank-branch {
    font-size: 0.9rem;
    color: #6c757d;
}

.account-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.account-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
}

.account-label {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.9rem;
}

.account-value {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.account-value.iban {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.copy-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.copy-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* Payment Steps */
.payment-steps {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.payment-steps h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #e74c3c;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-content p {
    color: #6c757d;
    line-height: 1.6;
}

/* Support Section */
.support-section {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.support-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.support-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.support-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.support-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.support-item:first-child .support-icon {
    /* background: linear-gradient(135deg, #25d366, #128c7e); */
    color: white;
}

.support-item:last-child .support-icon {
    /* background: linear-gradient(135deg, #3498db, #2980b9); */
    color: white;
}

.support-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.support-info p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 5px;
}

.support-info p:last-child {
    margin-bottom: 0;
}

/* Payment Form Section */
.payment-form-section {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.payment-form-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.form-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #2196f3;
}

.form-notice i {
    color: #2196f3;
    font-size: 18px;
}

.form-notice p {
    color: #1565c0;
    font-weight: 500;
    margin: 0;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group input[readonly] {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    margin-top: 20px;
    text-align: center;
}

.form-warning {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #ffc107;
}

.form-warning i {
    color: #856404;
    font-size: 16px;
    margin-top: 2px;
}

.form-warning {
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.form-info {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-align: center;
}

.btn-submit-payment {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit-payment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .deposit-payment-page {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .warning-alert,
    .notice-alert {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .vehicle-info-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .vehicle-image {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }

    .vehicle-specs {
        grid-template-columns: 1fr;
    }

    .bank-accounts {
        grid-template-columns: 1fr;
    }

    .bank-card {
        padding: 15px;
    }

    .account-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .copy-btn {
        margin-left: 0;
        align-self: flex-end;
    }

    .support-content {
        grid-template-columns: 1fr;
    }

    .support-item {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .btn-submit-payment {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .deposit-payment-page {
        padding: 90px 0 30px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .bank-accounts-section,
    .payment-steps,
    .support-section,
    .payment-form-section {
        padding: 20px;
    }

    .vehicle-info-card {
        padding: 15px;
    }

    .step-item {
        padding: 15px;
    }

    .support-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .support-icon {
        align-self: center;
    }
}

/* ===== KAPORA ÖDEME SAYFASI BİLDİRİM STİLLERİ ===== */

/* Kopyalama Bildirimi Stilleri */
.copy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    z-index: 10000;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 300px;
    border-left: 4px solid #28a745;
}

.copy-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.copy-notification.error {
    border-left-color: #dc3545;
}

.copy-notification .notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.copy-notification .notification-content i {
    color: #28a745;
    font-size: 16px;
}

.copy-notification.error .notification-content i {
    color: #dc3545;
}

.copy-notification span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Ödeme Bildirimi Stilleri */
.payment-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 0;
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 500px;
    width: 90%;
    border-left: 5px solid #28a745;
    overflow: hidden;
}

.payment-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.payment-notification.error {
    border-left-color: #dc3545;
}

.payment-notification.info {
    border-left-color: #17a2b8;
}

.payment-notification .notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.payment-notification .notification-message {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.payment-notification .notification-message i {
    font-size: 20px;
    color: #28a745;
}

.payment-notification.error .notification-message i {
    color: #dc3545;
}

.payment-notification.info .notification-message i {
    color: #17a2b8;
}

.payment-notification .notification-message span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

.payment-notification .notification-close {
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin-left: 15px;
}

.payment-notification .notification-close:hover {
    background: #f8f9fa;
    color: #666;
}

/* Form Hata Stilleri */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.field-error {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}

/* Mobile Responsive - Kapora Ödeme Bildirimleri */
@media (max-width: 768px) {
    .copy-notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }

    .copy-notification.show {
        transform: translateY(0);
    }

    .payment-notification {
        left: 10px;
        right: 10px;
        width: auto;
        max-width: none;
        transform: translateY(-100%);
    }

    .payment-notification.show {
        transform: translateY(0);
    }

    .payment-notification .notification-content {
        padding: 15px;
    }

    .payment-notification .notification-message span {
        font-size: 14px;
    }
}

/* ===== YENİ ARAÇ BİLGİ KARTI STİLLERİ ===== */

.vehicle-info-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    border: 1px solid #e9ecef;
}

.vehicle-main-info {
    flex: 2;
    display: flex;
    gap: 25px;
}

.vehicle-image {
    flex-shrink: 0;
    /* width: 200px; */
    /* height: 150px; */
    /* border-radius: 12px; */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.vehicle-details {
    flex: 1;
}

.vehicle-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 20px;
}

.vehicle-specs {
    display: flex;
    flex-direction: column;
    /* gap: 15px; */
}

.spec-row {
    display: flex;
    gap: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0px;
    flex: 1;
    padding: 8px 0;
}

.spec-item-full {
    flex: 2;
}

.spec-item i {
    color: #3498db;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.spec-label {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.9rem;
    margin-right: 5px;
}

.spec-value {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.order-summary {
    flex: 1;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
    border: 1px solid #e9ecef;
}

.summary-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-item:last-of-type {
    border-bottom: none;
    margin-bottom: 15px;
}

.summary-label {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.9rem;
}

.summary-value {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.deposit-amount-item .summary-value {
    color: #e74c3c;
    font-size: 1.2rem;
    font-weight: 700;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.security-badge {
    width: 40px;
    height: 40px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.security-text {
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .vehicle-info-card {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .vehicle-main-info {
        flex-direction: column;
        gap: 15px;
    }

    .vehicle-image {
        width: 100%;
        height: 200px;
    }

    .spec-row {
        flex-direction: column;
        gap: 10px;
    }

    .spec-item {
        justify-content: space-between;
        padding: 10px;
        background: #f8f9fa;
        border-radius: 8px;
    }

    .order-summary {
        margin-top: 20px;
    }
}

/* BANKA HESAP BİLGİLERİ STİLLERİ */
.bank-accounts-section {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bank-accounts-section h2 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: left;
}

.bank-info-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #e3f2fd;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid #2196f3;
}

.bank-info-note i {
    color: #2196f3;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.bank-info-note span {
    color: #1565c0;
    font-size: 14px;
    line-height: 1.5;
}

.bank-accounts {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.bank-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    min-height: 80px;
}

.bank-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #2196f3;
}

.bank-header {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0;
    padding: 16px;
    border-bottom: none;
    /* flex: 1; */
    margin-left: 50px;
}

.bank-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    flex-shrink: 0;
}

.bank-logo-img {
    width: 100px;
    /* height: 50px; */
    object-fit: contain;
}

.bank-info h3 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.bank-branch {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.account-details {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px;
    border-left: 1px solid #e0e0e0;
}

.account-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.account-item {
    display: flex;
    flex-direction: column;
    /* gap: 4px; */
    min-width: 120px;
}

.account-item.iban-item {
    min-width: 300px;
}

.account-label {
    color: #666;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.account-value {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
}

.iban-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

.iban {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    flex: 1;
    letter-spacing: 0.5px;
}

.copy-btn {
    background: #f0f0f0;
    color: #666;
    border: 1px solid #ddd;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: #e0e0e0;
    transform: none;
}

.payment-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 16px;
    border-left: 4px solid #f39c12;
}

.note-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.note-content strong {
    color: #8b4513;
    font-size: 14px;
    margin-right: 8px;
}

.copy-note-btn {
    background: #f39c12;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.copy-note-btn:hover {
    background: #e67e22;
    transform: translateY(-1px);
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .bank-accounts-section {
        padding: 16px;
        margin-bottom: 16px;
    }

    .bank-accounts-section h2 {
        font-size: 20px;
    }

    .bank-card {
        padding: 16px;
    }

    .bank-header {
        gap: 12px;
    }

    .bank-logo {
        width: 40px;
        height: 40px;
    }

    .bank-logo-img {
        width: 32px;
        height: 32px;
    }

    .bank-info h3 {
        font-size: 16px;
    }

    .bank-branch {
        font-size: 13px;
    }

    .account-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .iban-container {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .iban {
        font-size: 14px;
        text-align: center;
    }

    .copy-btn {
        align-self: center;
        width: fit-content;
    }

    .note-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .copy-note-btn {
        align-self: center;
        width: fit-content;
    }
}

/* Payment Steps Styles */
.payment-steps {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-steps h2 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
}

.payment-info-note {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-info-note i {
    color: #1976d2;
    font-size: 16px;
    flex-shrink: 0;
}

.payment-info-note span {
    color: #1565c0;
    font-size: 14px;
    line-height: 1.4;
}

.payment-instruction {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
    font-weight: 500;
}

.payment-description {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.payment-form-note {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.reservation-warning {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.confirmation-note {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .payment-steps {
        padding: 16px;
        margin-bottom: 16px;
    }

    .payment-steps h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .payment-info-note {
        padding: 10px 12px;
        margin-bottom: 12px;
    }

    .payment-instruction {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .payment-description,
    .payment-form-note,
    .reservation-warning,
    .confirmation-note {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

/* Notary Section Styles */
.notary-section {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.notary-section h2 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
}

.notary-content {
    border-left: 4px solid #e0e0e0;
    padding-left: 20px;
}

.notary-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.notary-item i {
    color: #666;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.notary-item span {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.contact-note {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 8px;
    margin-bottom: 0;
}

/* Support Section Updates */
.support-section {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.support-section h2 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
}

.support-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.support-icon {
    width: 48px;
    height: 48px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-icon i {
    color: #dc3545;
    font-size: 20px;
}

.support-info h4 {
    color: #dc3545;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.support-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .notary-section,
    .support-section {
        padding: 16px;
        margin-bottom: 16px;
    }

    .notary-section h2,
    .support-section h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .notary-content {
        padding-left: 16px;
    }

    .notary-item {
        gap: 10px;
        margin-bottom: 12px;
    }

    .notary-item span,
    .contact-note {
        font-size: 13px;
    }

    .support-item {
        gap: 12px;
    }

    .support-icon {
        width: 40px;
        height: 40px;
    }

    .support-icon i {
        font-size: 18px;
    }

    .support-info h4 {
        font-size: 16px;
    }

    .support-info p {
        font-size: 13px;
    }
}

/* Payment Form Section Styles */
.payment-form-section {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    /* margin: 30px 0; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8ecef;
}

.payment-form-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

/* Warning Notice */
.form-warning-notice {
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-warning-notice i {
    color: #dc2626;
    font-size: 18px;
    flex-shrink: 0;
}

.form-warning-notice span {
    color: #991b1b;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}

/* Form Styles */
.payment-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0px;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group .required {
    color: #dc2626;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input[readonly] {
    background: #f9fafb;
    color: #6b7280;
    cursor: not-allowed;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-help {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 5px;
    font-style: italic;
}

/* Confirmation Checkboxes */
.form-confirmations {
    /* margin: 25px 0; */
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    /* margin-bottom: 15px; */
}

.checkbox-group:last-child {
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #3b82f6;
    /* float: left; */
}

.checkbox-group label {
    font-size: 13px;
    line-height: 1.5;
    color: #374151;
    margin: 0;
    cursor: pointer;
    font-weight: 400;
    /* display: flex; */
}

.info-text {
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
    margin-top: 15px;
}

.checkbox-group label a,
.info-text a {
    font-size: 13px;

    color: #dc2026;
    text-decoration: none;
}

/* Form Actions */
.form-actions {
    text-align: center;
    margin-top: 30px;
    /* text-align: center; */
}

.btn-submit-payment {
    background: #dc2626;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 250px;
    text-align: center;
    width: 280px;
    /* float: right; */
}

.btn-submit-payment:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .payment-form-section {
        padding: 20px;
        margin: 20px 0;
    }

    .payment-form-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-warning-notice {
        padding: 12px 15px;
        font-size: 13px;
    }

    .form-confirmations {
        padding: 15px;
    }

    .checkbox-group label {
        font-size: 12px;
    }

    .btn-submit-payment {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Success Page Styles */
.success-page {
    min-height: 80vh;
    padding: 150px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.success-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Success Header */
.success-header {
    text-align: center;
    margin-bottom: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.success-icon i {
    font-size: 36px;
    color: white;
}

.success-header h1 {
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.success-header p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    /* max-width: 600px; */
    margin: 0 auto;
}

/* Information Notice */
.info-notice {
    background: #dbeafe;
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 30px;
    text-align: center;
}

.info-notice span {
    color: #1e40af;
    font-size: 14px;
    line-height: 1.5;
}

/* Vehicle Information Section */
.vehicle-info-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.vehicle-details {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1;
    /* margin-bottom: 30px; */
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-item .label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.detail-item .value {
    font-size: 16px;
    color: #1e293b;
    font-weight: 600;
}

.status-badge {
    background: #fef3c7;
    color: #92400e;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
}

/* Vehicle Card */
.vehicle-card {
    text-align: center;
}

.vehicle-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.vehicle-image {
    max-width: 400px;
    margin: 0 auto;
    /* border-radius: 8px; */
    overflow: hidden;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.vehicle-image img {
    width: 100%;
    /* height: auto; */
    display: block;
}

/* Next Steps */
.next-steps {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid #3b82f6;
}

.next-steps h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.next-steps p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 10px;
}

.next-steps p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.contact-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    /* background: #f8fafc; */
    /* padding: 12px 20px; */
    border-radius: 8px;
    /* border: 1px solid #e2e8f0; */
    min-width: 280px;
    justify-content: flex-start;
}

.contact-item i {
    font-size: 18px;
    color: #dc2626;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}

.contact-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 14px;
    color: #1e293b;
    font-weight: 600;
}

/* Action Button */
.action-button {
    margin-top: 25px;
}

.btn-home {
    background: #dc2626;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .success-page {
        padding: 40px 0;
    }

    .success-page .container {
        padding: 0 15px;
    }

    .success-header h1 {
        font-size: 24px;
    }

    .success-header p {
        font-size: 14px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .success-icon i {
        font-size: 28px;
    }

    .vehicle-info-section,
    .contact-section {
        padding: 20px;
    }

    .vehicle-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-info {
        gap: 12px;
    }

    .contact-item {
        min-width: 100%;
        padding: 10px 15px;
    }

    .next-steps {
        padding: 20px;
    }

    .vehicle-image {
        max-width: 100%;
    }
}

/* Vehicle Detail Price Section */
.vehicle-price {
    /* margin-bottom: 25px; */
}

.price-info {
    margin-bottom: 20px;
}

.old-price {
    display: block;
    font-size: 16px;
    color: #64748b;
    text-decoration: line-through;
    margin-bottom: 5px;
    text-align: right;
    font-weight: 500;
}

.current-price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #dc2626;
    line-height: 1.2;
    text-align: right;
}

.action-buttons {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.btn-favorite,
.btn-deposit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-favorite {
    background: #f8fafc;
    color: #475569;
    border: 2px solid #e2e8f0;
}

.btn-favorite:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.btn-favorite.active {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fecaca;
}

.btn-favorite.active i {
    color: #dc2626;
}

.btn-deposit {
    background: #dc2626;
    color: white;
    border: 2px solid #dc2626;
}

.btn-deposit:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-favorite i,
.btn-deposit i {
    font-size: 16px;
}

/* Mobile Responsive for Vehicle Detail */
@media (max-width: 768px) {
    .current-price {
        font-size: 24px;
    }

    .old-price {
        font-size: 14px;
    }

    .action-buttons {
        gap: 10px;
    }

    .btn-favorite,
    .btn-deposit {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* 404 Error Page Styles */
.error-page {
    padding: 150px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.error-visual {
    margin-bottom: 40px;
    position: relative;
}

.error-number {
    font-size: 180px;
    font-weight: 900;
    color: #dc3545;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
    background-color: #de1e25;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-icon {
    font-size: 60px;
    color: #6c757d;
    margin-bottom: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.error-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    line-height: 1.2;
}

.error-text p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-actions .btn-primary,
.error-actions .btn-secondary {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 180px;
    justify-content: center;
}

.error-actions .btn-primary {
    background-color: #e31c25;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.error-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    color: white;
}

.error-actions .btn-secondary {
    background: white;
    color: #495057;
    border: 2px solid #dee2e6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.error-actions .btn-secondary:hover {
    background: #f8f9fa;
    border-color: #dc3545;
    color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.error-suggestions {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.error-suggestions h3 {
    font-size: 24px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 30px;
}

.suggestion-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.suggestion-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    font-weight: 500;
}

.suggestion-links a:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    border-color: #dc3545;
}

.suggestion-links a i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Mobile Responsive Styles for 404 Page */
@media (max-width: 768px) {
    .error-page {
        padding: 40px 0;
        min-height: 60vh;
    }

    .error-number {
        font-size: 120px;
    }

    .error-icon {
        font-size: 40px;
    }

    .error-text h1 {
        font-size: 32px;
    }

    .error-text p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    .error-actions .btn-primary,
    .error-actions .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .error-suggestions {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .error-suggestions h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .suggestion-links {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .suggestion-links a {
        padding: 12px 15px;
        font-size: 14px;
    }
}

.eksperrightSide {
    display: none;
}

path[id^="parca"] {
    stroke: #c8c8c8;
    stroke-width: 1px;
}

.hasar_grubu {
    position: relative;
    width: 33%;
    margin-top: 60px;
    /* list-style: no; */
    float: left;
    gap: 10px;
}

.hasar_grubu_title {
    font-weight: bold;
    padding-bottom: 4px;
    margin-bottom: 10px;
    border-bottom: 1px solid #c8c8c8;
    padding-left: 15px
}

.hasar_grubu_title:before {
    width: 10px;
    height: 10px;
    content: '';
    top: 6px;
    left: 12px;
    position: absolute;
}

.hasar_grubu_title.boyanmis:before {
    background-color: #4083c9;
}

.hasar_grubu_title.lokal-boya:before {
    background-color: #fe9546;
}

.hasar_grubu_title.degisen:before {
    background-color: #ff5e39;
}

.hasar_grubu ul {
    padding-left: 10px;
    list-style-type: none;
    text-align: left;
}

.hasar_grubu ul li {
    font-size: 13px;
    margin-bottom: 5px
}

.ekspertizContainer {
    text-align: center;
}

.eksper_svg svg {
    width: 75%;
}

.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: .25rem;
}

.wrapper .list-group-item {
    border: none;
    border-bottom: 1px solid #eaeaea;
    font-size: 13px;
    font-style: normal;
    line-height: 38px;
    letter-spacing: 0;
    padding: 0;
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.align-items-start {
    align-items: flex-start !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.d-flex {
    display: flex !important;

}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: white !important;
    outline: none;
    background: #db1f24 !important;
}


.alert.alart_style_one {
    background-color: #cde9f6;
    color: #4780aa
}

.alert.alart_style_two {
    background-color: #f7f3d7;
    color: #927238
}

.alert.alart_style_three {
    background-color: #ecc8c5;
    color: #db1f24;
}

.alert.alart_style_four {
    background-color: #def2d7;
    color: #5b7052
}

.ui_kit_button .btn,
.ui_kit_message_box .alert {
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600
}

.ui_kit_message_box .alert {
    font-style: normal;
    letter-spacing: 0;
    min-height: 51px;
    line-height: 25px;
    padding-left: 30px
}

.alert {
    border: none;
    border-radius: 2px;
    font-size: 15px;
    line-height: 20px;
    padding: .75rem 1rem
}

.forgot-password {
    text-align: right;
    padding-top: 20px;
}

.forgot-password a {
    color: #dc2626;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Favorites Page Styles - Table Layout */
.favorites-table-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e5e5e5;
    margin-bottom: 15px;
}

.favorite-car-row {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    gap: 20px;
}

.favorite-car-row:last-child {
    border-bottom: none;
}

.favorite-car-row:hover {
    background-color: #f8f9fa;
    transform: translateX(2px);
}

/* Car Cells */
.car-image-cell {
    flex: 0 0 80px;
}

.car-thumbnail {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease;
}

.car-thumbnail:hover {
    transform: scale(1.05);
}

.car-info-cell {
    flex: 1;
    min-width: 200px;
}

.car-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.car-title-compact {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.car-title-compact a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.car-title-compact a:hover {
    color: #007bff;
}

.car-plate-compact {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #666;
}

.car-plate-compact i {
    color: #999;
}

.car-specs-cell {
    flex: 0 0 200px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.spec-compact {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #666;
}

.spec-compact i {
    font-size: 14px;
    color: #007bff;
}

.spec-compact span {
    font-weight: 500;
    font-size: 13px;
    color: #333;
}

.car-price-cell {
    flex: 0 0 120px;
    text-align: right;
}

.price-compact .amount {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #28a745;
    /* line-height: 1; */
    float: left;
}

.price-compact .currency {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.car-actions-cell {
    flex: 0 0 140px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-view-compact {
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.btn-view-compact:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
}

.btn-remove-favorite {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #dc3545;
}

.btn-remove-favorite:hover {
    background-color: #dc3545;
    color: white;
    transform: scale(1.05);
}

/* Responsive Design for Table Layout */
@media (max-width: 768px) {
    .favorite-car-row {
        flex-wrap: wrap;
        gap: 10px;
        padding: 15px;
    }

    .car-image-cell {
        flex: 0 0 60px;
    }

    .car-thumbnail {
        width: 60px;
        height: 40px;
    }

    .car-info-cell {
        flex: 1;
        min-width: 150px;
    }

    .car-specs-cell {
        flex: 1 1 100%;
        gap: 10px;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #f0f0f0;
    }

    .car-price-cell {
        order: -1;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .car-actions-cell {
        flex: 1 1 100%;
        justify-content: space-between;
        margin-top: 10px;
    }

    .btn-view-compact .btn-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .favorites-table-container {
        margin: 0 -10px;
        border-radius: 8px;
    }

    .favorite-car-row {
        padding: 12px;
    }

    .car-specs-cell {
        gap: 8px;
    }

    .spec-compact {
        font-size: 12px;
    }

    .price-compact .amount {
        font-size: 16px;
    }

    .car-actions-cell {
        gap: 5px;
    }

    .btn-view-compact {
        padding: 6px 10px;
        font-size: 12px;
    }

    .btn-remove-favorite {
        width: 30px;
        height: 30px;
    }
}

/* Empty State Styles */
.favorites-empty {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.favorites-empty i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.favorites-empty h3 {
    color: #666;
    margin-bottom: 10px;
}

.favorites-empty p {
    color: #999;
    margin-bottom: 20px;
}