/* ============================================
   DamlaSu - Main Stylesheet
   Ankara'nın Güvenilir Su Dağıtım Merkezi
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #186ba6;
    --primary-dark: #124f7a;
    --primary-light: #2a8fd4;
    --primary-bg: #e9f2f9;
    --secondary: #1b9aaa;
    --accent: #1584b8;
    --dark: #0f1b2d;
    --dark-light: #1e2d42;
    --text: #2c3e50;
    --text-light: #5a6d80;
    --text-lighter: #8e9eaf;
    --white: #FFFFFF;
    --light: #f5f9fc;
    --light-gray: #edf2f7;
    --border: #dce5ed;
    --shadow: 0 4px 6px -1px rgba(24,107,166,0.06), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 40px -12px rgba(24,107,166,0.18);
    --shadow-xl: 0 25px 50px -12px rgba(24,107,166,0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --header-height: 80px;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* ---------- Utility ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 70px 0;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-header p {
    color: var(--text-light);
    margin-top: 12px;
    font-size: 1.05rem;
}

/* Dekoratif çizgili section header */
.section-header-lined {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header-lined::before,
.section-header-lined::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 340px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--primary), var(--border), transparent);
    opacity: 0.5;
}

.section-header-lined::before { left: 0; }
.section-header-lined::after { right: 0; }

@media (max-width: 768px) {
    .section-header-lined::before,
    .section-header-lined::after {
        width: calc(50% - 160px);
    }
}

.section-badge {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24,107,166,0.3);
}

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

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

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

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: var(--white);
    transition: background 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
}

/* Scrolled: mavi arka plan */
.header.scrolled {
    background: var(--primary);
    box-shadow: 0 4px 30px rgba(18,79,122,0.2);
    height: 70px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    transition: height 0.3s ease;
}

.header.scrolled .header-inner {
    height: 70px;
}

/* Logo: iki ayrı resim, duruma göre göster/gizle */
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo .logo-default { display: block; }
.logo .logo-scrolled { display: none; }

.header.scrolled .logo .logo-default { display: none; }
.header.scrolled .logo .logo-scrolled { display: block; }

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    transition: color 0.3s ease;
}

/* Alt çizgi animasyonu */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 32px);
    left: 16px;
}

.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); }

/* Scrolled durumda nav renkleri */
.header.scrolled .nav-link { color: rgba(255,255,255,0.85); }
.header.scrolled .nav-link:hover { color: #fff; }
.header.scrolled .nav-link.active { color: #fff; }
.header.scrolled .nav-link::after { background: #fff; }

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.header-phone:hover { color: var(--primary-dark); }

.header.scrolled .header-phone { color: rgba(255,255,255,0.9); }
.header.scrolled .header-phone:hover { color: #fff; }

.header.scrolled .btn-primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.header.scrolled .btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

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

.header.scrolled .mobile-toggle span { background: #fff; }

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* ---------- Hero Slider ---------- */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.slider-wrapper { position: relative; width: 100%; height: 100%; }

/* Slide */
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
}
.slide.active { opacity: 1; visibility: visible; z-index: 2; }

/* Background */
.slide-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #0d3d5c 0%, #124f7a 40%, #186ba6 70%, #2a8fd4 100%);
}
.slide-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
}
.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(13,61,92,0.88) 0%, rgba(18,79,122,0.6) 50%, rgba(24,107,166,0.4) 100%);
}

/* Content Layout */
.slide-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 100vh;
    padding: calc(var(--header-height) + 40px) 0 140px;
}

/* Text Side */
.slide-text { color: #fff; }

.slide-badge {
    display: inline-block;
    color: rgba(255,255,255,0.7);
    padding: 0;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    border: none;
    background: none;
}

.slide-text h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
    font-weight: 800;
}

.slide-text p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.slide-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.slide-buttons .btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.slide-buttons .btn-white:hover {
    background: transparent;
    color: #fff;
}

/* Slide animations */
.slide.active .slide-badge   { animation: slideUp 0.6s 0.2s both; }
.slide.active .slide-text h1 { animation: slideUp 0.6s 0.35s both; }
.slide.active .slide-text p  { animation: slideUp 0.6s 0.5s both; }
.slide.active .slide-buttons { animation: slideUp 0.6s 0.65s both; }
.slide.active .slide-visual  { animation: slideRight 0.8s 0.4s both; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
    from { opacity: 0; transform: translateX(40px) scale(0.95); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* Visual Side - Product */
.slide-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-product-img {
    max-height: 480px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.35));
    animation: productFloat 4s ease-in-out infinite;
}

@keyframes productFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

/* ---- Water Scene ---- */
.water-scene {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Product image rotator */
.product-rotator {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}

.rotator-img {
    position: absolute;
    max-height: 440px;
    max-width: 90%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s ease, transform 0.8s ease;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.3));
    animation: productFloat 4s ease-in-out infinite;
}

