:root {
    --primary: #1e3f20; /* Deep Forest Green */
    --accent: #e65c00; /* Sunset Orange */
    --accent-hover: #ff7b25;
    --bg-light: #f7f9f7;
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --radius: 12px;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* Header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
}

.logo-text span {
    color: var(--accent);
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    padding: 0.2rem 0;
}

/* Elegant underline effect for non-button links */
.navbar nav a:not(.nav-btn-edit)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.navbar nav a:not(.nav-btn-edit):hover::after {
    width: 100%;
}

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

.navbar nav a.nav-btn-edit {
    border: 2px solid var(--accent);
    color: var(--accent) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.navbar nav a.nav-btn-edit:hover {
    background-color: var(--accent);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 92, 0, 0.2);
}

@media (max-width: 1100px) {
    html {
        scroll-padding-top: 180px;
    }
    .navbar {
        flex-direction: column;
        padding: 1.2rem 1rem;
        gap: 1rem;
    }
    .logo {
        justify-content: center;
        gap: 8px;
    }
    .logo img {
        height: 40px !important;
    }
    .logo-text {
        font-size: 1.3rem;
    }
    .navbar nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem 1.2rem;
    }
    .navbar nav a {
        margin-left: 0;
        font-size: 0.9rem;
    }
    .navbar nav a.nav-btn-edit {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(30, 63, 32, 0.65), rgba(30, 63, 32, 0.75)), url('./hero_bg.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(230, 92, 0, 0.15);
    border: 1px solid rgba(230, 92, 0, 0.3);
    color: #ff944d;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    animation: fadeInDown 1s ease;
}

.hero-content h1 {
    color: var(--white);
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: -1.5px;
    line-height: 1.15;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    animation: fadeInDown 1s ease;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.3s both;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 92, 0, 0.3);
}

.btn-primary:hover:not(:disabled) {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 92, 0, 0.4);
}

.btn-primary:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Fleet Section */
.fleet-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.fleet-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.caravan-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.caravan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-desc {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.5;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.price {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
}

.price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal {
    background: var(--white);
    border-radius: var(--radius);
    width: 90%;
    max-width: 800px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    position: relative;
    transform: translateY(0) scale(1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-overlay.hidden .modal {
    transform: translateY(20px) scale(0.95);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    z-index: 10;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--text-dark);
}

.modal h3 {
    padding: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 1px solid #eee;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.modal-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
}

.options-group {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
}

.checkbox-label:last-child {
    margin-bottom: 0;
}

.checkbox-label input {
    margin-top: 0.2rem;
    width: auto;
    transform: scale(1.2);
}

.form-group input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 63, 32, 0.1);
}

