/* ==========================================================================
   NUVEXSAHA - Profesyonel Halı Saha
   Modern Dark Theme - Siyah + Neon Yeşil
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
    /* Primary Colors - Neon Yeşil */
    --primary-color: #00FF7F;
    --primary-hover: #00E070;
    --primary-light: rgba(0, 255, 127, 0.12);
    --primary-dark: #00CC66;
    --primary-glow: rgba(0, 255, 127, 0.35);

    /* Secondary Colors */
    --accent-color: #22D3EE;
    --accent-light: rgba(34, 211, 238, 0.15);

    /* Background Colors - Dark Theme */
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --bg-card: #111111;
    --bg-card-hover: #1A1A1A;
    --bg-section: #0D0D0D;

    /* Text Colors */
    --text-white: #FFFFFF;
    --text-light: #E0E0E0;
    --text-muted: #808080;
    --text-dark: #1A1A1A;

    /* Border & Accent */
    --border-color: #222222;
    --border-light: #2A2A2A;

    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-neon: 0 0 30px var(--primary-glow);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);

    /* Typography */
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BOOTSTRAP OVERRIDES - Dark Theme Global
   ========================================================================== */
/* Force dark theme on Bootstrap elements */
.bg-white,
.bg-light,
.card,
.modal-content,
.dropdown-menu,
.list-group-item,
.table,
.offcanvas,
.accordion-item,
.accordion-body,
.accordion-button,
.breadcrumb,
.pagination .page-link,
.nav-tabs .nav-link,
.nav-pills .nav-link,
.popover,
.tooltip-inner {
    background-color: var(--bg-card) !important;
    color: var(--text-light) !important;
    border-color: var(--border-color) !important;
}

.text-dark,
.text-body,
.text-black {
    color: var(--text-light) !important;
}

.border,
.border-top,
.border-bottom,
.border-start,
.border-end {
    border-color: var(--border-color) !important;
}

/* Bootstrap component backgrounds */
.navbar,
.nav,
.card-header,
.card-footer,
.modal-header,
.modal-footer,
.list-group,
.input-group-text {
    background-color: var(--bg-card) !important;
    border-color: var(--border-color) !important;
}

/* Bootstrap buttons - ensure dark text on primary */
.btn-primary,
.btn-success {
    color: var(--bg-dark) !important;
}

/* Bootstrap form elements */
.form-control,
.form-select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="search"],
textarea,
select {
    background-color: var(--bg-card) !important;
    color: var(--text-white) !important;
    border-color: var(--border-color) !important;
}

.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
    background-color: var(--bg-card-hover) !important;
    color: var(--text-white) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px var(--primary-light) !important;
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
    color: var(--text-muted) !important;
}

/* Bootstrap tables */
.table> :not(caption)>*>* {
    background-color: transparent !important;
    color: var(--text-light) !important;
    border-color: var(--border-color) !important;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    background-color: rgba(255, 255, 255, 0.02) !important;
}

.table-hover>tbody>tr:hover>* {
    background-color: rgba(0, 255, 127, 0.05) !important;
}

/* Modal and offcanvas */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

/* Remove any white backgrounds from common elements */
div,
section,
article,
aside,
header,
footer,
main,
nav {
    background-color: transparent;
}

/* Ensure container doesn't have white bg */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    background-color: transparent !important;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.35rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-white {
    color: var(--text-white) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.navbar-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: all var(--transition-normal);
}

.navbar-main.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 255, 127, 0.1);
    padding: 12px 0;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white) !important;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.navbar-brand i {
    color: var(--primary-color);
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.navbar-brand span {
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-glow);
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px !important;
    position: relative;
    transition: all var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    text-shadow: 0 0 15px var(--primary-glow);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: none;
    padding: 10px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300FF7F' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    font-family: var(--font-family);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid transparent;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

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

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #1ebe5b;
    border-color: #1ebe5b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.6) 0%,
            rgba(10, 10, 10, 0.85) 50%,
            rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 255, 127, 0.3);
    text-shadow: 0 0 10px var(--primary-glow);
}

.hero-badge i {
    font-size: 0.9rem;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: var(--primary-color);
    text-shadow: 0 0 40px var(--primary-glow), 0 0 80px var(--primary-glow);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 0 20px var(--primary-glow);
}