.rotator-img.active {
    opacity: 1;
    transform: scale(1);
}

/* ---- Family Mode (giriş animasyonu: tüm resimler yan yana) ---- */
.product-rotator.family-mode { min-height: 440px; }
.product-rotator.family-mode .rotator-img {
    opacity: 0;
    left: 50%;
    top: 50%;
    max-height: 380px;
    max-width: 70%;
    animation: familyPop var(--fam-pop, 900ms) cubic-bezier(.2,.9,.3,1.25) forwards;
    animation-delay: calc(var(--pi, 0) * var(--fam-stagger, 180ms));
    transition: none;
}
@keyframes familyPop {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translate(var(--px, 0px), calc(var(--py, 0px) + 80px)) scale(0.3);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) translate(var(--px, 0px), var(--py, 0px)) scale(calc(var(--ps, 100) / 100));
    }
}
/* Çıkış: aile dağılır, aktif olan merkeze yerleşir */
.product-rotator.family-exit .rotator-img {
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.4,0,.2,1);
    animation: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translate(var(--px, 0px), var(--py, 0px)) scale(calc(var(--ps, 100) / 100));
    opacity: 1;
}
.product-rotator.family-exit .rotator-img:not(.active) {
    opacity: 0;
    transform: translate(-50%, -50%) translate(var(--px, 0px), var(--py, 0px)) scale(0.6);
}
.product-rotator.family-exit .rotator-img.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Varsayılan bidon */
.water-bottle {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: productFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.25));
}

.wb-cap {
    width: 44px; height: 20px;
    background: linear-gradient(180deg, #a8cce0, #7db5d4);
    border-radius: 8px 8px 2px 2px;
}

.wb-body {
    width: 160px; height: 260px;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(24,107,166,0.12), rgba(24,107,166,0.22));
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 14px 14px 32px 32px;
    backdrop-filter: blur(6px);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 6px;
}
.wb-label { font-size: 1.1rem; font-weight: 800; color: rgba(255,255,255,0.85); letter-spacing: 1px; }
.wb-size { font-size: 2.2rem; font-weight: 900; color: #fff; }

/* ---- 3D Su Damlaları ---- */
/* ---- 3D Su Damlaları ---- */
.water-fx {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 6;
}

.drop3d {
    position: absolute;
    /* Sivri üst, yuvarlak alt = gerçek damla formu */
    border-radius: 45% 45% 50% 50% / 30% 30% 70% 70%;
    background:
        radial-gradient(ellipse at 30% 20%,
            rgba(255,255,255,0.97) 0%,
            rgba(255,255,255,0.55) 18%,
            rgba(160,210,245,0.4) 35%,
            rgba(24,107,166,0.22) 60%,
            rgba(24,107,166,0.06) 100%
        );
    box-shadow:
        inset -3px -4px 8px rgba(24,107,166,0.18),
        inset 3px 3px 6px rgba(255,255,255,0.7),
        inset 0 -2px 4px rgba(24,107,166,0.1),
        0 6px 20px rgba(24,107,166,0.25),
        0 0 30px rgba(24,107,166,0.06);
    opacity: 0;
    /* İç ışık çizgisi */
    overflow: hidden;
}

.drop3d::before {
    content: '';
    position: absolute;
    top: 12%; left: 22%;
    width: 35%; height: 25%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.9), transparent);
    border-radius: 50%;
    transform: rotate(-20deg);
}

.drop3d::after {
    content: '';
    position: absolute;
    bottom: 20%; right: 18%;
    width: 15%; height: 12%;
    background: rgba(255,255,255,0.35);
    border-radius: 50%;
}

/* Her damla: farklı boyut, farklı rota, farklı hız */
.drop3d-1 {
    width: 30px; height: 40px;
    animation: dropPath1 8s ease-in-out infinite;
    animation-delay: 0s;
}
.drop3d-2 {
    width: 20px; height: 27px;
    animation: dropPath2 10s ease-in-out infinite;
    animation-delay: 1.5s;
}
.drop3d-3 {
    width: 42px; height: 56px;
    animation: dropPath3 9s ease-in-out infinite;
    animation-delay: 3s;
}
.drop3d-4 {
    width: 16px; height: 22px;
    animation: dropPath4 7s ease-in-out infinite;
    animation-delay: 0.5s;
}
.drop3d-5 {
    width: 26px; height: 35px;
    animation: dropPath5 11s ease-in-out infinite;
    animation-delay: 4s;
}
.drop3d-6 {
    width: 14px; height: 19px;
    animation: dropPath6 8.5s ease-in-out infinite;
    animation-delay: 6s;
}
.drop3d-7 {
    width: 36px; height: 48px;
    animation: dropPath7 10.5s ease-in-out infinite;
    animation-delay: 2s;
}

