/* ================================================
   UÇAR PREMİUM TEKEL — Ana Stil Dosyası
   Dark Luxury Theme | Black & Gold
   ================================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --gold: #D4AF37;
    /* Metalik Altın */
    --gold-dark: #B8860B;
    /* Koyu Altın */
    --gold-light: #F6E27A;
    /* Parlak Altın */
    --black: #0A0A0A;
    /* Mat Siyah */
    --black-1: #111111;
    --black-2: #161616;
    --black-3: #1d1d1d;
    --black-4: #242424;
    --glass-bg: rgba(212, 175, 55, 0.02);
    --glass-border: rgba(212, 175, 55, 0.12);
    --glass-hover: rgba(212, 175, 55, 0.08);
    --text-primary: #ffffff;
    /* Beyaz okunabilirlik için */
    --text-muted: #888888;
    --text-light: #cccccc;
    --whatsapp: #D4AF37;
    /* Altın Whatsapp */
    --danger: #B8860B;
    --success: #D4AF37;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.15);
    --transition: all 0.3s ease;
    --navbar-h: 72px;
    --topbar-h: 40px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ---- Gold Gradient Text ---- */
.gold-text {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================
   TOPBAR
   ================================================ */
.topbar {
    background: var(--black-1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    font-size: 12.5px;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.topbar-left .fa-map-marker-alt {
    color: var(--gold);
}

.topbar-sep {
    color: rgba(255, 215, 0, 0.3);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 12.5px;
}

.topbar-link:hover {
    color: var(--gold);
}

.topbar-link i {
    color: var(--gold);
}

.topbar-wa {
    background: rgba(37, 211, 102, 0.15);
    color: var(--whatsapp) !important;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.topbar-wa:hover {
    background: rgba(37, 211, 102, 0.25) !important;
    color: #fff !important;
}

.topbar-wa i {
    color: var(--whatsapp) !important;
}

/* Live Badge */
.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
        box-shadow: 0 0 0 6px rgba(255, 215, 0, 0);
    }
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    height: var(--navbar-h);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 999;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    font-size: 32px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.brand-sub {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gold-dark);
    text-transform: uppercase;
    font-weight: 500;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.08);
}

.nav-link.active {
    border-bottom: 2px solid var(--gold);
    border-radius: 8px 8px 0 0;
}

.nav-cta {
    background: var(--whatsapp) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 9px 18px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}

.nav-cta:hover {
    background: #1da851 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4) !important;
}

/* ================================================
   NAV DROPDOWN
   ================================================ */
.nav-dropdown {
    position: relative;
    display: inline-flex;
}

.nav-dropdown-toggle {
    gap: 5px;
}

.nav-dropdown-arrow {
    font-size: 10px !important;
    margin-left: 2px;
    transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    min-width: 200px;
    background: rgba(17, 17, 17, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 12px;
    padding: 8px;
    padding-top: 14px;
    margin-top: 4px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(212, 175, 55, 0.06);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 1000;
    max-height: 340px;
    overflow-y: auto;
}

/* Scrollbar inside dropdown */
.nav-dropdown-menu::-webkit-scrollbar { width: 4px; }
.nav-dropdown-menu::-webkit-scrollbar-track { background: transparent; }
.nav-dropdown-menu::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); border-radius: 2px; }

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
}

/* Triangle pointer */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(212, 175, 55, 0.18);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.18s ease;
    text-decoration: none;
    white-space: nowrap;
}

.nav-dropdown-item i {
    color: var(--gold);
    font-size: 11px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.nav-dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding-left: 18px;
}

.nav-dropdown-divider {
    height: 1px;
    background: rgba(212, 175, 55, 0.1);
    margin: 6px 8px;
}

.nav-dropdown-all {
    color: var(--gold) !important;
    font-weight: 600 !important;
}

.nav-dropdown-all:hover {
    background: rgba(212, 175, 55, 0.15) !important;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    min-height: 115vh;
    padding-top: calc(var(--topbar-h) + var(--navbar-h));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.96) 100%),
        url('/assets/images/hero-bg.png') no-repeat center center;
    background-size: cover;
    opacity: 0.85;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp 8s infinite;
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(1.5);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero-badge .pulse-dot {
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 8px;
    animation: fadeInUp 0.9s ease;
}