.summary-card {
    background: var(--bg-light);
    padding: 1.2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.summary-card hr {
    border: none;
    border-top: 1px dashed #ccc;
    margin: 0.5rem 0;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

.full-width {
    width: 100%;
    margin-top: 0.5rem;
}

.success-msg {
    color: #27ae60;
    font-weight: 600;
    text-align: center;
    background: #e8f8f5;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

.hidden {
    display: none !important;
}

footer {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Gantt Chart Overview */
.gantt-wrapper {
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 0 0 8px 8px;
    background: var(--white);
}

.gantt-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.gantt-table th, .gantt-table td {
    border: 1px solid #e2e8f0;
    text-align: center;
    padding: 0.6rem 0.3rem;
    font-size: 0.85rem;
}

.gantt-caravan-cell {
    position: sticky;
    left: 0;
    background: var(--white);
    z-index: 10;
    text-align: left !important;
    font-weight: 600;
    white-space: nowrap;
    padding-left: 1rem !important;
    box-shadow: 2px 0 5px rgba(0,0,0,0.05);
}

.gantt-table th.gantt-caravan-cell {
    z-index: 11;
    background: var(--bg-light);
}

.gantt-table th.weekend {
    background-color: #cbd5e1 !important;
    color: #0f172a !important;
    font-weight: 700;
}

.gantt-table td.weekend {
    background-color: #f1f5f9;
}

.gantt-table td.weekend.free {
    background-color: rgba(39, 174, 96, 0.16) !important;
}

.gantt-table td.booked {
    background-color: rgb(39, 174, 96) !important;
    color: white !important;
    cursor: not-allowed;
}

.gantt-table td.pending {
    background-color: var(--accent) !important;
    color: white !important;
    cursor: help;
}

.gantt-table td.free {
    background-color: rgba(39, 174, 96, 0.08);
}

.gantt-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border: 1px solid #e2e8f0;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    gap: 10px;
}

.gantt-controls button {
    background: var(--white);
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    padding: 0.4rem 1.2rem;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-dark);
    transition: all 0.2s;
    white-space: nowrap;
}

.gantt-controls button:hover {
    background: var(--primary);
    color: var(--white);
}

/* Legenda Ganttova diagramu */
.gantt-legend {
    max-width: 1200px;
    margin: 1.5rem auto 0 auto;
    padding: 0 5%;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-dark);
    flex-wrap: wrap;
}

.gantt-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.gantt-legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

@media (max-width: 500px) {
    .gantt-controls button .gantt-btn-text {
        display: none;
    }
    .gantt-controls button {
        padding: 0.4rem 0.8rem;
    }
    .gantt-controls span {
        font-size: 1.1rem !important;
    }
}


/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    .modal-body img {
        height: 200px;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* Accordion styling for cards */
.accordion-container {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}
.accordion-container.open {
    grid-template-rows: 1fr;
}
.accordion-inner {
    overflow: hidden;
    padding: 0 1.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    white-space: pre-wrap;
    background: #f8f9fa;
}
.accordion-container.open .accordion-inner {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}
.btn-sm {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}
.btn-sm:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: none;
}

/* Terms Section */
.terms-section {
    padding: 6rem 5%;
    background-color: var(--white);
}

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

.terms-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.term-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: left;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.term-card:hover {
    transform: translateY(-5px);
}

.term-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.term-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.term-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Lightbox Gallery */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

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

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -20px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    z-index: 2010;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    z-index: 2010;
    transition: background 0.3s;
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.lightbox-prev {
    left: -50px;
}

.lightbox-next {
    right: -50px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .lightbox-prev { left: -10px; padding: 0.5rem; }
    .lightbox-next { right: -10px; padding: 0.5rem; }
    .lightbox-close { right: 0px; top: -30px; font-size: 2.5rem; }
    .lightbox-counter { bottom: -30px; }

    /* Vodorovně rolovatelné menu na mobilu, aby se zamezilo zalamování a šetřilo se místo */
    .navbar nav {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        width: 100%;
        justify-content: flex-start !important;
        padding: 0.5rem 15px;
        gap: 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Skryje scrollbar ve Firefoxu */
    }
    .navbar nav::-webkit-scrollbar {
        display: none; /* Skryje scrollbar v Chrome/Safari */
    }
    .navbar nav a {
        flex-shrink: 0 !important;
        font-size: 0.95rem;
    }
    .navbar nav a.nav-btn-edit {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    /* Optimalizace tabulky přehledu obsazenosti pro mobilní telefony */
    .gantt-caravan-cell {
        max-width: 115px !important;
        min-width: 115px !important;
        width: 115px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        padding-left: 0.5rem !important;
        padding-right: 0.3rem !important;
        font-size: 0.8rem !important;
    }
    .gantt-table th, .gantt-table td {
        padding: 0.4rem 0.15rem !important;
        font-size: 0.75rem !important;
    }
}

/* Nápověda pro otočení telefonu na šířku */
.portrait-hint {
    display: none;
}

@media (max-width: 768px) and (orientation: portrait) {
    .portrait-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(230, 92, 0, 0.08);
        border: 1px solid rgba(230, 92, 0, 0.15);
        color: var(--text-dark);
        padding: 0.7rem 1.2rem;
        border-radius: var(--radius);
        font-size: 0.85rem;
        font-weight: 600;
        margin: -1.5rem auto 2rem auto;
        max-width: 90%;
        text-align: center;
        border-left: 4px solid var(--accent);
    }
}

/* Towing & Driving Licenses Guide Infographic */
.towing-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.2);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.towing-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .towing-grid {
        grid-template-columns: 1fr;
    }
}

.towing-calculator {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.towing-calculator h3 {
    margin-top: 0;
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.75rem;
}

.towing-calc-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.6rem;
}

.towing-caravan-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
    gap: 0.6rem;
    margin-bottom: 1.8rem;
}

.towing-caravan-btn {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 10px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: #475569;
}