/* Keyframes: her damla farklı yol izler, sahne boyunca hareket eder */
@keyframes dropPath1 {
    0%   { top: -8%; left: 5%; opacity: 0; transform: scale(0.4) rotate(-5deg); }
    8%   { opacity: 0.9; transform: scale(1) rotate(0deg); }
    40%  { top: 35%; left: 30%; opacity: 0.8; transform: scale(1.05) rotate(3deg); }
    70%  { top: 60%; left: 55%; opacity: 0.75; transform: scale(0.95) rotate(-2deg); }
    92%  { opacity: 0.6; transform: scale(0.85) rotate(2deg); }
    100% { top: 105%; left: 70%; opacity: 0; transform: scale(0.3) rotate(5deg); }
}

@keyframes dropPath2 {
    0%   { top: -6%; right: 5%; left: auto; opacity: 0; transform: scale(0.3) rotate(5deg); }
    10%  { opacity: 0.85; transform: scale(1) rotate(0deg); }
    35%  { top: 25%; right: 25%; opacity: 0.8; transform: scale(1.08) rotate(-4deg); }
    65%  { top: 55%; right: 45%; opacity: 0.7; transform: scale(0.92) rotate(3deg); }
    90%  { opacity: 0.5; }
    100% { top: 100%; right: 60%; opacity: 0; transform: scale(0.2) rotate(-5deg); }
}

@keyframes dropPath3 {
    0%   { bottom: auto; top: -10%; left: 60%; opacity: 0; transform: scale(0.3); }
    10%  { opacity: 0.85; transform: scale(1); }
    30%  { top: 20%; left: 45%; transform: scale(1.1) rotate(5deg); }
    55%  { top: 45%; left: 35%; opacity: 0.75; transform: scale(0.95) rotate(-3deg); }
    80%  { top: 72%; left: 25%; opacity: 0.6; transform: scale(0.88) rotate(2deg); }
    100% { top: 108%; left: 15%; opacity: 0; transform: scale(0.2); }
}

@keyframes dropPath4 {
    0%   { top: -5%; right: 10%; left: auto; opacity: 0; transform: scale(0.5); }
    12%  { opacity: 0.9; transform: scale(1); }
    50%  { top: 40%; right: 35%; transform: scale(1.06) rotate(-6deg); }
    85%  { top: 80%; right: 55%; opacity: 0.5; transform: scale(0.8) rotate(4deg); }
    100% { top: 106%; right: 65%; opacity: 0; transform: scale(0.2); }
}

@keyframes dropPath5 {
    0%   { top: -8%; left: 75%; opacity: 0; transform: scale(0.3) rotate(8deg); }
    8%   { opacity: 0.8; transform: scale(1) rotate(0deg); }
    25%  { top: 15%; left: 60%; transform: scale(1.05) rotate(-3deg); }
    50%  { top: 40%; left: 42%; opacity: 0.7; transform: scale(0.97) rotate(4deg); }
    75%  { top: 65%; left: 28%; opacity: 0.6; transform: scale(0.9) rotate(-2deg); }
    100% { top: 105%; left: 10%; opacity: 0; transform: scale(0.2) rotate(6deg); }
}

@keyframes dropPath6 {
    0%   { top: -5%; left: 35%; opacity: 0; transform: scale(0.4); }
    10%  { opacity: 0.85; transform: scale(1); }
    45%  { top: 38%; left: 55%; transform: scale(1.1) rotate(5deg); }
    80%  { top: 75%; left: 70%; opacity: 0.5; transform: scale(0.85) rotate(-3deg); }
    100% { top: 108%; left: 80%; opacity: 0; transform: scale(0.2); }
}

@keyframes dropPath7 {
    0%   { bottom: auto; top: -12%; left: 85%; opacity: 0; transform: scale(0.3); }
    10%  { opacity: 0.8; transform: scale(1); }
    30%  { top: 18%; left: 70%; transform: scale(1.08) rotate(-4deg); }
    55%  { top: 42%; left: 50%; opacity: 0.7; transform: scale(0.96) rotate(5deg); }
    80%  { top: 68%; left: 35%; opacity: 0.55; transform: scale(0.88) rotate(-3deg); }
    100% { top: 110%; left: 20%; opacity: 0; transform: scale(0.2); }
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 10;
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center;
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.slider-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.slider-dot.active {
    background: #fff;
    border-color: #fff;
    width: 36px;
    border-radius: 6px;
}

/* Slider Stats Bar */
.slider-stats {
    position: absolute;
    bottom: 0;
    left: 0; width: 100%;
    z-index: 20;
    padding: 0 0 20px;
}

.slider-stats-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px 40px;
}

.slider-stat-item { text-align: center; }

