/* ============================================
   FURKAN BİLİŞİM - PREMIUM STYLES
   Palette: Kırmızı + Antrasit + Altın Vurgular
   ============================================ */

/* ---------- ROOT VARIABLES ---------- */
:root {
    /* Primary - Red */
    --primary-color: #dc3545;
    --primary-dark: #c82333;
    --primary-deep: #a71d2a;

    /* Anthracite */
    --anthracite: #1a1d23;
    --anthracite-deep: #0f1114;
    --anthracite-light: #2a2d35;
    --anthracite-soft: #3a3f47;

    /* Gold Accents */
    --gold-color: #d4af37;
    --gold-light: #f4d97b;
    --gold-dark: #a8861e;

    /* Base */
    --text-dark: #1a1d23;
    --text-light: #fff;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;

    /* Typography */
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Oswald', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 45px rgba(0, 0, 0, 0.12);
    --shadow-red: 0 10px 30px rgba(220, 53, 69, 0.25);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);
}

/* ---------- BASE ---------- */
body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    margin: 0;
    overflow-x: hidden;
    background-color: var(--bg-light);
    line-height: 1.6;
}

a { text-decoration: none; }

.font-oswald { font-family: var(--font-heading); }
.text-primary-red { color: var(--primary-color) !important; }
.bg-primary-red { background-color: var(--primary-color) !important; }
.text-gold { color: var(--gold-color) !important; }
.bg-anthracite { background-color: var(--anthracite) !important; }

/* Split Text (GSAP manual) */
.split-char {
    display: inline-block;
    will-change: transform, opacity;
}

/* ---------- PAGE HEADER & GALLERY ---------- */
.page-header {
   
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-top: 80px;
}

.gallery-item-wrapper {
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
}

.gallery-item-wrapper img {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item-wrapper:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    transition: all 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: all 0.3s;
    opacity: 0.85;
}

.video-overlay i {
    font-size: 4rem;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.gallery-item-wrapper:hover .video-overlay {
    transform: scale(1.15);
    opacity: 1;
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background: linear-gradient(90deg,
            var(--primary-dark) 0%,
            var(--primary-color) 50%,
            var(--primary-dark) 100%);
    color: white;
    font-size: 0.88rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    animation: topbar-shine 8s infinite;
}

@keyframes topbar-shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.top-bar a {
    color: white;
    margin-right: 18px;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--gold-light);
}

.top-bar i { margin-right: 6px; }

#main-header.header-scrolled .top-bar {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

/* ---------- MAIN HEADER ---------- */
#main-header {
    transition: all 0.4s ease;
    background-color: transparent;
    padding-bottom: 10px;
}

#main-header.header-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid var(--gold-color);
    padding-bottom: 0;
}

/* ---------- NAVIGATION ---------- */
.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.88rem;
    margin: 0 10px;
    padding: 0.5rem 0 !important;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    transition: all 0.3s ease-out;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.logoust img {
    max-width: 200px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
}

/* STATE 1: Transparent Header */
#main-header .navbar-brand .brand-title,
#main-header .navbar-brand .brand-subtitle,
#main-header .nav-link {
    color: white !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* STATE 2: Scrolled / Forced Header */
#main-header.header-scrolled .navbar-brand .brand-title,
#main-header.header-scrolled .navbar-brand .brand-subtitle,
#main-header.header-scrolled .nav-link,
#main-header.header-scrolled-force .navbar-brand .brand-title,
#main-header.header-scrolled-force .navbar-brand .brand-subtitle,
#main-header.header-scrolled-force .nav-link {
    color: var(--anthracite) !important;
    text-shadow: none;
}

#main-header.header-scrolled .nav-link:hover,
#main-header.header-scrolled .nav-link.active,
#main-header.header-scrolled-force .nav-link:hover,
#main-header.header-scrolled-force .nav-link.active {
    color: var(--primary-color) !important;
}

#main-header .navbar-toggler-icon { filter: invert(1); }

#main-header.header-scrolled .navbar-toggler-icon,
#main-header.header-scrolled-force .navbar-toggler-icon {
    filter: none;
}

