/* Quote Form Page Styles */

/* Quote Hero Section */
.quote-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.quote-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.quote-hero-content {
    position: relative;
    z-index: 2;
}

.quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

.quote-hero-title {
    font-family: 'Montserrat', 'Inter', system-ui;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px;
    color: #0b0d13;
}

.quote-hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 600px;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #334155;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: #1e3a8a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.quote-hero-visual {
    position: relative;
    z-index: 2;
}

.quote-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.quote-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.quote-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 32px 24px 24px;
    color: white;
}

.overlay-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
}

.overlay-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.quote-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: -1;
}

.decoration-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1e3a8a, #0f2770);
    border-radius: 50%;
    opacity: 0.1;
}

.decoration-dots {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, #1e3a8a 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
}

/* Quote Form Section */
.quote-form-section {
    padding: 100px 0;
    background: white;
}

.quote-form-container {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 40px;
}

.form-title {
    font-family: 'Montserrat', 'Inter', system-ui;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #0b0d13;
    margin-bottom: 16px;
}

.form-description {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.quote-form .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.quote-form .form-control,
.quote-form .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    outline: none;
}

.quote-form .form-control::placeholder {
    color: #9ca3af;
}

.quote-form .form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
}

.quote-form .form-check-input:checked {
    background-color: #1e3a8a;
    border-color: #1e3a8a;
}

.quote-form .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.quote-form .form-check-label {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.quote-form .btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #0f2770);
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quote-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.4);
}

/* Quote Process Section */
.quote-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Montserrat', 'Inter', system-ui;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #0b0d13;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.process-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #1e3a8a;
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1e3a8a, #0f2770);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.process-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1e3a8a, #0f2770);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 24px;
}

.process-title {
    font-size: 20px;
    font-weight: 600;
    color: #0b0d13;
    margin: 0 0 16px;
}

.process-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Quote Benefits Section */
.quote-benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-title {
    font-family: 'Montserrat', 'Inter', system-ui;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #0b0d13;
    margin-bottom: 24px;
}

.benefits-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefits-list .benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefits-list .benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e3a8a, #0f2770);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.benefit-text h5 {
    font-size: 18px;
    font-weight: 600;
    color: #0b0d13;
    margin: 0 0 8px;
}

.benefit-text p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.benefits-visual {
    position: relative;
}

.benefits-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-bottom: 32px;
}

.benefits-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.benefits-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefits-stats .stat-item {
    text-align: center;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.benefits-stats .stat-number {
    font-family: 'Montserrat', 'Inter', system-ui;
    font-size: 32px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.benefits-stats .stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quote-hero {
        padding: 80px 0 40px;
    }
    
    .quote-benefits {
        gap: 12px;
    }
    
    .benefit-item {
        font-size: 14px;
    }
    
    .benefit-icon {
        width: 28px;
        height: 28px;
    }
    
    .quote-form-container {
        padding: 32px 24px;
    }
    
    .benefits-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .benefits-list .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-list .benefit-icon {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .quote-hero-title {
        font-size: 32px;
    }
    
    .quote-hero-description {
        font-size: 16px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .benefits-title {
        font-size: 28px;
    }
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f2770 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
