/* İşlemci Hurda Sayfası Özel Stilleri */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero .btn-primary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.hero .btn-primary:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.hero .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.hero .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

.content-section {
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.content-section h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.content-section h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
}

.content-section h4 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.content-section ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.content-section ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    font-size: 1.2rem;
}

.content-section ul li:last-child {
    border-bottom: none;
}

/* Service Areas */
.service-areas {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 20px;
}

.service-areas h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.area-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #667eea;
}

.area-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-card ul li {
    padding: 0.6rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.area-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.special-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
}

.service-item h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Tech Specs */
.tech-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.spec-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.spec-category h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.spec-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-category ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.spec-category ul li:last-child {
    border-bottom: none;
}

.spec-category ul li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Environmental Benefits */
.environmental-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

[data-theme="dark"] .breadcrumb {
    background: #1f2937;
    border-bottom-color: #374151;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #0056b3;
}

[data-theme="dark"] .breadcrumb a {
    color: #60a5fa;
}

[data-theme="dark"] .breadcrumb a:hover {
    color: #93c5fd;
}

.breadcrumb i {
    color: #6c757d;
    font-size: 0.8rem;
}

[data-theme="dark"] .breadcrumb i {
    color: #9ca3af;
}

/* Service Areas */
[data-theme="dark"] .service-areas {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

[data-theme="dark"] .area-card {
    background: #1f2937;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

[data-theme="dark"] .area-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

[data-theme="dark"] .area-card ul li {
    border-bottom-color: #374151;
}

[data-theme="dark"] .service-item {
    background: #1f2937;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

[data-theme="dark"] .spec-category {
    background: #1f2937;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

[data-theme="dark"] .spec-category ul li {
    border-bottom-color: #374151;
}

[data-theme="dark"] .benefit-item {
    background: #1f2937;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

[data-theme="dark"] .content-section ul li {
    border-bottom-color: #374151;
}

/* Quick Price Quote Section */
.quick-price-section {
    padding: 4rem 0;
    margin: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

[data-theme="dark"] .quick-price-section {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.price-quote-card {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

[data-theme="dark"] .price-quote-card {
    background: #1f2937;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.quote-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: white;
    padding: 2.5rem;
    text-align: center;
}

.quote-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.quote-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

.quote-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
}

.quote-form {
    padding: 2.5rem;
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quote-form .form-group {
    margin-bottom: 1.5rem;
}

.quote-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
}

[data-theme="dark"] .quote-form label {
    color: #d1d5db;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
    color: var(--gray-900);
}

[data-theme="dark"] .quote-form input,
[data-theme="dark"] .quote-form textarea {
    background: #374151;
    border-color: #4b5563;
    color: #f9fafb;
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.quote-form .form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quote-form .form-actions .btn {
    flex: 1;
    min-width: 150px;
}

.quote-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

[data-theme="dark"] .quote-benefits {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.quote-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}

[data-theme="dark"] .quote-benefits h3 {
    color: #f9fafb;
}

.quote-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quote-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--gray-700);
}

[data-theme="dark"] .quote-benefits li {
    color: #d1d5db;
}

.quote-benefits li i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.btn-success {
    background: #25D366;
    color: white;
    border: none;
}

.btn-success:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .quote-content {
        grid-template-columns: 1fr;
    }
    
    .quote-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-form .form-actions {
        flex-direction: column;
    }
    
    .quote-form .form-actions .btn {
        width: 100%;
    }
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 20px;
}

[data-theme="dark"] .faq-section {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

[data-theme="dark"] .faq-item {
    background: #1f2937;
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    padding: 2rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .content-section h3 {
        font-size: 1.5rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-specs {
        grid-template-columns: 1fr;
    }
    
    .environmental-benefits {
        grid-template-columns: 1fr;
    }
    
    .special-services {
        grid-template-columns: 1fr;
    }
    
    .faq-section h2 {
        font-size: 2.2rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        padding: 1.2rem 1.5rem;
    }
    
    .faq-item p {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .area-card,
    .service-item,
    .spec-category,
    .benefit-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .faq-item p {
        padding: 1rem;
        font-size: 0.95rem;
    }
}