.navbar {
    padding: 15px 0;
    transition: padding 0.3s;
}

#main-header.header-scrolled .navbar,
#main-header.header-scrolled-force .navbar {
    padding: 10px 0;
}

/* Dropdown */
.dropdown-menu {
    border-top: 3px solid var(--primary-color) !important;
    animation: slideDown 0.35s ease forwards;
    display: none;
    margin-top: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.nav-item.dropdown:hover .dropdown-menu { display: block; }

@keyframes slideDown {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    padding: 12px 22px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gold-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding-left: 28px;
}

.dropdown-item:hover::before { transform: scaleY(1); }

/* ---------- BUTTONS - SHINE EFFECT ---------- */
.btn-primary-red {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.35);
}

.btn-primary-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.35) 50%,
            transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.8s ease;
    z-index: 1;
}

.btn-primary-red:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-deep) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.5);
}

.btn-primary-red:hover::before { left: 125%; }

/* Gold button variant */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-dark) 100%);
    color: var(--anthracite-deep);
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    transition: left 0.8s ease;
}

.btn-gold:hover {
    color: var(--anthracite-deep);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.btn-gold:hover::before { left: 125%; }

/* ---------- HERO SLIDER ---------- */
.hero-slide {
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide .hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(15, 17, 20, 0.85) 0%,
            rgba(26, 29, 35, 0.55) 50%,
            rgba(220, 53, 69, 0.35) 100%);
}

.hero-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom,
            transparent,
            var(--bg-light));
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.caption-title {
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.caption-text {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-content .badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.4);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

/* Carousel Indicators - Premium */
.carousel-indicators {
    bottom: 140px;
    z-index: 3;
}

.carousel-indicators [data-bs-target] {
    width: 40px;
    height: 4px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
    width: 60px;
}

/* Custom Slider Controls */
.custom-control {
    width: 5%;
    min-width: 60px;
    opacity: 0.6;
    transition: all 0.3s ease;
    z-index: 3;
}

.custom-control:hover {
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.15), transparent);
    opacity: 1;
}

.carousel-control-next:hover {
    background: linear-gradient(270deg, rgba(220, 53, 69, 0.15), transparent);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.6));
}

/* ---------- SECTIONS - GENERAL ---------- */
.section-padding {
    padding: 60px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--anthracite);
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title p {
    max-width: 600px;
    margin: 20px auto 0;
    color: var(--text-muted);
}

.red-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--gold-color) 100%);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.red-line::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold-color);
    border-radius: 50%;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    box-shadow: 0 0 12px var(--gold-color);
    animation: gold-pulse 2s ease-in-out infinite;
}

@keyframes gold-pulse {
    0%, 100% { box-shadow: 0 0 8px var(--gold-color); }
    50% { box-shadow: 0 0 18px var(--gold-color), 0 0 30px rgba(212, 175, 55, 0.4); }
}

/* ---------- PROCESS SECTION ---------- */
#process {
    background:
        radial-gradient(circle at 20% 30%, rgba(220, 53, 69, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
        #ffffff;
    position: relative;
}

.process-step {
    padding: 30px 20px;
    transition: all 0.4s ease;
    position: relative;
}

.process-step .step-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.35);
    position: relative;
    width: 80px !important;
    height: 80px !important;
    font-size: 1.8rem !important;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-step .step-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid var(--gold-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.process-step .step-icon::after {
    content: '';
    position: absolute;
    inset: 5px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.25) 0%,
            transparent 50%);
    border-radius: 50%;
    pointer-events: none;
}

.process-step:hover .step-icon {
    transform: rotateY(360deg);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.5);
}

.process-step:hover .step-icon::before {
    opacity: 1;
    inset: -12px;
}

.process-step h4 {
    color: var(--anthracite);
    margin-top: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.process-step:hover h4 { color: var(--primary-color); }

/* ---------- SERVICES - GLASS CARDS ---------- */
#hizmetlerimiz {
    background:
        radial-gradient(circle at 15% 20%, rgba(220, 53, 69, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 45%),
        linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            var(--primary-color),
            var(--gold-color),
            transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-20deg);
    transition: right 0.8s ease;
    pointer-events: none;
}