.hero-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.4;
    box-shadow: 0 0 10px var(--primary-glow);
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    width: 8px;
    height: 8px;
}

.particle:nth-child(2) {
    left: 80%;
    top: 30%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    left: 30%;
    top: 70%;
    animation-delay: 6s;
    width: 10px;
    height: 10px;
}

.particle:nth-child(4) {
    left: 70%;
    top: 80%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    left: 50%;
    top: 50%;
    animation-delay: 12s;
    width: 5px;
    height: 5px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.4;
    }

    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-40px) translateX(-10px);
        opacity: 0.5;
    }

    75% {
        transform: translateY(-20px) translateX(5px);
        opacity: 0.6;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 15px var(--primary-glow);
}

.wheel {
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
    box-shadow: 0 0 5px var(--primary-glow);
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

/* ==========================================================================
   MARQUEE BAND
   ========================================================================== */
.marquee-band {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.marquee-content span i {
    font-size: 1.1rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   SECTION STYLES
   ========================================================================== */
.section {
    padding: var(--section-padding);
}

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

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

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--primary-glow);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.8;
}

/* ==========================================================================
   FIELD CARDS (Sahalarımız)
   ========================================================================== */
.field-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 100%;
    border: 1px solid var(--border-color);
}

.field-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 255, 127, 0.15);
    border-color: var(--primary-color);
}

.field-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.field-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.field-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
}

.field-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 15px var(--primary-glow);
}

.field-card-body {
    padding: 28px;
}

.field-card-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.field-card-title i {
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.field-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.field-card-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.field-card-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    background: var(--bg-card-hover);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.field-card-info-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.field-card-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--primary-glow);
}

.field-card-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.field-card-buttons {
    display: flex;
    gap: 12px;
}

.field-card-buttons .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.9rem;
}

/* ==========================================================================
   LIVE STREAM SECTION
   ========================================================================== */
.live-stream-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.live-stream-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--bg-card-hover);
    border-bottom: 1px solid var(--border-color);
}

.live-stream-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
}

.live-stream-title i {
    color: var(--primary-color);
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff3b3b;
    color: #fff;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(255, 59, 59, 0.4);
}

.live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.live-stream-player {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}

.live-stream-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.feature-card {
    text-align: center;
    padding: 45px 30px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    height: 100%;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 255, 127, 0.12);
}

.feature-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    background: var(--primary-light);
    border-radius: 50%;
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all var(--transition-normal);
    border: 2px solid rgba(0, 255, 127, 0.2);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-neon);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 127, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--text-white);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 35px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 255, 127, 0.1);
    border-color: var(--primary-color);
}

.testimonial-stars {
    margin-bottom: 20px;
    color: #FFD700;
    font-size: 1.1rem;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 15px var(--primary-glow);
}

.testimonial-info h5 {
    font-size: 1.05rem;
    margin-bottom: 3px;
    font-weight: 600;
}

.testimonial-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg,
            rgba(0, 255, 127, 0.08) 0%,
            var(--bg-dark) 50%,
            rgba(0, 255, 127, 0.05) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 127, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.cta-title {
    margin-bottom: 20px;
}

.cta-text {
    color: var(--text-light);
    margin-bottom: 35px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

/* ==========================================================================
   CONTACT INFO
   ========================================================================== */
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    font-size: 1.6rem;
    color: var(--primary-color);
    flex-shrink: 0;
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.contact-info-content h5 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-info-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.contact-info-content a {
    color: var(--text-light);
}

.contact-info-content a:hover {
    color: var(--primary-color);
}

/* Map Container */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.3);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--bg-darker);
    padding: 80px 0 30px;
    color: var(--text-white);
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand i {
    color: var(--primary-color);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.footer-text {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-light);
    transition: all var(--transition-fast);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-white);
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-glow);
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--text-muted);
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--primary-color);
    margin-top: 4px;
    font-size: 1rem;
}

.footer-contact-item a {
    color: var(--text-muted);
}

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

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* ==========================================================================
   BLINK ANIMATION
   ========================================================================== */
