@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============ ANA TEMA RENKLERİ - MAVİ TONLARI ============ */
:root {
    /* Ana Renkler - Mavi Tonları */
    --primary: #0f4c81;        /* Ana Mavi */
    --secondary: #ff6b35;      /* Turuncu (vurgu rengi) */
    --accent: #2980b9;         /* Orta Mavi */
    --light-blue: #5dade2;     /* Açık Mavi */
    
    /* Yardımcı Renkler */
    --dark: #2c3e50;           /* Koyu Gri */
    --light: #ffffff;          /* Beyaz */
    --gray: #f8f9fa;           /* Açık Gri */
    --text: #2c3e50;           /* Koyu Gri Metin */
    --text-light: #6c757d;     /* Açık Gri Metin */
    --overlay: rgba(15, 76, 129, 0.7);
    
    /* Gradyanlar */
    --gradient-blue: linear-gradient(135deg, #0f4c81 0%, #2980b9 50%, #5dade2 100%);
    --gradient-overlay: linear-gradient(to top, rgba(15, 76, 129, 0.9), rgba(41, 128, 185, 0.7));
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 135px !important;
}

@media (max-width: 992px) {
    body {
        padding-top: 0 !important;  /* ✅ 0 yapın */
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* ============ PRELOADER ============ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: var(--light);
}

.horse-animation {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 107, 53, 0.3);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--secondary);
    width: 0;
    transition: width 0.1s;
}

/* ============ SECTIONS ============ */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ============ HERO SECTION ============ */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-blue);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--light);
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--light);
    z-index: 3;
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--light);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--secondary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.3);
    background: var(--accent);
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.btn-outline:hover {
    background: var(--light);
    color: var(--primary);
}

.btn-block {
    width: 100%;
}

/* ============ STATS SECTION ============ */
.stats-section {
    background: #ffffff;
    padding: 80px 0;
    min-height: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    color: var(--primary);
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s;
    border: 2px solid #e0e7ee;
}

.stat-card:hover {
    background: #fff;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.1);
    border-color: var(--accent);
}

.stat-card i {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary);
}

.stat-card p {
    font-size: 16px;
    color: var(--text);
    opacity: 0.9;
}

/* ============ SECTION HEADER ============ */
.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-header:not(.centered) .section-line {
    margin-left: 0;
}

.section-desc {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--text-light);
    font-size: 18px;
}

/* ============ ABOUT SECTION ============ */
.about-section {
    background: var(--gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 25px;
    background: var(--light);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(15, 76, 129, 0.08);
    transition: all 0.3s;
    border-left: 4px solid var(--primary);
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.15);
    border-left-color: var(--accent);
}

.feature-box i {
    font-size: 35px;
    color: var(--primary);
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary);
}

.feature-box p {
    color: var(--text-light);
    font-size: 14px;
}

.about-images {
    position: relative;
}

.image-grid-about {
    display: grid;
    gap: 20px;
}

.image-main-about {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 76, 129, 0.3);
    height: 500px;
    border: 3px solid var(--accent);
}

.image-main-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.image-main-about:hover img {
    transform: scale(1.05);
}

.placeholder-about {
    width: 100%;
    height: 100%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--light);
}

.image-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.stat-box {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.15);
    transition: all 0.3s;
    border: 2px solid var(--accent);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 76, 129, 0.25);
}

.stat-box h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--text-light);
    font-size: 14px;
}

/* ============ ACTIVITIES SECTION ============ */
.activities-section {
    background: var(--light);
    padding: 150px 0 !important;
    margin: 100px 0 !important;
}

.activities-section .section-header {
    margin-bottom: 80px !important;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.activity-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(15, 76, 129, 0.1);
    transition: all 0.4s;
    border: 2px solid transparent;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    border-color: var(--secondary);
}

.activity-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--light);
}

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.95), rgba(41, 128, 185, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.activity-card:hover .activity-overlay {
    opacity: 1;
}

.activity-link {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 24px;
    transition: transform 0.3s;
}

.activity-link:hover {
    transform: scale(1.2) rotate(45deg);
}

.activity-info {
    padding: 30px;
}

.activity-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.activity-info p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============ TEAM SECTION ============ */
.team-section {
    background: var(--gray);
    padding: 120px 0 !important;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.1);
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
    border-color: var(--accent);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray), #e8eef3);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--accent);
    background: linear-gradient(135deg, #f5f7fa, #e8eef3);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary);
}

.team-info span {
    display: block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.team-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============ GALLERY SECTION ============ */
.gallery-section {
    background: var(--light);
    padding: 120px 0 !important;
}

.gallery-section .section-header h2 {
    color: var(--primary);
}

.gallery-section .section-label {
    color: var(--secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.gallery-item:hover {
    border-color: var(--secondary);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--light);
    font-size: 18px;
    margin-bottom: 15px;
}

.gallery-overlay i {
    color: var(--secondary);
    font-size: 30px;
}

.gallery-cta {
    text-align: center;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    background: var(--gray);
    padding: 120px 0 !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(15, 76, 129, 0.2);
}

.info-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary);
}

.info-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* ============ CONTACT FORM ============ */
.contact-form-wrapper {
    background: var(--light);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(15, 76, 129, 0.15);
    border: 2px solid var(--accent);
}

.form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e0e7ee;
    border-radius: 15px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s;
    background: var(--gray);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--light);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

#formMessage {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
}

#formMessage.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

#formMessage.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    opacity: 0.7;
}

/* ============ MODERN FOOTER ============ */
.footer-modern {
    background: #0a0a0a;
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,107,53,0.03)"/></svg>') repeat;
    pointer-events: none;
}

.footer-main {
    padding: 80px 0 50px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-about {
    padding-right: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-logo h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--light), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    transition: transform 0.3s;
}

.social-icon:hover::before {
    transform: scale(1.2);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: var(--light);
}

.social-icon.facebook {
    background: #1877f2;
    color: var(--light);
}

.social-icon.youtube {
    background: #ff0000;
    color: var(--light);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--light);
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.footer-links a i {
    font-size: 12px;
    color: var(--secondary);
    transition: transform 0.3s;
}

.footer-links a:hover {
    color: var(--light-blue);
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(5px);
    color: var(--light-blue);
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-contact-list i {
    font-size: 18px;
    color: var(--secondary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list span,
.footer-contact-list a {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-list a:hover {
    color: var(--light-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--light-blue);
}

.footer-bottom-links span {
    color: rgba(255,255,255,0.3);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 56px;
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 40px;
    }
    
    .hero-text p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .activities-grid,
    .team-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-about {
        padding-right: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-main {
        padding: 60px 0 40px;
    }
    
    /* ========== MOBİL İÇİN ACTIVITIES SECTION BOŞLUKLARI ========== */
    .activities-section {
        padding: 100px 0 !important;
        margin: 60px 0 !important;
    }
    
    .activities-section .section-header {
        margin-bottom: 60px !important;
    }
    
    .activities-grid {
        gap: 50px !important;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .activity-card {
        margin-bottom: 40px !important;
    }
}