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

:root {
    /* Color Palette */
    --bg-primary: #080c14;
    --bg-secondary: #0f1524;
    --bg-card: rgba(20, 28, 48, 0.7);
    --bg-input: rgba(10, 16, 28, 0.9);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --accent-color: #f59e0b; /* Warm gold highlight matching Ottoman/Gold themes */
    --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #e11d48 100%);
    --hover-gradient: linear-gradient(135deg, #d97706 0%, #be123c 100%);
    
    --card-border: rgba(255, 255, 255, 0.05);
    --card-border-active: rgba(245, 158, 11, 0.3);
    
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;

    /* Kategori Renkleri */
    --theme-yemek:   #e31e24;
    --theme-market:  #0082c8;
    --theme-hediye:  #8b5cf6;
    --theme-dijital: #00c0f3;
    --theme-oyun:    #33ff33;
    --theme-mobil:   #f59e0b;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.5);
    --glow-accent: 0 0 20px rgba(245, 158, 11, 0.25);
    --glass-blur: blur(16px);
}

/* ==========================================================================
   RESET & BASICS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* ==========================================================================
   LAYOUT CONTAINERS & UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(245, 158, 11, 0.2);
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--hover-gradient);
    transform: translateY(-1px);
    box-shadow: var(--glow-accent);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-1px);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.25);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.header-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 12, 20, 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--card-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    gap: 8px;
}

.brand-logo {
    height: 46px;
    width: auto;
    display: block;
    border-radius: 8px;
}

.brand-logo-lg {
    height: 66px;
}

.logo-icon {
    width: 28px;
    height: 28px;
    background: var(--accent-gradient);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '₺';
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    -webkit-text-fill-color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.3rem;
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 100px 0 70px 0;
    overflow: hidden;
    text-align: center;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 750px;
    margin: 0 auto;
}

.hero-logo {
    display: block;
    margin: 0 auto 36px auto;
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 12px 48px rgba(245,158,11,0.25));
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

/* ==========================================================================
   SERVICE CARDS GRID
   ========================================================================== */
.service-group-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 36px 0 4px;
    padding-left: 12px;
    border-left: 3px solid var(--accent-color);
    color: var(--text-primary);
    text-align: left;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: all 0.3s ease;
}