.blink {
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ==========================================================================
   FADE IN ANIMATION
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   PAGE HEADER (Alt Sayfalar için)
   ========================================================================== */
.page-header {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 127, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.page-header-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.page-header-breadcrumb span {
    color: var(--text-muted);
}

/* ==========================================================================
   BLOG CARDS
   ========================================================================== */
.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 127, 0.12);
    border-color: var(--primary-color);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.blog-card-body {
    padding: 28px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    color: var(--primary-color);
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-white);
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card-link {
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-card-link:hover {
    gap: 12px;
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-control {
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--bg-card);
    color: var(--text-white);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--primary-light);
    outline: none;
    background: var(--bg-card-hover);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-white);
}

/* ==========================================================================
   ALERTS
   ========================================================================== */
.alert {
    padding: 18px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    border: none;
}

.alert-success {
    background: rgba(0, 255, 127, 0.15);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    border-left: 4px solid #EF4444;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    border-left: 4px solid #F59E0B;
}

.alert-info {
    background: var(--primary-light);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 991px) {
    .hero-stats {
        gap: 30px;
    }

    .navbar-collapse {
        background: var(--bg-card);
        padding: 20px;
        border-radius: var(--radius-lg);
        margin-top: 15px;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .section {
        padding: 60px 0;
    }

    .page-header {
        padding: 140px 0 60px;
    }
}

@media (max-width: 575px) {
    .navbar-brand {
        font-size: 1.3rem;
    }

    .field-card-buttons {
        flex-direction: column;
    }

    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.bg-card {
    background: var(--bg-card);
}

.rounded-4 {
    border-radius: var(--radius-lg);
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* ==========================================================================
   SAHALAR HERO SECTION
   ========================================================================== */
.sahalar-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
    padding-top: 100px;
}

.sahalar-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sahalar-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.5) saturate(1.2);
}

.sahalar-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.9) 0%,
            rgba(10, 10, 10, 0.7) 50%,
            rgba(0, 255, 127, 0.1) 100%);
    z-index: 1;
}

/* Animated Grid Pattern */
.sahalar-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 127, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 127, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Floating Particles */
.sahalar-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.particle-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow);
    animation: floatParticle 15s infinite ease-in-out;
}

.particle-dot:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    width: 6px;
    height: 6px;
}

.particle-dot:nth-child(2) {
    left: 85%;
    top: 15%;
    animation-delay: 2s;
    width: 10px;
    height: 10px;
}

.particle-dot:nth-child(3) {
    left: 25%;
    top: 70%;
    animation-delay: 4s;
}

.particle-dot:nth-child(4) {
    left: 75%;
    top: 65%;
    animation-delay: 6s;
    width: 5px;
    height: 5px;
}

.particle-dot:nth-child(5) {
    left: 50%;
    top: 40%;
    animation-delay: 8s;
    width: 12px;
    height: 12px;
}

.particle-dot:nth-child(6) {
    left: 90%;
    top: 80%;
    animation-delay: 10s;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 1;
    }

    50% {
        transform: translate(-10px, -50px) scale(0.8);
        opacity: 0.4;
    }

    75% {
        transform: translate(15px, -20px) scale(1.1);
        opacity: 0.8;
    }
}

/* Hero Content */
.sahalar-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
}

.sahalar-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 127, 0.1);
    border: 1px solid rgba(0, 255, 127, 0.3);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 0 0 20px var(--primary-glow);
    animation: badgeGlow 3s ease-in-out infinite;
}

.sahalar-hero-badge i {
    animation: spinSlow 8s linear infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 127, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 255, 127, 0.4);
    }
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.sahalar-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.sahalar-hero-title span {
    color: var(--primary-color);
    text-shadow: 0 0 40px var(--primary-glow), 0 0 80px var(--primary-glow);
    position: relative;
}

.sahalar-hero-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--primary-glow);
}

.sahalar-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Hero Stats */
.sahalar-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.sahalar-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.sahalar-stat:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 127, 0.15);
}

.sahalar-stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.3rem;
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.sahalar-stat:hover .sahalar-stat-icon {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-glow);
}

.sahalar-stat-info {
    display: flex;
    flex-direction: column;
}

.sahalar-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 0 15px var(--primary-glow);
}

.sahalar-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero Breadcrumb */
.sahalar-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
}

.sahalar-hero-breadcrumb a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast);
}

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

.sahalar-hero-breadcrumb i.fa-chevron-right {
    font-size: 0.7rem;
    color: var(--primary-color);
}