.slider-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    display: inline;
}
.slider-stat-plus { font-size: 1.2rem; font-weight: 700; color: var(--secondary); }
.slider-stat-lbl {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Wave */
.slider-wave {
    position: absolute;
    bottom: -2px; left: 0; width: 100%;
    z-index: 5;
    line-height: 0;
}
.slider-wave svg { width: 100%; height: 80px; }

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

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

/* ---------- Trust ---------- */
.trust {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    margin-top: -40px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.trust-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-bg), rgba(27,154,170,0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    transform: scale(1.05);
}

.trust-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ---------- Products ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card.product-featured {
    grid-column: span 2;
}

.product-image {
    position: relative;
    padding: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 16px;
}

.product-placeholder {
    width: 120px;
    height: 160px;
    background: linear-gradient(180deg, rgba(24,107,166,0.1), rgba(24,107,166,0.2));
    border-radius: 16px 16px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary);
    border: 2px solid rgba(24,107,166,0.15);
}

.product-placeholder i {
    font-size: 2rem;
    opacity: 0.6;
}

.product-placeholder span {
    font-size: 1.8rem;
    font-weight: 800;
}

.placeholder-lg {
    width: 140px;
    height: 190px;
}

.placeholder-lg span {
    font-size: 2.2rem;
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-premium {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.about-preview-content h2 {
    margin-bottom: 20px;
}

.about-preview-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-list {
    margin-bottom: 32px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: 500;
}

.about-list li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.about-card-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.about-stat-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.about-stat-card i {
    font-size: 2rem;
    color: var(--primary);
    width: 60px;
    height: 60px;
    background: var(--primary-bg);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-stat-card strong {
    display: block;
    font-size: 1.8rem;
    color: var(--dark);
}

.about-stat-card span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ---------- References ---------- */
.references-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.reference-card {
    background: var(--white);
    padding: 32px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.reference-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.reference-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.reference-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

/* ---------- CTA ---------- */
.cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    max-width: 550px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #F59E0B;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-stars i {
    margin-right: 2px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-lighter);
}

/* ---------- Page Hero ---------- */
.page-hero {
    background: linear-gradient(170deg, #f0f6fb, #d6e8f4);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(24,107,166,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-sm {
    padding: 120px 0 60px;
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-lighter);
}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

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

.about-detail-content h2 {
    margin-bottom: 20px;
}

.about-detail-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--primary-bg), rgba(27,154,170,0.1));
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(24,107,166,0.1);
}

.about-image-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.4;
}

.about-image-placeholder span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.about-image-placeholder small {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ---------- Vision & Mission ---------- */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vm-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.vm-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary);
}

.vm-card h3 {
    margin-bottom: 12px;
}

.vm-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---------- Strengths ---------- */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.strength-item {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.strength-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.strength-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-bg);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.strength-item:hover .strength-number {
    color: rgba(24,107,166,0.1);
}

.strength-item h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.strength-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ---------- Products Page ---------- */
.product-detail-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.product-detail-card:hover {
    box-shadow: var(--shadow-lg);
}

.product-detail-card.reverse {
    grid-template-columns: 1.3fr 1fr;
}

.product-detail-card.reverse .product-detail-image {
    order: 2;
}

.product-detail-card.reverse .product-detail-content {
    order: 1;
}

.product-detail-image {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: contain;
}

.placeholder-detail {
    width: 150px;
    height: 200px;
}

.placeholder-detail span {
    font-size: 2.5rem;
}

