
body {
    background-color: #ffffff;
}
.quote-page {
    max-width: 1400px;
    margin: 60px auto 100px;
    padding: 0 20px;
}
.quote-header h1 {
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 40px;
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}
.contact-card {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 40px;
}
.card-title {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 30px;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 20px;
}
.quote-contact-label {
    font-size: 14px;
    color: #888888;
    margin-bottom: 8px;
}
.contact-val {
    font-size: 18px;
    color: #333333;
    line-height: 1.5;
}
.message-section {
    margin-top: 40px;
}
.message-subtitle {
    font-size: 16px;
    color: #666;
}
.message-title {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 10px 0 50px;
}
.quote-form {
    width: 100%;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.form-group {
    position: relative;
}
.form-group.full-width {
    margin-bottom: 40px;
}
.quote-form input, .quote-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #E5E5E5;
    padding: 12px 30px 12px 0;
    font-size: 16px;
    color: #1a1a1a;
    outline: none;
    transition: 0.3s;
    font-family: inherit;
}
.quote-form input:focus, .quote-form textarea:focus {
    border-bottom-color: #E62B2B;
}
.quote-form input::placeholder, .quote-form textarea::placeholder {
    color: #A0A0A0;
}
.quote-form textarea {
    resize: vertical;
}
.form-icon {
    position: absolute;
    right: 0;
    bottom: 12px;
    width: 18px;
    height: 18px;
    fill: #A0A0A0;
    pointer-events: none;
}
.quote-form input:focus ~ .form-icon,
.quote-form textarea:focus ~ .form-icon {
    fill: #E62B2B;
}
.quote-submit-btn {
    background: #E62B2B;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.quote-submit-btn:hover {
    background: #C42222;
}

@media (max-width: 991px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .quote-header h1 {
        font-size: 32px;
    }
    .message-title {
        font-size: 36px;
    }
}