.sahalar-hero-breadcrumb span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Scroll Indicator */
.sahalar-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: bounceDown 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 15px var(--primary-glow);
}

.scroll-wheel {
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
    box-shadow: 0 0 10px var(--primary-glow);
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .sahalar-hero {
        min-height: 60vh;
    }

    .sahalar-hero-stats {
        gap: 20px;
    }

    .sahalar-stat {
        padding: 14px 20px;
    }
}

@media (max-width: 767px) {
    .sahalar-hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .sahalar-hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .sahalar-stat {
        justify-content: center;
    }

    .sahalar-scroll-indicator {
        display: none;
    }
}

/* ==========================================================================
   CANLI YAYIN HERO SECTION
   ========================================================================== */
.canli-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
    padding-top: 100px;
}

.canli-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.canli-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: brightness(0.4) saturate(1.3);
}

.canli-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.92) 0%,
            rgba(10, 10, 10, 0.75) 50%,
            rgba(255, 59, 59, 0.1) 100%);
    z-index: 1;
}

/* Animated Grid Pattern */
.canli-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 59, 59, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 59, 59, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    animation: canliGridPulse 6s ease-in-out infinite;
}

@keyframes canliGridPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

/* Floating Particles - Red theme */
.canli-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.canli-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff3b3b;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.6), 0 0 40px rgba(255, 59, 59, 0.4);
    animation: canliFloatParticle 12s infinite ease-in-out;
}

.canli-particle:nth-child(1) {
    left: 8%;
    top: 25%;
    animation-delay: 0s;
    width: 6px;
    height: 6px;
}

.canli-particle:nth-child(2) {
    left: 88%;
    top: 18%;
    animation-delay: 2s;
    width: 10px;
    height: 10px;
}

.canli-particle:nth-child(3) {
    left: 20%;
    top: 75%;
    animation-delay: 4s;
}

.canli-particle:nth-child(4) {
    left: 78%;
    top: 68%;
    animation-delay: 6s;
    width: 5px;
    height: 5px;
}

.canli-particle:nth-child(5) {
    left: 45%;
    top: 35%;
    animation-delay: 8s;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow);
}

.canli-particle:nth-child(6) {
    left: 92%;
    top: 82%;
    animation-delay: 10s;
}

@keyframes canliFloatParticle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    25% {
        transform: translate(15px, -25px) scale(1.3);
        opacity: 1;
    }

    50% {
        transform: translate(-8px, -45px) scale(0.7);
        opacity: 0.3;
    }

    75% {
        transform: translate(12px, -15px) scale(1.1);
        opacity: 0.7;
    }
}

/* Hero Content */
.canli-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
}

/* Live Badge - Special red pulsing */
.canli-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 59, 59, 0.15);
    border: 1px solid rgba(255, 59, 59, 0.4);
    color: #ff3b3b;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 2px;
    position: relative;
    animation: liveBadgePulse 2s ease-in-out infinite;
}

.canli-live-badge i {
    font-size: 0.6rem;
    animation: liveIconBlink 1s infinite;
}

.live-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 59, 59, 0.3);
    animation: livePulseExpand 2s infinite;
}

@keyframes liveBadgePulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 59, 59, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 59, 59, 0.6);
    }
}

@keyframes liveIconBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes livePulseExpand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.canli-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.canli-hero-title span {
    color: var(--primary-color);
    text-shadow: 0 0 40px var(--primary-glow), 0 0 80px var(--primary-glow);
    position: relative;
}

.canli-hero-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--primary-glow);
}

.canli-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Hero Stats */
.canli-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.canli-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.canli-stat:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 127, 0.15);
}

.canli-stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.3rem;
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.canli-stat:first-child .canli-stat-icon {
    background: rgba(255, 59, 59, 0.15);
    color: #ff3b3b;
    border-color: rgba(255, 59, 59, 0.3);
}

.canli-stat:hover .canli-stat-icon {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-glow);
}

.canli-stat:first-child:hover .canli-stat-icon {
    background: #ff3b3b;
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.5);
}

.canli-stat-info {
    display: flex;
    flex-direction: column;
}

.canli-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 0 15px var(--primary-glow);
}

.canli-stat:first-child .canli-stat-number {
    color: #ff3b3b;
    text-shadow: 0 0 15px rgba(255, 59, 59, 0.5);
}

.canli-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero Breadcrumb */
.canli-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
}

