/* Modern Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1e293b;
    min-height: 100vh;
    line-height: 1.6;
}

/* Container - Tam sayfa kaplama */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Modern Header */
.header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1e293b;
    padding: 0.75rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    width: 80px;
    height: 80px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 0px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.logo-text-top {
    color: #fbbf24;
    font-size: 0.6rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    text-transform: lowercase;
    line-height: 1;
    margin-bottom: 2px;
    display: block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.logo-text-bottom {
    color: #fbbf24;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.5px;
    display: block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.business-info h1 {
    color: #1e293b;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.business-info p {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Customer Info Styling */
.customer-info {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.customer-info:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.customer-info:active {
    transform: translateY(0);
}

/* Modern Tab Navigation */
.tab-container {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab-buttons {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1.25rem 2rem;
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

        .tab-btn.active {
            color: #3b82f6;
            border-bottom-color: #3b82f6;
            background: rgba(59, 130, 246, 0.05);
        }

        /* Tab Content */
        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        /* Main Content Area */
.main-content {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Modern Search Bar */
.search-container {
    margin-bottom: 2rem;
}

.search-input {
    width: 100%;
    max-width: 400px;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-input::placeholder {
    color: #94a3b8;
}

/* Services Section */
.services-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title::before {
    content: "✨";
    font-size: 1.2rem;
}

/* Modern Service Cards */
.service-list {
    display: grid;
    gap: 1rem;
}

.service-item {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-item:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-info {
    flex: 1;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.service-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #64748b;
    font-size: 0.9rem;
}

.service-price {
    font-weight: 700;
    color: #059669;
    font-size: 1rem;
}

.service-duration {
    background: #f1f5f9;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Modern Buttons */
.add-to-cart-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    min-width: 140px;
}

.add-to-cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.add-to-cart-btn.added {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.add-to-cart-btn.added:hover {
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* VIP Section */
.vip-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1.5rem;
    border: 1px solid #e9ecef;
}

.vip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0.25rem 0;
}

.vip-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
}

.vip-toggle {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    color: #6c757d;
    font-size: 0.8rem;
}

.vip-toggle.expanded {
    transform: rotate(180deg);
}

.vip-services {
    display: none;
    margin-top: 0.75rem;
}

.vip-services.show {
    display: grid;
    gap: 0.75rem;
}

/* Cart Footer */
.cart-footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    display: none;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);
    z-index: 1000;
    border-radius: 12px;
    min-width: 300px;
    max-width: 90%;
}

.cart-footer.show {
    display: flex;
}

.cart-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.cart-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.8rem;
    min-width: 20px;
    text-align: center;
}

.cart-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.continue-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.continue-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    width: 95%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f1f5f9;
    color: #1e293b;
}

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

/* Name fields row */
.name-row {
    display: flex;
    gap: 15px;
}

.name-field {
    flex: 1;
}

.form-label {
    display: block;
    color: #374151;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

        /* Verification Modal Styles */
        .verification-content {
            text-align: center;
        }

        .verification-subtitle {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .verification-text {
            color: #64748b;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }

        .code-input-container {
            position: relative;
            display: flex;
            align-items: center;
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            overflow: hidden;
        }

        .code-icon {
            padding: 0.75rem;
            color: #64748b;
            font-size: 1rem;
        }

        .code-input {
            border: none;
            flex: 1;
            padding: 0.75rem;
            font-size: 1.2rem;
            text-align: center;
            letter-spacing: 0.5rem;
            font-weight: 600;
        }

        .code-input:focus {
            outline: none;
            box-shadow: none;
        }

        .code-controls {
            display: flex;
            flex-direction: column;
        }

        .code-btn {
            background: none;
            border: none;
            padding: 0.25rem 0.5rem;
            color: #64748b;
            cursor: pointer;
            font-size: 0.8rem;
            transition: color 0.3s ease;
        }

        .code-btn:hover {
            color: #3b82f6;
        }

        .resend-section {
            margin: 1rem 0;
            text-align: center;
        }

        .resend-text {
            color: #64748b;
            font-size: 0.9rem;
        }

        #countdown {
            color: #3b82f6;
            font-weight: 600;
        }

        /* Appointment Modal Styles */
        .back-btn {
            color: #3b82f6;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .back-btn:hover {
            color: #1d4ed8;
        }

        .date-selector {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .date-btn {
            background: #f1f5f9;
            border: none;
            padding: 0.5rem;
            border-radius: 6px;
            cursor: pointer;
            color: #64748b;
            transition: all 0.3s ease;
        }

        .date-btn:hover {
            background: #e2e8f0;
            color: #3b82f6;
        }

        .date-input {
            text-align: center;
            font-weight: 600;
            color: #1e293b;
        }

        .services-list {
            background: #f8fafc;
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .service-item-display {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .service-item-display:last-child {
            border-bottom: none;
        }

        .service-name-display {
            font-weight: 500;
            color: #1e293b;
        }

        .service-duration-display {
            color: #64748b;
            font-size: 0.9rem;
        }

        .time-slots {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .time-slot {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 6px;
            padding: 0.5rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .time-slot:hover {
            border-color: #3b82f6;
            background: rgba(59, 130, 246, 0.05);
        }

        .time-slot.selected {
            background: #3b82f6;
            color: white;
            border-color: #3b82f6;
        }

        .time-slot.disabled {
            background: #f1f5f9;
            color: #94a3b8;
            cursor: not-allowed;
            border-color: #e2e8f0;
        }

        /* Working Hours Tab */
.working-hours {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hours-grid {
    display: grid;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.day-name {
    font-weight: 600;
    color: #1e293b;
}

.day-hours {
    color: #64748b;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .logo {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .business-info h1 {
        font-size: 1.5rem;
    }
    
    .tab-container {
        padding: 0 1rem;
    }
    
    .tab-btn {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .services-section {
        padding: 1.5rem;
    }
    
    .service-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .service-details {
        justify-content: center;
    }
    
    .add-to-cart-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .cart-footer {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .modal-content {
        width: 98%;
        max-width: none;
        max-height: 95vh;
        padding: 1rem;
        margin: 1rem;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .time-slot {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .business-info h1 {
        font-size: 1.3rem;
    }
    
    .tab-btn {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .service-name {
        font-size: 1rem;
    }
    
    .service-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    color: #64748b;
}

.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Animation */
.success-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
    z-index: 3000;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
}
}

/* Summary Modal Styles */
.summary-modal {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.summary-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.summary-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.summary-title {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 2px;
}

.summary-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-service-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    position: relative;
}

.summary-service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.summary-service-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.delete-service-btn {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delete-service-btn:hover {
    background: #dc2626;
}

.summary-service-details {
    display: grid;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.summary-detail-row {
    display: flex;
    justify-content: space-between;
}

.summary-detail-label {
    font-weight: 500;
}

.summary-detail-value {
    color: #1e293b;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.total-section {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
}

.total-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.total-label {
    color: #64748b;
}

.total-value {
    color: #059669;
    font-size: 1.3rem;
}

.summary-actions {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.complete-btn {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    }
    
.complete-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    }
    
.complete-btn span {
    font-size: 1.2rem;
    }

/* Responsive Summary Modal */
@media (max-width: 768px) {
    .summary-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .summary-modal {
        width: 95%;
        max-height: 95vh;
    }
    
    .summary-section {
        padding: 1rem;
    }
    
    .complete-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1e293b;
    padding: 1rem 0;
    margin-top: auto;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-text {
    text-align: center;
    color: #cbd5e1;
}

.footer-text p {
    margin: 0.15rem 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
}

.footer-text p:first-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

/* Container'ı flex yap */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main content'i flex-grow yap */
.main-content {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 0.75rem 0;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-logo-img {
        height: 35px;
    }
    
    .footer-text p {
        font-size: 0.7rem;
    }
    
    .footer-text p:first-child {
        font-size: 0.8rem;
    }
} 