/* =============================================
   GET QUOTE PAGE STYLES - FULLY RESPONSIVE
   ============================================= */

/* Page Header / Hero Section */
.quote-page-header {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #021936 0%, #0a2a4a 100%);
    overflow: hidden;
    text-align: center;
}

.quote-page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.quote-page-header__title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.quote-page-header__subtitle {
    font-size: 18px;
    color: #cbd5e0;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.quote-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.quote-breadcrumb li {
    color: #0EBD66;
    font-size: 14px;
}

.quote-breadcrumb li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quote-breadcrumb li a:hover {
    color: #0EBD66;
}

/* Quote Form Section */
.quote-form-section {
    padding: 80px 0;
    background: #ffffff;
}

.quote-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    padding: 50px;
    border: 1px solid #e2e8f0;
}

.quote-form-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
    text-align: center;
}

.quote-form-subtitle {
    color: #4a5568;
    font-size: 16px;
    margin-bottom: 35px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a202c;
    font-size: 14px;
}

.form-group label .required {
    color: #e53e3e;
    margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Lexend', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0EBD66;
    box-shadow: 0 0 0 3px rgba(14, 189, 102, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
    min-width: calc(50% - 10px);
}

/* Service Options */
.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.service-option {
    flex: 1;
    min-width: 150px;
}

.service-option input {
    display: none;
}

.service-option label {
    display: block;
    padding: 14px 20px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    color: #4a5568;
}

.service-option input:checked + label {
    background: #0EBD66;
    border-color: #0EBD66;
    color: #ffffff;
}

.service-option label:hover {
    border-color: #0EBD66;
}

/* Checkbox Styles */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #4a5568;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0EBD66;
}

/* Privacy Note */
.privacy-note {
    background: #fef3c7;
    padding: 15px 20px;
    border-radius: 12px;
    margin: 20px 0;
    font-size: 13px;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.privacy-note i {
    margin-right: 8px;
}

/* Submit Button */
.submit-btn {
    background: #0EBD66;
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #0a9e55;
    transform: translateY(-2px);
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 60px;
}

.info-card {
    flex: 1;
    min-width: 200px;
    background: #f8fafc;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #0EBD66;
}

.info-card__icon {
    width: 60px;
    height: 60px;
    background: #0EBD66;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-card__icon i {
    font-size: 28px;
    color: #ffffff;
}

.info-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a202c;
}

.info-card__text {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
}

.info-card__link {
    color: #0EBD66;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}

.info-card__link:hover {
    color: #0a9e55;
}

/* Responsive */
@media (max-width: 1199px) {
    .quote-page-header__title {
        font-size: 44px;
    }
    .quote-form-title {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .quote-page-header {
        padding: 80px 0;
    }
    .quote-page-header__title {
        font-size: 38px;
    }
    .quote-form-section {
        padding: 60px 0;
    }
    .quote-form-wrapper {
        padding: 35px;
    }
    .quote-form-title {
        font-size: 26px;
    }
    .service-option {
        min-width: 120px;
    }
}

@media (max-width: 767px) {
    .quote-page-header {
        padding: 60px 0;
    }
    .quote-page-header__title {
        font-size: 32px;
    }
    .quote-page-header__subtitle {
        font-size: 16px;
    }
    .quote-form-wrapper {
        padding: 25px;
    }
    .quote-form-title {
        font-size: 24px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-row .form-group {
        min-width: 100%;
    }
    .service-options {
        flex-direction: column;
    }
    .service-option {
        min-width: 100%;
    }
    .info-cards {
        flex-direction: column;
    }
    .info-card {
        min-width: 100%;
    }
}

@media (max-width: 575px) {
    .quote-page-header__title {
        font-size: 28px;
    }
    .quote-breadcrumb {
        font-size: 12px;
    }
    .quote-form-wrapper {
        padding: 20px;
    }
    .submit-btn {
        padding: 14px 25px;
        font-size: 14px;
    }
}