.canli-hero-breadcrumb a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast);
}

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

.canli-hero-breadcrumb i.fa-chevron-right {
    font-size: 0.7rem;
    color: var(--primary-color);
}

.canli-hero-breadcrumb span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Scroll Indicator */
.canli-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: bounceDown 2s infinite;
}

/* Responsive */
@media (max-width: 991px) {
    .canli-hero {
        min-height: 60vh;
    }

    .canli-hero-stats {
        gap: 20px;
    }

    .canli-stat {
        padding: 14px 20px;
    }
}

@media (max-width: 767px) {
    .canli-hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .canli-hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .canli-stat {
        justify-content: center;
    }

    .canli-scroll-indicator {
        display: none;
    }
}

/* ==========================================================================
   BLOG HERO SECTION
   ========================================================================== */
.blog-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
    padding-top: 100px;
}

.blog-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.blog-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: brightness(0.4) saturate(1.2) hue-rotate(10deg);
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.92) 0%,
            rgba(10, 10, 10, 0.75) 50%,
            rgba(0, 255, 127, 0.08) 100%);
    z-index: 1;
}

/* Animated Grid Pattern */
.blog-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 127, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 127, 0.02) 1px, transparent 1px);
    background-size: 55px 55px;
    z-index: 2;
    animation: blogGridPulse 7s ease-in-out infinite;
}

@keyframes blogGridPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

/* Floating Particles */
.blog-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.blog-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow);
    animation: blogFloatParticle 14s infinite ease-in-out;
}

.blog-particle:nth-child(1) {
    left: 12%;
    top: 22%;
    animation-delay: 0s;
    width: 6px;
    height: 6px;
}

.blog-particle:nth-child(2) {
    left: 82%;
    top: 20%;
    animation-delay: 2.5s;
    width: 10px;
    height: 10px;
}

.blog-particle:nth-child(3) {
    left: 22%;
    top: 72%;
    animation-delay: 5s;
}

.blog-particle:nth-child(4) {
    left: 72%;
    top: 62%;
    animation-delay: 7.5s;
    width: 5px;
    height: 5px;
}

.blog-particle:nth-child(5) {
    left: 48%;
    top: 38%;
    animation-delay: 10s;
    width: 12px;
    height: 12px;
}

.blog-particle:nth-child(6) {
    left: 88%;
    top: 78%;
    animation-delay: 12s;
}

@keyframes blogFloatParticle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    25% {
        transform: translate(18px, -28px) scale(1.2);
        opacity: 1;
    }

    50% {
        transform: translate(-12px, -48px) scale(0.8);
        opacity: 0.3;
    }

    75% {
        transform: translate(10px, -18px) scale(1.1);
        opacity: 0.7;
    }
}

/* Hero Content */
.blog-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 127, 0.1);
    border: 1px solid rgba(0, 255, 127, 0.3);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 0 0 20px var(--primary-glow);
    animation: blogBadgeGlow 3s ease-in-out infinite;
}

.blog-hero-badge i {
    animation: blogIconBounce 2s ease-in-out infinite;
}

@keyframes blogBadgeGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 127, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 255, 127, 0.4);
    }
}

@keyframes blogIconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.blog-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.blog-hero-title span {
    color: var(--primary-color);
    text-shadow: 0 0 40px var(--primary-glow), 0 0 80px var(--primary-glow);
    position: relative;
}

.blog-hero-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--primary-glow);
}

.blog-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Hero Stats */
.blog-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.blog-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.blog-stat:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 127, 0.15);
}

.blog-stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.3rem;
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.blog-stat:hover .blog-stat-icon {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-glow);
}

.blog-stat-info {
    display: flex;
    flex-direction: column;
}

.blog-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 0 15px var(--primary-glow);
}

.blog-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero Breadcrumb */
.blog-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
}

.blog-hero-breadcrumb a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast);
}

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

.blog-hero-breadcrumb i.fa-chevron-right {
    font-size: 0.7rem;
    color: var(--primary-color);
}

.blog-hero-breadcrumb span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Scroll Indicator */
.blog-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: bounceDown 2s infinite;
}

/* Blog Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    display: block;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    color: var(--text-light);
    background: var(--bg-card-hover);
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.category-list a:hover,
.category-list a.active {
    background: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Blog Card Enhancements */
