.garage-detail-page {
    background: #000;
    min-height: 100vh;
    padding: 40px 20px 80px;
}

.garage-detail-container {
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #fff;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FFD700;
}

.breadcrumb span {
    color: #fff;
}

.garage-header-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: center;
}

.garage-image-container {
    width: 100%;
    height: 400px;
    background: #111;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border: 2px solid #222;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.garage-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.no-image-placeholder {
    font-size: 120px;
    color: #FFD700;
}

.garage-title-section {
    padding: 20px 0;
}

.garage-title {
    font-size: 48px;
    color: #fff;
    font-weight: 800;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.garage-location {
    font-size: 20px;
    color: #aaa;
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.garage-main-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    margin-bottom: 50px;
}

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

.content-section {
    background: transparent;
}

.content-section h2 {
    font-size: 28px;
    color: #FFD700;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.garage-text {
    font-size: 17px;
    color: #ccc;
    line-height: 1.9;
    margin: 0;
}

.address-full {
    font-size: 16px;
    color: #aaa;
    line-height: 1.7;
    margin: 0 0 25px 0;
}

.address-full strong {
    color: #fff;
    font-size: 18px;
}

.map-embed {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #222;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 400px;
}

.btn-directions {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #fff;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-directions:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}

.garage-right-sidebar {
    position: relative;
}

.contact-card-sticky {
    position: sticky;
    top: 20px;
    background: #111;
    border-radius: 20px;
    padding: 35px;
    border: 2px solid #222;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.contact-card-sticky h3 {
    font-size: 24px;
    color: #FFD700;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.contact-list-clean {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #222;
}

.contact-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 12px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-data {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-data:hover {
    color: #FFD700;
}

a.contact-data {
    color: #fff;
}

a.contact-data:hover {
    color: #FFD700;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: #FFD700;
    color: #000;
    border: 1px solid #FFD700;
}

.btn-cta-primary:hover {
    background: #FFA500;
    border-color: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.btn-cta-secondary:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.25);
}

.back-to-list {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #222;
}

.btn-back {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #888;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.btn-back:hover {
    color: #FFD700;
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
    transform: translateX(-5px);
}

@media (max-width: 1024px) {
    .garage-main-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card-sticky {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-overlay h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .garage-detail-page {
        padding: 30px 15px 60px;
    }
    
    .breadcrumb {
        margin-bottom: 20px;
        font-size: 13px;
        flex-wrap: wrap;
    }
    
    .garage-header-section {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .garage-image-container {
        height: 250px;
        padding: 20px;
    }
    
    .no-image-placeholder {
        font-size: 80px;
    }
    
    .garage-title-section {
        text-align: center;
        padding: 0;
    }
    
    .garage-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .garage-location {
        font-size: 16px;
        justify-content: center;
    }
    
    .garage-main-grid {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .garage-left-content {
        gap: 35px;
    }
    
    .content-section h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .garage-text {
        font-size: 16px;
    }
    
    .map-embed iframe {
        height: 300px;
    }
    
    .btn-directions {
        width: 100%;
        text-align: center;
    }
    
    .contact-card-sticky {
        padding: 25px;
        border-radius: 16px;
    }
    
    .contact-card-sticky h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .contact-list-clean {
        gap: 18px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .contact-label {
        font-size: 11px;
    }
    
    .contact-data {
        font-size: 15px;
    }
    
    .cta-buttons {
        gap: 12px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .back-to-list {
        padding-top: 30px;
    }
    
    .btn-back {
        width: 100%;
        padding: 14px 24px;
    }
}
