/* Product Page Styles */
.product-page {
    padding: 60px 0;
}

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.product-hero-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-hero-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.product-hero-content p {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
}

.product-stats {
    display: flex;
    margin-top: 2rem;
    gap: 2.5rem;
}

.product-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #ffffff !important; /* Beyaz renk - !important ile override */
    margin-top: 0.5rem;
    text-shadow: none !important; /* Gölge yok - !important ile override */
}

.product-features-section {
    margin-bottom: 5rem;
}

.product-features-section h2 {
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
}

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

.product-feature {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.product-models {
    margin-bottom: 5rem;
}

.product-models h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    font-weight: 400;
}

.models-table-wrapper {
    overflow-x: auto;
    box-shadow: var(--shadow);
    border-radius: 8px;
}

.models-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

.models-table th {
    background: var(--secondary-color);
    color: white;
    font-weight: 500;
    text-align: left;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
}

.models-table td {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.models-table tr:last-child td {
    border-bottom: none;
}

.product-applications {
    margin-bottom: 5rem;
}

.product-applications h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    font-weight: 400;
}

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

.application {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.application:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.application img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.application h3 {
    padding: 1.5rem 1.5rem 0.8rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.application p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.cta-section h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.cta-section p {
    font-size: 0.95rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.about-page {
    padding: 60px 0;
}

.about-section {
    margin-bottom: 5rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-align: center;
}

.about-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content-row.reverse {
    direction: rtl;
}

.about-content-row.reverse .about-content-text {
    direction: ltr;
}

.about-content-text p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-content-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.value-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-photo {
    height: 250px;
    overflow: hidden;
}

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

.team-member h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
}

.team-role {
    padding: 0 1.5rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.team-bio {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.certifications-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.certification-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    width: 120px;
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.certification-item img {
    height: 70px;
    width: auto;
    margin-bottom: 1rem;
}

.certification-item h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* Mobile Responsive Styles for New Pages */
@media (max-width: 992px) {
    .product-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content-row.reverse {
        direction: ltr;
    }
    
    .team-grid {
        gap: 1.5rem;
    }
    
    .product-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .product-features-grid,
    .applications-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        gap: 1rem;
    }
    
    .certification-item {
        width: 100px;
    }
    
    .product-hero-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .about-section h2,
    .product-features-section h2,
    .product-models h2,
    .product-applications h2 {
        font-size: 1.5rem;
    }
}