.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
}

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    margin-top: 15px;
}

.blog-views {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-hero {
        min-height: 60vh;
    }

    .blog-hero-stats {
        gap: 20px;
    }

    .blog-stat {
        padding: 14px 20px;
    }

    .blog-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .blog-hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .blog-hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .blog-stat {
        justify-content: center;
    }

    .blog-scroll-indicator {
        display: none;
    }
}

/* ==========================================================================
   GALERI HERO SECTION
   ========================================================================== */
.galeri-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
    padding-top: 100px;
}

.galeri-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.galeri-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: brightness(0.4) saturate(1.1);
}

.galeri-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.92) 0%,
            rgba(10, 10, 10, 0.75) 50%,
            rgba(0, 255, 127, 0.08) 100%);
    z-index: 1;
}

/* Animated Grid Pattern */
.galeri-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 127, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 127, 0.02) 1px, transparent 1px);
    background-size: 45px 45px;
    z-index: 2;
    animation: galeriGridPulse 6s ease-in-out infinite;
}

@keyframes galeriGridPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.9;
    }
}

/* Floating Particles */
.galeri-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.galeri-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow);
    animation: galeriFloatParticle 13s infinite ease-in-out;
}

.galeri-particle:nth-child(1) {
    left: 15%;
    top: 20%;
    animation-delay: 0s;
    width: 6px;
    height: 6px;
}

.galeri-particle:nth-child(2) {
    left: 80%;
    top: 22%;
    animation-delay: 2s;
    width: 10px;
    height: 10px;
}

.galeri-particle:nth-child(3) {
    left: 25%;
    top: 68%;
    animation-delay: 4s;
}

.galeri-particle:nth-child(4) {
    left: 70%;
    top: 65%;
    animation-delay: 6s;
    width: 5px;
    height: 5px;
}

.galeri-particle:nth-child(5) {
    left: 52%;
    top: 35%;
    animation-delay: 8s;
    width: 12px;
    height: 12px;
}

.galeri-particle:nth-child(6) {
    left: 85%;
    top: 80%;
    animation-delay: 10s;
}

@keyframes galeriFloatParticle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    25% {
        transform: translate(15px, -25px) scale(1.3);
        opacity: 1;
    }

    50% {
        transform: translate(-10px, -40px) scale(0.7);
        opacity: 0.3;
    }

    75% {
        transform: translate(12px, -15px) scale(1.1);
        opacity: 0.8;
    }
}

/* Hero Content */
.galeri-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
}

.galeri-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 127, 0.1);
    border: 1px solid rgba(0, 255, 127, 0.3);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 0 0 20px var(--primary-glow);
    animation: galeriBadgeGlow 3s ease-in-out infinite;
}

.galeri-hero-badge i {
    animation: cameraFlash 4s ease-in-out infinite;
}

@keyframes galeriBadgeGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 127, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 255, 127, 0.4);
    }
}

@keyframes cameraFlash {

    0%,
    90%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    95% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

.galeri-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.galeri-hero-title span {
    color: var(--primary-color);
    text-shadow: 0 0 40px var(--primary-glow), 0 0 80px var(--primary-glow);
    position: relative;
}

.galeri-hero-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--primary-glow);
}

.galeri-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Hero Stats */
.galeri-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.galeri-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.galeri-stat:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 127, 0.15);
}

.galeri-stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.3rem;
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.galeri-stat:hover .galeri-stat-icon {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-glow);
}

.galeri-stat-info {
    display: flex;
    flex-direction: column;
}

.galeri-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 0 15px var(--primary-glow);
}

.galeri-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero Breadcrumb */
.galeri-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
}

.galeri-hero-breadcrumb a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast);
}

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

.galeri-hero-breadcrumb i.fa-chevron-right {
    font-size: 0.7rem;
    color: var(--primary-color);
}

.galeri-hero-breadcrumb span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Scroll Indicator */
.galeri-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: bounceDown 2s infinite;
}

/* Responsive */
@media (max-width: 991px) {
    .galeri-hero {
        min-height: 60vh;
    }

    .galeri-hero-stats {
        gap: 20px;
    }

    .galeri-stat {
        padding: 14px 20px;
    }
}