.featured-badge-lg {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.product-detail-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-category {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
}

.product-detail-content h2 {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.product-detail-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    margin-bottom: 28px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-features li i {
    color: var(--primary);
    font-size: 0.85rem;
}

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

.featured-product {
    background: linear-gradient(135deg, rgba(24,107,166,0.02), rgba(27,154,170,0.02));
    border-color: var(--primary);
}

/* ---------- Blog ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-bg), rgba(27,154,170,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-lighter);
    margin-bottom: 12px;
}

.blog-meta i {
    margin-right: 4px;
}

.blog-card-content h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

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

.blog-card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-read-more:hover {
    gap: 10px;
}

/* Blog Detail */
.blog-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 48px;
}

.blog-content h3 {
    margin: 28px 0 14px;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.blog-cta-box {
    background: linear-gradient(135deg, var(--primary-bg), rgba(27,154,170,0.08));
    padding: 32px;
    border-radius: var(--radius);
    margin-top: 40px;
    border: 1px solid rgba(24,107,166,0.1);
}

.blog-cta-box h3 {
    margin: 0 0 10px;
}

.blog-cta-box p {
    margin-bottom: 16px;
}

.sidebar-widget {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.sidebar-widget h4 {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-bg);
}

.sidebar-posts li {
    border-bottom: 1px solid var(--border);
}

.sidebar-posts li:last-child {
    border: none;
}

.sidebar-posts a {
    display: block;
    padding: 12px 0;
}

.sidebar-posts a:hover .sidebar-post-title {
    color: var(--primary);
}

.sidebar-post-title {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
    transition: var(--transition);
}

.sidebar-post-date {
    font-size: 0.8rem;
    color: var(--text-lighter);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.sidebar-cta i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.sidebar-cta h4 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.2);
}

.sidebar-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

.sidebar-cta .btn {
    margin-top: 12px;
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* ---------- Bayilik ---------- */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.advantage-card {
    background: var(--white);
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition);
}

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

.advantage-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ---------- Corporate Benefits ---------- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    padding: 36px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.benefit-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ---------- Forms ---------- */
.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.form-header {
    text-align: center;
    margin-bottom: 36px;
}

.form-header h2 {
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-light);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(24,107,166,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid transparent;
}

.checkbox-label:hover {
    background: var(--primary-bg);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h2 {
    margin-bottom: 12px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--primary-bg);
}

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

.contact-card-icon.whatsapp-icon {
    background: #25D366;
}

.contact-card h4 {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-card a,
.contact-card span {
    font-weight: 600;
    font-size: 0.95rem;
}

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

.contact-hours {
    background: var(--light);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
}

.contact-hours h4 {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-hours h4 i {
    color: var(--primary);
    margin-right: 6px;
}

.contact-hours p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-form-wrapper .form-wrapper {
    max-width: 100%;
}

/* Map */
.map-section {
    margin-top: -1px;
}

.map-wrapper {
    line-height: 0;
}

.map-wrapper iframe {
    width: 100%;
    filter: grayscale(20%);
}

/* ---------- Error Page ---------- */
.error-page {
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    max-width: 500px;
    margin: 0 auto;
}

.error-icon {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.4;
    margin-bottom: 20px;
}

.error-content h1 {
    font-size: 6rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.error-content h2 {
    margin-bottom: 12px;
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.error-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr 1.3fr;
    gap: 40px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: var(--primary-light);
    margin-top: 4px;
    width: 18px;
    text-align: center;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    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.4);
    z-index: 998;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Quick Order Float */
.quick-order-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(24,107,166,0.3);
    z-index: 998;
    transition: var(--transition);
}

.quick-order-float:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ---------- Form Success ---------- */
.form-success {
    text-align: center;
    padding: 40px;
}

.form-success i {
    font-size: 3rem;
    color: #10B981;
    margin-bottom: 16px;
}

.form-success h3 {
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */

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

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

    .product-card.product-featured {
        grid-column: span 2;
    }

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

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

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

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .section-padding {
        padding: 50px 0;
    }

    /* Header Mobile */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        padding: 100px 30px 30px;
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
        width: 100%;
        display: block;
    }

    /* Mobil yan menü beyaz zeminli — scroll olsa bile yazılar koyu kalsın */
    .header.scrolled .nav .nav-link,
    .header.scrolled .nav .nav-link:hover,
    .header.scrolled .nav .nav-link.active {
        color: var(--text, #222);
    }
    .header.scrolled .nav .nav-link.active {
        color: var(--primary);
    }
    .header.scrolled .nav .nav-link::after {
        background: var(--primary);
    }

    .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    /* ---- Hero Slider Mobile (natural flow layout) ---- */
    .hero-slider {
        min-height: 0;
        height: auto;
        overflow: visible;
        background: linear-gradient(135deg,#0d3d5c 0%,#124f7a 40%,#186ba6 70%,#2a8fd4 100%);
        display: flex;
        flex-direction: column;
    }
    .slider-wrapper {
        position: relative;
        height: auto;
        width: 100%;
        order: 1;
    }
    .slide {
        position: absolute;
        top: 0; left: 0; right: 0;
        width: 100%;
        min-height: 0;
        height: auto;
    }
    .slide.active { position: relative; }
    .slide-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    .slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

    .slide-content {
        display: flex !important;
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 22px;
        min-height: 0;
        padding: 100px 20px 40px;
        text-align: center;
        align-items: center;
    }
    .slide-visual { order: -1; width: 100%; display: flex; justify-content: center; }
    .slide-text { width: 100%; }
    .slide-text h1 { font-size: 1.9rem; line-height: 1.25; margin-bottom: 14px; }
    .slide-text p { margin: 0 auto 24px; font-size: 0.98rem; max-width: 100%; line-height: 1.6; }
    .slide-badge { margin-bottom: 14px; font-size: 0.78rem; }
    .slide-buttons { justify-content: center; gap: 10px; }

    .slide-product-img { max-height: 240px; }
    .water-scene { height: 260px; min-height: 260px; width: 100%; }
    .product-rotator { height: 260px; min-height: 260px; width: 100%; }
    .rotator-img { max-height: 240px; max-width: 75%; }
    /* Aile modu mobilde: ölçeklenip biraz aşağı indirilir */
    .product-rotator.family-mode {
        transform: scale(0.85) translateY(40px);
        transform-origin: center center;
        min-height: 320px;
        height: 320px;
    }
    .product-rotator.family-exit {
        transform: scale(1) translateY(0);
        transition: transform 0.7s cubic-bezier(.4,0,.2,1);
    }
    .wb-body { width: 120px; height: 200px; }
    .wb-size { font-size: 1.8rem; }
    .drop3d-3, .drop3d-5, .drop3d-7 { display: none; }
    .drop3d { transform-origin: center; }

    .slider-arrow { display: none; }
    /* Dots akışa girer: slide ile stats arasında */
    .slider-dots {
        position: relative;
        bottom: auto; left: auto; transform: none;
        display: flex; justify-content: center; gap: 8px;
        padding: 14px 0 6px;
        order: 2;
        z-index: 5;
    }
    /* Stats akışa girer, slider'ın doğal devamı */
    .slider-stats {
        position: relative;
        bottom: auto;
        padding: 10px 0 30px;
        order: 3;
    }
    /* Wave'i en sona al, akışa gir */
    .slider-wave {
        position: relative;
        bottom: auto;
        order: 4;
    }
    .slider-wave svg { height: 40px; }

    .slider-stats-grid {
        flex-wrap: wrap;
        gap: 16px;
        padding: 16px 20px;
    }
    .slider-stat-num { font-size: 1.4rem; }

    /* Trust */
    .trust {
        margin-top: 0;
    }

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

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

    .product-card.product-featured {
        grid-column: span 1;
    }

    /* About */
    .about-preview-grid,
    .about-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* References */
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* VM */
    .vm-grid {
        grid-template-columns: 1fr;
    }

    /* Strengths */
    .strengths-grid {
        grid-template-columns: 1fr;
    }

    /* Products Page */
    .product-detail-card,
    .product-detail-card.reverse {
        grid-template-columns: 1fr;
    }

    .product-detail-card.reverse .product-detail-image {
        order: 0;
    }

    .product-detail-card.reverse .product-detail-content {
        order: 0;
    }

    .product-detail-content {
        padding: 32px 24px;
    }

    .product-detail-image {
        min-height: 200px;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-grid {
        grid-template-columns: 1fr;
    }

    /* Advantages & Benefits */
    .advantages-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Forms */
    .form-wrapper {
        padding: 28px 20px;
    }

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

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

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Floats */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }

    .quick-order-float {
        bottom: 82px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .back-to-top {
        left: 20px;
        bottom: 20px;
        width: 40px;
        height: 40px;
    }

    /* Page Hero */
    .page-hero {
        padding: 110px 0 60px;
    }

    /* CTA */
    .cta {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .slide-content { padding: 90px 14px 150px; }
    .slide-text h1 { font-size: 1.55rem; }
    .slide-text p { font-size: 0.95rem; }
    .product-rotator, .water-scene { height: 220px; min-height: 220px; }
    .rotator-img { max-height: 200px; }
    .product-rotator.family-mode { transform: scale(0.7) translateY(30px); min-height: 280px; height: 280px; }
    .slider-dots { bottom: 150px; }

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

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

    .slide-buttons { flex-direction: column; align-items: center; }
    .slide-buttons .btn { width: 100%; }
    .slider-stats-grid { flex-direction: column; gap: 12px; align-items: center; }
    .rotator-img { max-height: 220px; }
    .product-rotator { min-height: 200px; }
    .wb-body { width: 100px; height: 170px; }
    .wb-size { font-size: 1.5rem; }
    .wb-label { font-size: 0.85rem; }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }

    .error-buttons {
        flex-direction: column;
    }

    .checkbox-group {
        flex-direction: column;
    }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    .quick-order-float,
    .back-to-top {
        display: none !important;
    }

    body {
        font-size: 12pt;
    }
}

/* ---------- Legal / Policy Pages ---------- */
.legal-section {
    background: var(--white);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 50px 55px;
    box-shadow: var(--shadow);
    line-height: 1.75;
    color: var(--text);
}

.legal-wrapper .legal-meta {
    background: var(--primary-bg);
    border-left: 4px solid var(--primary);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 36px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.legal-wrapper h2 {
    color: var(--dark);
    font-size: 1.5rem;
    margin: 36px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-bg);
}

.legal-wrapper h2:first-of-type {
    margin-top: 0;
}

.legal-wrapper h3 {
    color: var(--primary-dark);
    font-size: 1.15rem;
    margin: 24px 0 10px;
}

.legal-wrapper p {
    color: var(--text-light);
    margin-bottom: 14px;
}

.legal-wrapper ul,
.legal-wrapper ol {
    margin: 0 0 18px 22px;
    color: var(--text-light);
}

.legal-wrapper ul li,
.legal-wrapper ol li {
    margin-bottom: 8px;
}

.legal-wrapper strong {
    color: var(--text);
}

.legal-wrapper a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-wrapper a:hover {
    color: var(--primary-dark);
}

.legal-contact-box {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin: 18px 0 8px;
}

.legal-contact-box p {
    margin-bottom: 8px;
    color: var(--text);
}

.legal-contact-box p:last-child {
    margin-bottom: 0;
}

.legal-contact-box i {
    color: var(--primary);
    width: 18px;
    margin-right: 6px;
}

@media (max-width: 768px) {
    .legal-wrapper {
        padding: 32px 22px;
    }

    .legal-wrapper h2 {
        font-size: 1.25rem;
    }

    .legal-wrapper h3 {
        font-size: 1.05rem;
    }
}

/* ============================================
   HİZMET DURUMU & İLETİŞİM ŞERİDİ — Contact Strip
   ============================================ */
.contact-strip-section {
    position: relative;
    margin-top: -20px;
    padding: 0 0 70px;
    z-index: 6;
}

.contact-strip-section > .container {
    position: relative;
    z-index: 2;
}

.contact-strip {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 30px 60px -25px rgba(24,107,166,0.25), 0 10px 30px -10px rgba(15,27,45,0.08);
    padding: 36px 42px 32px;
    position: relative;
    overflow: hidden;
}

.contact-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: cstripLine 6s linear infinite;
}

@keyframes cstripLine {
    0% { background-position: 0 0; }
    100% { background-position: 200% 0; }
}

.cstrip-header {
    text-align: center;
    padding-bottom: 26px;
    margin-bottom: 26px;
    border-bottom: 1px dashed var(--border);
}

/* Başlık rozetimiz — Damla Su'ya özel */
.cstrip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: linear-gradient(135deg, rgba(24,107,166,0.10), rgba(42,143,212,0.12));
    border: 1px solid rgba(24,107,166,0.25);
    border-radius: 50px;
    margin-bottom: 16px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.cstrip-badge i { font-size: 0.85rem; }

/* PaketSu marka yazısı (renkleri: Paket #227dbc, Su #53c2f2) */
.paketsu-brand,
.paketsu-brand-sm {
    font-weight: 800;
    letter-spacing: -0.2px;
    line-height: 1;
}

.paketsu-brand { font-size: 1.05rem; }
.paketsu-brand-sm { font-size: 0.95rem; }

.paketsu-brand .ps-paket,
.paketsu-brand-sm .ps-paket { color: #227dbc; }

.paketsu-brand .ps-su,
.paketsu-brand-sm .ps-su { color: #53c2f2; }

.cstrip-header h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    margin-bottom: 8px;
}

.cstrip-header p {
    color: var(--text-light);
    font-size: 0.98rem;
    max-width: 680px;
    margin: 0 auto;
}

.cstrip-header p strong { color: var(--dark); }

.cstrip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cstrip-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 18px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cstrip-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24,107,166,0.04), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.cstrip-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 18px 40px -22px rgba(24,107,166,0.45);
}

.cstrip-card:hover::after { opacity: 1; }

.cstrip-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-bg);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.cstrip-card:hover .cstrip-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transform: scale(1.05);
}

.cstrip-body {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.cstrip-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}

.cstrip-body strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 4px;
    font-weight: 700;
}

