/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.page-header-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Quote Section */
.quote-section {
    padding: 100px 0;
    background: #F8F9FA;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.quote-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
}

.quote-info > p {
    font-size: 1.1rem;
    color: #7F8C8D;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Quote Features */
.quote-features {
    margin-bottom: 40px;
}

.quote-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.quote-feature i {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-top: 5px;
}

.quote-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 5px;
}

.quote-feature p {
    color: #7F8C8D;
    font-size: 0.95rem;
}

/* Contact Info */
.contact-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.contact-item i {
    font-size: 1.2rem;
    color: #1e3c72;
    width: 20px;
}

.contact-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 2px;
}

.contact-item p {
    color: #7F8C8D;
    font-size: 0.9rem;
}

/* Quote Form Container */
.quote-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
}

.form-header p {
    color: #7F8C8D;
    font-size: 1rem;
}

/* Form Styles */
.quote-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-col {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2C3E50;
    font-size: 0.95rem;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #F8F9FA;
    color: #2C3E50;
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #1e3c72;
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

.form-control.error,
input.error,
select.error,
textarea.error {
    border-color: #e74c3c;
    background: #fdf2f2;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox and Radio Styles */
.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 0;
}

.checkbox-item input[type="checkbox"],
.radio-item input[type="radio"] {
    display: none;
}

.checkmark,
.radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid #DDD;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.radio-mark {
    border-radius: 50%;
}

.checkbox-item:hover .checkmark,
.radio-item:hover .radio-mark {
    border-color: #1e3c72;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: #1e3c72;
    border-color: #1e3c72;
}

.radio-item input[type="radio"]:checked + .radio-mark {
    background: #1e3c72;
    border-color: #1e3c72;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.radio-mark:after {
    content: "";
    position: absolute;
    display: none;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark:after,
.radio-item input[type="radio"]:checked + .radio-mark:after {
    display: block;
}

/* Button Styles */
.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 20px;
}

.btn-full i {
    margin-right: 8px;
}

/* Field Error */
.field-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-choose-item {
    text-align: center;
    padding: 30px 20px;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-choose-icon i {
    font-size: 2rem;
    color: white;
}

.why-choose-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 15px;
}

.why-choose-item p {
    color: #7F8C8D;
    line-height: 1.6;
}

/* Loading State */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn .loading {
    margin-right: 8px;
}

/* Success/Error Messages */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header-content h1 {
        font-size: 2.2rem;
    }
    
    .page-header-content p {
        font-size: 1rem;
    }
    
    .quote-section {
        padding: 60px 0;
    }
    
    .quote-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quote-form-container {
        padding: 30px 20px;
        position: static;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-col {
        margin-bottom: 20px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .quote-info h2 {
        font-size: 1.8rem;
    }
    
    .why-choose {
        padding: 60px 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .checkbox-group,
    .radio-group {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .quote-form-container {
        padding: 25px 15px;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .form-control,
    input,
    select,
    textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .btn-full {
        padding: 12px;
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 20px;
    }
}
