/* Ürkütler Grup İnşaat - Ana Stil */
:root {
    --primary: #c41e3a;
    --primary-dark: #9a1830;
    --secondary: #1a1a2e;
    --dark: #0f0f1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--secondary);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 15px 0;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span { color: var(--primary); }

.logo img { height: 45px; width: auto; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
}

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

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

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

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23c41e3a" opacity="0.03" x="0" y="0" width="50" height="50"/><rect fill="%23c41e3a" opacity="0.03" x="50" y="50" width="50" height="50"/></svg>');
    background-size: 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(196, 30, 58, 0.2);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(196, 30, 58, 0.3);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span { color: var(--primary); }

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
    opacity: 0.15;
    z-index: 1;
}

/* ========== SECTIONS ========== */
.section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== ABOUT ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 4px solid var(--primary);
    border-radius: var(--radius);
    z-index: -1;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.about-feature i {
    width: 40px;
    height: 40px;
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== STATS ========== */
.stats-section {
    background: var(--secondary);
    color: var(--white);
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item .stat-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 1rem;
    opacity: 0.85;
}

.stat-item i {
    font-size: 1.8rem;
    color: rgba(196, 30, 58, 0.5);
    margin-bottom: 15px;
    display: block;
}

/* ========== PROJECTS ========== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.project-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-badge.devam { background: #e67e22; }
.project-badge.tamamlandi { background: #27ae60; }

.project-body {
    padding: 25px;
}

.project-body h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.project-body .location {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-body p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 35px 28px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ========== WHY US ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    background: var(--secondary);
    color: var(--white);
}

.why-card:hover p { color: rgba(255,255,255,0.7); }

.why-card .icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.why-card h3 { margin-bottom: 12px; font-size: 1.2rem; }

.why-card p { color: var(--gray); font-size: 0.95rem; }

/* ========== CTA ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    padding: 6px 0;
    font-size: 0.95rem;
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* ========== PAGE HERO ========== */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    padding: 160px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-hero .breadcrumb {
    opacity: 0.7;
    font-size: 0.95rem;
}

.page-hero .breadcrumb a:hover { color: var(--primary); }

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h4 { margin-bottom: 5px; }

.contact-info-item p { color: var(--gray); font-size: 0.95rem; }

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========== PROJECT DETAIL ========== */
.project-detail-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 40px;
    height: 450px;
}

.project-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
}

.project-meta-item strong {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-visual { display: none; }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary);
        flex-direction: column;
        padding: 16px 20px 24px;
        gap: 4px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.25);
        max-height: 80vh;
        overflow-y: auto;
    }
    .nav-menu.active { display: flex !important; }
    .nav-menu a {
        padding: 12px 8px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        font-size: 1rem;
    }
    .nav-menu a::after { display: none; }
    .nav-menu .btn {
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }
    .mobile-toggle { display: block !important; }
    .header-inner { position: relative; }
    .logo { font-size: 1.2rem; }
    .logo img { height: 36px; }
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.bg-light { background: var(--light); }

/* ========== FULL-PAGE SCROLL (asgrup / pagePiling tarzı) ========== */
html.fp-enabled,
html.fp-enabled body {
    overflow: hidden;
    height: 100%;
    height: 100dvh;
    overscroll-behavior: none;
    touch-action: pan-y;
}

html.fp-enabled body {
    position: relative;
    width: 100%;
}

.fp-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: opacity 0.85s cubic-bezier(0.65, 0, 0.35, 1),
                transform 0.85s cubic-bezier(0.65, 0, 0.35, 1),
                visibility 0.85s;
    z-index: 1;
    display: flex;
    align-items: center;
    background: var(--white);
}

.fp-section.fp-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
}

.fp-section.fp-up {
    transform: translateY(-30px);
    opacity: 0;
}

.fp-section.fp-down {
    transform: translateY(30px);
    opacity: 0;
}

/* Native scroll (mobil / fp kapalı) */
/* Native fallback sadece JS fp-enabled eklemezse (JS kapalı) */
html:not(.fp-enabled) .fp-section {
    position: relative;
    height: auto;
    min-height: 100vh;
    opacity: 1;
    visibility: visible;
    transform: none;
    overflow: visible;
    display: block;
    padding: 90px 0;
}

html:not(.fp-enabled) .hero.fp-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