.cstrip-body em {
    display: block;
    font-style: normal;
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
}

.cstrip-arrow {
    color: var(--primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
}

.cstrip-card:hover .cstrip-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* WhatsApp vurgusu */
.cstrip-whatsapp .cstrip-icon {
    background: rgba(37,211,102,0.12);
    color: #128C7E;
}
.cstrip-whatsapp:hover .cstrip-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}

/* PaketSu Önerilen Uygulama Reklam Bloğu */
.cstrip-apps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 32px;
    padding: 22px 26px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(34,125,188,0.06) 0%, rgba(83,194,242,0.08) 100%);
    border: 1px solid rgba(34,125,188,0.18);
}

.cstrip-ad {
    position: relative;
    padding: 22px 24px 20px;
    gap: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f3faff 55%, #e9f4fd 100%);
    border: 1px solid rgba(34,125,188,0.28);
    box-shadow: 0 12px 32px -18px rgba(34,125,188,0.35);
}

.cstrip-ad-label {
    position: absolute;
    top: -11px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 11px;
    background: linear-gradient(135deg, #227dbc 0%, #53c2f2 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    border-radius: 50px;
    box-shadow: 0 6px 14px -5px rgba(34,125,188,0.5);
}

.cstrip-ad-label i { font-size: 0.72rem; }

/* Logo + yazı grubu — yan yana kompakt */
.cstrip-ad-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1 1 auto;
    min-width: 0;
}

