/* Additional Custom Styles */

/* Light Corporate Theme Variables */
:root {
    --primary-color: #1a5b7a; /* professional blue */
    --secondary-color: #333333; /* dark gray */
    --accent-color: #ff6b35; /* bright orange */
    --text-color: #333333; /* dark text */
    --muted-color: #666666;
    --border-color: #e0e0e0;
    --card-bg: #ffffff;
    --bg-light: #f5f7fa;
    --hero-overlay: rgba(26, 91, 122, 0.7);
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
}

html, body {
    background: #fcfcfc;
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

a { 
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Cards and sections */
.container, .card, .service-card, .kit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 8px;
}

.btn-primary { 
    background: var(--primary-color); 
    color: white; 
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover { 
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.btn-outline { 
    border: 2px solid var(--primary-color); 
    color: var(--primary-color); 
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--bg-light);
}

.btn-light { 
    background: var(--bg-light); 
    color: var(--text-color); 
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hero */
.hero-section.hero-bg { 
    background-position: center; 
    background-size: cover; 
    color: white;
    padding: 4rem 0;
    position: relative;
}

.hero-section h1, .hero-section h2, .hero-section h3 { 
    color: white;
    font-weight: 700;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Services cards */
.service-card { 
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card h3 { 
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

/* Reviews */
.review-card { 
    background: var(--card-bg); 
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* FAQ */
.faq { 
    background: transparent;
    margin: 1.5rem 0;
}

.faq .question { 
    font-weight: 700; 
    color: var(--text-color);
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq .question:hover {
    background: var(--border-color);
}

.faq .answer { 
    color: var(--muted-color);
    padding: 1rem;
    display: none;
}

.faq.active .answer {
    display: block;
    animation: slideDown 0.3s ease-out;
}

/* Header & Navigation */
.header {
    background: white;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header .header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    padding: 0.75rem 1rem;
}

.header-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav .primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav .primary-menu li {
    position: relative;
}

.main-nav .primary-menu a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 0;
    font-weight: 500;
    transition: color 0.2s ease;
    border-bottom: 3px solid transparent;
}

.main-nav .primary-menu a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--accent-color);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header-actions .btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.hero-section.hero-bg {
    background-image: linear-gradient(135deg, rgba(26, 91, 122, 0.7), rgba(255, 107, 53, 0.7)), url('../images/hero-car.jpg');
    background-size: cover;
    background-position: center center;
    padding: 5rem 0;
    color: white;
}

.hero-section .btn-primary { 
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Brand gallery */
.brand-gallery { 
    display: flex; 
    gap: 2rem; 
    justify-content: center; 
    align-items: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.brand-item { 
    width: 140px; 
    height: 80px; 
    background: white; 
    border: 2px solid var(--border-color);
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    overflow: hidden; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.brand-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 16px rgba(26, 91, 122, 0.15);
    transform: translateY(-2px);
}

.brand-item img { 
    max-width: 85%; 
    max-height: 85%; 
    object-fit: contain;
}

/* Kits */
.remap-kits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.remap-kits .kit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.remap-kits .kit-card:hover { 
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.remap-kits .kit-card img { 
    width: 100%; 
    height: 200px; 
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-section { padding: 2rem 1rem; }
    .brand-item { width: 100px; height: 60px; }
    .brand-gallery { gap: 1rem; }
    .remap-kits { grid-template-columns: 1fr; }
    .main-nav .primary-menu { gap: 1rem; }
}

/* Misc tweaks */
.mobile-menu-toggle { background: transparent; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-color); }


/* Success and Error Messages */
.booking-success-message {
    animation: slideDown 0.3s ease-out;
}

.booking-error-message {
    animation: slideDown 0.3s ease-out;
}

/* Site Announcement Banner */
.announcement-banner {
    padding: 1rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    animation: slideDown 0.3s ease-in-out;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-bottom: 2px solid var(--accent-color);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.announcement-banner.hidden {
    display: none;
}

.announcement-content {
    flex: 1;
    font-weight: 500;
}

.announcement-content a {
    text-decoration: underline;
    color: white;
    font-weight: 600;
}

.announcement-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    color: white;
}

.announcement-close:hover {
    transform: scale(1.2);
}

/* Reviews Slider Section */
.reviews-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--muted-color);
}

.reviews-slider-wrapper {
    position: relative;
    padding: 2rem 0;
}

.reviews-slider {
    display: flex;
    overflow: hidden;
    border-radius: 1rem;
    transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.review-slide {
    flex: 0 0 100%;
    padding: 0 1rem;
}

.review-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.review-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #ffc107;
}

.review-text {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.review-car-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #f0f0f0;
}

.review-car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-footer {
    border-top: 2px solid var(--border-color);
    padding-top: 1rem;
}

.customer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.customer-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.car-info {
    color: var(--secondary-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.car-info i {
    color: var(--accent-color);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slider-nav:hover {
    background-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.slider-prev {
    left: -80px;
}

.slider-next {
    right: -80px;
}

/* Slider Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background-color: var(--secondary-color);
}

/* SEO Tools Section */
.seo-tools-bar {
    background-color: #f9fafb;
    padding: 1rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
}

.seo-tool {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.seo-tool:hover {
    border-color: var(--primary-color);
    background-color: #dbeafe;
}

.seo-tool i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.seo-tool-label {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

/* SEO Metadata Display */
.post-seo-meta {
    background: #f0f9ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.post-seo-meta h4 {
    color: var(--primary-color);
    margin-top: 0;
}

.seo-meta-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #bfdbfe;
}

.seo-meta-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.seo-meta-label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
}

.seo-meta-value {
    color: var(--text-color);
}

/* Responsive adjustments for reviews slider */
@media (max-width: 1200px) {
    .slider-prev {
        left: -50px;
    }

    .slider-next {
        right: -50px;
    }
}

@media (max-width: 768px) {
    .announcement-banner {
        flex-direction: column;
        gap: 1rem;
    }

    .review-slide {
        padding: 0;
    }

    .review-card {
        padding: 1.5rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-prev {
        left: 0;
    }

    .slider-next {
        right: 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .seo-tools-bar {
        flex-direction: column;
    }

    .seo-tool {
        width: 100%;
    }

    .review-car-image {
        height: 150px;
    }
}
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial {
    border-left: 4px solid var(--primary-color);
}

.testimonial-content {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-position {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.booking-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 2rem auto;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.slider-wrapper {
    margin: 1.5rem 0;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.price-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: background 0.2s;
}

.price-slider::-webkit-slider-thumb:hover {
    background: var(--accent-color);
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.price-slider::-moz-range-thumb:hover {
    background: var(--accent-color);
}

.color-picker-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.color-option {
    text-align: center;
}

.color-box {
    width: 100%;
    height: 100px;
    border-radius: 0.5rem;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 0.5rem;
}

.color-box:hover {
    transform: scale(1.05);
}

.color-box.active {
    border-color: var(--text-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.badge-input {
    display: flex;
    gap: 0.5rem;
}

.badge-input input {
    flex: 1;
}

.tabs {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.tab {
    padding: 1rem 2rem;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    margin-bottom: -2px;
}

.tab:hover {
    background-color: #f9fafb;
}

.tab.active {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.breadcrumbs {
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.breadcrumbs a {
    color: var(--primary-color);
}

.error {
    border-left-color: var(--danger-color) !important;
}

.error input,
.error textarea,
.error select {
    border-color: var(--danger-color) !important;
}

.success-message {
    background-color: #d1fae5;
    border: 1px solid var(--success-color);
    color: #065f46;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.error-message {
    background-color: #fee2e2;
    border: 1px solid var(--danger-color);
    color: #7f1d1d;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

.modal-close:hover {
    color: var(--text-color);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .service-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .tabs {
        flex-wrap: wrap;
    }

    .tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .color-picker-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-content {
        padding: 1.5rem;
        max-width: 90%;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
}

/* Booking Form Styles */
.booking-form-wrapper {
    max-width: 900px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.booking-form {
    padding: 2rem;
}

.booking-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.booking-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.booking-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color, #1a73e8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-section-title i {
    font-size: 1.4rem;
}

/* Form Groups and Rows */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color, #1a73e8);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

/* Remap Types Selection */
.remap-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.remap-type-option input[type="radio"] {
    display: none;
}

.remap-type-label {
    display: block;
    padding: 1.5rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: #f9f9f9;
}

.remap-type-option input[type="radio"]:checked + .remap-type-label {
    border-color: var(--primary-color, #1a73e8);
    background: rgba(26, 115, 232, 0.05);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.15);
}

.remap-type-label:hover {
    border-color: var(--primary-color, #1a73e8);
}

.remap-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.remap-type-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.remap-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color, #1a73e8);
}

.remap-type-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.detail-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    color: #666;
}

.detail-item i {
    font-size: 0.9rem;
}

.remap-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Addons Section */
.addons-info-notice {
    background: #e3f2fd;
    border-left: 4px solid var(--primary-color, #1a73e8);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1565c0;
    font-size: 0.9rem;
}

.addons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.addon-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    background: #f9f9f9;
    transition: all 0.3s;
}

.addon-item:hover {
    border-color: var(--primary-color, #1a73e8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.addon-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.addon-checkbox-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--primary-color, #1a73e8);
}

.addon-checkbox-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    cursor: pointer;
    gap: 0.75rem;
}

.addon-name {
    font-weight: 600;
    color: #333;
}

.addon-price {
    font-weight: 700;
    color: var(--primary-color, #1a73e8);
    white-space: nowrap;
}

.addon-info-tab {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
}

.addon-info-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    margin: -0.5rem;
    cursor: pointer;
    color: var(--primary-color, #1a73e8);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.addon-info-toggle:hover {
    color: #0d47a1;
}

.addon-info-toggle i {
    transition: transform 0.3s;
}

.addon-info-toggle.active i {
    transform: rotate(180deg);
}

.addon-info-content {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    animation: slideDown 0.3s ease-out;
}

.addon-section {
    margin-bottom: 1rem;
}

.addon-section:last-child {
    margin-bottom: 0;
}

.addon-section h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.addon-section p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.addon-requirements {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    background: #f0f0f0;
    padding: 0.75rem;
    border-radius: 4px;
}

.addon-modifications {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #856404;
    display: flex;
    gap: 0.5rem;
    line-height: 1.5;
}

.addon-modifications i {
    flex-shrink: 0;
    margin-top: 2px;
}

.addon-full-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

/* Pricing Summary */
.booking-summary {
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.05) 0%, rgba(26, 115, 232, 0.02) 100%);
    border: 2px solid var(--primary-color, #1a73e8);
    border-radius: 8px;
    padding: 2rem;
}

.pricing-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.pricing-label {
    font-weight: 500;
    color: #333;
}

.pricing-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.pricing-row.pricing-total {
    border-top: 2px solid var(--primary-color, #1a73e8);
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.pricing-row.pricing-total .pricing-value {
    font-size: 1.5rem;
    color: var(--primary-color, #1a73e8);
}

/* Footer & Submit */
.booking-footer {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color, #1a73e8);
    flex-shrink: 0;
}

.btn-lg {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-color, #1a73e8);
    color: white;
}

.btn-primary:hover {
    background: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-form {
        padding: 1.5rem;
    }

    .booking-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .remap-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .remap-type-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .remap-price {
        align-self: flex-start;
        margin-top: 0.5rem;
    }

    .addons-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .addon-item {
        padding: 1rem;
    }

    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .remap-type-details {
        gap: 0.5rem;
    }

    .detail-item {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .booking-form-wrapper {
        margin: 1rem 0;
        border-radius: 0;
    }

    .booking-form {
        padding: 1rem;
    }

    .booking-section-title {
        font-size: 1.1rem;
    }

    .booking-section {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .remap-type-label {
        padding: 1rem;
    }

    .btn-lg {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .pricing-row.pricing-total {
        font-size: 1rem;
    }

    .pricing-row.pricing-total .pricing-value {
        font-size: 1.3rem;
    }
}

/* Print styles */
@media print {
    .header, .footer, .sidebar, .btn, button {
        display: none;
    }

    .main-content {
        width: 100%;
    }
}