@media (max-width: 767px) {
    .galeri-hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .galeri-hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .galeri-stat {
        justify-content: center;
    }

    .galeri-scroll-indicator {
        display: none;
    }
}

/* ==========================================================================
   ILETISIM HERO SECTION
   ========================================================================== */
.iletisim-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
    padding-top: 100px;
}

.iletisim-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.iletisim-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: brightness(0.4) saturate(1.1);
}

.iletisim-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.92) 0%,
            rgba(10, 10, 10, 0.75) 50%,
            rgba(0, 255, 127, 0.08) 100%);
    z-index: 1;
}

/* Animated Grid Pattern */
.iletisim-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 127, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 127, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    animation: iletisimGridPulse 7s ease-in-out infinite;
}

@keyframes iletisimGridPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

/* Floating Particles */
.iletisim-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.iletisim-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow);
    animation: iletisimFloatParticle 14s infinite ease-in-out;
}

.iletisim-particle:nth-child(1) {
    left: 12%;
    top: 25%;
    animation-delay: 0s;
    width: 6px;
    height: 6px;
}

.iletisim-particle:nth-child(2) {
    left: 85%;
    top: 18%;
    animation-delay: 2s;
    width: 10px;
    height: 10px;
}

.iletisim-particle:nth-child(3) {
    left: 22%;
    top: 70%;
    animation-delay: 4s;
}

.iletisim-particle:nth-child(4) {
    left: 75%;
    top: 62%;
    animation-delay: 6s;
    width: 5px;
    height: 5px;
}

.iletisim-particle:nth-child(5) {
    left: 48%;
    top: 40%;
    animation-delay: 8s;
    width: 12px;
    height: 12px;
}

.iletisim-particle:nth-child(6) {
    left: 90%;
    top: 78%;
    animation-delay: 10s;
}

@keyframes iletisimFloatParticle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    25% {
        transform: translate(18px, -28px) scale(1.2);
        opacity: 1;
    }

    50% {
        transform: translate(-10px, -45px) scale(0.8);
        opacity: 0.3;
    }

    75% {
        transform: translate(12px, -18px) scale(1.1);
        opacity: 0.7;
    }
}

/* Hero Content */
.iletisim-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
}

.iletisim-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 127, 0.1);
    border: 1px solid rgba(0, 255, 127, 0.3);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 0 0 20px var(--primary-glow);
    animation: iletisimBadgeGlow 3s ease-in-out infinite;
}

.iletisim-hero-badge i {
    animation: headsetPulse 2s ease-in-out infinite;
}

@keyframes iletisimBadgeGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 127, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 255, 127, 0.4);
    }
}

@keyframes headsetPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.iletisim-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.iletisim-hero-title span {
    color: var(--primary-color);
    text-shadow: 0 0 40px var(--primary-glow), 0 0 80px var(--primary-glow);
    position: relative;
}

.iletisim-hero-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--primary-glow);
}

.iletisim-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Hero Stats */
.iletisim-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.iletisim-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.iletisim-stat:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 127, 0.15);
}

.iletisim-stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.3rem;
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.iletisim-stat-icon.iletisim-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

.iletisim-stat:hover .iletisim-stat-icon {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-glow);
}

.iletisim-stat:hover .iletisim-stat-icon.iletisim-whatsapp {
    background: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.iletisim-stat-info {
    display: flex;
    flex-direction: column;
}

.iletisim-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 0 15px var(--primary-glow);
}

.iletisim-stat:nth-child(2) .iletisim-stat-number {
    color: #25D366;
    text-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.iletisim-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero Breadcrumb */
.iletisim-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
}

.iletisim-hero-breadcrumb a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast);
}

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

.iletisim-hero-breadcrumb i.fa-chevron-right {
    font-size: 0.7rem;
    color: var(--primary-color);
}

.iletisim-hero-breadcrumb span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Scroll Indicator */
.iletisim-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: bounceDown 2s infinite;
}

/* Responsive */
@media (max-width: 991px) {
    .iletisim-hero {
        min-height: 60vh;
    }

    .iletisim-hero-stats {
        gap: 20px;
    }

    .iletisim-stat {
        padding: 14px 20px;
    }
}

@media (max-width: 767px) {
    .iletisim-hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .iletisim-hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .iletisim-stat {
        justify-content: center;
    }

    .iletisim-scroll-indicator {
        display: none;
    }
}