.hero-title-main {
    display: block;
    background: linear-gradient(135deg, #fff 0%, var(--gold-light) 40%, var(--gold) 70%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-sub {
    display: block;
    font-size: 0.45em;
    letter-spacing: 6px;
    color: var(--gold-dark);
    -webkit-text-fill-color: var(--gold-dark);
    font-weight: 400;
    margin-top: 4px;
}

.hero-desc {
    font-size: 17.5px;
    color: var(--text-light);
    margin: 24px auto 36px;
    line-height: 1.75;
    animation: fadeInUp 1.1s ease;
    max-width: 600px;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    animation: fadeInUp 1.3s ease;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    color: var(--black);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black) !important;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    color: var(--black) !important;
}

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

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    color: var(--gold);
}

.hero-right {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    max-width: 500px;
    opacity: 0.12;
    /* Metinlerin arkasında olacağı için opaklık düşürüldü */
    pointer-events: none;
    filter: drop-shadow(0 10px 40px rgba(212, 175, 55, 0.25));
    animation: heroFloat 8s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(-1deg);
    }

    50% {
        transform: translate(-50%, calc(-50% - 15px)) scale(1.04) rotate(1deg);
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    animation: fadeInUp 1.5s ease;
    width: 100%;
}

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

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    color: var(--gold);
    font-size: 20px;
}

@keyframes bounce {

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

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

/* ================================================
   SERVICE AREAS TICKER
   ================================================ */
.ticker-wrap {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(212, 175, 55, 0.08));
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 12px 0;
    overflow: hidden;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

.ticker-item i {
    color: var(--gold-dark);
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

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

/* ================================================
   SECTION STYLES
   ================================================ */
section {
    padding: 90px 0;
}

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

.section-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 3px;
    margin: 16px auto 0;
}

/* ================================================
   HİZMET BÖLGELERİ
   ================================================ */
.bolge-section {
    background: var(--black-1);
}

.bolge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.bolge-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: var(--border-radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bolge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    opacity: 0.15;
    transition: var(--transition);
}

.bolge-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.12), 0 4px 24px rgba(0, 0, 0, 0.6);
}

.bolge-card:hover::before {
    opacity: 1;
}

.bolge-icon {
    font-size: 38px;
    margin-bottom: 14px;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.15));
    transition: var(--transition);
}

.bolge-card:hover .bolge-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.35));
}

.bolge-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.bolge-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 30px;
    margin-top: 10px;
    transition: var(--transition);
}

.bolge-card:hover .bolge-check {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
}

.bolge-arrow {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 11px;
    margin-top: 16px;
    transition: var(--transition);
    background: rgba(212, 175, 55, 0.03);
}

