/* ===== CUSTOM VARIABLES ===== */
:root {
    /* Colors */
    --color-primary: #0a192f;      /* Koyu Lacivert / Gece Mavisi */
    --color-primary-light: #112240;
    --color-accent: #2563eb;       /* Canlı Mavi */
    --color-accent-light: #3b82f6;
    --color-accent-hover: #1d4ed8;
    --color-secondary: #dc2626;    /* Kırmızı */
    --color-secondary-light: #ef4444;
    --color-energy: #fbbf24;       /* Sarı */
    --color-energy-light: #fcd34d;
    
    --color-text: #334155;
    --color-text-light: #64748b;
    --color-white: #ffffff;
    --color-bg-light: #f8fafc;
    --color-bg-gray: #f1f5f9;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Box Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --shadow-primary: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== UTILITIES ===== */
.text-accent { color: var(--color-accent); }
.text-accent-light { color: var(--color-accent-light); }
.text-secondary { color: var(--color-secondary); }
.text-energy { color: var(--color-energy); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }

.bg-blue { background-color: var(--color-accent); color: white; }
.bg-red { background-color: var(--color-secondary); color: white; }
.bg-yellow { background-color: var(--color-energy); color: var(--color-primary); }
.bg-blue-light { background-color: rgba(37, 99, 235, 0.1); }
.bg-red-light { background-color: rgba(220, 38, 38, 0.1); }
.bg-yellow-light { background-color: rgba(251, 191, 36, 0.15); }

.mb-4 { margin-bottom: 2rem; }
.opacity-90 { opacity: 0.9; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}
.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.4);
}

.btn-block {
    width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-primary);
    line-height: 1.1;
}
.logo-text span {
    display: block;
    color: var(--color-accent);
}

.navbar {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-primary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, #e0e7ff 100%);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, 0.3);
}

.shape-2 {
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(220, 38, 38, 0.2);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    background: rgba(251, 191, 36, 0.2);
    color: #b45309;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    border: 1px solid rgba(251, 191, 36, 0.4);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
}

.slider-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
    background-color: var(--color-bg-light);
}

.slider-container {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(255,255,255,0.5);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(10, 25, 47, 0.4);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background-color: var(--color-accent);
    transform: scale(1.2);
}

.hero-features {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    background: var(--color-white);
    padding: 2rem 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.feature-item i {
    font-size: 1.75rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.feature-item span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
}

/* ===== SECTIONS COMMON ===== */
.section {
    padding: 6rem 0;
}

.section-light {
    background-color: var(--color-bg-light);
}

.section-dark {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.section-header {
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-dark .section-title {
    color: var(--color-white);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.section-dark .section-desc {
    color: rgba(255,255,255,0.8);
}

/* ===== GRID & CARDS ===== */
.cards-grid {
    display: grid;
    gap: 2rem;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-5-tight {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.05);
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.card-gradient {
    padding: 0 !important;
    overflow: hidden;
    color: var(--color-white);
    border: none;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.card-gradient:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    width: 100%;
    height: 160px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title-strong {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--color-white);
    line-height: 1.2;
}

.card-desc-white {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}

/* Gradients */
.gradient-blue { background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important; }
.gradient-emerald { background: linear-gradient(135deg, #10b981 0%, #047857 100%) !important; }
.gradient-orange { background: linear-gradient(135deg, #f97316 0%, #c2410c 100%) !important; }
.gradient-violet { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%) !important; }
.gradient-rose { background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%) !important; }

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    background-color: var(--color-bg-light);
    color: var(--color-primary);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.card-feature {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card-feature:hover {
    box-shadow: var(--shadow-lg);
}
.card-feature .card-title { margin-top: 0.5rem; }

/* ===== PROGRAM SECTION ===== */
.program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.program-block {
    background: var(--color-primary-light);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.program-block.highlight {
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.1), var(--color-primary-light));
    border-color: rgba(37, 99, 235, 0.3);
}

.program-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.program-header i {
    font-size: 2rem;
    color: var(--color-accent-light);
}

.program-header h3 {
    color: var(--color-white);
    font-size: 1.75rem;
    margin: 0;
}

.program-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.125rem;
}

.program-list li:last-child {
    border-bottom: none;
}

.program-list .hours {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

/* ===== SPLIT SECTIONS (Image + Content) ===== */
.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-section.reverse .split-container {
    grid-template-columns: 1fr 1fr;
}

.split-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    color: var(--color-primary);
    font-size: 1.25rem;
}

.icon-1 { top: 10%; right: 10%; color: var(--color-accent); animation: float 3s infinite ease-in-out; }
.icon-2 { bottom: 20%; left: 10%; color: var(--color-secondary); animation: float 4s infinite ease-in-out; }
.icon-3 { bottom: 10%; right: 20%; color: var(--color-energy); animation: float 3.5s infinite ease-in-out; }

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-list i {
    color: var(--color-accent);
    font-size: 1.25rem;
}

.check-list.list-red i { color: var(--color-secondary); }

/* ===== PROCESS SECTION ===== */
.process-wrapper {
    position: relative;
}

.process-line {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(37, 99, 235, 0.2);
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 10px var(--color-bg-light);
    transition: all var(--transition-normal);
}

.process-step:hover .step-number {
    background: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.1);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ===== CONTACT SECTION ===== */
.section-contact {
    background-color: var(--color-primary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-light);
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 24px;
    color: var(--color-text);
    box-shadow: var(--shadow-xl);
}

.form-title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background-color: var(--color-bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ===== FOOTER ===== */
.footer {
    background-color: #050b14;
    color: var(--color-white);
    padding-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-h {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.footer-logo h3 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin: 0;
}

.footer-slogan {
    color: var(--color-energy);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    max-width: 80%;
}

.footer-links h4 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--color-accent-light);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #03060a;
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ===== FLOATING BUTTONS ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    transition: all var(--transition-normal);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-phone {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-accent);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    transition: all var(--transition-normal);
}

.floating-phone:hover {
    transform: scale(1.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.75rem; }
    .hero-container { gap: 2rem; }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .contact-container { gap: 2rem; }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
        gap: 2rem;
    }
    
    .grid-5, .grid-5-tight { grid-template-columns: repeat(3, 1fr); }
    .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
    
    .split-container, .split-section.reverse .split-container {
        grid-template-columns: 1fr;
    }
    
    .split-section.reverse .split-image {
        order: -1;
    }
    
    .process-line { display: none; }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--color-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        font-size: 1.25rem;
    }
    
    .menu-toggle { display: block; }
    
    .header-right .btn-primary { display: none; }
    
    .grid-5, .grid-5-tight, .grid-4, .grid-3 { grid-template-columns: 1fr; }
    
    .program-grid { grid-template-columns: 1fr; }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-desc {
        margin: 0 auto;
    }
    
    .process-grid { grid-template-columns: 1fr; }
    
    .floating-phone { display: flex; }
    
    .hero-title { font-size: 2.25rem; }
    .section-title { font-size: 2rem; }
    
    .hero-features { display: none; /* Mobilde karmaşayı önlemek için */ }
}
