/*
Theme Name: Fide Sigorta
Theme URI: https://fidesigorta.com
Author: Fide Sigorta
Author URI: https://fidesigorta.com
Description: Fide Sigorta Aracilik Hizmetleri resmi WordPress temasi. Sigorta aracilik hizmetleri icin ozel tasarlanmis, mobil uyumlu ve modern tasarimli tema.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fide-sigorta
Tags: one-page, custom-logo, responsive-layout, insurance
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

/* ════════════════════════════════════════
   CSS VARIABLES
════════════════════════════════════════ */
:root {
    --green-deep: #1b4332;
    --green-primary: #2d6a4f;
    --green-mid: #52b788;
    --green-light: #95d5b2;
    --green-soft: #b7e4c7;
    --green-pale: #d8f3dc;
    --green-whisper: #f0faf3;
    --accent: #40916c;
    --brown: #6b4423;
    --brown-light: #a67c52;
    --cream: #fefcf8;
    --warm-white: #fffdf9;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-400: #ced4da;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    color: var(--gray-700);
    background: var(--warm-white);
    overflow-x: hidden;
    line-height: 1.65;
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    background: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s ease;
}

.navbar.scrolled {
    height: 66px;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-logo img {
    width: 200px;
    height: auto;
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-logo img { width: 170px; }

.nav-center {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 5px 6px;
}

.nav-center a {
    text-decoration: none;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-center a:hover,
.nav-center a.active {
    background: var(--white);
    color: var(--green-primary);
    box-shadow: var(--shadow-xs);
}

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-phone:hover { color: var(--green-primary); }

.nav-phone svg {
    width: 16px; height: 16px;
    stroke: var(--green-mid);
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--green-primary);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-cta-btn:hover {
    background: var(--green-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45, 106, 79, 0.25);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    width: 22px; height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    text-decoration: none;
    padding: 10px 0;
}

.mobile-close {
    position: absolute;
    top: 20px; right: 24px;
    font-size: 30px;
    cursor: pointer;
    color: var(--gray-800);
    background: none;
    border: none;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 48px 80px;
    background: var(--warm-white);
}

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

.hero-blob-1 {
    position: absolute;
    top: -10%;
    right: -8%;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--green-pale) 0%, transparent 70%);
    opacity: 0.6;
}

.hero-blob-2 {
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, #fef3e2 0%, transparent 70%);
    opacity: 0.5;
}

.hero-dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--gray-200) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.35;
}

.hero-inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 4.5vw, 60px);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-text h1 .highlight {
    display: inline;
    background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .subtitle {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: var(--green-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-main:hover {
    background: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(45, 106, 79, 0.25);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: var(--white);
    color: var(--gray-800);
    border: 1.5px solid var(--gray-200);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--green-light);
    color: var(--green-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.hero-stats {
    display: flex;
    gap: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-200);
}

.stat h3 {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--green-primary);
}

.stat p {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
}

/* Hero Right Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-shield {
    width: 380px;
    height: 380px;
    position: relative;
}

.hero-shield svg { width: 100%; height: 100%; }

.hero-float {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--gray-100);
    animation: heroFloat 5s ease-in-out infinite;
}

.hero-float-1 { top: 8%; left: -20px; animation-delay: 0s; }
.hero-float-2 { bottom: 18%; right: -30px; animation-delay: 1.8s; }
.hero-float-3 { bottom: 0%; left: 10px; animation-delay: 3.5s; }

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

.hf-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.hf-icon.g { background: var(--green-whisper); }
.hf-icon.w { background: #fef7ed; }
.hf-icon.b { background: #eef3ff; }

.hf-text { font-size: 13px; font-weight: 600; color: var(--gray-800); }
.hf-sub { font-size: 11px; color: var(--gray-600); font-weight: 400; }

/* ════════════════════════════════════════
   FEATURED SLIDER
════════════════════════════════════════ */
.featured-section {
    padding: 0 0 0 0;
    margin: -24px auto 0;
    position: relative;
    z-index: 10;
    max-width: 100%;
    overflow: hidden;
}

.featured-header {
    text-align: center;
    margin-bottom: 16px;
    padding: 0 48px;
}

.featured-header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 12px;
}

.slider-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    color: var(--gray-700);
}

.slider-btn:hover {
    border-color: var(--green-mid);
    background: var(--green-whisper);
    color: var(--green-primary);
}

.slider-btn:active { transform: scale(0.93); }

