/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 40px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Navigation Menu */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #2d3436;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 8px;
    position: relative;
}

.nav-link svg {
    transition: all 0.3s ease;
    stroke: #666;
    flex-shrink: 0;
}

.nav-link span {
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #8b1c1c;
    background: rgba(139, 28, 28, 0.05);
}

.nav-link:hover svg {
    stroke: #8b1c1c;
    transform: translateY(-2px);
}

.nav-item.dropdown:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.btn-login {
    background-color: #f5f5f5;
    color: #25D366;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
}

.btn-login:hover {
    background-color: #ebebeb;
}

.btn-login svg {
    width: 20px;
    height: 20px;
}

.btn-register {
    background-color: #ff8a65;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-register .btn-icon {
    display: none;
}

.btn-register .btn-text {
    display: inline;
}

.btn-register:hover {
    background-color: #ff7555;
    box-shadow: 0 4px 12px rgba(255, 138, 101, 0.3);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #2d3436;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-list {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .btn-register .btn-text {
        display: none;
    }
    
    .btn-register .btn-icon {
        display: block;
    }
    
    .btn-register {
        padding: 10px 12px;
    }
    
    .nav-menu {
        position: fixed;
        top: 63px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 0;
        margin: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
        z-index: 999;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu.active {
        max-height: 400px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    }
    
    .nav-menu::before {
        display: none !important;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0;
        margin: 0;
        list-style: none;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
        margin: 0;
        padding: 0;
        text-align: left;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 20px;
        font-size: 15px;
        font-weight: 500;
        border-radius: 0;
        transition: all 0.3s ease;
        background-color: transparent;
        gap: 12px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        color: #2c3e50;
        text-decoration: none;
        position: relative;
        z-index: 1000;
        text-align: left;
        direction: ltr;
    }
    
    .nav-link svg {
        width: 22px;
        height: 22px;
        stroke: #7f8c8d;
        transition: all 0.3s ease;
    }
    
    .nav-link span {
        font-size: 15px;
        font-weight: 500;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(139, 28, 28, 0.08);
        color: #8b1c1c;
        transform: none;
        padding-left: 30px;
    }
    
    .nav-link:hover svg,
    .nav-link.active svg {
        stroke: #8b1c1c;
        transform: scale(1.1);
    }
    
    .auth-buttons {
        gap: 8px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .logo img {
        height: 38px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 12px 0;
    }
    
    .auth-buttons {
        flex-direction: row;
        gap: 6px;
    }
    
    .btn {
        padding: 7px 10px;
        font-size: 11px;
    }
    
    .btn-login {
        padding: 7px 9px;
    }
    
    .btn-login svg {
        width: 18px;
        height: 18px;
    }
    
    .btn-register {
        padding: 7px 9px;
    }
    
    .btn-register .btn-icon {
        width: 18px;
        height: 18px;
    }
    
    .logo img {
        height: 32px;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Overlay for mobile menu */
.nav-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    pointer-events: none;
}

@media (max-width: 768px) {
    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* Hero Section */
.hero-section {
    padding: 30px 0;
    background-color: #ffffff;
}

.hero-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    height: 550px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 52, 54, 0.85) 0%, rgba(45, 52, 54, 0.6) 50%, rgba(45, 52, 54, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 60px;
    padding-right: 60px;
    gap: 40px;
}

.hero-text {
    max-width: 650px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #e8e8e8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-btn {
    padding: 14px 32px;
    background-color: #ff8a65;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.hero-btn:hover {
    background-color: #ff7555;
    box-shadow: 0 6px 20px rgba(255, 138, 101, 0.4);
    transform: translateY(-2px);
}

.hero-note {
    font-size: 13px;
    color: #d0d0d0;
    font-weight: 400;
}

/* Booking Form Card */
.booking-form-card {
    background: rgba(255, 138, 101, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 15px 32px;
    width: 380px;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin: 20px 0;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.form-control {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
    outline: none;
}

.form-control::placeholder {
    color: #999;
}

.form-control:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(255, 138, 101, 0.2);
}

.form-control:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

input[type="date"].form-control {
    cursor: pointer;
}

.form-submit-btn {
    padding: 14px 24px;
    background-color: #ffffff;
    color: #ff8a65;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-top: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-submit-btn:hover {
    background-color: #2d3436;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* Slider Dots */
.hero-dots {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #ff8a65;
    height: 40px;
    border-radius: 6px;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Mobile Booking Section */
.mobile-booking-section {
    display: none;
    padding: 30px 0;
    background: #ffffff;
    
}

.mobile-booking-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.mobile-booking-header {
    text-align: center;
    margin-bottom: 30px;
}

.mobile-booking-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 8px;
}

.mobile-booking-subtitle {
    font-size: 15px;
    color: #636e72;
    font-weight: 400;
}

.mobile-booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-booking-form .form-group label {
    color: #2d3436;
    text-shadow: none;
}

.mobile-booking-form .form-control {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
}

.mobile-booking-form .form-control:focus {
    border-color: #ff8a65;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 138, 101, 0.1);
}

.mobile-submit-btn {
    padding: 16px 24px;
    background: linear-gradient(135deg, #ff8a65 0%, #ff7555 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
    box-shadow: 0 8px 20px rgba(255, 138, 101, 0.3);
}

.mobile-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 138, 101, 0.4);
}

.mobile-submit-btn:active {
    transform: translateY(0);
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-wrapper {
        height: 480px;
    }
    
    .hero-section {
        padding: 25px 0;
    }
    
    .hero-content {
        padding-left: 40px;
        padding-right: 40px;
        gap: 30px;
    }
    
    .booking-form-card {
        width: 340px;
        padding: 28px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        display: none;
    }
    
    .mobile-booking-section {
        display: block;
    }
}

@media (max-width: 480px) {
    .mobile-booking-section {
        padding: 20px 0;
    }
    
    .mobile-booking-card {
        padding: 28px 20px;
        border-radius: 20px;
    }
    
    .mobile-booking-title {
        font-size: 24px;
    }
    
    .mobile-booking-subtitle {
        font-size: 14px;
    }
    
    .mobile-booking-form {
        gap: 18px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 325px) {
    .container {
        padding: 0 8px;
    }
    
    .mobile-booking-card {
        padding: 24px 16px;
        width: 104%;
    }
    
    .mobile-booking-title {
        font-size: 22px;
    }
}

@media (max-width: 280px) {
    .container {
        padding: 0 4px;
    }
    
    .mobile-booking-card {
        padding: 20px 12px;
    }
    
    .mobile-booking-title {
        font-size: 20px;
    }
    
    .mobile-booking-form .form-control {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Vehicles Section */
.vehicles-section {
    padding: 60px 0;
    
}

.vehicles-container {
    max-width: 1400px;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.vehicle-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.vehicle-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #27ae60;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 1;
}

.vehicle-image {
    width: 100%;
    height: 200px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-info {
    padding: 20px;
}

.vehicle-name {
    font-size: 18px;
    font-weight: 600;
    color: #2d3436;
    margin: 0 0 4px 0;
}

.vehicle-category {
    font-size: 13px;
    color: #636e72;
    background-color: #ecf0f1;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 12px;
}

.vehicle-specs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ecf0f1;
}

.spec {
    font-size: 12px;
    color: #636e72;
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec svg {
    color: #ff8a65;
}

.vehicle-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.tag {
    font-size: 11px;
    color: #2d3436;
    background-color: #ecf0f1;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
    white-space: nowrap;
}

.vehicle-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 11px;
    color: #636e72;
    margin-bottom: 2px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
}

.price small {
    font-size: 13px;
    font-weight: 400;
    color: #636e72;
}

.vehicle-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.action-btn {
    flex: 1;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.outline-btn {
    background-color: transparent;
    border: 2px solid #ecf0f1;
    color: #2d3436;
}

.outline-btn:hover {
    border-color: #ff8a65;
    color: #ff8a65;
    background-color: rgba(255, 138, 101, 0.05);
}

.primary-btn {
    background-color: #ff8a65;
    border: none;
    color: #ffffff;
}

.primary-btn:hover {
    background-color: #ff7043;
}

.vehicle-contact {
    display: flex;
    gap: 8px;
}

.contact-btn {
    flex: 1;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    color: #ffffff;
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
}

.call-btn {
    background-color: #e74c3c;
}

.call-btn:hover {
    background-color: #c0392b;
}

.view-all-btn {
    display: block;
    margin: 0 auto;
    padding: 14px 32px;
    background-color: #ff8a65;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.view-all-btn:hover {
    background-color: #ff7043;
    transform: translateX(4px);
}

.view-all-btn svg {
    transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive - Vehicles Section */
@media (max-width: 1440px) {
    .vehicles-grid {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .vehicles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .vehicle-card {
        border-radius: 14px;
    }
}

@media (max-width: 768px) {
    .vehicles-section {
        padding: 40px 0;
    }
    
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .vehicle-image {
        height: 160px;
    }
    
    .vehicle-info {
        padding: 16px;
    }
    
    .vehicle-name {
        font-size: 16px;
    }
    
    .vehicle-pricing {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .vehicle-image {
        height: 180px;
    }
    
    .vehicle-specs {
        font-size: 11px;
    }
    
    .contact-btn {
        font-size: 11px;
        padding: 9px 12px;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-blog {
    text-align: left;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 12px 0;
}

.section-subtitle {
    font-size: 16px;
    color: #636e72;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.red-icon {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.orange-icon {
    background-color: rgba(255, 138, 101, 0.1);
    color: #ff8a65;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3436;
    margin: 0 0 8px 0;
}

.feature-description {
    font-size: 14px;
    color: #636e72;
    margin: 0;
    line-height: 1.6;
}

/* Responsive - Why Choose Section */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
    }
    
    .feature-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .feature-card {
        padding: 20px 16px;
        gap: 16px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Article & FAQ Section */
.article-faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.article-faq-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Article Styles */
.article-content {
    margin-bottom: 60px;
}

.article-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 32px 0;
}

.article-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #2d3436;
    margin: 24px 0 16px 0;
}

.article-text {
    font-size: 15px;
    color: #636e72;
    line-height: 1.8;
    margin: 0 0 16px 0;
}

/* FAQ Styles */
.faq-content {
    max-width: 100%;
}

.faq-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 24px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e8e8e8;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    color: #636e72;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2d3436;
}

.faq-question span {
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    flex-shrink: 0;
    color: #636e72;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 14px;
    color: #636e72;
    line-height: 1.7;
    margin: 0;
}

/* Responsive - Article & FAQ */
@media (max-width: 768px) {
    .article-faq-section {
        padding: 60px 0;
    }
    
    .article-content {
        margin-bottom: 40px;
    }
    
    .article-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .article-subtitle {
        font-size: 16px;
        margin: 20px 0 12px 0;
    }
    
    .article-text {
        font-size: 14px;
    }
    
    .faq-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 16px 0;
    }
}

@media (max-width: 480px) {
    .article-faq-section {
        padding: 40px 0;
    }
    
    .article-title {
        font-size: 20px;
    }
    
    .article-subtitle {
        font-size: 15px;
    }
    
    .article-text {
        font-size: 13px;
    }
    
    .faq-question {
        font-size: 13px;
        padding: 14px 0;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
}

/* Stats Section */
.stats-section {
    padding: 30px 0;
    
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background-color: #6c757d;
    border-radius: 6px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 18px;
    height: 18px;
}

.red-bg {
    background-color: #e74c3c;
    color: #ffffff;
}

.green-bg {
    background-color: #27ae60;
    color: #ffffff;
}

.stat-text {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

/* Responsive - Stats Section */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 24px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-card {
        padding: 10px 14px;
        gap: 8px;
    }
    
    .stat-icon {
        width: 28px;
        height: 28px;
    }
    
    .stat-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .stat-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 20px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .stat-card {
        padding: 10px 12px;
    }
    
    .stat-text {
        font-size: 12px;
    }
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.orange-badge {
    background-color: #ff8a65;
}

.red-badge {
    background-color: #e74c3c;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3436;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 13px;
    color: #636e72;
    line-height: 1.6;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #95a5a6;
}

.meta-item svg {
    color: #95a5a6;
}

/* Responsive - Blog Section */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 40px 0;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .blog-image {
        height: 160px;
    }
    
    .blog-content {
        padding: 16px;
    }
    
    .blog-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .blog-excerpt {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .blog-meta {
        gap: 12px;
    }
    
    .meta-item {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 40px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-title {
        font-size: 15px;
    }
    
    .blog-excerpt {
        font-size: 13px;
    }
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 50px 0 20px;
    color: #2d3436;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #636e72;
}

.contact-item svg {
    color: #ff8a65;
    flex-shrink: 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-link {
    color: #636e72;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff8a65;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright p {
    font-size: 13px;
    color: #95a5a6;
    margin: 0;
}

/* Responsive - Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .footer-contact {
        gap: 20px;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .footer-links {
        gap: 15px;
        padding: 15px 0;
    }
    
    .footer-link {
        font-size: 12px;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-logo {
        height: 35px;
        margin-bottom: 15px;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 12px;
    }
    
    .contact-item {
        font-size: 12px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
        padding: 15px 0;
    }
}

/* Filter Section */
.filter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 0;
    border-bottom: 1px solid #e9ecef;
}

.filter-header {
    text-align: center;
    margin-bottom: 30px;
}

.filter-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 8px 0;
}

.filter-subtitle {
    font-size: 15px;
    color: #636e72;
    margin: 0;
}

.filter-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-size: 13px;
    font-weight: 600;
    color: #2d3436;
}

.filter-select {
    padding: 12px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    font-size: 14px;
    color: #2d3436;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #ff8a65;
    box-shadow: 0 0 0 3px rgba(255, 138, 101, 0.1);
}

.filter-select:hover {
    border-color: #ff8a65;
}

.filter-actions {
    display: flex;
    gap: 12px;
    grid-column: span 4;
    justify-content: flex-end;
    margin-top: 10px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-btn {
    background: #f8f9fa;
    color: #636e72;
    border: 1px solid #dfe6e9;
}

.reset-btn:hover {
    background: #e9ecef;
    border-color: #b2bec3;
}

.apply-btn {
    background: linear-gradient(135deg, #ff8a65 0%, #ff6f43 100%);
    color: #ffffff;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 138, 101, 0.3);
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 0 20px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ffffff;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #636e72;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #f8f9fa;
    border-color: #ff8a65;
    color: #ff8a65;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #636e72;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background: #f8f9fa;
    border-color: #ff8a65;
    color: #ff8a65;
}

.pagination-number.active {
    background: linear-gradient(135deg, #ff8a65 0%, #ff6f43 100%);
    border-color: #ff8a65;
    color: #ffffff;
}

.pagination-dots {
    color: #b2bec3;
    font-weight: 600;
    padding: 0 4px;
}

/* Responsive - Filter & Pagination */
@media (max-width: 1024px) {
    .filter-wrapper {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
    }
    
    .filter-actions {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .filter-section {
        padding: 30px 0;
    }
    
    .filter-title {
        font-size: 26px;
    }
    
    .filter-subtitle {
        font-size: 14px;
    }
    
    .filter-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 16px;
    }
    
    .filter-actions {
        grid-column: span 1;
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .pagination-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .pagination-number {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .filter-title {
        font-size: 22px;
    }
    
    .filter-wrapper {
        padding: 16px;
        gap: 12px;
    }
    
    .filter-select {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .pagination-numbers {
        gap: 4px;
    }
    
    .pagination-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .pagination-dots {
        padding: 0 2px;
    }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 8px 0;
}

.contact-subtitle {
    font-size: 15px;
    color: #636e72;
    margin: 0 0 30px 0;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form .form-group:last-child {
    margin-bottom: 0;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: #2d3436;
}

.contact-form .required {
    color: #e74c3c;
}

.contact-form .form-control {
    padding: 12px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    font-size: 14px;
    color: #2d3436;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #ff8a65;
    box-shadow: 0 0 0 3px rgba(255, 138, 101, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 13px;
    color: #636e72;
    cursor: pointer;
    line-height: 1.5;
}

.contact-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-widget,
.working-hours-widget {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 24px 0;
}

.info-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f3f5;
}

.info-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item:first-child {
    padding-top: 0;
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.phone-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
}

.email-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
}

.clock-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 13px;
    font-weight: 600;
    color: #636e72;
    margin: 0 0 4px 0;
}

.info-value {
    font-size: 16px;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 4px 0;
}

.info-note {
    font-size: 12px;
    color: #95a5a6;
}

/* Social Media */
.social-media-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f3f5;
}

.social-title {
    font-size: 14px;
    font-weight: 600;
    color: #2d3436;
    margin: 0 0 16px 0;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #f77737 100%);
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Working Hours */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.hours-item.emergency {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
}

.hours-item .day {
    font-size: 14px;
    font-weight: 600;
    color: inherit;
}

.hours-item .time {
    font-size: 14px;
    font-weight: 700;
    color: inherit;
}

.hours-item.emergency .day,
.hours-item.emergency .time {
    color: #ffffff;
}

/* Responsive - Contact Section */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form-container {
        padding: 30px 24px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .contact-info-sidebar {
        grid-template-columns: 1fr;
    }
    
    .contact-info-widget,
    .working-hours-widget {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 24px 20px;
    }
    
    .contact-title {
        font-size: 22px;
    }
    
    .contact-subtitle {
        font-size: 14px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-value {
        font-size: 15px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

/* Vehicle Detail Section */
.vehicle-detail-section {
    padding: 40px 0 60px;
  
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #636e72;
    margin-bottom: 30px;
}

.breadcrumb a {
    color: #636e72;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff8a65;
}

.breadcrumb span:last-child {
    color: #2d3436;
    font-weight: 600;
}

.detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Main Content */
.detail-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-image-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
}

.detail-badge {
    position: absolute;
    top: 36px;
    left: 36px;
    background: linear-gradient(135deg, #ff8a65 0%, #ff6f43 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.main-image {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.thumbnail {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #ff8a65;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tabs */
.detail-tabs {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid #f1f3f5;
}

.tab-btn {
    flex: 1;
    padding: 16px 24px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #636e72;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: #ff8a65;
    background: #fff5f2;
}

.tab-btn.active {
    color: #ff8a65;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff8a65 0%, #ff6f43 100%);
}

.tabs-content {
    padding: 30px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: #fff5f2;
    transform: translateY(-2px);
}

.spec-item svg {
    color: #ff8a65;
    flex-shrink: 0;
}

.spec-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-size: 13px;
    color: #636e72;
}

.spec-value {
    font-size: 16px;
    font-weight: 700;
    color: #2d3436;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-group-title {
    font-size: 16px;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 16px 0;
}

.feature-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-items li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #636e72;
}

.feature-items li svg {
    color: #27ae60;
    flex-shrink: 0;
}

/* Terms */
.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.terms-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #2d3436;
    line-height: 1.6;
    padding-left: 30px;
    position: relative;
}

.terms-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

/* Terms Article */
.terms-title {
    font-size: 20px;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #ff8a65;
}

.terms-article {
    line-height: 1.8;
}

.terms-article h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2d3436;
    margin: 24px 0 12px 0;
}

.terms-article h4:first-child {
    margin-top: 0;
}

.terms-article p {
    font-size: 14px;
    color: #636e72;
    margin: 0 0 16px 0;
    text-align: justify;
}

/* Booking Card */
.detail-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vehicle-header {
    margin-bottom: 20px;
}

.vehicle-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 8px 0;
}

.vehicle-category-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #fff5f2;
    color: #ff8a65;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
}

.quick-specs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f3f5;
}

.quick-spec {
    font-size: 14px;
    color: #636e72;
}

.pricing-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f3f5;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 14px;
    color: #636e72;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #2d3436;
}

.booking-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 20px 0;
}

.booking-form .form-group {
    margin-bottom: 16px;
}

.booking-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 8px;
}

.booking-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    font-size: 14px;
    color: #2d3436;
    transition: all 0.3s ease;
}

.booking-form .form-control:focus {
    outline: none;
    border-color: #ff8a65;
    box-shadow: 0 0 0 3px rgba(255, 138, 101, 0.1);
}

.reservation-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #ff8a65 0%, #ff6f43 100%);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.reservation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 138, 101, 0.4);
}

.contact-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.booking-card .contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-card .whatsapp-btn {
    color: #25d366;
    border-color: #25d366;
}

.booking-card .whatsapp-btn:hover {
    background: #25d366;
    color: #ffffff;
}

.booking-card .call-btn {
    color: #ff8a65;
    border-color: #ff8a65;
}

.booking-card .call-btn:hover {
    background: #ff8a65;
    color: #ffffff;
}

/* Responsive - Vehicle Detail */
@media (max-width: 1024px) {
    .detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .detail-sidebar {
        position: static;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vehicle-detail-section {
        padding: 30px 0 40px;
    }
    
    .detail-image-section {
        padding: 16px;
    }
    
    .detail-badge {
        top: 28px;
        left: 28px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: left;
        border-bottom: 1px solid #f1f3f5;
    }
    
    .tab-btn.active::after {
        left: 0;
        right: auto;
        width: 4px;
        height: 100%;
        top: 0;
        bottom: 0;
    }
    
    .tabs-content {
        padding: 20px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        padding: 24px;
    }
    
    .vehicle-title {
        font-size: 24px;
    }
    
    .price-amount {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 13px;
        gap: 8px;
    }
    
    .main-image {
        height: 250px;
    }
    
    .thumbnail {
        height: 80px;
    }
    
    .detail-badge {
        top: 24px;
        left: 24px;
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .spec-item {
        padding: 16px;
    }
    
    .contact-buttons {
        grid-template-columns: 1fr;
    }
}

/* Blog Detail Section */
.blog-detail-section {
    padding: 80px 0;
    
}

.blog-detail-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Main Content (Sol Taraf - %75) */
.blog-detail-content {
    flex: 0 0 75%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.blog-detail-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 40px 0;
    font-size: 14px;
    color: #6c757d;
}

.blog-detail-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-meta .meta-item svg {
    width: 16px;
    height: 16px;
    color: #6c757d;
}

.blog-detail-title {
    padding: 16px 40px;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.blog-detail-text {
    padding: 0 40px 40px;
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
}

.blog-detail-text p {
    margin-bottom: 20px;
}

.blog-detail-text h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 32px;
    margin-bottom: 16px;
}

/* Sidebar (Sağ Taraf - %25) */
.blog-sidebar {
    flex: 0 0 calc(25% - 40px);
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f8f9fa;
}

.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f3f5;
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-link:hover .recent-post-title {
    color: #1b4b8f;
}

.recent-post-title {
    font-size: 14px;
    font-weight: 500;
    color: #212529;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-date {
    font-size: 12px;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-detail-wrapper {
        flex-direction: column;
    }
    
    .blog-detail-content {
        flex: 0 0 100%;
    }
    
    .blog-sidebar {
        flex: 0 0 100%;
        position: static;
    }
    
    .blog-detail-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .blog-detail-section {
        padding: 40px 0;
    }
    
    .blog-detail-image {
        height: 300px;
    }
    
    .blog-detail-meta {
        padding: 20px 24px 0;
        gap: 16px;
        font-size: 13px;
    }
    
    .blog-detail-title {
        padding: 12px 24px;
        font-size: 24px;
    }
    
    .blog-detail-text {
        padding: 0 24px 24px;
        font-size: 15px;
    }
    
    .blog-detail-text h2 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .blog-detail-image {
        height: 220px;
    }
    
    .blog-detail-meta {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .blog-detail-title {
        font-size: 20px;
    }
    
    .blog-detail-text {
        font-size: 14px;
    }
    
    .blog-detail-text h2 {
        font-size: 18px;
    }
}
