/* Main Stylesheet */

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff4b4b;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 20px;
    }
}

/* Responsive Slider */
@media (max-width: 768px) {
    .banner-slider {
        height: 300px;
    }

    .slider-button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .banner-slider {
        height: 200px;
    }

    .slider-button {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}



/* Mobil için Slider */
@media (max-width: 768px) {
    .banner-slider {
        margin-bottom: 15px;
    }

    .category-cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        gap: 15px;
        padding: 0 15px;
        margin: 15px 0;
    }

    .category-card {
        flex: 0 0 85vw;
        scroll-snap-align: center;
        margin-right: 0;
        aspect-ratio: 16/9;
    }

    .category-card-title {
        font-size: 20px;
    }

    /* Scrollbar'ı gizle ama fonksiyonelliğini koru */
    .category-cards::-webkit-scrollbar {
        display: none;
    }
    
    .category-cards {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* Hakkımızda Sayfası Stilleri */
.about-us-page {
    padding: 60px 0;
    background-color: #fff;
}

.about-us-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    position: relative;
    display: inline-block;
}

.page-header h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #000;
}

.about-content section {
    margin-bottom: 50px;
}

.about-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.value-item i {
    font-size: 36px;
    color: #000;
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.info-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.info-item strong {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
    color: #666;
}

@media (max-width: 768px) {
    .about-us-page {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 22px;
    }

    .about-content p {
        font-size: 15px;
    }
}

/* Yasal Sayfalar Ortak Stilleri */
.legal-page {
    padding: 60px 0;
    background-color: #fff;
}

.legal-page .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.legal-page .page-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-page .page-header h1 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    position: relative;
    display: inline-block;
}

.legal-page .page-header h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #000;
}

.legal-content {
    color: #444;
    line-height: 1.6;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 20px 0 15px;
}

.legal-section p {
    margin-bottom: 15px;
    font-size: 16px;
}

.legal-list {
    list-style: none;
    padding-left: 20px;
    margin: 15px 0;
}

.legal-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
}

.legal-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000;
}

.legal-list.numbered {
    list-style: decimal;
    padding-left: 35px;
}

.legal-list.numbered li {
    padding-left: 10px;
}

.legal-list.numbered li:before {
    display: none;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: #333;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 40px 0;
    }

    .legal-page .page-header h1 {
        font-size: 28px;
    }

    .legal-section h2 {
        font-size: 22px;
    }

    .legal-section h3 {
        font-size: 18px;
    }

    .legal-section p,
    .legal-list li {
        font-size: 15px;
    }
}

/* ====================================
   Kurumsal Sayfalar Ortak Stilleri
   ==================================== */
.corporate-page {
    padding: 60px 0;
    background-color: #fff;
}

.corporate-page .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.corporate-content {
    color: #444;
    line-height: 1.8;
}

.corporate-section {
    margin-bottom: 45px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.corporate-section:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.corporate-section h2 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #000;
    position: relative;
}

.corporate-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 20px 0 15px;
}

.corporate-section p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.corporate-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.corporate-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.corporate-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}

.corporate-list.numbered {
    list-style: decimal;
    padding-left: 25px;
}

.corporate-list.numbered li {
    padding-left: 10px;
}

.corporate-list.numbered li:before {
    display: none;
}

/* Kurumsal sayfalardaki info-grid */
.corporate-content .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.corporate-content .info-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.corporate-content .info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.corporate-content .info-item strong {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.corporate-content .info-item p {
    margin: 0;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

/* Kurumsal sayfa responsive */
@media (max-width: 768px) {
    .corporate-page {
        padding: 40px 0;
    }

    .corporate-section {
        padding: 20px;
        margin-bottom: 25px;
    }

    .corporate-section h2 {
        font-size: 20px;
    }

    .corporate-section h3 {
        font-size: 16px;
    }

    .corporate-section p,
    .corporate-list li {
        font-size: 14px;
    }

    .corporate-content .info-grid {
        grid-template-columns: 1fr;
    }
}

