/* RIGHT SIDE - Burgundy Sidebar */
.sidebar {
    background: linear-gradient(90deg, #a56575 0%, #955568 25%, #85455a 50%, #75354c 75%, #65253e 100%);
    padding: 40px 35px;
    color: white;
    position: sticky;
    top: 0;
/*    height: 100vh;*/
    overflow-y: auto;
}

    .sidebar h2 {
        text-align: center;
        font-size: 18px;
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: normal;
        color: white;
    }

.journey-steps {
    margin-bottom: 40px;
}

.step {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    position: absolute;
    top: -10px;
    left: 15px;
    width: 28px;
    height: 28px;
    background: #d4a574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    color: #1a3a5a;
    border: 2px solid white;
}

.step-icon {
    font-size: 32px;
    margin-bottom: 12px;
    text-align: center;
}

.step h4 {
    font-size: 13px;
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: 1px;
}

.step p {
    font-size: 11px;
    text-align: center;
    opacity: 0.8;
    line-height: 1.5;
}

.step-arrow {
    display: block;
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
    color: #d4a574;
}

.testimonials {
    margin-bottom: 40px;
}

    .testimonials h3 {
        font-size: 14px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
        text-align: center;
        color: white;
    }

.testimonial-grid {
    display: grid;
    gap: 15px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-img {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4a574 0%, #b8926a 100%);
    border-radius: 50%;
    margin: 0 auto 12px;
}

.stars {
    color: #ffd700;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
}

.testimonial p {
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 8px;
    opacity: 0.9;
}

.name {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.quote-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%), linear-gradient(225deg, rgba(212, 165, 116, 0.03) 0%, transparent 50%);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

    .quote-form h3 {
        font-size: 15px;
        text-align: center;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #1a3a5a;
        font-weight: 700;
    }

.contact-info {
    text-align: center;
    margin-bottom: 20px;
    font-size: 12px;
    color: #5a6c7d;
}

    .contact-info a {
        color: #d4a574;
        text-decoration: none;
        font-weight: 600;
    }

.phone-number {
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0;
    color: #1a3a5a;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 12px;
}

    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background: #ffffff;
        color: var(--text-muted);
        font-size: 13px;
        transition: all 0.3s ease;
    }

        .form-group input::placeholder, .form-group textarea::placeholder {
            color: #95a5a6;
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            background: #ffffff;
            border-color: #1fc8e3;
            outline: none;
            box-shadow: 0 0 0 4px rgba(31, 200, 227, 0.08);
        }

    .form-group textarea {
        min-height: 100px;
        resize: vertical;
        font-family: 'Arial', sans-serif;
    }

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2c5f8d 0%, #1e4466 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

    .submit-btn:hover {
        background: linear-gradient(135deg, #1e4466 0%, #15334d 100%);
        transform: translateY(-2px);
    }

.map-placeholder {
    background: #f0f0f0;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 24px;
    color: #666;
}

.service-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    color: white;
}

.badge-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.badge strong {
    display: block;
    font-size: 12px;
    color: white;
}