/* Section içi kaydırma (uzun içerik) */
.fp-section.fp-scrollable {
    overflow-y: auto;
    align-items: flex-start;
}
.fp-section.fp-scrollable .container {
    padding-top: 100px;
    padding-bottom: 60px;
}

/* Sağ nokta navigasyonu */
.fp-nav {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fp-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.fp-dot:hover {
    border-color: var(--primary);
    background: rgba(196, 30, 58, 0.4);
}

.fp-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.25);
}

/* Açık section'larda noktalar koyu */
.fp-section:not(.hero):not(.stats-section):not(.cta-section) ~ /* fallback */
body:has(.fp-section.fp-active:not(.hero):not(.stats-section):not(.cta-section)) .fp-dot {
    border-color: rgba(26,26,46,0.35);
}
body:has(.fp-section.fp-active:not(.hero):not(.stats-section):not(.cta-section)) .fp-dot.active {
    border-color: var(--primary);
}

/* Scroll indicator (hero) */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator i {
    font-size: 1.1rem;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Reveal animasyonları */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Parallax arka plan katmanı */
.fp-parallax {
    position: absolute;
    inset: -15%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 0;
    transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

.fp-section.fp-active .fp-parallax {
    transform: scale(1.05);
}

.fp-section > .container,
.fp-section > .hero-content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero fullpage uyumu */
.hero.fp-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    padding: 0;
}

.hero.fp-section .hero-content {
    max-width: 700px;
}

.stats-section.fp-section {
    background: var(--secondary);
}

.cta-section.fp-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

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

/* Header light mode (açık section'larda) */
.header.header-light {
    background: rgba(255,255,255,0.92);
}
.header.header-light .logo { color: var(--secondary); }
.header.header-light .nav-menu a { color: var(--secondary); }
.header.header-light .mobile-toggle { color: var(--secondary); }

@media (max-width: 992px) {
    .fp-nav {
        right: 12px;
        gap: 10px;
    }
    .fp-dot {
        width: 10px;
        height: 10px;
    }
    .scroll-indicator {
        bottom: 24px;
        font-size: 0.7rem;
    }
    .fp-section {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        align-items: flex-start;
    }
    .fp-section > .container {
        padding-top: 90px;
        padding-bottom: 50px;
        width: 100%;
    }
    .hero.fp-section {
        align-items: center;
    }
    .hero.fp-section > .container {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .hero.fp-section .hero-content h1 {
        font-size: 1.85rem;
    }
    .hero.fp-section .hero-content p {
        font-size: 1rem;
    }
    .hero-visual { display: none !important; }
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
    .about-image img {
        height: 220px !important;
    }
    .about-features {
        grid-template-columns: 1fr 1fr !important;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }
    .stat-item .stat-value {
        font-size: 2rem !important;
    }
    .projects-grid {
        grid-template-columns: 1fr !important;
    }
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    .why-grid {
        grid-template-columns: 1fr !important;
    }
    .section-header h2 {
        font-size: 1.5rem !important;
    }
    .cta-section h2 {
        font-size: 1.6rem !important;
    }
    /* Tüm section'lar mobilde scrollable gibi davransın */
    .fp-section.fp-scrollable .container,
    .fp-section > .container {
        min-height: auto;
    }
}

/* Stats fullpage kompakt */
.stats-section.fp-section {
    padding: 0;
}
.stats-section.fp-section .stats-grid {
    gap: 24px;
}
.stats-section.fp-section .stat-item .stat-value {
    font-size: 2.4rem;
}
@media (max-width: 992px) {
    .stats-section.fp-section .container {
        padding-top: 100px;
        padding-bottom: 40px;
        display: flex;
        align-items: center;
        min-height: calc(100vh - 0px);
    }
    .stats-section.fp-section .stats-grid {
        width: 100%;
        grid-template-columns: 1fr 1fr !important;
        gap: 28px 16px !important;
    }
    .stats-section.fp-section .stat-item .stat-value {
        font-size: 1.75rem !important;
    }
    .stats-section.fp-section .stat-item i {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    .stats-section.fp-section .stat-label {
        font-size: 0.85rem;
    }
}

/* ========== Scrollable sections (iç kaydırma) ========== */
.fp-section.fp-scrollable {
    overflow-y: auto !important;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    align-items: flex-start !important;
    overscroll-behavior: contain;
}
.fp-section.fp-scrollable > .container {
    padding-top: 100px;
    padding-bottom: 60px;
    margin: 0 auto;
}
.fp-section.fp-scrollable::-webkit-scrollbar { width: 5px; }
.fp-section.fp-scrollable::-webkit-scrollbar-thumb {
    background: rgba(196,30,58,0.4);
    border-radius: 4px;
}

/* ========== Footer fullpage section ========== */
.fp-section.fp-footer-section {
    background: #0f0f1a !important;
    background-color: #0f0f1a !important;
    color: rgba(255,255,255,0.8) !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}
.fp-footer-section .fp-footer-inner {
    width: 100%;
    padding: 100px 0 40px;
    box-sizing: border-box;
}
.fp-footer-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.fp-footer-section .logo {
    color: #fff !important;
    margin-bottom: 12px;
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
}
.fp-footer-section .logo span { color: var(--primary) !important; }
.fp-footer-section p {
    color: rgba(255,255,255,0.65) !important;
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.fp-footer-section h4 {
    color: #fff !important;
    margin-bottom: 14px;
    font-size: 1rem;
}
.fp-footer-section .footer-links a,
.fp-footer-section .footer-contact a,
.fp-footer-section .footer-contact li,
.fp-footer-section .footer-contact span {
    color: rgba(255,255,255,0.7) !important;
}
.fp-footer-section .footer-links a {
    display: block;
    padding: 6px 0;
}
.fp-footer-section .footer-links a:hover { color: var(--primary) !important; }
.fp-footer-section .footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.fp-footer-section .footer-contact i { color: var(--primary) !important; margin-top: 3px; }
.fp-footer-section .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 30px;
}
.fp-footer-section .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5) !important;
}
.fp-footer-section .footer-bottom p { color: rgba(255,255,255,0.5) !important; margin: 0; }
.fp-footer-section .social-links {
    display: flex;
    gap: 10px;
}
.fp-footer-section .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
}
.fp-footer-section .social-links a:hover { background: var(--primary); }

