* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff0000;
    --secondary-color: #1a1a1a;
    --text-color: #ffffff;
    --bg-color: #1a1a1a;
    --accent-color: #ff4444;
    --shadow: rgba(255, 0, 0, 0.2);
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #000000;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    overflow-x: hidden;
    opacity: 1;
    transition: opacity 0.35s ease-in-out;
    min-height: 100vh;
}

body.page-hidden {
    opacity: 0;
}

body.page-visible {
    opacity: 1;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 100%);
    box-shadow: 0 2px 15px rgba(255, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #ff0000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    z-index: 101;
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.menu a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.menu a:hover,
.menu a.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

/* ============================================
   HAMBURGER MENU
   ============================================ */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 101;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

section:last-child {
    border-bottom: none;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 50%, #000000 100%);
    color: white;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    min-height: 30vh;
    display: flex;
    align-items: center;
    margin: 0 -1.25rem;
    width: calc(100% + 2.5rem);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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%);
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(0.9rem, 2.5vw, 1.25rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   HERO LOGO BADGE (Tema & Başvuru sayfaları)
   ============================================ */

.hero-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-logo-badge img {
    height: 32px;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.25);
}

.hero-logo-badge span {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* ============================================
   TEMA SAYFASI GÖRSEL HERO
   ============================================ */

/* Tema sayfası görsel hero alanı */
.hero-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    background-color: #000;
    background: radial-gradient(circle at center, #1a0a0a 0%, #000000 100%);
}

.hero-poster {
    max-width: 900px;        /* Masaüstünde maksimum genişlik sınırı */
    width: 100%;             /* Mobilde tam genişlik */
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.hero-poster:hover {
    transform: scale(1.02);
}

/* Tablet */
@media (max-width: 768px) {
    .hero-image-container {
        padding: 1.5rem 0.75rem;
        margin: 0 -1rem;
        width: calc(100% + 2rem);
    }
    
    .hero-poster {
        max-width: 500px;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .hero-image-container {
        padding: 1rem 0.5rem;
        margin: 0 -0.75rem;
        width: calc(100% + 1.5rem);
    }
    
    .hero-poster {
        max-width: 100%;
        border-radius: 8px;
    }
}

/* ============================================
   BAŞVURU TÜRÜ HERO RENKLERİ
   ============================================ */

.hero-application {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 50%, #000000 100%);
}

.hero-katilimci {
    background: linear-gradient(135deg, #b71c1c 0%, #e53935 50%, #1a0000 100%);
}

.hero-gozlemci {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #00001a 100%);
}

.hero-eglendirme {
    background: linear-gradient(135deg, #6a1b9a 0%, #ab47bc 50%, #1a0020 100%);
}

.hero-basin {
    background: linear-gradient(135deg, #004d40 0%, #00897b 50%, #001a14 100%);
}

.hero-katilimci h1,
.hero-gozlemci h1,
.hero-eglendirme h1,
.hero-basin h1 {
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-katilimci p,
.hero-gozlemci p,
.hero-eglendirme p,
.hero-basin p {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-large {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

/* ============================================
   GOOGLE FORM BUTONU
   ============================================ */

.google-form-btn {
    font-size: 1rem;
    padding: 0.85rem 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.google-form-btn i {
    font-size: 0.9rem;
}

/* ============================================
   CARDS (Feature, Service, Meaning, Info)
   ============================================ */

.service-grid,
.feature-grid,
.meaning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.service-card,
.feature-card,
.meaning-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.4s ease;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before,
.feature-card::before,
.meaning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before,
.feature-card:hover::before,
.meaning-card:hover::before {
    left: 100%;
}

.service-card:hover,
.feature-card:hover,
.meaning-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.service-card h3,
.feature-card h3,
.meaning-card h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.service-card p,
.feature-card p,
.meaning-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   INFO GRID (Başvuru detay sayfaları)
   ============================================ */

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

.info-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.info-card h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.info-card p {
    color: #cccccc;
    font-size: 0.95rem;
}

/* ============================================
   BAŞVURU HUB SAYFASI
   ============================================ */

.basvuru-hub {
    text-align: center;
}

.basvuru-hub-desc {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0.5rem;
}

.basvuru-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.basvuru-hub-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 1rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.basvuru-hub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.08), transparent);
    transition: left 0.5s ease;
}

.basvuru-hub-card:hover::before {
    left: 100%;
}

.basvuru-hub-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.35);
    border-color: var(--primary-color);
}

.basvuru-card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    transition: transform 0.4s ease;
}

.basvuru-hub-card:hover .basvuru-card-icon {
    transform: scale(1.15);
}

.basvuru-hub-card h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.basvuru-hub-card p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.basvuru-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.basvuru-hub-card:hover .basvuru-card-arrow {
    gap: 0.7rem;
}

.basvuru-card-arrow i {
    transition: transform 0.3s ease;
}

.basvuru-hub-card:hover .basvuru-card-arrow i {
    transform: translateX(4px);
}

/* ============================================
   BAŞVURU DETAY SAYFASI
   ============================================ */

.basvuru-detay {
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem 1rem !important;
}

.basvuru-detay-content h2 {
    text-align: center;
    margin-bottom: 1.25rem;
}

.basvuru-detay-content > p {
    font-size: 1rem;
    line-height: 1.7;
    color: #cccccc;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.basvuru-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.basvuru-btn-wrapper {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0.03) 100%);
    border-radius: 1rem;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.basvuru-note {
    color: #888888;
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

/* ============================================
   FORMLAR
   ============================================ */

.contact form {
    max-width: 550px;
    margin: 1.5rem auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact input,
.contact textarea {
    padding: 0.7rem;
    border: 2px solid #333333;
    border-radius: 0.25rem;
    font-family: inherit;
    font-size: 0.95rem;
    background-color: #1a1a1a;
    color: var(--text-color);
    transition: all 0.3s;
    width: 100%;
}

.contact input::placeholder,
.contact textarea::placeholder {
    color: #666666;
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    background-color: #222222;
}

.application-form {
    max-width: 650px;
    margin: 0 auto;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 1.75rem;
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 0.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 0.7rem;
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 0.25rem;
    font-family: inherit;
    font-size: 0.95rem;
    background-color: #0a0a0a;
    color: var(--text-color);
    transition: all 0.3s;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    background-color: #1a1a1a;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.6rem;
}

.form-group.checkbox input {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-group.checkbox label {
    margin-bottom: 0;
    text-transform: none;
    font-size: 0.85rem;
    flex: 1;
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    padding: 1.5rem 0;
}

.timeline-item {
    display: flex;
    gap: 1.25rem;
    position: relative;
}

.timeline-marker {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.timeline-item:not(:last-child) .timeline-marker::after {
    content: '';
    position: absolute;
    left: 11.5px;
    top: 24px;
    width: 2px;
    height: calc(100% + 0.5rem);
    background-color: rgba(255, 0, 0, 0.3);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.timeline-content p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0.05) 100%);
    padding: 2.5rem 1rem !important;
    text-align: center;
}

.cta h2 {
    margin-bottom: 0.75rem;
}

.cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

/* ============================================
   THEME CONTENT
   ============================================ */

.theme-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem !important;
}

.theme-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #cccccc;
    text-align: justify;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
}

.theme-text .theme-conclusion {
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-top: 2rem;
    padding: 1.25rem;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.theme-meaning {
    background: rgba(255, 0, 0, 0.05);
}

.theme-call {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.12) 0%, rgba(255, 0, 0, 0.04) 100%);
    padding: 2.5rem 1.25rem;
    text-align: center;
    border-radius: 1rem;
    margin: 2rem 0;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
}

.theme-call h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    letter-spacing: 2px;
}

.theme-call p {
    font-size: 1rem;
    color: #f1f1f1;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-tedx,
.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #cccccc;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 100%);
    color: white;
    margin-top: 3rem;
    border-top: 2px solid #ff0000;
    padding: 2.5rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.footer-section h4 {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.4rem;
}

.footer-section ul a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-section ul a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.social-links a {
    color: #cccccc;
    font-size: 1.3rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

.footer-bottom p {
    margin: 0.4rem 0;
    color: #cccccc;
    font-size: 0.85rem;
}

.footer-bottom p:last-child {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

/* ============================================
   MOBILE RESPONSIVE - TABLET (max-width: 1024px)
   ============================================ */

@media (max-width: 1024px) {
    .navbar {
        padding: 0.6rem 1.25rem;
    }
    
    .menu {
        gap: 1rem;
    }
    
    .hero {
        min-height: 28vh;
        padding: 2.5rem 1rem;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 4.5vw, 3rem);
    }
}

/* ============================================
   MOBILE RESPONSIVE - TABLET / BÜYÜK TELEFON (max-width: 768px)
   ============================================ */

@media (max-width: 768px) {
    /* Header */
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    /* Hamburger */
    .hamburger {
        display: flex;
    }

    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transition: left 0.3s ease;
        z-index: 100;
    }

    .menu.active {
        left: 0;
    }

    .menu li {
        margin: 0;
    }

    .menu a {
        font-size: 1.4rem;
        padding: 0.75rem 1rem;
    }
    
    .menu a.active::after {
        bottom: 0;
    }

    /* Main */
    main {
        padding: 0 1rem;
    }

    section {
        padding: 2rem 0;
    }

    h2 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    /* Hero */
    .hero {
        min-height: 25vh;
        padding: 2rem 0.75rem;
        margin: 0 -1rem;
        width: calc(100% + 2rem);
    }

    .hero-content h1 {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        letter-spacing: 1.5px;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-logo-badge {
        padding: 0.5rem 0.75rem;
        gap: 0.4rem;
    }
    
    .hero-logo-badge img {
        height: 28px;
    }
    
    .hero-logo-badge span {
        font-size: 0.8rem;
    }
    
    /* Tema görsel hero */
    .hero-image-container {
        margin: 0 -1rem;
        width: calc(100% + 2rem);
        padding: 1rem 0.5rem;
    }

    /* Grids */
    .service-grid,
    .feature-grid,
    .meaning-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-grid,
    .basvuru-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .basvuru-hub-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Cards */
    .service-card,
    .feature-card,
    .meaning-card,
    .info-card {
        padding: 1.25rem;
    }
    
    .basvuru-hub-card {
        padding: 1.5rem 1rem;
    }
    
    .basvuru-card-icon {
        font-size: 2rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .google-form-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        justify-content: center;
    }

    /* Forms */
    .form-container {
        padding: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px; /* iOS zoom engelleme */
    }
    
    /* Timeline */
    .timeline {
        padding: 1rem 0;
        gap: 1.25rem;
    }

    .timeline-item {
        gap: 1rem;
    }
    
    .timeline-marker {
        width: 20px;
        height: 20px;
    }
    
    .timeline-item:not(:last-child) .timeline-marker::after {
        left: 9.5px;
        top: 20px;
    }
    
    .timeline-content h3 {
        font-size: 0.85rem;
    }
    
    .timeline-content p {
        font-size: 0.8rem;
    }

    /* Theme */
    .theme-content {
        padding: 2rem 0.5rem !important;
    }
    
    .theme-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        padding-left: 0.75rem;
    }
    
    .theme-text .theme-conclusion {
        font-size: 0.95rem;
        padding: 1rem;
    }
    
    .theme-call {
        padding: 1.75rem 1rem;
    }
    
    .theme-call h2 {
        font-size: 1.5rem;
    }
    
    .theme-call p {
        font-size: 0.9rem;
    }
    
    /* Başvuru detay */
    .basvuru-detay {
        padding: 2rem 0.5rem !important;
    }
    
    .basvuru-detay-content > p {
        font-size: 0.95rem;
        text-align: justify;
        margin-bottom: 2rem;
    }
    
    .basvuru-btn-wrapper {
        padding: 1.25rem 1rem;
    }
    
    .basvuru-note {
        font-size: 0.8rem;
    }

    /* CTA */
    .cta {
        padding: 2rem 1rem !important;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 1.25rem 1rem;
    }
}

/* ============================================
   MOBILE RESPONSIVE - KÜÇÜK TELEFON (max-width: 480px)
   ============================================ */

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .navbar {
        padding: 0.5rem 0.75rem;
    }
    
    .logo img {
        height: 30px;
    }
    
    .menu a {
        font-size: 1.25rem;
    }
    
    main {
        padding: 0 0.75rem;
    }
    
    section {
        padding: 1.75rem 0;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .hero {
        min-height: 22vh;
        padding: 1.75rem 0.5rem;
        margin: 0 -0.75rem;
        width: calc(100% + 1.5rem);
    }
    
    .hero-content h1 {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
        letter-spacing: 1px;
    }
    
    .hero-content p {
        font-size: 0.85rem;
    }
    
    .hero-image-container {
        padding: 0.75rem 0.25rem;
        margin: 0 -0.75rem;
        width: calc(100% + 1.5rem);
    }
    
    .hero-poster {
        border-radius: 8px;
    }
    
    .btn {
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .google-form-btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.25rem;
    }
    
    .service-card,
    .feature-card,
    .meaning-card,
    .info-card {
        padding: 1.1rem;
    }
    
    .service-card h3,
    .feature-card h3,
    .meaning-card h3,
    .info-card h3 {
        font-size: 1rem;
    }
    
    .service-card p,
    .feature-card p,
    .meaning-card p,
    .info-card p {
        font-size: 0.85rem;
    }
    
    .basvuru-hub-card {
        padding: 1.25rem 1rem;
    }
    
    .basvuru-card-icon {
        font-size: 1.75rem;
    }
    
    .basvuru-hub-card h3 {
        font-size: 1rem;
    }
    
    .basvuru-hub-card p {
        font-size: 0.85rem;
    }
    
    .basvuru-hub-desc {
        font-size: 0.9rem;
    }
    
    .basvuru-card-arrow {
        font-size: 0.8rem;
    }
    
    .form-container {
        padding: 1rem;
        gap: 1rem;
    }
    
    .form-group label {
        font-size: 0.75rem;
    }
    
    .form-group.checkbox label {
        font-size: 0.8rem;
    }
    
    .theme-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .theme-conclusion {
        font-size: 0.9rem !important;
    }
    
    .theme-call h2 {
        font-size: 1.3rem;
    }
    
    .timeline-item {
        gap: 0.75rem;
    }
    
    .timeline-content h3 {
        font-size: 0.8rem;
    }
    
    .timeline-content p {
        font-size: 0.75rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* ============================================
   MOBILE RESPONSIVE - ÇOK KÜÇÜK EKRAN (max-width: 360px)
   ============================================ */

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.2rem;
    }
    
    .hero-content p {
        font-size: 0.8rem;
    }
    
    .hero-logo-badge span {
        font-size: 0.75rem;
    }
    
    .btn {
        padding: 0.55rem 1rem;
        font-size: 0.8rem;
    }
    
    .btn-large {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .basvuru-card-icon {
        font-size: 1.5rem;
    }
}

/* ============================================
   DOKUNMATİK CİHAZ İYİLEŞTİRMELERİ
   ============================================ */

@media (hover: none) and (pointer: coarse) {
    /* Dokunmatik cihazlarda hover efektlerini yumuşat */
    .service-card:hover,
    .feature-card:hover,
    .meaning-card:hover,
    .info-card:hover,
    .basvuru-hub-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .service-card:active,
    .feature-card:active,
    .meaning-card:active,
    .info-card:active,
    .basvuru-hub-card:active {
        transform: scale(0.98);
        box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    }
    
    .btn:active {
        transform: scale(0.96);
    }
    
    /* Link ve butonlar için minimum dokunma alanı */
    .menu a,
    .btn,
    .basvuru-hub-card,
    .social-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .menu a {
        min-height: 48px;
    }
}
/* ============================================
   KADROMUZ SAYFASI
   ============================================ */

.hero-kadromuz {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 50%, #0a0a0a 100%);
}

.hero-kadromuz h1 {
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
}

.hero-kadromuz p {
    color: rgba(255, 255, 255, 0.9);
}

.kadro-grid-section {
    padding: 3rem 1rem;
}

.kadro-grid-section h2 {
    margin-bottom: 2rem;
}

.kadro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.kadro-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}

.kadro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.kadro-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .kadro-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .kadro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .kadro-card {
        border-radius: 0.75rem;
    }
}

@media (max-width: 360px) {
    .kadro-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   GERİ SAYIM SAYACI
   ============================================ */

.countdown-section {
    text-align: center;
    padding: 2.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.countdown-section h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.4);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    min-width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .countdown-section h2 {
        font-size: 1.2rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        padding: 1rem 1.25rem;
        min-width: 75px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .countdown-item {
        padding: 0.85rem 1rem;
        min-width: 65px;
    }
    
    .countdown-number {
        font-size: 1.7rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
}

/* Hakkında sayfası hero */
.hero-hakkinda {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 50%, #0a0a0a 100%);
}

/* Sponsorlar sayfası hero */
.hero-sponsorlar {
    background: linear-gradient(135deg, #1a1a1a 0%, #444444 50%, #0a0a0a 100%);
}

/* Sponsor grid */
.sponsor-grid-section {
    padding: 3rem 1rem;
    text-align: center;
}

.sponsor-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.sponsor-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.sponsor-card img {
    max-width: 150px;
    height: auto;
    margin-bottom: 0.5rem;
}

.sponsor-card p {
    color: #cccccc;
    font-weight: 500;
}

.about-content .btn {
    display: table;
    margin: 1.5rem auto 0;
}

.hero-konusmacilar {
    background: linear-gradient(135deg, #1a1a1a 0%, #444444 50%, #0a0a0a 100%);
}

.hero-konusmacilar h1 {
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
}

.hero-konusmacilar p {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   HARİTA BÖLÜMÜ
   ============================================ */

.map-section {
    text-align: center;
    padding: 3rem 1rem;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.map-section h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.map-address {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.map-address i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.map-container {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.map-btn i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .map-section h2 {
        font-size: 1.3rem;
    }
    
    .map-address {
        font-size: 0.9rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 250px;
    }
    
    .map-btn {
        width: 100%;
        justify-content: center;
    }
}

.map-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0 0 0;
}