.service-logo {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.service-logo svg {
    max-width: 64px;
    max-height: 64px;
}

/* Kategori SVG ikon rengi — kartın accent rengini alır */
.svc-icon svg {
    color: var(--svc-color, #f59e0b);
    width: 64px;
    height: 64px;
}

.service-logo img {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.service-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.service-rate-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card .btn-whatsapp {
    width: 100%;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: 6px;
    margin-top: auto;
}

/* Servis kartı ikon + hover renkleri */
.s-yemek   { --svc-color: #e31e24; }
.s-market  { --svc-color: #0082c8; }
.s-hediye  { --svc-color: #8b5cf6; }
.s-dijital { --svc-color: #00c0f3; }
.s-oyun    { --svc-color: #33ff33; }
.s-mobil   { --svc-color: #f59e0b; }

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(25, 35, 59, 0.9);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.service-card:hover .service-logo {
    transform: scale(1.08);
}

.s-yemek:hover   { border-color: rgba(227, 30, 36, 0.4);   box-shadow: 0 10px 25px rgba(227, 30, 36, 0.15); }
.s-yemek:hover::before   { background: var(--theme-yemek); }

.s-market:hover  { border-color: rgba(0, 130, 200, 0.4);   box-shadow: 0 10px 25px rgba(0, 130, 200, 0.15); }
.s-market:hover::before  { background: var(--theme-market); }

.s-hediye:hover  { border-color: rgba(139, 92, 246, 0.4);  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15); }
.s-hediye:hover::before  { background: var(--theme-hediye); }

.s-dijital:hover { border-color: rgba(0, 192, 243, 0.4);   box-shadow: 0 10px 25px rgba(0, 192, 243, 0.15); }
.s-dijital:hover::before { background: var(--theme-dijital); }

.s-oyun:hover    { border-color: rgba(51, 255, 51, 0.3);   box-shadow: 0 10px 25px rgba(51, 255, 51, 0.1); }
.s-oyun:hover::before    { background: var(--theme-oyun); }

.s-mobil:hover   { border-color: rgba(245, 158, 11, 0.4);  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.15); }
.s-mobil:hover::before   { background: var(--theme-mobil); }


/* ==========================================================================
   SIMPLIFIED CALCULATOR & REQUEST GRID
   ========================================================================== */
.calc-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.calc-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-title span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.label-text {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Calculator specific dropdown */
select.form-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 12px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

select.form-input:focus {
    border-color: var(--accent-color);
}

/* Slider and range styles */
.input-group {
    margin-bottom: 20px;
}

.range-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.amount-input-wrapper {
    position: relative;
    width: 150px;
}

.amount-input-wrapper input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 8px 30px 8px 12px;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: right;
    font-size: 1.05rem;
}

.amount-input-wrapper input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.amount-input-wrapper::after {
    content: '₺';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-weight: 600;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: var(--bg-input);
    outline: none;
    margin: 12px 0;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
    transition: transform 0.1s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.slider-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Calculations Breakdown Panel */
.calc-breakdown {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.calc-row:last-child {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px dashed var(--card-border);
}

.calc-row.total {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.calc-row.total .value {
    font-size: 1.45rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
}

/* ==========================================================================
   SIMPLIFIED INPUT FORMS
   ========================================================================== */
.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 10px 14px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.12);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.checkbox-group input {
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-group a {
    color: var(--accent-color);
}

/* ==========================================================================
   FAQ & ACCORDION
   ========================================================================== */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    text-align: left;
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-q-num {
    flex: 0 0 auto;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.faq-q-text {
    flex: 1 1 auto;
}

/* Plus / minus icon drawn in CSS */
.faq-icon {
    flex: 0 0 auto;
    position: relative;
    width: 18px;
    height: 18px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--text-secondary);
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon::after {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    padding: 0 20px 0 52px;
}

/* Active / open states for FAQ */
.faq-item.active {
    background: rgba(245, 158, 11, 0.04);
    border-color: var(--card-border-active);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background: var(--accent-color);
}

.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg); /* vertical bar folds into the horizontal -> minus */
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding-bottom: 18px;
    transition: max-height 0.4s ease-in;
}

@media (max-width: 560px) {
    .faq-q-num { display: none; }
    .faq-answer { padding-left: 20px; }
}

/* ==========================================================================
   MÜŞTERİ DÖNÜŞLERİ / SLIDER
   ========================================================================== */
.proof-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 1100px;
    margin: 0 auto;
}

.proof-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    padding: 4px 0 8px;
}

.proof-slider::-webkit-scrollbar { display: none; }

.proof-slider-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proof-slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}

.proof-card {
    flex-shrink: 0;
    width: 240px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.proof-card:hover {
    transform: translateY(-3px);
    border-color: var(--card-border-active);
}

.proof-card img {
    width: 100%;
    display: block;
}

.proof-card figcaption {
    padding: 10px 12px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Lightbox */
.proof-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(2, 5, 12, 0.92);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 30px;
}

.proof-lightbox.open {
    display: flex;
}

.proof-lightbox figure {
    max-width: 92vw;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.proof-lightbox img {
    max-width: 100%;
    max-height: 82vh;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.proof-lightbox figcaption {
    color: var(--text-primary);
    font-size: 0.95rem;
    text-align: center;
    max-width: 600px;
}

.proof-lightbox-close {
    position: absolute;
    top: 18px;
    right: 26px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
}

/* Admin gallery management grid */
.proof-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.proof-admin-card {
    background: var(--bg-input);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.proof-admin-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.proof-admin-caption {
    padding: 8px 10px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    flex: 1 1 auto;
}

.proof-admin-card form {
    padding: 8px 10px;
}

.proof-admin-card .btn-icon-delete {
    width: 100%;
    border-radius: 6px;
    font-size: 0.8rem;
    padding: 6px 8px;
    cursor: pointer;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #05080e;
    border-top: 1px solid var(--card-border);
    padding: 50px 0 30px 0;
    font-size: 0.9rem;
}

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

.footer-desc {
    color: var(--text-secondary);
    margin-top: 12px;
    font-size: 0.85rem;
    max-width: 320px;
}

.footer-col-title {
    font-size: 1rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: white;
}

.contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info svg {
    color: var(--accent-color);
    width: 16px;
    height: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copy-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.legal-links {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.legal-links a:hover {
    color: white;
}

/* ==========================================================================
   ADMIN LOGIN & DASHBOARD SYSTEM
   ========================================================================== */
.admin-login-body {
    background: radial-gradient(circle at center, #0f1524 0%, #080c14 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 400px;
}

.login-header {
    text-align: center;
    margin-bottom: 25px;
}

.login-header .logo {
    justify-content: center;
    margin-bottom: 10px;
}

.alert {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #fca5a5;
}

.alert-success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #a7f3d0;
}

.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

.sidebar {
    background: var(--bg-secondary);
    border-right: 1px solid var(--card-border);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-brand {
    margin-bottom: 30px;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: auto;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(245, 158, 11, 0.08);
    color: white;
}

.sidebar-link.active {
    border-left: 2px solid var(--accent-color);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.sidebar-link svg {
    width: 18px;
    height: 18px;
}

.admin-main {
    padding: 30px;
    background: var(--bg-primary);
    overflow-y: auto;
}

.admin-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-title {
    font-size: 1.8rem;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Metrics Dashboard Cards */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card {
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
}

.metric-val {
    font-size: 1.55rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.metric-footer {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Requests Table & Filter Panel */
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-group {
    display: flex;
    gap: 10px;
}

.filter-select {
    background: var(--bg-input);
    border: 1px solid var(--card-border);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    outline: none;
}

.filter-select:focus {
    border-color: var(--accent-color);
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.85rem;
}

.admin-table th {
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 2px solid var(--card-border);
    padding: 12px 16px;
    color: var(--text-secondary);
    font-weight: 600;
}

.admin-table td {
    border-bottom: 1px solid var(--card-border);
    padding: 12px 16px;
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-paid {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Actions in Table */
.action-buttons {
    display: flex;
    gap: 6px;
}

.btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    color: white;
}

.btn-icon-pay {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-icon-pay:hover {
    background: #10b981;
    color: white;
}

.btn-icon-cancel {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.btn-icon-cancel:hover {
    background: #f59e0b;
    color: white;
}

.btn-icon-delete {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-icon-delete:hover {
    background: #ef4444;
    color: white;
}

/* Settings Form Grid */
.settings-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.form-row-rate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--card-border);
}

.form-row-rate:last-child {
    border-bottom: none;
}

.rate-label-desc {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rate-input-wrapper {
    position: relative;
    width: 80px;
}

.rate-input-wrapper input {
    width: 100%;
    padding: 5px 18px 5px 6px;
    background: var(--bg-input);
    border: 1px solid var(--card-border);
    border-radius: 5px;
    color: white;
    text-align: right;
    font-weight: 600;
    font-size: 0.85rem;
}

.rate-input-wrapper::after {
    content: '%';
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Modal / Info overlay */
.admin-notes-pop {
    font-size: 0.75rem;
    color: var(--text-muted);
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: help;
}

.admin-notes-pop:hover {
    white-space: normal;
    word-break: break-all;
    color: var(--text-secondary);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1100px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .calc-section-grid {
        grid-template-columns: 1fr;
    }
    .admin-layout {
        grid-template-columns: 1fr;
    }
    .sidebar {
        display: none;
    }
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .settings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    /* Nav: hide desktop links + action buttons, show hamburger */
    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
        border-radius: 8px;
        background: var(--bg-card);
        border: 1px solid var(--card-border);
        color: var(--text-primary);
        cursor: pointer;
    }

    /* Mobile dropdown panel */
    .mobile-nav-panel {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--card-border);
        padding: 16px 20px 20px;
        flex-direction: column;
        gap: 0;
        z-index: 999;
        box-shadow: var(--shadow-md);
    }

    .mobile-nav-panel.open {
        display: flex;
    }

    .mobile-nav-panel .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .mobile-nav-panel .nav-links li a {
        display: block;
        padding: 12px 4px;
        border-bottom: 1px solid var(--card-border);
        font-size: 1rem;
        color: var(--text-primary);
    }

    .mobile-nav-panel .nav-links li:last-child a {
        border-bottom: none;
    }

    .mobile-nav-panel .nav-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 16px;
        width: 100%;
    }

    .mobile-nav-panel .nav-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

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

    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   AÇIK TEMA (yalnızca public sayfalar — body.site-light)
   Admin paneli koyu kalır; bu blok sadece .site-light altında geçerlidir.
   ========================================================================== */
.site-light {
    --bg-primary: #ffffff;
    --bg-secondary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-input: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;

    --card-border: rgba(15, 23, 42, 0.10);
    --card-border-active: rgba(245, 158, 11, 0.55);

    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.18);
    --glow-accent: 0 6px 20px rgba(245, 158, 11, 0.30);
}

/* Sticky navbar */
.site-light .header-nav {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--card-border);
}

/* Başlık degradesi beyazda görünmez -> koyu düz renk */
.site-light .section-title {
    background: none;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: currentColor;
    color: var(--text-primary);
}

/* Hizmet kartları */
.site-light .service-card {
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.site-light .service-card:hover {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
}
.site-light .service-name {
    color: var(--text-primary);
}

/* İkincil buton (Destek Hattı) */
.site-light .btn-secondary {
    background: #ffffff;
    border: 1px solid var(--card-border);
}
.site-light .btn-secondary:hover {
    background: #f1f5f9;
}

/* SSS */
.site-light .faq-item {
    background: #ffffff;
}
.site-light .faq-item:hover {
    border-color: rgba(15, 23, 42, 0.18);
}
.site-light .faq-item.active {
    background: rgba(245, 158, 11, 0.06);
}

/* Kanıt galerisi kartları */
.site-light .proof-card {
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

/* Footer */
.site-light .site-footer {
    background: #f8fafc;
    border-top: 1px solid var(--card-border);
}
.site-light .footer-col-title {
    color: var(--text-primary);
}
.site-light .footer-links a:hover {
    color: var(--accent-color);
}

/* ==========================================================================
   BLOG / REHBERLER
   ========================================================================== */
.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.blog-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 24px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    border-color: var(--card-border-active);
}

.blog-card h2 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.blog-card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

.blog-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* Tek makale */
.blog-article {
    max-width: 760px;
}

.blog-breadcrumb {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}
.blog-breadcrumb a { color: var(--text-secondary); }
.blog-breadcrumb a:hover { color: var(--accent-color); }
.blog-breadcrumb span { margin: 0 6px; }

.blog-article-title {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.blog-article-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.article-body { font-size: 1rem; line-height: 1.8; color: var(--text-secondary); }
.article-body h2 {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin: 28px 0 12px;
}
.article-body p { margin-bottom: 16px; }
.article-body ol, .article-body ul { margin: 0 0 16px 22px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--accent-color); text-decoration: underline; }
.article-body strong { color: var(--text-primary); }

.blog-cta {
    margin: 36px 0;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    text-align: center;
}
.blog-cta p { margin-bottom: 14px; font-weight: 600; color: var(--text-primary); }
.blog-cta .btn { margin: 4px; }

.blog-more {
    border-top: 1px solid var(--card-border);
    padding-top: 24px;
}
.blog-more h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--text-primary); }
.blog-more ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.blog-more a { color: var(--text-secondary); font-size: 0.92rem; }
.blog-more a:hover { color: var(--accent-color); }