.cstrip-ad-logo {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(34,125,188,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px -4px rgba(34,125,188,0.3);
}

.cstrip-ad-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.cstrip-apps-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    flex: 1 1 auto;
}

.cstrip-apps-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.cstrip-apps-title i {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, #227dbc, #53c2f2);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.cstrip-apps-sub {
    font-size: 0.86rem;
    color: var(--text-light);
    line-height: 1.5;
}

.cstrip-apps-sub strong { color: var(--text); }

.cstrip-apps-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0b0f14;
    color: #fff;
    padding: 10px 20px 10px 16px;
    border-radius: 12px;
    border: 1px solid #0b0f14;
    text-decoration: none;
    transition: var(--transition);
    min-width: 160px;
}

.app-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -14px rgba(0,0,0,0.45);
    color: #fff;
}

.app-badge i {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}

.app-badge div {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-align: left;
}

.app-badge em {
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 3px;
    letter-spacing: 0.3px;
}

.app-badge strong {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

/* Android rozet — Google Play renkleri */
.app-android {
    background: linear-gradient(135deg, #0b0f14 0%, #151c27 100%);
}

.app-android i {
    background: linear-gradient(135deg, #34A853, #FBBC05, #EA4335, #4285F4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Platform tespiti — iOS kullanıcıları sadece App Store, Android kullanıcıları sadece Google Play */
.cstrip-apps.is-ios .app-android { display: none; }
.cstrip-apps.is-android .app-ios { display: none; }

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

@media (max-width: 680px) {
    .cstrip-apps {
        flex-direction: column;
        align-items: stretch;
        padding: 18px 18px;
        text-align: center;
    }
    .cstrip-ad { padding: 26px 18px 18px; align-items: center; }
    .cstrip-ad-label { left: 50%; transform: translateX(-50%); }
    .cstrip-ad-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    .cstrip-apps-title { justify-content: center; }
    .cstrip-apps-buttons { justify-content: center; }
    .app-badge { flex: 1 1 160px; justify-content: center; }
}

@media (max-width: 560px) {
    .contact-strip { padding: 26px 18px 22px; }
    .cstrip-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SİPARİŞ AKIŞI — Order Flow
   ============================================ */
.order-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
}

.flow-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 26px 28px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.flow-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.flow-step {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    width: 54px;
    height: 34px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px -8px rgba(24,107,166,0.5);
}

.flow-icon {
    width: 72px;
    height: 72px;
    margin: 14px auto 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-bg), rgba(27,154,170,0.14));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: var(--transition);
}

.flow-card:hover .flow-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transform: scale(1.05);
}

.flow-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.flow-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

.flow-line {
    position: absolute;
    top: 54px;
    right: -18px;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.flow-card:last-child .flow-line { display: none; }

@media (max-width: 900px) {
    .order-flow-grid { grid-template-columns: repeat(2, 1fr); }
    .flow-line { display: none; }
}

@media (max-width: 520px) {
    .order-flow-grid { grid-template-columns: 1fr; }
}

/* ============================================
   TESLİMAT BÖLGELERİ — Zones
   ============================================ */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-bottom: 26px;
}

.zone-tile {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 14px 16px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.zone-tile::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: left 0.45s ease;
}

.zone-tile:hover::before { left: 0; }

.zone-tile:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.zone-tile i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.zone-tile span {
    display: block;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.zone-tile em {
    font-style: normal;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    display: inline-block;
    background: var(--light);
    padding: 3px 10px;
    border-radius: 50px;
}

.zone-priority em {
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05));
    color: #047857;
}