.towing-caravan-btn:hover {
    border-color: var(--primary);
    background: #f0fdf4;
    color: var(--primary);
}

.towing-caravan-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.towing-caravan-btn span.weight {
    font-size: 0.75rem;
    opacity: 0.8;
}

.towing-custom-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.2rem 0.6rem;
    background: #f8fafc;
    font-size: 0.85rem;
}

.towing-custom-input-group input {
    border: none;
    background: transparent;
    width: 60px;
    text-align: center;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
    padding: 0.2rem;
}
.towing-custom-input-group input:focus {
    outline: none;
}

.towing-slider-group {
    margin-bottom: 2rem;
}

.towing-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.towing-slider-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    background: #f0fdf4;
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(39,174,96,0.15);
}

.towing-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e2e8f0;
    outline: none;
    margin: 1rem 0;
}

.towing-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.1s ease;
}

.towing-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.towing-progress-wrapper {
    background: #f1f5f9;
    height: 12px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0.5rem;
    border: 1px solid #e2e8f0;
}

.towing-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary);
    transition: width 0.3s ease, background-color 0.3s ease;
    border-radius: 10px;
}

.towing-progress-markers {
    position: relative;
    height: 20px;
    margin-bottom: 1.8rem;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
}

.towing-marker {
    position: absolute;
    transform: translateX(-50%);
    top: 0;
}

.towing-verdict-box {
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.towing-verdict-box.verdict-b {
    background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%);
    border: 1px solid #81e6d9;
    color: #1a4a40;
}

.towing-verdict-box.verdict-b96 {
    background: linear-gradient(135deg, #fffaf0 0%, #feebc8 100%);
    border: 1px solid #fbd38d;
    color: #7b341e;
}

.towing-verdict-box.verdict-be {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 1px solid #feb2b2;
    color: #742a2a;
}

.towing-verdict-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.towing-verdict-desc {
    font-size: 0.9rem;
    line-height: 1.45;
}

/* Right Side - Info Cards */
.towing-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.towing-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    transition: all 0.25s ease;
    border-left: 5px solid #ccc;
}

.towing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.05);
}

.towing-card.b-license { border-left-color: rgb(39, 174, 96); }
.towing-card.b96-license { border-left-color: #f39c12; }
.towing-card.be-license { border-left-color: #e74c3c; }

.towing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.towing-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
}

.towing-card.b-license .towing-card-title { color: rgb(39, 174, 96); }
.towing-card.b96-license .towing-card-title { color: #f39c12; }
.towing-card.be-license .towing-card-title { color: #e74c3c; }

.towing-card-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 30px;
}
.towing-card.b-license .towing-card-badge { background: #e6fffa; color: #234e52; }
.towing-card.b96-license .towing-card-badge { background: #fffaf0; color: #7b341e; }
.towing-card.be-license .towing-card-badge { background: #fff5f5; color: #742a2a; }

.towing-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.55;
}

.towing-card-example {
    margin-top: 0.8rem !important;
    padding-top: 0.6rem;
    border-top: 1px dashed #e2e8f0;
    font-style: italic;
    font-size: 0.85rem !important;
    color: #64748b !important;
}

/* Technical Document Tip Card */
.towing-tech-tip {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

@media (max-width: 768px) {
    .towing-tech-tip {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.towing-tech-icon {
    font-size: 2.2rem;
    background: #e2e8f0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    color: var(--primary);
}

.towing-tech-text h4 {
    margin: 0 0 0.4rem 0;
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 700;
}

.towing-tech-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #475569;
}

/* Fear-Busting Section */
.towing-fears-wrapper {
    margin-top: 4.5rem;
    border-top: 1px solid #edf2f7;
    padding-top: 3.5rem;
}

.towing-fears-wrapper h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.towing-fears-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .towing-fears-grid {
        grid-template-columns: 1fr;
    }
}

.towing-fear-card {
    background: #fafbfa;
    border: 1px solid #e8ede9;
    border-radius: 14px;
    padding: 1.8rem;
    transition: all 0.25s ease;
}

.towing-fear-card:hover {
    transform: translateY(-3px);
    border-color: rgba(39,174,96,0.3);
    box-shadow: 0 10px 25px rgba(39,174,96,0.03);
}

.towing-fear-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.towing-fear-card h4 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.towing-fear-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.55;
}
