/* ============================================
   S1 Yemekhane Yazılımı - Clean Grid System
   ============================================ */

/* Hero Section */
.yemekhane-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 40px 0 40px;
    overflow: hidden;
}

.yemekhane-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(20, 184, 166, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 184, 166, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(20, 184, 166, 0.15), transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(6, 182, 212, 0.1), transparent 50%),
        linear-gradient(180deg, #0f172a 0%, #134e4a 50%, #0f172a 100%);
}

.yemekhane-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.yemekhane-hero-text {
    max-width: 600px;
}

.yemekhane-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 100px;
    color: #2dd4bf;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.yemekhane-hero-title {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    color: #f8fafc;
    margin-bottom: 24px;
}

.yemekhane-hero-title .title-line {
    display: block;
}

.yemekhane-hero-title .title-gradient {
    display: block;
    background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 50%, #5eead4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yemekhane-hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 32px;
}

.yemekhane-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #2dd4bf;
}

.stat-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yemekhane-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-glow {
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.3);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(248, 250, 252, 0.3);
    color: #f8fafc;
}

.btn-outline-light:hover {
    background: rgba(248, 250, 252, 0.1);
    border-color: rgba(248, 250, 252, 0.5);
}

/* Hero Visual - Meal Card */
.yemekhane-hero-visual {
    display: flex;
    justify-content: center;
}

.meal-card-mockup {
    width: 320px;
    background: linear-gradient(135deg, #134e4a, #0f766e);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.meal-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.card-chip {
    width: 40px;
    height: 28px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 4px;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.meal-card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.user-id {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.card-balance {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.balance-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.balance-value {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #2dd4bf;
}

.card-meals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.meal-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.meal-icon {
    display: block;
    font-size: 24px;
    margin-bottom: 4px;
}

.meal-count {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.meal-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

/* Tab Navigation */
.inner-page-tabs {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.tabs-wrapper {
    display: flex;
    gap: 8px;
    padding: 16px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.tab-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.3s;
}

.tab-link:hover {
    color: #f8fafc;
    background: rgba(248, 250, 252, 0.05);
}

.tab-link.active {
    color: #2dd4bf;
    background: rgba(20, 184, 166, 0.1);
}

.tab-link.tab-cta {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: white;
    font-weight: 600;
}

/* Content Sections */
.content-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 100px;
    color: #14b8a6;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title-large {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 16px;
}

.section-title-large .text-gradient {
    background: linear-gradient(135deg, #14b8a6, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

.section-desc-large {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ============================================
   CLEAN GRID LAYOUTS
   ============================================ */

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.column-content .section-badge {
    display: inline-block;
}

.column-content .section-title-large {
    text-align: left;
}

/* Key Points */
.key-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.key-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border: 1px solid rgba(20, 184, 166, 0.1);
    border-radius: 12px;
    transition: all 0.3s;
}

.key-point:hover {
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.1);
}

.point-icon {
    width: 36px;
    height: 36px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14b8a6;
    flex-shrink: 0;
}

.key-point span {
    font-size: 15px;
    color: #334155;
    font-weight: 500;
}

/* Visual Card */
.visual-card {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(20, 184, 166, 0.05));
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
}

.visual-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.visual-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.visual-card p {
    font-size: 15px;
    color: #64748b;
}

/* ============================================
   3-COLUMN FEATURES GRID (Clean & Simple)
   ============================================ */
.yemekhane-features {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card-v2 {
    background: white;
    border: 1px solid rgba(20, 184, 166, 0.1);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.feature-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.3);
}

.feature-icon-v2 {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.gradient-teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.gradient-green { background: linear-gradient(135deg, #10b981, #059669); }
.gradient-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.gradient-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.gradient-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.gradient-red { background: linear-gradient(135deg, #ef4444, #dc2626); }

.feature-card-v2 h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.feature-card-v2 p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-bullets li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    font-size: 13px;
    color: #475569;
}

.feature-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background: #14b8a6;
    border-radius: 50%;
}

/* ============================================
   PROCESS STEPS (Horizontal)
   ============================================ */
.yemekhane-how-it-works {
    background: #0f172a;
}

.yemekhane-how-it-works .section-title-large {
    color: #f8fafc;
}

.yemekhane-how-it-works .section-desc {
    color: #94a3b8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    position: relative;
    text-align: center;
}

.step-number {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: rgba(20, 184, 166, 0.15);
    margin-bottom: 16px;
}

.step-content {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.step-content:hover {
    border-color: rgba(20, 184, 166, 0.3);
    background: rgba(30, 41, 59, 0.8);
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(20, 184, 166, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2dd4bf;
}

.step-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
}

/* ============================================
   2-COLUMN BENEFITS GRID
   ============================================ */
.yemekhane-benefits {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.benefits-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.benefit-card-v2 {
    background: white;
    border: 1px solid rgba(20, 184, 166, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}

.benefit-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.3);
}

.benefit-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.benefit-icon-v2 {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-stat-badge {
    padding: 6px 12px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #14b8a6;
}

.benefit-card-v2 h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.benefit-card-v2 p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.benefit-list-v2 li {
    position: relative;
    padding-left: 20px;
    font-size: 13px;
    color: #475569;
}

.benefit-list-v2 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #14b8a6;
    font-weight: bold;
}

/* Integration Highlight */
.integration-highlight {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.highlight-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 15px;
    color: #64748b;
}

.highlight-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
}

.highlight-item svg {
    color: #14b8a6;
}

/* ============================================
   3-COLUMN SELECTION GRID
   ============================================ */
.yemekhane-selection {
    background: #0f172a;
}

.yemekhane-selection .section-title-large {
    color: #f8fafc;
}

.selection-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.selection-card-v2 {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}

.selection-card-v2:hover {
    border-color: rgba(20, 184, 166, 0.3);
    background: rgba(30, 41, 59, 0.8);
}

.selection-icon {
    width: 64px;
    height: 64px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2dd4bf;
    margin-bottom: 20px;
}

.selection-card-v2 h3 {
    font-size: 20px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 12px;
}

.selection-card-v2 p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.selection-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.selection-checklist span {
    padding: 6px 12px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 100px;
    font-size: 12px;
    color: #2dd4bf;
}

/* ============================================
   CTA SECTION
   ============================================ */
.yemekhane-cta {
    background: #0f172a;
    padding: 80px 0;
}

.yemekhane-cta-box {
    position: relative;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 32px;
    padding: 64px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: center;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.yemekhane-cta-box .cta-content {
    position: relative;
}

.yemekhane-cta-box h2 {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
}

.yemekhane-cta-box p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 24px;
}

.cta-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.cta-actions {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-white {
    background: white;
    color: #0d9488;
    font-weight: 600;
}

.btn-white:hover {
    background: #f8fafc;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .yemekhane-hero-content,
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid-2,
    .integration-highlight {
        grid-template-columns: 1fr;
    }
    
    .selection-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .yemekhane-cta-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 48px 32px;
    }
    
    .cta-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .yemekhane-hero {
        padding: 40px 0 20px;
    }
    
    .yemekhane-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .yemekhane-hero-actions {
        flex-direction: column;
    }
    
    .yemekhane-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid-3,
    .process-steps,
    .selection-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .benefit-list-v2,
    .highlight-items {
        grid-template-columns: 1fr;
    }
}










#pageTabs {
    position: sticky;
    top: 90px; /* header yüksekliğine göre ayarla */
    z-index: 50;
    backdrop-filter: blur(8px);
}
