/* Modern Quotation Page Styles */
:root {
    --rogs-primary: #004080;
    --rogs-accent: #0056b3;
    --rogs-secondary: #999999;
    --rogs-light: #f5f7fa;
    --rogs-white: rgba(255, 255, 255, 0.95);
    --rogs-success: #28a745;
    --rogs-warning: #ffc107;
    --rogs-danger: #dc3545;
}

/* Modern Quotation Section */
.modern-quotation-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.modern-quotation-section::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="quotation-grid" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23004080" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23quotation-grid)"/></svg>');
    pointer-events: none;
    z-index: 0;
}

.modern-quotation-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--rogs-primary) 0%, var(--rogs-accent) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 64, 128, 0.2);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--rogs-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--rogs-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Quotation Form Wrapper */
.quotation-form-wrapper {
    background: var(--rogs-white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 64, 128, 0.1);
    border: 1px solid rgba(0, 64, 128, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.quotation-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rogs-primary) 0%, var(--rogs-accent) 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rogs-primary);
    margin-bottom: 1rem;
}

.form-subtitle {
    color: var(--rogs-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(0, 64, 128, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(0, 64, 128, 0.05);
}

.form-section .section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--rogs-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(0, 64, 128, 0.1);
}

/* Form Groups */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--rogs-primary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-label.required::after {
    content: ' *';
    color: var(--rogs-danger);
    font-weight: 700;
}

.form-label i {
    color: var(--rogs-accent);
    width: 16px;
}

/* Modern Inputs */
.modern-input,
.modern-textarea,
.modern-select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 64, 128, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modern-input:focus,
.modern-textarea:focus,
.modern-select:focus {
    outline: none;
    border-color: var(--rogs-accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
    transform: translateY(-2px);
}

.modern-textarea {
    resize: vertical;
    min-height: 120px;
}

.modern-select {
    cursor: pointer;
}

/* Input Focus Border */
.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rogs-primary) 0%, var(--rogs-accent) 100%);
    transition: width 0.3s ease;
}

.modern-input:focus + .input-focus-border,
.modern-textarea:focus + .input-focus-border,
.modern-select:focus + .input-focus-border {
    width: 100%;
}

/* Product Selection */
.product-selection {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 64, 128, 0.1);
}

.product-category {
    margin-bottom: 1.5rem;
}

.product-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--rogs-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 64, 128, 0.1);
}

.product-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: rgba(0, 64, 128, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(0, 64, 128, 0.05);
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background: rgba(0, 64, 128, 0.08);
    border-color: rgba(0, 64, 128, 0.1);
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--rogs-secondary);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: var(--rogs-accent);
    border-color: var(--rogs-accent);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Submit Button */
.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.modern-submit-btn {
    position: relative;
    background: linear-gradient(135deg, var(--rogs-primary) 0%, var(--rogs-accent) 100%);
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 64, 128, 0.3);
}

.modern-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 64, 128, 0.4);
    color: white;
}

.modern-submit-btn:active {
    transform: translateY(-1px);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.modern-submit-btn:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

/* Benefits Wrapper */
.quotation-benefits-wrapper {
    background: var(--rogs-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 64, 128, 0.1);
    border: 1px solid rgba(0, 64, 128, 0.05);
    backdrop-filter: blur(10px);
    height: 100%;
    position: relative;
    overflow: hidden;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.quotation-benefits-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rogs-accent) 0%, var(--rogs-primary) 100%);
}

.benefits-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-bottom: 3px solid var(--rogs-primary);
    position: relative;
}

.benefits-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--rogs-accent);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
    position: relative;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--rogs-primary), transparent);
}

.rogs-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 64, 128, 0.25));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.rogs-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(0, 64, 128, 0.35));
}

.benefits-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--rogs-primary);
    margin-bottom: 0.5rem;
}

/* Parallax Effects */
.parallax-wrapper {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.parallax-header {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.parallax-content {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(0, 64, 128, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(0, 64, 128, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(0, 64, 128, 0.05);
    border-color: rgba(0, 64, 128, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rogs-primary) 0%, var(--rogs-accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--rogs-primary);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Contact Info Box */
.contact-info-box {
    background: linear-gradient(135deg, var(--rogs-primary) 0%, var(--rogs-accent) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
}

.contact-info-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.contact-method i {
    font-size: 1.1rem;
    width: 20px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .modern-quotation-section {
        padding: 80px 0 60px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .quotation-form-wrapper,
    .quotation-benefits-wrapper {
        padding: 2rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .quotation-form-wrapper,
    .quotation-benefits-wrapper {
        padding: 1.5rem;
    }
    
    .form-section {
        padding: 1.25rem;
    }
    
    .modern-input,
    .modern-textarea,
    .modern-select {
        padding: 0.875rem 1rem;
    }
    
    .modern-submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .product-checkboxes {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .quotation-form-wrapper,
    .quotation-benefits-wrapper {
        padding: 1.25rem;
    }
    
    .form-section {
        padding: 1rem;
    }
    
    .modern-submit-btn {
        width: 100%;
    }
} 