/* Teklif Al Sayfası CSS */
body.teklif-al-page .breadcrumb-section {
    background: white;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-top: 150px;
}

body.teklif-al-page .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

body.teklif-al-page .breadcrumb-item {
    display: flex;
    align-items: center;
}

body.teklif-al-page .breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
    font-size: 0.9rem;
}

body.teklif-al-page .breadcrumb-item a:hover {
    color: #09a2e3;
}

body.teklif-al-page .breadcrumb-item.active {
    color: #495057;
    font-weight: 500;
    font-size: 0.9rem;
}

body.teklif-al-page .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #adb5bd;
    margin: 0 0.5rem;
    font-size: 1rem;
}

/* Main Section */
body.teklif-al-page .quote-section {
    padding: 3rem 0;
    background: #f8f9fa;
    min-height: 70vh;
}

.quote-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Page Header */
.quote-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.quote-text-primary {
    color: #2c3e50 !important;
}

.quote-text-gradient {
    color: #09a2e3 !important;
}

.quote-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Tabs */
.category-tabs {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.category-card:hover {
    border-color: #09a2e3;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(9, 162, 227, 0.15);
}

.category-card.active {
    background: linear-gradient(135deg, #09a2e3 0%, #2c3e50 100%);
    border-color: #09a2e3;
    color: white;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: rgba(9, 162, 227, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #09a2e3;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-card.active .category-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.category-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: #2c3e50;
}

.category-card.active .category-content h4 {
    color: white;
}

.category-content span {
    font-size: 0.9rem;
    color: #6c757d;
}

.category-card.active .category-content span {
    color: rgba(255, 255, 255, 0.8);
}

/* Products Section */
.products-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #09a2e3;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(9, 162, 227, 0.15);
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #09a2e3 0%, #2c3e50 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
}

.product-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.btn-select {
    background: linear-gradient(135deg, #09a2e3 0%, #2c3e50 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select:hover {
    background: linear-gradient(135deg, #2c3e50 0%, #09a2e3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(9, 162, 227, 0.3);
}

/* Quote Form */
.quote-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 2rem;
}

.btn-back {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.btn-back:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Form Sections */
.form-section {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.form-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #09a2e3;
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #09a2e3;
    box-shadow: 0 0 0 3px rgba(9, 162, 227, 0.1);
}

.consent-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-check-input:checked {
    background-color: #09a2e3;
    border-color: #09a2e3;
}

.form-check-label {
    color: #495057;
    cursor: pointer;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, #09a2e3 0%, #2c3e50 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    margin: 2rem auto 0;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #2c3e50 0%, #09a2e3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(9, 162, 227, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    body.teklif-al-page .breadcrumb-section {
        padding: 0.5rem 0;
        margin-top: 120px;
    }
    
    .quote-title {
        font-size: 2.5rem;
    }
    
    .category-tabs {
        padding: 1.5rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .form-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    body.teklif-al-page .breadcrumb-section {
        margin-top: 165px;
        padding: 0.4rem 0;
    }
    
    body.teklif-al-page .breadcrumb {
        font-size: 0.8rem;
    }
    
    .quote-header {
        margin-bottom: 2rem;
    }
    
    .quote-title {
        font-size: 2rem;
    }
    
    .category-tabs,
    .products-section,
    .quote-form-wrapper {
        padding: 1.5rem;
    }
}