.zones-note {
    background: var(--white);
    border: 1px dashed var(--primary);
    border-radius: 14px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text);
}

.zones-note i {
    color: var(--primary);
    font-size: 1.2rem;
}

.zones-note a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 900px) {
    .zones-grid { grid-template-columns: repeat(3, 1fr); }
}

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

/* ============================================
   SEO FAQ — Accordion
   ============================================ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0;
    transition: var(--transition);
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 12px 28px -16px rgba(24,107,166,0.25);
}

.faq-item summary {
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
    list-style: none;
    user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary i {
    color: var(--primary);
    transition: transform 0.3s;
    font-size: 0.85rem;
}

.faq-item[open] summary i { transform: rotate(180deg); }

.faq-item summary:hover { color: var(--primary); }

.faq-item p {
    padding: 0 22px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

.faq-item p strong { color: var(--primary-dark); }
.faq-item p a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

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

/* ============================================
   BRAND SEO BLOCK
   ============================================ */
.brand-seo-block {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--light) 0%, #ffffff 100%);
    border-top: 1px solid var(--border);
}

.brand-seo-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.brand-seo-heading {
    text-align: center;
    margin-bottom: 42px;
}

.brand-seo-heading h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    margin-top: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.brand-seo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.brand-seo-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px 28px;
    transition: var(--transition);
}

.brand-seo-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.brand-seo-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-seo-card h3 i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary-bg);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.brand-seo-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.brand-seo-card p strong { color: var(--text); }
.brand-seo-card p a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

.brand-seo-cta {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 32px;
    text-align: center;
    box-shadow: var(--shadow);
}

.brand-seo-cta p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

@media (max-width: 768px) {
    .brand-seo-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER SEO — Keyword Cluster
   ============================================ */
.footer-seo {
    background: #0a1320;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 0 34px;
}

.footer-seo-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-seo h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.footer-seo p {
    color: rgba(255,255,255,0.62);
    font-size: 0.85rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

.footer-seo p strong {
    color: rgba(255,255,255,0.88);
    font-weight: 600;
}

.footer-seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-seo-tags li a {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-seo-tags li a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

