/* Modern Yurt Disinda Sirket Acma Page Styles */

/* Tab Styles */
.modern-tab-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.modern-tab-container .tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    background: white;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    min-height: 48px;
}

.modern-tab-container .tab:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.modern-tab-container .tab.active {
    border-color: #007bff;
    background: #007bff;
    color: white;
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.modern-tab-container .flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

/* Content Styles */
.modern-content {
    display: none;
    animation: fadeIn 0.5s;
}

.modern-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Service Cards */
.modern-hizmetler {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.hizmet-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.hizmet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.hizmet-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hizmet-card-content {
    padding: 25px;
    flex-grow: 1;
}

.hizmet-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.hizmet-card-content > p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.hizmet-card-content .service-details {
    text-align: left;
    font-size: 0.95rem;
    color: #343a40;
}

.hizmet-card-content .service-details b {
    color: #007bff;
    display: block;
    margin-top: 10px;
}

/* Neden Biz Section */
.modern-neden-biz {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.modern-neden-biz h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.neden-biz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.neden-biz-item {
    text-align: center;
}

.neden-biz-item .icon {
    font-size: 42px;
    color: #007bff;
    margin-bottom: 20px;
}

.neden-biz-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.neden-biz-item p {
    color: #6c757d;
}

/* General Styles from other modern pages */

.main {
    padding-top: 80px;
}
.hero-section {
    padding: 140px 0 60px;
    text-align: center;
}
.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
}
.hero-section p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 15px auto 0;
}
.gradient-text {
    background: linear-gradient(90deg, #00a8e6, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-section {
    padding: 80px 0;
    background-color: #00a8e6;
    color: #fff;
    text-align: center;
}
.cta-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
}
.cta-section .button {
    background-color: #fff;
    color: #00a8e6;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}
.cta-section .button:hover {
    background-color: #2c3e50;
    color: #fff;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        padding: 80px 0 40px;
    }

    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
        padding: 0 15px;
    }

    .hero-section p {
        font-size: 1rem;
        padding: 0 15px;
    }

    /* Tab Container Mobile */
    .modern-tab-container {
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 15px;
    }

    .modern-tab-container .tab {
        padding: 10px 20px;
        font-size: 14px;
        min-height: 44px;
    }

    .modern-tab-container .flag-icon {
        width: 20px;
        height: 20px;
    }

    /* Service Cards Mobile */
    .modern-hizmetler {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .hizmet-card img {
        height: 180px;
        object-fit: cover;
    }

    .hizmet-card-content {
        padding: 20px;
    }

    .hizmet-card-content h3 {
        font-size: 1.25rem;
    }

    .hizmet-card-content > p {
        font-size: 0.95rem;
    }

    .hizmet-card-content .service-details {
        font-size: 0.9rem;
    }

    /* Neden Biz Section Mobile */
    .modern-neden-biz {
        padding: 40px 15px;
    }

    .modern-neden-biz h2 {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .neden-biz-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .neden-biz-item .icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .neden-biz-item h4 {
        font-size: 1.1rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 50px 15px;
    }

    .cta-section h3 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .cta-section .button {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet Styles */
    .hero-section h1 {
        font-size: 3rem;
    }

    .modern-hizmetler {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .neden-biz-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (min-width: 1200px) {
    .container-wide {
        max-width: 1400px;
    }
}