/* Start custom CSS for html, class: .elementor-element-947f3dc *//* WALDOCH REVIEW FORM – FINAL WORKING VERSION */

/* Root Container */
.form-container {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 1100px;
    width: 95%;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 120px;
}

/* Logo */
.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.waldoch-logo {
    height: auto;
    max-height: 60px;
    max-width: 320px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Typography */
h1 {
    text-align: center;
    color: #333;
    margin: 0 0 10px;
    font-size: 2.2rem;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

h3 {
    text-align: center;
    color: #2d3748;
    margin-bottom: 30px;
    font-size: 1.6rem;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 40px;
}

.progress-bar {
    height: 12px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: #00a651;
    border-radius: 10px;
    transition: width 0.6s ease-in-out;
}

/* Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* Vehicle Selection */
.yes-no-group {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.option-card {
    flex: 1;
    max-width: 240px;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    background: #fff;
    border: 2px solid #e2e8f0;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.15);
    border-color: #00a651;
}

.option-card input {
    display: none;
}

.option-card input:checked+.label-text {
    color: #00a651;
    font-weight: bold;
}

.label-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.vehicle-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 15px;
}

/* Packages Grid & Groups */
.packages-grid {
    display: block;
}

.group-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin: 50px 0 25px;
}

.group-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Package Card */
.package-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 580px;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Two Images Per Card */
.package-images-row {
    display: flex;
    gap: 12px;
    padding: 16px 16px 0;
}

.package-img {
    width: 50%;
    height: 240px;
    object-fit: contain;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 12px;
    box-sizing: border-box;
}

.package-img.logo {
    height: 280px;
    padding: 20px;
}

.package-img.photo {
    height: 280px;
    padding: 8px;
}

/* Card Content */
.package-card h4 {
    margin: 20px 20px 10px;
    font-size: 1.4rem;
    color: #2d3748;
    text-align: center;
}

.package-card p {
    margin: 0 20px 20px;
    color: #4a5568;
    font-size: 1rem;
    flex-grow: 1;
}

.view-btn,
.back-btn {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin: 20px auto;
    display: block;
}

.view-btn {
    background: #0066cc;
    color: white;
    border: none;
}

.back-btn {
    background: #f1f5f9;
    color: #4a5568;
    border: 1px solid #cbd5e1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .package-images-row {
        flex-direction: column;
    }

    .package-img,
    .package-img.logo,
    .package-img.photo {
        width: 100%;
        height: 260px;
    }

    .group-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */