/* ===========================
   INFUSE - GENEL STİLLER
   Modern Spor Ekipmanları Web Sitesi
   =========================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Temel Reset ve Değişkenler */
:root {
    --primary-color: #d32f2f;
    --primary-dark: #9a0007;
    --secondary-color: #1a1a1a;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-top {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
    transition: margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled Header State */
.header-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-scrolled .navbar {
    padding: 8px 0;
}

.header-scrolled .logo img {
    height: 36px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    gap: 20px;
}

.header-contact a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-contact a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 1.1rem;
}

.social-links a:hover {
    color: var(--primary-color);
}

.navbar {
    padding: 15px 0;
    transition: padding 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background-color: rgba(211, 47, 47, 0.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Logo image styling */
.logo img,
.logo .site-logo {
    height: 48px;
    width: auto;
    display: block;
    transition: height 0.4s ease;
}

/* Preloader */
.site-preloader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    z-index: 11000;
    transition: opacity 0.3s ease;
}

.site-preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 8px solid rgba(211, 47, 47, 0.15);
    border-top-color: #d32f2f;
    /* primary red */
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--secondary-color);
    padding: 0;
    /* Override generic section padding */
}

.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    max-height: calc(100vh - 125px);
    min-height: 500px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Banner Slide - tam görsel gösterimi */
.banner-slide {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.banner-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-slide .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
    user-select: none;
}

/* Mobil için dikey sığdırma ayarı */
@media (max-width: 768px) {
    .hero-slider {
        aspect-ratio: unset;
        height: 70vh;
        min-height: 400px;
    }
}


/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* Slider Arrow Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: rgba(211, 47, 47, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 18px;
}

.slider-next {
    right: 18px;
}

/* Legacy hero content (eski slaytlar için) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Section Styling */
/* Section Styling */
section {
    padding: 80px 0;
}

/* Remove section padding on product detail pages that use the wider container */
.product-container section {
    padding: 0;
}

/* Product detail page styles (scoped under .product-page) */
.product-page .container.product-container {
    max-width: fit-content;
    padding: 0;
}

.product-page .product-hero {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: stretch;
    padding: 0px 0 0 0;
}

.product-page .product-gallery {
    background: var(--bg-light);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-page .product-gallery img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: calc(100vh - 120px);
    display: block;
}

.product-page .product-summary {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #e9eae6;
    position: sticky;
    top: 24px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    box-sizing: border-box;
    align-self: start;
}

.product-page .product-title {
    font-size: 2.6rem;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.05;
}

.product-page .product-category {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-page .product-short-desc {
    color: var(--text-light);
    line-height: 1.8;
}

.product-page .product-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    text-decoration: none;
    color: inherit;
}

.product-page .product-gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 6px;
}

.product-page .product-gallery-row img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

.product-page .product-wide {
    width: 100%;
    aspect-ratio: 2/1;
    height: auto;
    display: block;
    object-fit: cover;
    margin-top: 0;
}

.product-page .accordion-toggle {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.05rem;
}

.product-page .accordion-panel {
    display: none;
    padding: 15px;
    color: var(--text-light);
    background: #fff;
    margin-top: 5px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}


.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 20px auto 0;
}

/* Grid System */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Card Styling */
.card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img {
    transform: scale(1.1);
}