@media (max-width: 992px) {
    .fp-footer-section .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        text-align: left;
    }
    .fp-footer-section .fp-footer-inner {
        padding: 90px 20px 50px;
    }
    .fp-footer-section .social-links { justify-content: flex-start; }
    .fp-section.fp-scrollable > .container {
        padding-top: 90px;
        padding-bottom: 50px;
    }
}

/* ========== Sol sabit sosyal (asgrup tarzı) ========== */
.fixed-socials {
    position: fixed;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fixed-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.15rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fixed-social-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.fixed-social-btn.ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.fixed-social-btn.wa { background: #25D366; }
.fixed-social-btn.fb { background: #1877F2; }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 998;
}
.nav-overlay.active { display: block; }

@media (max-width: 992px) {
    .fixed-socials {
        left: 10px;
        gap: 10px;
    }
    .fixed-social-btn {
        width: 40px;
        height: 40px;
        font-size: 1.05rem;
    }
    /* Mobil menü: sağdan açılan panel, kaydırılabilir */
    .nav-menu {
        display: block !important;
        position: fixed !important;
        top: 0;
        right: 0;
        left: auto;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: #1a1a2e !important;
        flex-direction: column;
        padding: 0 !important;
        margin: 0;
        box-shadow: -8px 0 30px rgba(0,0,0,0.35);
        z-index: 999;
        transform: translateX(105%);
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        overflow: hidden;
    }
    .nav-menu.active {
        transform: translateX(0) !important;
        display: block !important;
    }
    .nav-menu-scroll {
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 80px 24px 40px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .nav-menu a {
        padding: 14px 10px !important;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        font-size: 1.05rem !important;
        color: rgba(255,255,255,0.9) !important;
    }
    .nav-menu a::after { display: none !important; }
    .nav-menu .nav-cta,
    .nav-menu .btn {
        margin-top: 20px;
        text-align: center;
        justify-content: center;
        border: none !important;
    }
    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        position: relative;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 1.4rem;
        cursor: pointer;
    }
    body.nav-open {
        overflow: hidden !important;
    }
    /* Fullpage aktifken de menü açılsın */
    html.fp-enabled body.nav-open {
        overflow: hidden !important;
    }
}

@media (min-width: 993px) {
    .mobile-toggle { display: none !important; }
    .nav-overlay { display: none !important; }
    .nav-menu-scroll {
        display: flex;
        align-items: center;
        gap: 28px;
    }
}

