/* Transport Detail Page Styles */
.transport-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px 40px;
    /* Add top padding for navbar */
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb i {
    font-size: 0.7rem;
    color: #ccc;
}

.breadcrumb span {
    color: #666;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

/* Vehicle Header */
.vehicle-header {
    margin-bottom: 25px;
}

.vehicle-category {
    display: inline-block;
    padding: 6px 16px;
    background: #eefdfd;
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.vehicle-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0;
}

/* Image Gallery */
.image-gallery {
    margin-bottom: 40px;
}

.main-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.thumbnail {
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.thumbnail:hover {
    border-color: #ddd;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

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

/* Specifications */
.specifications-section,
.features-section,
.description-section,
.terms-section {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    margin-bottom: 25px;
}

.specifications-section h2,
.features-section h2,
.description-section h2,
.terms-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 20px 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.spec-label {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
}

.spec-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Features */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 1rem;
}

.feature-badge span {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Description */
.description-section p {
    line-height: 1.8;
    color: #666;
    font-size: 1rem;
}

/* Pricing Sidebar */
.pricing-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.pricing-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 20px 0;
}

.duration-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.duration-option {
    display: block;
    cursor: pointer;
}

.duration-option input[type="radio"] {
    display: none;
}

.duration-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.3s;
}

.duration-option input[type="radio"]:checked+.duration-content {
    border-color: var(--primary-color);
    background: #eefdfd;
}

.duration-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.duration-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-info {
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #666;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--primary-color);
}

.btn-book-now {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0, 166, 178, 0.3);
    margin-bottom: 20px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 166, 178, 0.4);
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.badge-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.badge-item span {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        position: static;
    }

    .specs-grid,
    .features-list {
        grid-template-columns: 1fr;
    }
}