/* Ürün Sayfası CSS - Yeniden Tasarım */
/* ===================================== */

/* Product Hero Section - Removed */

/* Hero Icon Fallback */
.hero-icon-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #09a2e3 0%, #01d7bb 100%);
    color: white;
    font-size: 4rem;
    z-index: 1;
}

/* Breadcrumb Section - Header Altında Sabit */
.breadcrumb-section {
    background: white;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0; /* Header'ın hemen altında */
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-top: 150px; /* Header'ın altında daha aşağıda */
}

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

.breadcrumb-item {
    display: flex;
    align-items: center;
}

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

.breadcrumb-item a:hover {
    color: #09a2e3;
}

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

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

/* Ürün Detayları */
.product-details {
    padding: 5rem 0;
    background: #f8f9fa;
}

.product-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.product-content h2 {
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    border-bottom: 3px solid #09a2e3;
    padding-bottom: 1rem;
}

.content-text {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #555;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-text ul, .content-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

/* Sidebar */
.product-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.sidebar-card h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-card h4::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #09a2e3 0%, #067bbd 100%);
    border-radius: 2px;
}

.sidebar-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.sidebar-card .btn {
    width: 100%;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.sidebar-card .btn-primary {
    background: linear-gradient(135deg, #09a2e3 0%, #067bbd 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(9, 162, 227, 0.3);
}

.sidebar-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(9, 162, 227, 0.4);
    color: white;
}

/* Ürün sayfası sidebar contact info */
.product-sidebar .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-sidebar .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.product-sidebar .contact-item:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateX(5px);
}

.product-sidebar .contact-item i {
    width: 25px;
    color: #09a2e3;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.product-sidebar .contact-item span {
    color: #555;
    font-weight: 600;
    font-size: 1rem;
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #09a2e3 0%, #067bbd 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 2rem;
    border-bottom: none;
}