.service-item:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(220, 53, 69, 0.1);
    background: rgba(255, 255, 255, 0.85);
}

.service-item:hover::before { transform: scaleX(1); }
.service-item:hover::after { right: -30%; }

.service-item img {
    border-radius: 10px;
    transition: transform 0.5s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-item:hover img { transform: scale(1.03); }

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-item:hover .service-icon {
    color: var(--gold-color);
    transform: scale(1.1);
}

.service-title {
font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: #d73040;
    letter-spacing: 0.5px;
 
    transition: color 0.3s ease;
}

.service-item:hover .service-title { color: #000; }

/* ---------- ABOUT / STATS (DARK) ---------- */
#about {
    background:
        linear-gradient(135deg, var(--anthracite-deep) 0%, var(--anthracite) 50%, var(--anthracite-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.6;
}

#about::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

#about .hero-overlay {
    display: none;
}

#about h2 {
    letter-spacing: 1.5px;
}

#about ul li {
    font-size: 1.05rem;
    transition: transform 0.3s ease;
}

#about ul li:hover {
    transform: translateX(8px);
}

#about ul li i {
    color: var(--gold-color) !important;
    font-size: 1.2rem;
}

/* Gold Counter */
.counter {
    background: linear-gradient(135deg,
            var(--gold-color) 0%,
            var(--gold-light) 50%,
            var(--gold-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.3));
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

/* ---------- CTA SECTION ---------- */
.section-padding.bg-primary-red {
    background: linear-gradient(135deg,
            var(--primary-deep) 0%,
            var(--primary-color) 50%,
            var(--primary-dark) 100%) !important;
    position: relative;
    overflow: hidden;
}

.section-padding.bg-primary-red::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(15, 17, 20, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.section-padding.bg-primary-red .container {
    position: relative;
    z-index: 2;
}

.section-padding.bg-primary-red .btn-light {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid var(--gold-color);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.section-padding.bg-primary-red .btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(212, 175, 55, 0.4),
            transparent);
    transform: skewX(-20deg);
    transition: left 0.8s ease;
}

.section-padding.bg-primary-red .btn-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.section-padding.bg-primary-red .btn-light:hover::before { left: 125%; }

 

/* ---------- LOGO SLIDER ---------- */
.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.logo-track {
    display: flex;
    width: calc(200px * 12);
    animation: scroll 25s linear infinite;
}

.logo-item {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    opacity: 0.4;
    transition: all 0.4s ease;
    filter: grayscale(100%);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.15);
}

.logo-item:hover i {
    color: var(--primary-color) !important;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 6)); }
}

/* ---------- FOOTER ---------- */
.footer-section {
    background:
        linear-gradient(135deg, var(--anthracite-deep) 0%, var(--anthracite) 100%);
    color: #bbb;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            var(--gold-color) 50%,
            var(--primary-color) 100%);
}

.footer-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-title {
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
}

.footer-contact-list li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.footer-contact-list li:hover { transform: translateX(5px); }

.footer-contact-list i {
    color: var(--gold-color);
    margin-right: 12px;
    font-size: 1.2rem;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

.footer-contact-list li:hover i {
    transform: scale(1.2);
}

.footer-section a {
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold-color) !important;
}

.footer-section .d-flex.gap-3 a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.footer-section .d-flex.gap-3 a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
}

.bottom-bar {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* ---------- WHATSAPP FLOAT (PREMIUM) ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow:
        0 4px 20px rgba(37, 211, 102, 0.45),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    isolation: isolate;
    text-decoration: none;
}

.whatsapp-float::before,
.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    z-index: -1;
    animation: whatsapp-pulse 2.2s ease-out infinite;
}

.whatsapp-float::after { animation-delay: 1.1s; }

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.9); opacity: 0; }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(8deg);
    color: white;
    box-shadow:
        0 8px 30px rgba(37, 211, 102, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.whatsapp-float .float-tooltip {
    position: absolute;
    left: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--anthracite);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--gold-color);
    pointer-events: none;
}

