/* --- TEMEL AYARLAR --- */
:root {
    --neon: #d4ff00;
    --dark: #000000;
    --grey: #121212;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--dark);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; }

.section-title {
    max-width: 880px;
    margin: 0 auto 60px;
    text-align: center;
    display: grid;
    gap: 12px;
}
.section-title span {
    letter-spacing: 2px;
    color: var(--neon);
    font-size: 12px;
    font-weight: 700;
}
.section-title h2 { font-size: 3rem; }
.section-title p { color: #cfcfcf; }
.section-title--dark span,
.section-title--dark h2,
.section-title--dark p { color: #000; }

.btn-neon {
    display: inline-block;
    background: var(--neon);
    color: #000;
    padding: 14px 26px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-neon:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(212,255,0,0.25); }
.btn-neon.full { width: 100%; text-align: center; }
.btn-outline-light {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 22px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: 0.3s;
}
.btn-outline-light:hover { background: #fff; color: #000; }
.text-link { color: var(--neon); text-decoration: none; font-weight: 700; }

/* --- NAVBAR --- */
.navbar {
    position: fixed; top: 0; width: 100%; height: 80px;
    background: rgba(0,0,0,0.95); display: flex; align-items: center;
    justify-content: space-between; padding: 0 5%; z-index: 1000;
    border-bottom: 1px solid #222;
}
.logo { font-size: 28px; font-weight: 700; letter-spacing: 2px; }
.logo span { color: var(--neon); }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { color: #fff; text-decoration: none; font-size: 13px; font-weight: bold; transition: 0.3s; }
.nav-links a:hover { color: var(--neon); }
.nav-btn { background: var(--neon); color: #000; padding: 12px 25px; text-decoration: none; font-weight: bold; font-size: 12px; }

/* --- 1. HERO (Padding Düzeltildi) --- */
.hero-wild { height: 100vh; display: flex; flex-direction: column; padding-top: 80px; }
.hero-top-dark { flex: 1.2; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 40px; }
.hero-heading { text-align: center; display: grid; gap: 16px; max-width: 780px; }
.eyebrow { letter-spacing: 2px; font-weight: 700; color: var(--neon); font-size: 12px; }
.hero-title { font-size: 8.5vw; line-height: 0.8; text-align: center; }
.highlight { color: var(--neon); }
.hero-sub { color: #cfcfcf; max-width: 640px; margin: 0 auto; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 18px; }
.hero-bottom-image { flex: 1; position: relative; }
.hero-bottom-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.hero-play-button {
    position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
    width: 90px; height: 90px; background: var(--neon); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #000;
}

/* --- 2. SERVICES CAROUSEL --- */
.services-carousel-section { padding: 100px 5%; }
.s-card { position: relative; height: 500px; overflow: hidden; }
.s-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.5s; }
.s-card:hover img { filter: grayscale(0%) brightness(0.6); }
.s-info { position: absolute; bottom: 30px; left: 20px; }
.s-info h3 { font-size: 2rem; background: var(--neon); color: #000; padding: 5px 15px; }
.swiper-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.65);
    width: 46px; height: 46px;
    border: 1px solid #333;
    display: grid; place-items: center;
    font-size: 1.4rem; font-weight: 700;
    cursor: pointer;
    color: #fff;
    z-index: 10;
}
.services-prev { left: -18px; }
.services-next { right: -18px; }

/* --- 3. ABOUT --- */
.about-wild { padding: 100px 5%; background: var(--grey); }
.about-container { display: flex; align-items: center; gap: 50px; }
.about-text { flex: 1; }
.about-text h2 { font-size: 4rem; margin: 10px 0 20px; }
.about-img { flex: 1; }
.about-img img { width: 100%; border: 10px solid #222; }
.btn-outline { background: transparent; border: 2px solid var(--white); color: #fff; padding: 15px 40px; cursor: pointer; font-family: 'Oswald'; }
.about-actions { display: flex; align-items: center; gap: 16px; margin-top: 20px; }

/* --- 4. REVIEWS --- */
.google-reviews { padding: 80px 10%; text-align: center; }
.review-header { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 40px; }
.review-card { background: #111; padding: 40px; border-radius: 10px; border: 1px solid #333; }
.stars { color: gold; margin-bottom: 15px; }
.client { display: block; margin-top: 20px; color: var(--neon); font-weight: bold; }

/* --- 5. VIDEO HERO --- */
.video-hero { position: relative; height: 65vh; display: flex; align-items: center; justify-content: center; padding: 0 5%; text-align: center; overflow: hidden; }
.video-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)); z-index: 1; }
.video-hero img { position: absolute; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.video-content { z-index: 5; display: grid; gap: 14px; max-width: 640px; }
.play-btn { width: 120px; height: 120px; border: 3px solid var(--neon); border-radius: 50%; color: var(--neon); display: flex; align-items: center; justify-content: center; font-size: 3rem; margin: 0 auto 20px; cursor: pointer; transition: 0.3s; }
.play-btn:hover { background: var(--neon); color: #000; }

/* --- 6. STATS --- */
.stats-wild { background: var(--white); color: #000; padding: 90px 5%; display: grid; gap: 50px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; }
.stat-box { background: #f6f6f6; border: 1px solid #e1e1e1; padding: 30px; text-align: center; border-radius: 12px; }
.stat-box h4 { font-size: 3.2rem; line-height: 1; }
.stat-box p { letter-spacing: 2px; font-weight: 700; }

/* --- 7. GALLERY --- */
.gallery-carousel { padding: 100px 5%; background: #000; overflow: hidden; }
.gallerySwiper { overflow: visible; }
.gallerySwiper .swiper-slide { width: clamp(220px, 28vw, 360px); }
.gallery-card {
    position: relative;
    height: 360px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #111;
}
.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    opacity: 0;
    transition: 0.3s;
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.gallery-card:hover img { transform: scale(1.06); opacity: 0.9; }
.gallery-card:hover::after { opacity: 1; }

/* --- 8. BLOG --- */
.blog-carousel-section { padding: 100px 5%; }
.blog-card { background: #111; border: 1px solid #222; }
.blog-card img { width: 100%; height: 250px; object-fit: cover; }
.blog-info { padding: 25px; }

/* --- 9. CTA --- */
.cta-free {
    padding: 120px 5%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1556817411-31ae72fa3ea0?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.cta-inner {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 28px;
    align-items: stretch;
}
.cta-copy { display: grid; gap: 14px; max-width: 720px; }
.cta-copy h2 { font-size: 3.4rem; letter-spacing: 1px; }
.cta-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.cta-badges span {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.5px;
}
.cta-note { color: #cfcfcf; font-size: 13px; }
.btn-neon-large { background: var(--neon); color: #000; border: none; padding: 22px 48px; font-family: 'Oswald'; font-size: 1.6rem; font-weight: bold; cursor: pointer; }
.cta-card {
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 20px;
    display: grid;
    gap: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.cta-card__title { letter-spacing: 1px; font-weight: 700; }
.cta-card__slots { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.cta-card__slots .slot {
    background: #0f0f0f;
    border: 1px solid #1f1f1f;
    padding: 12px;
    border-radius: 10px;
    display: grid;
    gap: 4px;
}
.cta-card__slots .slot span { color: #cfcfcf; font-size: 12px; }
.cta-card__slots .slot strong { font-size: 1.1rem; }
.cta-card__coach {
    background: rgba(255,255,255,0.04);
    border: 1px dashed rgba(255,255,255,0.12);
    padding: 12px;
    border-radius: 10px;
}
.cta-card__coach span { color: var(--neon); font-weight: 700; letter-spacing: 0.5px; }
.cta-card__coach p { margin: 6px 0 0; color: #cfcfcf; }

/* --- 10. CONTACT --- */
.contact-section {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    padding: 100px 5%;
    gap: 40px;
    background: var(--grey);
    align-items: start;
}
.contact-map-side, .contact-form-side {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
}
.map-iframe { height: 360px; }
.contact-info { margin-bottom: 20px; display: grid; gap: 8px; color: #cfcfcf; }
.contact-info p { margin: 0; }
.map-iframe iframe { border-radius: 10px; width: 100%; height: 100%; }
.contact-form-side h3 { margin-bottom: 16px; letter-spacing: 1px; }
.contact-form-side form { display: flex; flex-direction: column; gap: 15px; }
.contact-form-side input, .contact-form-side textarea, .contact-form-side select { background: #000; border: 1px solid #333; padding: 15px; color: #fff; font-family: inherit; border-radius: 8px; }
.contact-form-side button { background: var(--neon); border: none; padding: 20px; font-weight: bold; cursor: pointer; border-radius: 8px; }
.contact-form-side button:hover { filter: brightness(0.95); }

/* --- FOOTER --- */
.main-footer {
    background: #050505;
    border-top: 1px solid #111;
    padding: 70px 5% 40px;
    display: grid;
    gap: 30px;
}
.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}
.footer-brand p { color: #bfbfbf; margin: 10px 0 16px; max-width: 360px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    border: 1px solid #222;
    display: grid; place-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}
.footer-links { display: grid; gap: 8px; }
.footer-links h4, .footer-contact h4 { margin-bottom: 6px; letter-spacing: 1px; }
.footer-links a { color: #dcdcdc; text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--neon); }
.footer-contact p { margin: 0 0 6px; color: #cfcfcf; }
.footer-form { margin-top: 12px; display: flex; gap: 8px; }
.footer-form input {
    flex: 1;
    background: #000;
    border: 1px solid #222;
    padding: 12px;
    color: #fff;
}
.footer-form button {
    background: var(--neon);
    border: none;
    padding: 12px 16px;
    font-weight: 700;
    cursor: pointer;
    color: #000;
}
.footer-bottom {
    border-top: 1px solid #111;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #9f9f9f;
    font-size: 13px;
}
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badges span {
    border: 1px solid #222;
    padding: 6px 10px;
    border-radius: 999px;
    color: #dcdcdc;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* --- VIDEO MODAL --- */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1200;
}
.video-modal.is-open { opacity: 1; visibility: visible; }
.video-modal__content {
    background: #000;
    border: 1px solid #222;
    border-radius: 12px;
    max-width: 960px;
    width: 100%;
    position: relative;
}
.video-modal__close {
    position: absolute;
    top: 12px; right: 12px;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    width: 38px; height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}
.video-wrapper { position: relative; padding-top: 56.25%; overflow: hidden; border-radius: 10px; }
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.no-scroll { overflow: hidden; }

/* --- SWIPER PAGINATION (DOTS) --- */
.swiper-pagination {
    position: relative;
    margin-top: 18px;
}
.swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background: rgba(255,255,255,0.22);
    opacity: 1;
    border: 1px solid rgba(255,255,255,0.32);
    transition: 0.25s ease;
}
.swiper-pagination-bullet-active {
    background: var(--neon);
    border-color: var(--neon);
    box-shadow: 0 0 0 6px rgba(212,255,0,0.16);
}
.reviewSwiper .swiper-pagination,
.blogSwiper .swiper-pagination {
    margin-top: 24px;
}
.servicesSwiper .swiper-pagination {
    margin-top: 28px;
}

/* --- FORM MODAL --- */
.form-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1300;
}
.form-modal.is-open { opacity: 1; visibility: visible; }
.form-modal__content {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 14px;
    width: min(840px, 95vw);
    padding: 28px;
    position: relative;
    display: grid;
    gap: 18px;
}
.form-modal__close {
    position: absolute;
    top: 12px; right: 12px;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    width: 38px; height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}
.form-modal__header { display: grid; gap: 8px; }
.form-modal__header p { color: #cfcfcf; margin: 0; }
.form-modal__form { display: grid; gap: 14px; }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.form-modal input,
.form-modal select,
.form-modal textarea {
    background: #000;
    border: 1px solid #333;
    padding: 14px;
    color: #fff;
    font-family: inherit;
    border-radius: 8px;
}
.form-modal textarea { resize: vertical; min-height: 100px; }
.form-modal select { color: #cfcfcf; }
.form-modal select option { color: #000; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-wild { height: auto; min-height: 90vh; }
    .hero-top-dark { padding: 40px 6% 10px; align-items: center; }
    .hero-heading { gap: 14px; }
    .hero-title { font-size: 12vw; line-height: 0.9; }
    .hero-sub { font-size: 14px; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-bottom-image { height: 45vh; }
    .hero-play-button { width: 70px; height: 70px; top: 10%; font-size: 1.6rem; }
    .section-title { margin-bottom: 36px; gap: 8px; }
    .section-title h2 { font-size: 2.2rem; }
    .services-carousel-section,
    .about-wild,
    .google-reviews,
    .stats-wild,
    .gallery-carousel,
    .blog-carousel-section,
    .cta-free { padding: 60px 6%; }
    .video-hero { height: 50vh; padding: 0 6%; }
    .stats-grid { gap: 16px; }
    .gallery-card { height: 260px; }
    .cta-inner { grid-template-columns: 1fr; gap: 18px; }
    .cta-copy h2 { font-size: 2.6rem; }
    .cta-card { margin-top: 4px; }
    .contact-section { grid-template-columns: 1fr; padding: 70px 6%; gap: 20px; }
    .about-container { flex-direction: column; }
    .stat-box { min-width: 50%; margin-bottom: 30px; }
    .services-prev, .services-next { display: none; }
    .contact-section { grid-template-columns: 1fr; }
    .gallerySwiper .swiper-slide { width: clamp(200px, 70vw, 300px); }
    .gallery-card { height: 260px; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
    .hero-title { font-size: 14vw; }
    .hero-bottom-image { height: 38vh; }
    .hero-play-button { width: 62px; height: 62px; top: 12%; font-size: 1.4rem; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-form { flex-direction: column; }
}