.card-img-wrapper {
    overflow: hidden;
    position: relative;
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.card-text {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Features Section */
.features {
    background-color: var(--bg-light);
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Product Categories */
.category-card {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    color: var(--white);
}

.category-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

/* Stats/Numbers Section */
.stats {
    background: url('../bannergorseller/sayilar.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.stat-box {
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section.bg-light {
    background: linear-gradient(rgba(12, 8, 8, 0.62), rgba(12, 8, 8, 0.62)), url('../bannergorseller/projenizicinteklifalın.jpg') center/cover no-repeat;
}

.cta-section.bg-light .text-center h2,
.cta-section.bg-light .text-center p {
    color: var(--white) !important;
}

.showroom-banner {
    background: linear-gradient(rgba(12, 8, 8, 0.62), rgba(12, 8, 8, 0.62)), url('../bannergorseller/shorwoomumuzuziyaretedin.jpg') center/cover no-repeat;
}

.showroom-banner .text-center h2,
.showroom-banner .text-center p {
    color: var(--white) !important;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(211, 47, 47, 0.8);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Contact Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p,
.footer-section a {
    color: #cccccc;
    line-height: 2;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-hover);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 0 20px;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
        padding: 20px;
        box-shadow: var(--shadow);
        opacity: 1;
        visibility: visible;
    }


    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    /* Mobil banner - dikey oran 2160x2700 (1:1.25) */
    .hero-slider::before {
        padding-top: 125%;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .header-top .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header-contact {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    section {
        padding: 40px 0;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .stats {
        background: url('../bannergorseller/sayilarmobil.jpg') center/cover no-repeat;
    }

    .cta-section.bg-light {
        background: linear-gradient(rgba(12, 8, 8, 0.62), rgba(12, 8, 8, 0.62)), url('../bannergorseller/projenizicinteklfialinmobil.jpg') center/cover no-repeat;
    }

    .showroom-banner {
        background: linear-gradient(rgba(12, 8, 8, 0.62), rgba(12, 8, 8, 0.62)), url('../bannergorseller/shorwoomumuzuziyaretedinmobil.jpg') center/cover no-repeat;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--secondary-color);
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

/* Product Contact Button Options */
.product-page .product-cta-contact {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    margin-top: 10px;
    width: 100%;
    text-align: center;
    border-radius: 4px;
}

.product-page .product-cta-contact:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}
/* --- Lightbox Styles --- */
.lightbox-advanced {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    user-select: none;
}

.lightbox-content {
    position: relative;
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    border-radius: 4px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    font-weight: 300;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 3.5rem;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition);
    background: transparent;
    border: none;
    outline: none;
}

.lightbox-nav:hover {
    color: var(--primary-color);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

@media (max-width: 992px) {
    .lightbox-prev { left: 0; }
    .lightbox-next { right: 0; }
    .lightbox-nav { font-size: 2.5rem; }
    .lightbox-close { top: -40px; right: 10px; }
}

/* ===========================
   HERO INTRO - Tam Ekran (Sadece Ana Sayfa)
   =========================== */
body.hero-intro .header-top {
    display: none;
}

body.hero-intro .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

body.hero-intro .header .navbar {
    padding: 8px 0;
}

body.hero-intro .header .logo img {
    height: 36px;
}

body.hero-intro .hero-slider {
    height: 100vh;
    aspect-ratio: unset;
    max-height: 100vh;
    min-height: unset;
}

/* Scroll Down Hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.5s ease;
    user-select: none;
    pointer-events: auto;
}

body:not(.hero-intro) .hero-scroll-hint {
    opacity: 0;
    pointer-events: none;
}

.hero-scroll-hint .scroll-chevron {
    width: 22px;
    height: 22px;
    border-right: 2px solid rgba(255, 255, 255, 0.85);
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
    transform: rotate(45deg);
    animation: chevronBounce 1.3s ease-in-out infinite;
}

@keyframes chevronBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50%       { transform: rotate(45deg) translateY(7px); }
}

/* Mobilde hero-intro devre dışı */
@media (max-width: 768px) {
    body.hero-intro .header-top {
        display: block;
    }
    body.hero-intro .header {
        position: sticky;
        background: var(--white);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: var(--shadow);
    }
    body.hero-intro .header .navbar {
        padding: 15px 0;
    }
    body.hero-intro .header .logo img {
        height: 48px;
    }
    body.hero-intro .hero-slider {
        height: 70vh;
        max-height: unset;
    }
    .hero-scroll-hint {
        display: none;
    }
}