.whatsapp-float .float-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid var(--anthracite);
}

.whatsapp-float:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    left: 80px;
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-dark) 100%);
    color: var(--anthracite-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow:
        0 6px 20px rgba(212, 175, 55, 0.45),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(25px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    cursor: pointer;
    border: none;
    overflow: hidden;
    isolation: isolate;
}

.scroll-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transform: skewX(-20deg);
    transition: left 0.8s ease;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 30px rgba(212, 175, 55, 0.65),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    color: var(--anthracite-deep);
}

.scroll-top:hover::before { left: 125%; }

.scroll-top:hover i {
    animation: bounce-up 0.6s ease;
}

@keyframes bounce-up {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* ---------- SERVICE DETAIL SIDEBAR ---------- */
.list-group-item {
    border: none;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.list-group-item:last-child { border-bottom: none; }

.list-group-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding-left: 1.5rem !important;
}

.list-group-item.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.list-group-item.active:hover {
    background-color: var(--primary-dark);
    padding-left: 1rem !important;
}

.img-fluid.shadow {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
    border-radius: 10px;
}

/* ---------- GALLERY ---------- */
.gallery-item {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(220, 53, 69, 0.85) 0%,
            rgba(168, 29, 42, 0.9) 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-item:hover img {
    transform: scale(1.12);
    transition: transform 0.6s ease;
}

/* ---------- REFERENCE PAGE ---------- */
.reference-box {
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
}

.reference-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
    border-color: var(--gold-color);
}

.grayscale-hover {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.reference-box:hover .grayscale-hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ---------- CONTACT PAGE ---------- */
.contact-card {
    transition: all 0.4s ease;
    border: 1px solid #eee;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12) !important;
    border-color: var(--gold-color);
}

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--anthracite);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.social-btn:hover {
    transform: translateY(-6px) scale(1.05);
    color: white;
}

.social-btn.facebook:hover { background-color: #3b5998; }
.social-btn.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}
.social-btn.youtube:hover { background-color: #ff0000; }
.social-btn.linkedin:hover { background-color: #0077b5; }

/* ---------- UTILITIES ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
}

.logoust {}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .section-title h2 { font-size: 2.2rem; }
    .hero-slide { height: 80vh; min-height: 500px; }
    .caption-title { font-size: 2.5rem !important; }

    #main-header.header-scrolled,
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .navbar-collapse .nav-link {
        color: var(--anthracite) !important;
        text-shadow: none !important;
    }

    .scroll-top,
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .scroll-top { bottom: 20px; right: 20px; }
    .whatsapp-float { bottom: 20px; left: 20px; font-size: 1.6rem; }
}

@media (max-width: 576px) {
    .section-padding { padding: 60px 0; }
    .section-title h2 { font-size: 1.8rem; letter-spacing: 1px; }
    .caption-title { font-size: 2rem !important; }
    .top-bar { font-size: 0.78rem; }
}

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.h-satir1{
	
	min-height: 45px
}
/* ====== .NET CMS - Ek Bileşen Stilleri ====== */
.page-header-parallax {
    position: relative;
    padding: 160px 0 90px;
    background: url('/Upload/Resimler/buyuk/slider1.jpg') center/cover fixed no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,17,20,.85), rgba(167,29,42,.55));
}
.page-header-parallax .red-line { margin-top: 1rem; }

.gallery-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,.5);
    pointer-events: none;
}

.detay-sidebar .list-group-item { border-color: #eee; }
.detay-sidebar .list-group-item:hover { background: var(--bg-light); }
.detay-icerik { font-size: 1.05rem; line-height: 1.9; color: #444; }
.detay-icerik img { max-width: 100%; height: auto; border-radius: .5rem; }
.detay-yardim .btn-light:hover { opacity: .9; }

.iletisim-kart { transition: transform .3s, box-shadow .3s; }
.iletisim-kart:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.referans-item { transition: transform .3s, box-shadow .3s; background: #fff; }
.referans-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.hakkimizda-icerik p { margin-bottom: 1rem; line-height: 1.9; }