.bolge-card:hover .bolge-arrow {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

/* ================================================
   ÜRÜN KARTLARI
   ================================================ */
.products-section {
    background: var(--black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1);
}

.product-img {
    background: var(--black-2);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.product-body {
    padding: 16px;
}

.product-cat {
    font-size: 11px;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.product-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.product-price {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 12px;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.btn-sm {
    padding: 9px 14px;
    font-size: 13px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-sm-wa {
    background: var(--whatsapp);
    color: #fff;
}

.btn-sm-wa:hover {
    background: #1da851;
    color: #fff;
    transform: scale(1.02);
}

.btn-sm-tel {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
}

.btn-sm-tel:hover {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
}

/* ================================================
   NEDEN BİZ
   ================================================ */
.features-section {
    background: var(--black-1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.3);
    background: var(--glass-hover);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--gold);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(255, 215, 0, 0.15);
    transform: rotate(10deg) scale(1.1);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ================================================
   NASIL SİPARİŞ VERİLİR
   ================================================ */
.how-section {
    background: var(--black);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0.3;
}

.step-card {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.step-num {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 24px rgba(255, 215, 0, 0.3);
}

.step-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================
   CTA BANNER
   ================================================ */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(212, 175, 55, 0.04) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    padding: 70px 0;
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 36px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   ÜRÜNLER SAYFASI — Filtre
   ================================================ */
.page-hero {
    padding-top: calc(var(--topbar-h) + var(--navbar-h) + 60px);
    padding-bottom: 60px;
    background: var(--black-1);
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.page-hero-desc {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.filter-bar {
    background: var(--black-2);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    position: sticky;
    top: calc(var(--topbar-h) + var(--navbar-h));
    z-index: 90;
}

.filter-bar .container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-search {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-primary);
    padding: 10px 16px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.filter-search:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 255, 255, 0.07);
}

.filter-search::placeholder {
    color: var(--text-muted);
}

.filter-btn {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.2);
    background: transparent;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-btn.active,
.filter-btn:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.5);
    color: var(--gold);
}

.products-page {
    padding: 50px 0 90px;
}

/* ================================================
   İLETİŞİM SAYFASI
   ================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 36px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-item-val {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-item-val a {
    color: var(--gold);
    transition: var(--transition);
}

.contact-item-val a:hover {
    color: var(--gold-light);
}

.map-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.map-card iframe {
    width: 100%;
    height: 380px;
    display: block;
    filter: invert(90%) hue-rotate(180deg);
}

.bolge-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.bolge-tag {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ================================================
   FLOATING BUTTONS
   ================================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 24px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black) !important;
    padding: 14px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    z-index: 998;
    transition: var(--transition);
    text-decoration: none;
    animation: floatingWA 3s ease-in-out infinite;
}

.floating-whatsapp i {
    font-size: 22px;
    color: var(--black) !important;
}

.floating-whatsapp:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    color: var(--black) !important;
}

.floating-wa-text {
    white-space: nowrap;
}

.floating-call {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
    z-index: 998;
    transition: var(--transition);
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.6);
    color: var(--black);
}

@keyframes floatingWA {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--black-1);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-top {
    padding: 70px 0 50px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-brand-icon {
    font-size: 42px;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.footer-brand-slogan {
    font-size: 11px;
    color: var(--gold-dark);
    letter-spacing: 1px;
    margin-top: 2px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 15px;
    transition: var(--transition);
}

.social-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    color: var(--gold);
}

.social-wa {
    background: rgba(212, 175, 55, 0.1) !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
    color: var(--gold) !important;
}

.social-wa:hover {
    background: rgba(212, 175, 55, 0.2) !important;
    color: var(--black) !important;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.footer-list li {
    margin-bottom: 10px;
    font-size: 13.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-list li i {
    color: var(--gold);
    font-size: 10px;
}

.footer-list li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-list li a:hover,
.footer-list li:hover {
    color: var(--gold);
}

.footer-list li a:hover {
    color: var(--gold);
}

.footer-contact li {
    margin-bottom: 14px;
    font-size: 13.5px;
    color: var(--text-muted);
    display: flex;
    gap: 12px;
    line-height: 1.5;
}

.footer-contact li i {
    color: var(--gold);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: var(--gold);
    transition: var(--transition);
}

.footer-contact li a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.08);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 4px;
}

.footer-note {
    font-size: 11.5px !important;
    opacity: 0.6;
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-right {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        opacity: 0.08;
    }
}

@media (max-width: 768px) {
    :root {
        --topbar-h: 40px;
    }

    .topbar {
        display: flex !important;
        font-size: 11px;
    }

    .topbar-sep,
    .topbar-address {
        display: none !important;
    }

    .topbar-right {
        gap: 8px;
    }

    .topbar-wa-text {
        display: none !important;
    }

    .topbar-wa {
        padding: 4px 8px !important;
    }

    .navbar {
        top: var(--topbar-h) !important;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .navbar-brand img {
        height: 38px !important;
    }

    .navbar-nav {
        position: fixed;
        top: var(--navbar-h);
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px 20px;
        gap: 8px;
        transform: translateY(calc(-100% - 150px));
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--glass-border);
        align-items: center;
        text-align: center;
        pointer-events: none;
    }

    .navbar-nav.open {
        transform: translateY(0);
        pointer-events: auto;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-link {
        width: 100%;
        padding: 14px 20px !important;
        font-size: 16px !important;
        text-align: center;
        border-radius: 8px;
        display: block;
    }

    .hero {
        padding-top: calc(var(--topbar-h) + var(--navbar-h) + 20px) !important;
    }

    .hero-stats {
        gap: 20px;
    }

    .bolge-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .footer-list li i {
        display: none;
    }

    .floating-wa-text {
        display: none;
    }

    .floating-whatsapp {
        padding: 14px;
        border-radius: 50%;
    }

    section {
        padding: 60px 0;
    }
}

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

    .products-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 34px !important;
        line-height: 1.15;
    }

    .hero-desc {
        font-size: 14.5px;
        margin: 16px 0 28px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 15px;
        border-radius: 12px;
    }

    .hero-stats {
        gap: 15px;
        margin-top: 36px;
    }

    .hero-stat-num {
        font-size: 26px;
    }

    .hero-stat-label {
        font-size: 10px;
    }

    .hero-right {
        width: 85% !important;
        opacity: 0.06 !important;
    }

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

@media (min-width: 992px) {

    .products-grid,
    .bolge-grid {
        grid-template-columns: repeat(5, 1fr) !important;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}