.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--green-mid);
}

.slider-viewport {
    overflow: hidden;
    padding: 4px 0 8px;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0 48px;
    cursor: grab;
}

.slider-track:active { cursor: grabbing; }

.featured-card {
    border-radius: var(--radius);
    padding: 18px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    min-width: calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    flex-shrink: 0;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Card themes */
.featured-pet { background: linear-gradient(135deg, #fef8f0 0%, #fcecd6 50%, #f8deb8 100%); border: 1px solid rgba(180, 130, 60, 0.1); }
.featured-cyber { background: linear-gradient(135deg, #f0f4fd 0%, #dfe9fb 50%, #cddaf6 100%); border: 1px solid rgba(60, 100, 180, 0.1); }
.featured-health { background: linear-gradient(135deg, #fef0f4 0%, #fce0ea 50%, #f8cede 100%); border: 1px solid rgba(180, 60, 100, 0.1); }
.featured-ev { background: linear-gradient(135deg, #eefcf0 0%, #d4f5dc 50%, #baedc8 100%); border: 1px solid rgba(40, 160, 80, 0.1); }
.featured-office { background: linear-gradient(135deg, #fdf8ee 0%, #f5edd4 50%, #ede0b8 100%); border: 1px solid rgba(140, 120, 50, 0.1); }
.featured-tss { background: linear-gradient(135deg, #f0effe 0%, #e2dffb 50%, #d4d0f8 100%); border: 1px solid rgba(100, 60, 180, 0.1); }

.featured-illust { flex-shrink: 0; width: 52px; height: 52px; margin-bottom: 8px; }
.featured-illust svg { width: 100%; height: 100%; }

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 3px 9px;
    border-radius: 50px;
    margin-bottom: 4px;
    width: fit-content;
}

.featured-pet .featured-badge { background: rgba(180,100,20,0.08); color: #a0620a; }
.featured-cyber .featured-badge { background: rgba(40,80,160,0.08); color: #2850a0; }
.featured-health .featured-badge { background: rgba(180,40,80,0.08); color: #a03060; }
.featured-ev .featured-badge { background: rgba(40,140,70,0.08); color: #1a7a3a; }
.featured-office .featured-badge { background: rgba(120,100,30,0.08); color: #6a5a1a; }
.featured-tss .featured-badge { background: rgba(100,60,180,0.08); color: #5a30a0; }

.featured-badge::before { content: '\2605'; font-size: 9px; }

.featured-content h3 { font-family: 'Fraunces', serif; font-size: 15px; font-weight: 700; margin-bottom: 4px; }

.featured-pet .featured-content h3 { color: #5c3a10; }
.featured-cyber .featured-content h3 { color: #1a3460; }
.featured-health .featured-content h3 { color: #5c1a30; }
.featured-ev .featured-content h3 { color: #1a4a2a; }
.featured-office .featured-content h3 { color: #4a3a10; }
.featured-tss .featured-content h3 { color: #3a1a60; }

.featured-content p {
    font-size: 11.5px;
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-pet .featured-content p { color: #8a6a3a; }
.featured-cyber .featured-content p { color: #4a6a9a; }
.featured-health .featured-content p { color: #8a4a60; }
.featured-ev .featured-content p { color: #4a7a5a; }
.featured-office .featured-content p { color: #7a6a3a; }
.featured-tss .featured-content p { color: #6a5a8a; }

.featured-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 6px; }

.featured-tag {
    font-size: 10px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 50px;
}

.featured-pet .featured-tag { background: rgba(180,100,20,0.07); color: #8a5a1a; border: 1px solid rgba(180,100,20,0.1); }
.featured-cyber .featured-tag { background: rgba(40,80,160,0.07); color: #2a4a80; border: 1px solid rgba(40,80,160,0.1); }
.featured-health .featured-tag { background: rgba(180,40,80,0.07); color: #7a2a50; border: 1px solid rgba(180,40,80,0.1); }
.featured-ev .featured-tag { background: rgba(40,140,70,0.07); color: #2a6a3a; border: 1px solid rgba(40,140,70,0.1); }
.featured-office .featured-tag { background: rgba(120,100,30,0.07); color: #5a4a1a; border: 1px solid rgba(120,100,30,0.1); }
.featured-tss .featured-tag { background: rgba(100,60,180,0.07); color: #4a2a70; border: 1px solid rgba(100,60,180,0.1); }

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.featured-pet .featured-link { color: #a0620a; }
.featured-cyber .featured-link { color: #2850a0; }
.featured-health .featured-link { color: #a03060; }
.featured-ev .featured-link { color: #1a7a3a; }
.featured-office .featured-link { color: #6a5a1a; }
.featured-tss .featured-link { color: #5a30a0; }
.featured-card:hover .featured-link { gap: 10px; }

.featured-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    transition: opacity 0.4s ease;
    pointer-events: none;
    width: 200px; height: 200px;
}

.featured-pet::after { top: -60px; right: -40px; background: #b4641e; }
.featured-cyber::after { bottom: -60px; right: -40px; background: #2850a0; }
.featured-health::after { top: -60px; right: -40px; background: #b43060; }
.featured-ev::after { bottom: -60px; right: -40px; background: #28a050; }
.featured-office::after { top: -60px; right: -40px; background: #8a7a30; }
.featured-tss::after { bottom: -60px; right: -40px; background: #6430b0; }
.featured-card:hover::after { opacity: 0.09; }

.feat-deco { position: absolute; pointer-events: none; opacity: 0.04; }

/* ════════════════════════════════════════
   SECTION COMMON
════════════════════════════════════════ */
.section {
    padding: 96px 48px;
    max-width: 1240px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--green-mid);
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--green-light);
    border-radius: 1px;
}

.section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 560px;
    line-height: 1.7;
}

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

.section-header-center .section-subtitle { margin: 0 auto; }

/* ════════════════════════════════════════
   PRODUCTS
════════════════════════════════════════ */
.products-section {
    background: var(--gray-50);
    padding: 96px 0;
    margin-top: 56px;
}

.products-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
}

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

.p-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--gray-100);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.p-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-mid), var(--green-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.p-card:hover::before { transform: scaleX(1); }

.p-card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.p-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.p-card > p {
    font-size: 13.5px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 18px;
}

.p-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }

.p-tags li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gray-700);
    padding: 5px 12px;
    background: var(--gray-50);
    border-radius: 50px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
    cursor: pointer;
}

.p-tags li:hover {
    border-color: var(--green-mid);
    color: var(--green-primary);
    background: var(--green-whisper);
}

.p-tags li::before {
    content: '\2713';
    font-size: 10px;
    font-weight: 700;
    color: var(--green-mid);
}

.ic-car { background: var(--green-whisper); }
.ic-health { background: #eef5ff; }
.ic-home { background: #fff6ed; }
.ic-travel { background: #f4eeff; }
.ic-life { background: #fff0f3; }
.ic-biz { background: #eefaf4; }
.ic-fin { background: #fffaed; }
.ic-other { background: #f4f0ff; }

/* ════════════════════════════════════════
   WHY US
════════════════════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.w-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.w-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-pale);
}

.w-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    background: var(--green-whisper);
}

.w-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.w-card p {
    font-size: 13.5px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-section {
    padding: 0 48px 96px;
    max-width: 1240px;
    margin: 0 auto;
}

.cta-banner {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-primary) 60%, var(--green-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 72px 56px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -40%; right: -15%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(149, 213, 178, 0.12);
    pointer-events: none;
}

.cta-text { position: relative; z-index: 1; }

.cta-text h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(26px, 3vw, 38px);
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 14px;
}

.cta-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 28px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--white);
    color: var(--green-deep);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.cta-cards {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-card:hover {
    background: rgba(255,255,255,0.16);
    transform: translateX(4px);
}

.cta-card-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.cta-card-label { font-size: 11px; opacity: 0.55; text-transform: uppercase; letter-spacing: 1px; }
.cta-card-value { font-size: 14px; font-weight: 600; margin-top: 1px; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.6);
    padding: 72px 48px 36px;
}

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

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

.footer-brand img {
    width: 180px;
    height: auto;
    margin-bottom: 14px;
    border-radius: 8px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.08);
}

.footer-brand p { font-size: 13.5px; line-height: 1.7; margin-bottom: 16px; }

.footer-brand .company-info {
    font-size: 11.5px;
    opacity: 0.4;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--white);
    font-family: 'Fraunces', serif;
    font-size: 15px;
    margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }

.footer-col a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13.5px;
    transition: all 0.2s ease;
}

.footer-col a:hover { color: var(--green-light); padding-left: 3px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.5;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: #95d5b2;
}

/* ════════════════════════════════════════
   PRODUCT MODAL
════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 560px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--gray-600);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.modal-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
    background: var(--green-whisper);
}

.modal-box h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.modal-box .modal-subtitle {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-box .modal-desc {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 20px;
}

.modal-box .modal-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.modal-box .modal-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--gray-700);
    line-height: 1.55;
}

.modal-box .modal-features li::before {
    content: '\2713';
    font-weight: 700;
    color: var(--green-mid);
    flex-shrink: 0;
    margin-top: 1px;
}

.modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--green-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.modal-cta:hover {
    background: var(--green-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45, 106, 79, 0.25);
}

/* ════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════
   COOKIE BANNER
════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 3000;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
    padding: 20px 48px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    animation: cookieSlideUp 0.4s ease;
}

.cookie-banner.show { display: flex; }

@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-text {
    flex: 1;
    font-size: 13.5px;
    color: var(--gray-700);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--green-primary);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-accept {
    background: var(--green-primary);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--green-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.25);
}

.cookie-btn-reject {
    background: var(--gray-50);
    color: var(--gray-700);
    border: 1.5px solid var(--gray-200);
}

.cookie-btn-reject:hover {
    border-color: var(--gray-400);
    background: var(--gray-100);
}

/* ════════════════════════════════════════
   LEGAL PAGES (KVKK, Gizlilik, Cerez)
════════════════════════════════════════ */
.nav-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--green-primary);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1.5px solid var(--gray-200);
    transition: all 0.3s ease;
}
.nav-back:hover {
    border-color: var(--green-light);
    background: var(--green-whisper);
}

.page-header {
    padding: 140px 48px 48px;
    max-width: 900px;
    margin: 0 auto;
}
.page-header .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--green-mid);
    margin-bottom: 14px;
}
.page-header .section-label::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--green-light);
    border-radius: 1px;
}
.page-header h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 12px;
}
.page-header .update-date {
    font-size: 14px;
    color: var(--gray-600);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 48px 96px;
}
.legal-content h2 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 40px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--green-pale);
}
.legal-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 28px;
    margin-bottom: 10px;
}
.legal-content p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
    margin: 12px 0 18px 24px;
}
.legal-content li {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 6px;
}
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 24px;
    font-size: 14px;
}
.legal-content table th,
.legal-content table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--gray-200);
}
.legal-content table th {
    background: var(--green-whisper);
    color: var(--gray-900);
    font-weight: 600;
}
.legal-content table td {
    color: var(--gray-700);
}
.legal-content .info-box {
    background: var(--green-whisper);
    border: 1px solid var(--green-pale);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 24px 0;
}
.legal-content .info-box p {
    margin-bottom: 6px;
    font-size: 14px;
}
.legal-content .info-box p:last-child { margin-bottom: 0; }
.legal-content .warning {
    background: #fff8ed;
    border: 1px solid #fde8c8;
    border-radius: var(--radius);
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 13px;
    color: #8a6a2a;
    font-style: italic;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-text .subtitle { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-banner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .featured-card {
        min-width: calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .nav-center { display: none; }
    .nav-phone { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 100px 20px 60px; }
    .section { padding: 64px 20px; }
    .products-inner { padding: 0 20px; }
    .product-grid { grid-template-columns: 1fr; }
    .featured-section { padding: 0 20px; }
    .featured-banner { grid-template-columns: 1fr; }
    .featured-card {
        flex-direction: column; text-align: center; padding: 28px 20px; gap: 16px;
        min-width: 100%; max-width: 100%;
    }
    .featured-illust { width: 48px; height: 48px; }
    .featured-tags { justify-content: center; }
    .featured-badge { margin: 0 auto 4px; }
    .slider-track { padding: 0 20px; gap: 14px; }
    .featured-header { padding: 0 20px; }
    .why-grid { grid-template-columns: 1fr; }
    .cta-section { padding: 0 20px 64px; }
    .cta-banner { padding: 40px 24px; }
    footer { padding: 56px 20px 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .modal-box { padding: 28px 20px; }
    .modal-box h3 { font-size: 19px; }
    .cookie-banner {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        text-align: center;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    /* Legal pages responsive */
    .page-header { padding: 120px 20px 32px; }
    .legal-content { padding: 0 20px 64px; }
    .legal-content table { font-size: 12px; display: block; overflow-x: auto; }
    .legal-content table th,
    .legal-content table td { padding: 8px 10px; white-space: nowrap; }
}