.modal-header .modal-title {
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-header .btn-close {
    filter: invert(1);
    opacity: 0.8;
    font-size: 1.5rem;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2.5rem;
    background: #f8f9fa;
}

.form-label {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.form-control, .form-select {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    padding: 15px 20px;
    transition: all 0.3s ease;
    font-size: 1rem;
    background: white;
}

.form-control:focus, .form-select:focus {
    border-color: #09a2e3;
    box-shadow: 0 0 0 0.25rem rgba(9, 162, 227, 0.25);
    outline: none;
}

.form-check-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.form-check:hover {
    background: #f8f9fa;
    border-color: #09a2e3;
}

.form-check-input {
    margin: 0;
    transform: scale(1.3);
    accent-color: #09a2e3;
}

.form-check-label {
    margin: 0;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    font-size: 1rem;
}

/* Sadece ürün sayfası için buton stilleri */
.product-details .btn-primary,
.sidebar-card .btn-primary,
.modal .btn-primary {
    background: linear-gradient(135deg, #09a2e3 0%, #067bbd 100%);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(9, 162, 227, 0.3);
}

.product-details .btn-primary:hover,
.sidebar-card .btn-primary:hover,
.modal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(9, 162, 227, 0.4);
    background: linear-gradient(135deg, #067bbd 0%, #09a2e3 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .product-details {
        padding: 2rem 0;
    }
    
    .product-details .container {
        padding: 0 1rem;
    }
    
    .product-content {
        padding: 2rem;
    }
    
    .product-content h2 {
        font-size: 2rem;
    }
    
    .sidebar-card {
        padding: 2rem;
    }
    
    .modal-body {
        padding: 2rem;
    }
    
    .product-icon-placeholder {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    
    .product-details {
        padding: 1.5rem 0;
    }
    
    .product-details .container {
        padding: 0 0.75rem;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .breadcrumb-section {
        padding: 0.5rem 0;
        margin-top: 120px; /* Mobilde daha az margin */
    }
}

@media (max-width: 576px) {
    .breadcrumb-section {
        margin-top: 165px; /* Çok küçük ekranlarda daha az margin */
        padding: 0.4rem 0;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .breadcrumb-item a,
    .breadcrumb-item.active {
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.product-hero-image {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.sidebar-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 2 Aşamalı Form Stilleri */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
}

.step-number {
    background: linear-gradient(135deg, #09a2e3, #067bbd);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.legal-consents {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #09a2e3;
}

.legal-consents h6 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-consents .form-check {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.legal-consents .form-check:hover {
    border-color: #09a2e3;
    box-shadow: 0 2px 8px rgba(9, 162, 227, 0.1);
}

.legal-consents .form-check-label {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.legal-consents .form-check-input {
    margin-top: 0.25rem;
    transform: scale(1.1);
    accent-color: #09a2e3;
}

/* Form Validasyon Stilleri */
.form-control.is-invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 0.25rem rgba(220, 38, 38, 0.25);
}

.form-control.is-invalid:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 0.25rem rgba(220, 38, 38, 0.25);
}

/* Responsive Form Steps */
@media (max-width: 768px) {
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .step-number {
        align-self: flex-end;
    }
    
    .legal-consents {
        padding: 1rem;
    }
    
    .legal-consents .form-check {
        padding: 0.75rem;
    }
}

/* Modern Quote Form Styles */
.modern-quote-modal {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    max-width: 1200px;
    margin: 1rem auto;
}

.modern-quote-modal .modal-header {
    background: linear-gradient(135deg, #09a2e3, #067bbd);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
}

.modern-quote-modal .modal-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.modern-quote-modal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

/* Step Navigation */
.step-navigation {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.step-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.quote-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    width: 100%;
}

.step-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.step-items .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 200px;
}

.step-items .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(50% + 20px);
    width: calc(100% - 20px);
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step-items .step-item.completed:not(:last-child)::after {
    background: #09a2e3;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-items .step-item.completed .step-circle {
    background: #09a2e3;
    color: white;
}

.step-items .step-item.active .step-circle {
    background: #09a2e3;
    color: white;
    box-shadow: 0 0 0 4px rgba(9, 162, 227, 0.2);
}

.step-items .step-item:not(.completed):not(.active) .step-circle {
    background: #e9ecef;
    color: #6c757d;
}

.step-items .step-item span {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
}

.step-items .step-item.completed span,
.step-items .step-item.active span {
    color: #09a2e3;
}

/* Form Container */
.form-container {
    display: flex;
    min-height: 600px;
    width: 100%;
    gap: 0;
}

/* Form Panels */
.form-panel {
    flex: 1;
    padding: 2rem;
    background: white;
    border-right: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-panel.right-panel {
    border-right: none;
    border-left: 1px solid #e9ecef;
    opacity: 0.5;
    pointer-events: none;
}

.form-panel.right-panel.active {
    opacity: 1;
    pointer-events: auto;
}

.panel-header {
    margin-bottom: 2rem;
}

.panel-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.title-text {
    color: #2c3e50;
}

.title-highlight {
    color: #09a2e3;
}

.panel-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.panel-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

/* Step Title Section */
.step-title-section {
    margin-bottom: 2rem;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-text {
    color: #2c3e50;
}

.title-highlight {
    color: #09a2e3;
}

.step-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Form Fields */
.form-fields {
    margin-bottom: 1rem;
}

.form-fields .row {
    align-items: stretch;
}

.form-group {
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: block;
}

.form-text {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.text-danger {
    color: #ef4444 !important;
    font-weight: 600;
}

/* Checkbox and Radio Styles */
.form-check {
    margin-bottom: 0.75rem;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background-color: #f9fafb;
    transition: all 0.2s ease;
}

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

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(9, 162, 227, 0.1);
    outline: none;
}

.form-check-label {
    font-size: 0.9rem;
    color: #374151;
    margin-left: 0.5rem;
    cursor: pointer;
    line-height: 1.4;
}

.modern-input {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    background: #f9fafb;
    height: 36px;
    flex: 1;
    color: #374151;
}

.modern-input:focus {
    border-color: #09a2e3;
    background: white;
    box-shadow: 0 0 0 3px rgba(9, 162, 227, 0.1);
    outline: none;
}

.modern-input:hover {
    border-color: #9ca3af;
    background: white;
}

/* Textarea specific styles */
.modern-input[type="textarea"],
.modern-input[rows] {
    height: auto;
    min-height: 60px;
    resize: vertical;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Select specific styles */
.modern-input[type="select"],
select.modern-input {
    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 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    appearance: none;
}

.date-input-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.date-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
}

/* Modern Toggle Switches */
.legal-consents-modern {
    margin: 1.5rem 0;
}

.consent-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    min-height: 60px;
}

.consent-item:hover {
    border-color: #d1d5db;
    background: #f3f4f6;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 25px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: background-color 0.3s ease;
    border-radius: 25px;
    overflow: hidden;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: transform 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 1;
}

input:checked + .toggle-label .toggle-slider {
    background-color: #09a2e3;
}

input:checked + .toggle-label .toggle-slider:before {
    transform: translateX(25px);
}

/* Toggle switch hover efekti */
.toggle-switch:hover .toggle-slider {
    box-shadow: 0 0 0 2px rgba(9, 162, 227, 0.2);
}

.consent-text {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #4b5563;
    margin: 0;
    cursor: pointer;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Product Hero Layout - Sade */
.product-hero {
    margin-bottom: 3rem;
}

.product-hero-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-top: 0;
    padding-top: 0;
}

.product-hero-text {
    flex: 1;
    padding: 0;
    padding-top: 0;
    margin-top: 0;
}

.product-badge {
    display: inline-block;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border: 2px solid #1e40af;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.product-hero-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-weight: 400;
}

.product-features-list {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}


.feature-item span {
    color: #374151;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* HTML formatlarını destekle */
.feature-item span strong,
.feature-item span b {
    font-weight: 700;
    color: #1f2937;
}

.feature-item span em,
.feature-item span i {
    font-style: italic;
}

.feature-item span u {
    text-decoration: underline;
}

.feature-item span p {
    margin: 0.75rem 0;
    min-height: 0.5rem; /* Boş paragraflar için minimum yükseklik */
}

.feature-item span p + p {
    margin-top: 0.75rem; /* Paragraflar arası boşluk */
}

.feature-item span p:first-child {
    margin-top: 0;
}

.feature-item span p:last-child {
    margin-bottom: 0;
}

/* Boş paragraflar için görünürlük */
.feature-item span p:empty:before {
    content: '\00a0'; /* Non-breaking space */
}

.feature-item span ul,
.feature-item span ol {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.feature-item span li {
    margin: 0.5rem 0;
}

.product-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
    min-width: 140px;
    justify-content: center;
}

.btn-primary-hero:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-secondary-hero {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
}

.product-hero-image {
    flex: 0 0 300px;
    height: 420px;
    padding-top: 0;
    margin-top: 0;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #3b82f6;
    font-size: 4rem;
    border: 2px solid #3b82f6;
}

.hero-overlay {
    display: none;
}

.hero-text-overlay {
    display: none;
}

.hero-title {
    display: none;
}

/* Product Actions */
.product-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.product-actions .btn-modern {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    min-width: 180px;
}

/* Responsive */
@media (max-width: 992px) {
    .product-hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .product-hero-text {
        text-align: center;
    }
    
    .product-hero-image {
        flex: none;
        width: 240px;
        height: 340px;
        margin: 0 auto;
    }
    
    .product-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .product-hero {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .product-hero-content {
        gap: 1.5rem;
        padding: 0;
    }
    
    .product-hero-text {
        text-align: left;
        padding: 0;
    }
    
    .product-hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .product-features-list {
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        margin-bottom: 0.75rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
    }
    
    .product-hero-image {
        flex: none;
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 3/4;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .product-hero {
        margin-bottom: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .product-hero-content {
        gap: 1.25rem;
    }
    
    .product-hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .product-features-list {
        margin-bottom: 1.25rem;
    }
    
    .product-actions {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }
    
    .product-hero-image {
        width: 100%;
        max-width: 100%;
    }
}

/* Quote Form Section */
.quote-form-section {
    background: #ffffff;
    padding: 3rem 0;
    margin-top: 0;
}

.quote-form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.quote-form-header {
    background: linear-gradient(135deg, #09a2e3, #067bbd);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quote-form-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}


.quote-form-body {
    padding: 2rem;
}

/* Modern Button Styles */
.btn-modern {
    background: linear-gradient(135deg, #09a2e3, #067bbd);
    border: none;
    border-radius: 8px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(9, 162, 227, 0.25);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 120px;
    text-decoration: none;
}

.btn-modern:hover {
    background: linear-gradient(135deg, #067bbd, #09a2e3);
    box-shadow: 0 4px 12px rgba(9, 162, 227, 0.35);
    transform: translateY(-1px);
    color: white;
}

.btn-modern:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(9, 162, 227, 0.3);
}

.btn-secondary {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #374151;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 120px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #09a2e3;
    color: #09a2e3;
    box-shadow: 0 2px 8px rgba(9, 162, 227, 0.15);
    transform: translateY(-1px);
}

/* Clear Form Button Special Style */
#clearFormBtn {
    background: #fef3f2;
    border: 2px solid #fecaca;
    color: #dc2626;
}

#clearFormBtn:hover {
    background: #fee2e2;
    border-color: #dc2626;
    color: #dc2626;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid #09a2e3;
    border-radius: 8px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #09a2e3;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 120px;
    text-decoration: none;
}

.btn-outline:hover {
    background: #09a2e3;
    color: white;
    box-shadow: 0 4px 12px rgba(9, 162, 227, 0.25);
    transform: translateY(-1px);
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(9, 162, 227, 0.2);
}

/* Button Groups */
.btn-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.btn-group .btn-modern,
.btn-group .btn-secondary,
.btn-group .btn-outline {
    flex: 1;
    min-width: auto;
}

/* Responsive Button Groups */
@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-group .btn-modern,
    .btn-group .btn-secondary,
    .btn-group .btn-outline {
        width: 100%;
        min-width: auto;
    }
}

/* Disabled State */
.btn-modern:disabled,
.btn-secondary:disabled,
.btn-outline:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-modern:disabled:hover,
.btn-secondary:disabled:hover,
.btn-outline:disabled:hover {
    background: inherit;
    border-color: inherit;
    color: inherit;
    transform: none;
}


/* Anlaşmalı Sigorta Şirketleri Bölümü - Yeni Layout */
.partners-companies-section {
    padding: 4rem 0;
    background: #f8fafc;
    margin-top: 0;
}

.partners-companies-section .container {
    max-width: 1200px;
}

.partners-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.partners-title .title-normal {
    color: #2c3e50;
}

.partners-title .title-highlight {
    color: #09a2e3;
}

.partners-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-logos {
    width: 100%;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.partner-logo-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.partner-logo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #09a2e3;
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 992px) {
    .partners-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .partners-companies-section {
        padding: 3rem 0;
    }
    
    .partners-title {
        font-size: 2.2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .partner-logo-item {
        height: 100px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .partners-title {
        font-size: 1.8rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .partner-logo-item {
        height: 80px;
        padding: 1rem;
    }
}

/* Summary Panel */
.summary-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.summary-item.validated {
    border-color: #28a745;
    background: #f8fff9;
}

.summary-item.missing {
    border-color: #dc3545;
    background: #fff8f8;
}

.summary-item i {
    font-size: 1.1rem;
}

.summary-item.validated i {
    color: #28a745;
}

.summary-item.missing i {
    color: #dc3545;
}

.summary-item span:first-of-type {
    flex: 1;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.summary-value {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.summary-item.validated .summary-value {
    color: #28a745;
}

.summary-item.missing .summary-value {
    color: #dc3545;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .summary-panel {
        width: 300px;
    }
}

@media (max-width: 992px) {
    .form-container {
        flex-direction: column;
    }
    
    .summary-panel {
        width: 100%;
        border-left: none;
        border-top: 1px solid #e9ecef;
    }
    
    .step-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .step-navigation {
        padding: 1.5rem 1rem;
    }
    
    .step-item span {
        font-size: 0.8rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .summary-panel {
        padding: 1.5rem;
    }
}

/* Modal Z-Index Fix - Ultra High Priority */
.modal {
    z-index: 99999 !important;
}

.modal-backdrop {
    z-index: 99998 !important;
}

.modal-dialog {
    z-index: 99999 !important;
}

.modal-content {
    z-index: 99999 !important;
}

/* Dynamic Modal Z-Index - Ultra High */
#dynamicSuccessModal,
#dynamicErrorModal,
#loadingModal {
    z-index: 99999 !important;
}

#dynamicSuccessModal .modal-dialog,
#dynamicErrorModal .modal-dialog,
#loadingModal .modal-dialog {
    z-index: 99999 !important;
}

#dynamicSuccessModal .modal-content,
#dynamicErrorModal .modal-content,
#loadingModal .modal-content {
    z-index: 99999 !important;
}

/* Force Modal Above Everything */
.modal.show {
    z-index: 99999 !important;
}

.modal.fade.show {
    z-index: 99999 !important;
}

/* Header Z-Index Override */
.navbar {
    z-index: 1030 !important;
}

/* Ensure Modal is Above Header */
.modal[style*="z-index"] {
    z-index: 99999 !important;
}