/* Dark Theme (Default) */
:root {
    --bg-main: #0b1120;
    --bg-soft: #020617;
    --bg-card: #020617;
    --border-subtle: rgba(148, 163, 184, 0.35);
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --accent: #eab308;
    --accent-soft: rgba(234, 179, 8, 0.12);
    --danger: #ef4444;
    --navbar-bg: linear-gradient(to bottom, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92));
    --navbar-border: rgba(15, 23, 42, 1);
}

/* Light Theme */
[data-theme="light"] {
    --bg-main: #f8fafc;
    --bg-soft: #ffffff;
    --bg-card: #ffffff;
    --border-subtle: rgba(203, 213, 225, 0.6);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --accent: #d97706;
    --accent-soft: rgba(217, 119, 6, 0.08);
    --danger: #dc2626;
    --navbar-bg: linear-gradient(to bottom, rgba(248, 250, 252, 0.98), rgba(248, 250, 252, 0.92));
    --navbar-border: rgba(226, 232, 240, 1);
}

[data-theme="light"] body {
    background:
        radial-gradient(circle at top left, rgba(241, 245, 249, 0.8) 0, transparent 55%),
        radial-gradient(circle at bottom right, rgba(226, 232, 240, 0.6) 0, transparent 60%),
        var(--bg-main);
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(55, 65, 81, 0.6) 0, transparent 55%),
        radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.85) 0, transparent 60%),
        var(--bg-main);
    color: var(--text-main);
}

.navbar {
    background: var(--navbar-bg) !important;
    border-bottom: 1px solid var(--navbar-border);
    backdrop-filter: blur(14px);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.navbar-brand span {
    letter-spacing: .05em;
}

/* Light mode - SARIKAYA siyah renk */
[data-theme="light"] .navbar-brand span:first-child {
    color: #000000 !important;
}

/* Light mode - Top menü (navbar) belirgin siyah */
[data-theme="light"] .nav-link {
    color: #0f172a !important;
    font-weight: 600;
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active {
    color: #000000 !important;
}

/* Light mode - Hero bölümü açık gri arka plan */
[data-theme="light"] .hero {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* Light mode - Hero içindeki yazılar */
[data-theme="light"] .hero-title {
    color: #0f172a;
    font-weight: 800;
}

[data-theme="light"] .hero-subtitle {
    color: #334155;
    font-weight: 500;
}

/* Hizmet Bölgelerimiz Section */
.hizmet-bolgeleri {
    background: var(--bg-soft);
    transition: all 0.3s ease;
}

.service-locations {
    font-size: 0.75rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.7;
    transition: opacity 0.7s ease;
}

/* Dark mode - Service locations daha belirgin */
[data-theme="dark"] .service-locations {
    color: #e2e8f0;
    opacity: 0.8;
}

.service-locations:hover {
    opacity: 1;
}

.location-tag {
    display: inline-block;
    margin: 0 4px;
    transition: all 0.3s ease;
    cursor: default;
}

.location-tag:hover {
    color: var(--accent);
    transform: scale(1.1);
}

/* Örnek Bakım Kaydı ViewComponent */
.ornek-bakim-kaydi {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.bakim-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Light Mode - Canlı Beyaz */
[data-theme="light"] .bakim-card {
    background: #ffffff;
    border: 1px solid rgba(203, 213, 225, 0.8);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.bakim-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .bakim-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.bakim-header {
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-card) 100%);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
}

[data-theme="light"] .bakim-header {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.bakim-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.bakim-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0.5rem 0 0.25rem;
}

.bakim-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.bakim-body {
    padding: 1.5rem;
}

.bakim-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-soft);
}

[data-theme="light"] .bakim-footer {
    background: #f8fafc;
}

.footer-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.bakim-section {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed var(--border-subtle);
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.bakim-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
    gap: 1rem;
}

.bakim-row:last-child {
    border-bottom: none;
}

.row-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.row-label i {
    color: var(--accent);
    font-size: 0.9rem;
}

.row-value {
    font-size: 0.875rem;
    color: var(--text-main);
    font-weight: 500;
    text-align: right;
    flex: 1;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.status-completed {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

[data-theme="light"] .status-completed {
    background: rgba(34, 197, 94, 0.2);
    color: #15803d;
}

.status-planned {
    background: rgba(234, 179, 8, 0.15);
    color: #ca8a04;
}

[data-theme="light"] .status-planned {
    background: rgba(234, 179, 8, 0.2);
    color: #a16207;
}

/* Responsive */
@media (max-width: 576px) {
    .bakim-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .row-value {
        text-align: left;
    }
}

.nav-link {
    color: var(--text-muted) !important;
    font-size: .9rem;
}

.nav-link.active,
.nav-link:hover {
    color: var(--text-main) !important;
}

.hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: rgba(2, 6, 23, 0.4);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    gap: 2.5rem;
}

@media (max-width: 991.98px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    border-radius: 999px;
    padding: 3px .9rem;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--border-subtle);
    font-size: .78rem;
    color: var(--text-muted);
}

.hero-pill-dot {
    width: 1.2rem;
    height: 1.2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 2L14.5 9.5L22 12L14.5 14.5L12 22L9.5 14.5L2 12L9.5 9.5L12 2Z' fill='%23eab308' opacity='0.9'/%3E%3Cpath d='M12 5L13.5 10.5L19 12L13.5 13.5L12 19L10.5 13.5L5 12L10.5 10.5L12 5Z' fill='%23fbbf24' opacity='0.7'/%3E%3Ccircle cx='12' cy='12' r='3' fill='%23fef3c7' opacity='0.8'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    0%, 100% { transform: rotate(0deg); opacity: 0.9; }
    50% { transform: rotate(180deg); opacity: 1; }
}

.hero-title {
    font-size: clamp(2.4rem, 3.6vw, 3.4rem);
    font-weight: 700;
    letter-spacing: .03em;
}

.hero-subtitle {
    color: var(--text-muted);
    max-width: 640px;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .2rem .6rem;
    border-radius: .75rem;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: .8rem;
}

.btn-accent {
    background: linear-gradient(135deg, #facc15, #eab308);
    color: #111827;
    border-radius: 999px;
    border: none;
    padding-inline: 1.9rem;
    font-weight: 600;
}

.btn-outline-accent {
    border-radius: 999px;
    border-color: var(--border-subtle);
    color: var(--text-main);
    background: transparent;
}

.hero-meta {
    font-size: .78rem;
    color: var(--text-muted);
}

.hero-card {
    border-radius: 1.5rem;
    background: radial-gradient(circle at top left, rgba(234, 179, 8, 0.06), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(55, 65, 81, 0.9);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.95),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    padding: 1.4rem 1.5rem;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: .9rem;
}

.hero-chip {
    font-size: .72rem;
    border-radius: 999px;
    padding: .2rem .6rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.7);
}

.hero-step {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    padding-block: .2rem;
    color: var(--text-muted);
}

.hero-step span:last-child {
    color: var(--text-main);
}

.divider {
    border-top: 1px dashed rgba(75, 85, 99, 0.7);
    margin-block: .7rem;
}

.section {
    padding-block: 4rem;
}

.section-header {
    margin-bottom: 2rem;
}

.section-kicker {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--text-muted);
}

/* Light mode - Section kicker daha koyu */
[data-theme="light"] .section-kicker {
    color: #64748b;
}

.section-title {
    font-weight: 700;
}

/* Light mode - Section title daha koyu */
[data-theme="light"] .section-title {
    color: #020617;
}

.section-text {
    color: var(--text-muted);
    max-width: 620px;
}

/* Light mode - Section text daha koyu */
[data-theme="light"] .section-text {
    color: #475569;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border-radius: 999px;
    padding: .2rem .65rem;
    font-size: .75rem;
    border: 1px solid rgba(55, 65, 81, 0.8);
    color: var(--text-muted);
}

.service-card {
    border-radius: 1.1rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(31, 41, 55, 1);
    padding: 1rem;
    height: 100%;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* Light mode - Service card beyaz arkaplan */
[data-theme="light"] .service-card {
    background: #ffffff;
    border: 1px solid rgba(203, 213, 225, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(234, 179, 8, 0.8);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.9);
}

/* Light mode - Service card hover */
[data-theme="light"] .service-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: all 0.4s ease;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card:hover .service-icon {
    filter: drop-shadow(0 0 12px rgba(191, 149, 63, 0.6));
    transform: scale(1.08);
}

.service-title {
    font-size: 1.05rem;
    font-weight: 600;
}

/* Light mode - Service title daha koyu */
[data-theme="light"] .service-title {
    color: #0f172a;
}

.muted {
    color: var(--text-muted);
}

/* Light mode - Muted text daha koyu */
[data-theme="light"] .muted {
    color: #475569;
}

.bullet-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.bullet-list li {
    font-size: .84rem;
    margin-bottom: .5rem;
    padding-left: 1.8rem;
    position: relative;
}

/* Light mode - Bullet list text daha koyu */
[data-theme="light"] .bullet-list li {
    color: #475569;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 0.9rem;
    height: 0.9rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8 0L9.2 6.8L16 8L9.2 9.2L8 16L6.8 9.2L0 8L6.8 6.8L8 0Z' fill='%23eab308' opacity='0.8'/%3E%3Ccircle cx='8' cy='8' r='2' fill='%23fbbf24'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.price-card {
    border-radius: 1.2rem;
    background: radial-gradient(circle at top left, rgba(234, 179, 8, 0.12), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(234, 179, 8, 0.7);
    padding: 1.8rem 1.6rem;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.95),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    height: 100%;
}

.price-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--accent);
}

#paketler .home-paket-title {
    color: #b45309 !important;
    font-weight: 800;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
}

/* Light mode - Price value daha koyu */
[data-theme="light"] .price-value {
    color: #020617;
}

/* Light mode - Slider tags daha belirgin beyaz */
[data-theme="light"] .slider-tag {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(30, 41, 59, 0.8);
    color: #f8fafc;
    font-weight: 500;
}

[data-theme="light"] .slider-tag-dot::before {
    color: #facc15;
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.7), 0 0 18px rgba(250, 204, 21, 0.45);
}

[data-theme="light"] .slider-tag-dot::after {
    border-color: rgba(250, 204, 21, 0.85);
    opacity: 1;
}

/* Light mode - Tag elements daha belirgin beyaz */
[data-theme="light"] .tag {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(30, 41, 59, 0.8);
    color: #f8fafc;
    font-weight: 500;
}

/* Hero card heading daha beyaz */
.hero-card h3 {
    color: #f8fafc;
    font-weight: 600;
}

/* Dark mode - Btn outline accent text beyaz */
.btn-outline-accent {
    color: #f8fafc !important;
}

.btn-outline-accent:hover {
    color: #111827 !important;
    background: linear-gradient(135deg, #facc15, #eab308) !important;
    border-color: #eab308 !important;
}

/* Light mode - Btn outline accent text siyah */
[data-theme="light"] .btn-outline-accent {
    color: #0f172a !important;
    font-weight: 600;
}

[data-theme="light"] .btn-outline-accent:hover {
    color: #111827 !important;
    background: linear-gradient(135deg, #facc15, #eab308) !important;
    border-color: #eab308 !important;
}

/* Light mode - FAQ kartları belirgin beyaz */
[data-theme="light"] .faq-item {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(30, 41, 59, 0.8);
}

[data-theme="light"] .faq-item .service-title {
    color: #f8fafc;
    font-weight: 600;
}

[data-theme="light"] .faq-item .muted {
    color: #e2e8f0;
}

/* Light mode - Hero subtitle belirgin beyaz (Slider için) */
[data-theme="light"] .hero-subtitle {
    color: #f8fafc;
    font-weight: 400;
}

/* Light mode - Hero section'daki hero-subtitle siyah (Diğer sayfalar için) */
[data-theme="light"] .hero .hero-subtitle {
    color: #0f172a;
    font-weight: 600;
}

/* Light mode - Hero pill text belirgin beyaz */
[data-theme="light"] .hero-pill {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(30, 41, 59, 0.8);
}

[data-theme="light"] .hero-pill span {
    color: #f8fafc;
    font-weight: 500;
}

/* Light mode - Pill badges belirgin beyaz */
[data-theme="light"] .pill {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(30, 41, 59, 0.8);
}

[data-theme="light"] .pill span {
    color: #f8fafc;
    font-weight: 500;
}

[data-theme="light"] .pill-dot {
    filter: brightness(1.2);
}

/* Slider stats - dark beyaz (default hali zaten dark ama daha belirgin yapalım) */
.hero-stats > div > div:first-child {
    color: #f8fafc;
    font-weight: 700;
}

.hero-stats > div > div:last-child {
    color: #e2e8f0;
    font-weight: 500;
}

/* Paketler section başlık ve text - hem light hem dark modda belirgin beyaz */
#paketler .section-title {
    color: #f8fafc !important;
    font-weight: 700;
}

#paketler .section-text {
    color: #e2e8f0 !important;
    font-weight: 400;
}

/* Offcanvas contact - belirgin beyaz */
.offcanvas-contact-label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
}

.offcanvas-contact-value {
    color: #f8fafc !important;
    font-weight: 700 !important;
}

/* ========================================
   STATS CARD - Hakkımızda İstatistik Kartı
   ======================================== */

.stats-card {
    border-radius: 1.5rem;
    background: radial-gradient(circle at top left, rgba(234, 179, 8, 0.15), rgba(15, 23, 42, 0.98));
    border: 2px solid rgba(234, 179, 8, 0.6);
    padding: 2rem 1.75rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(234, 179, 8, 0.15),
        inset 0 1px 0 rgba(234, 179, 8, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(234, 179, 8, 0.8), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(234, 179, 8, 0.25),
        inset 0 1px 0 rgba(234, 179, 8, 0.3);
    border-color: rgba(234, 179, 8, 0.8);
}

.stats-card-title {
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(234, 179, 8, 0.3);
}

.stat-item {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(234, 179, 8, 0.25);
    border-radius: 1rem;
    padding: 1.25rem 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(234, 179, 8, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(234, 179, 8, 0.15);
    border-color: rgba(234, 179, 8, 0.5);
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.2);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 8px rgba(234, 179, 8, 0.4));
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow:
        0 0 20px rgba(234, 179, 8, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.85rem;
    color: #e2e8f0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stats-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(234, 179, 8, 0.5), transparent);
    margin: 1.5rem 0;
}

.stats-quote {
    font-size: 0.9rem;
    color: #cbd5e1;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Light Mode - Stats Card */
[data-theme="light"] .stats-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid rgba(234, 179, 8, 0.8);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(234, 179, 8, 0.2),
        inset 0 1px 0 rgba(234, 179, 8, 0.3);
}

[data-theme="light"] .stats-card:hover {
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.2),
        0 0 60px rgba(234, 179, 8, 0.3),
        inset 0 1px 0 rgba(234, 179, 8, 0.4);
}

[data-theme="light"] .stats-card-title {
    color: #0f172a;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(234, 179, 8, 0.2);
}

[data-theme="light"] .stat-item {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(250, 204, 21, 0.05) 100%);
    border: 2px solid rgba(234, 179, 8, 0.4);
}

[data-theme="light"] .stat-item:hover {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.2) 0%, rgba(250, 204, 21, 0.15) 100%);
    border-color: rgba(234, 179, 8, 0.7);
    box-shadow:
        0 8px 25px rgba(234, 179, 8, 0.3),
        inset 0 1px 3px rgba(234, 179, 8, 0.2);
}

[data-theme="light"] .stat-number {
    color: #0f172a;
    font-weight: 900;
    text-shadow:
        0 0 20px rgba(234, 179, 8, 0.4),
        0 2px 4px rgba(234, 179, 8, 0.2);
}

[data-theme="light"] .stat-label {
    color: #334155;
    font-weight: 700;
}

[data-theme="light"] .stats-quote {
    color: #475569;
    font-weight: 500;
}

/* ========================================
   SERVICE CARD HORIZONTAL LAYOUT
   ======================================== */

.service-header-horizontal {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-card-horizontal .service-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-card-horizontal .service-title {
    flex: 1;
    line-height: 1.3;
}

/* ========================================
   HIGHLIGHT TEXT - Özel Vurgulu Metin
   ======================================== */

.highlight-text {
    color: #fbbf24;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(234, 179, 8, 0.4);
    display: inline-block;
}

/* Light mode - Highlight text */
[data-theme="light"] .highlight-text {
    color: #ca8a04;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(234, 179, 8, 0.2);
}

/* Light mode - Hızlı Teklif butonu */
[data-theme="light"] .btn-quick-offer {
    color: #000000 !important;
    font-weight: 600;
}

[data-theme="light"] .btn-quick-offer:hover {
    color: #0f172a !important;
}

/* Dark mode - Hızlı Teklif butonu */
[data-theme="dark"] .btn-quick-offer,
.btn-quick-offer {
    color: #f8fafc !important;
}

/* Light mode - İletişim form kartı ve başlıkları */
[data-theme="light"] .contact-card {
    background: #ffffff;
    border: 1px solid rgba(203, 213, 225, 0.8);
}

[data-theme="light"] .contact-card .service-title {
    color: #0f172a;
    font-weight: 700;
}

[data-theme="light"] .contact-card .muted {
    color: #334155;
    font-weight: 500;
}

[data-theme="light"] .form-label {
    color: #0f172a !important;
    font-weight: 700;
}

[data-theme="light"] .form-control,
[data-theme="light"] .form-select,
[data-theme="light"] textarea.form-control {
    background-color: #f8fafc !important;
    border: 1px solid rgba(203, 213, 225, 0.8) !important;
    color: #0f172a !important;
}

[data-theme="light"] .form-control::placeholder,
[data-theme="light"] .form-select::placeholder,
[data-theme="light"] textarea.form-control::placeholder {
    color: #94a3b8 !important;
}

[data-theme="light"] .form-control:focus,
[data-theme="light"] .form-select:focus,
[data-theme="light"] textarea.form-control:focus {
    background-color: #ffffff !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.3) !important;
}

.timeline-dot {
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 0L11.5 8.5L20 10L11.5 11.5L10 20L8.5 11.5L0 10L8.5 8.5L10 0Z' fill='%23eab308' opacity='0.85'/%3E%3Cpath d='M10 3L11 9L17 10L11 11L10 17L9 11L3 10L9 9L10 3Z' fill='%23fbbf24'/%3E%3Ccircle cx='10' cy='10' r='2.5' fill='%23fef3c7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.faq-item {
    border-radius: .9rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(31, 41, 55, 1);
    padding: 1.25rem;
    font-size: .88rem;
}

.faq-question {
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(234, 179, 8, 0.3);
}

.faq-answer {
    padding-top: 0.5rem;
}

.faq-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    color: #fbbf24;
}

.faq-label i {
    font-size: 1.1rem;
    color: #fbbf24;
}

.faq-question .service-title {
    font-size: 1.05rem;
    line-height: 1.4;
}

/* Light mode - FAQ labels */
[data-theme="light"] .faq-label {
    color: #ca8a04;
}

[data-theme="light"] .faq-label i {
    color: #ca8a04;
}

[data-theme="light"] .faq-question {
    border-bottom-color: rgba(202, 138, 4, 0.3);
}

.contact-card {
    border-radius: 1.1rem;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(31, 41, 55, 1);
    padding: 1.5rem;
}

.form-control,
.form-select,
textarea.form-control {
    background-color: #000000 !important;
    border: 1px solid rgba(51, 65, 85, 0.6);
    color: var(--text-main) !important;
    font-size: .86rem;
    transition: all 0.3s ease;
}

.form-control::placeholder,
.form-select::placeholder,
textarea.form-control::placeholder {
    color: rgba(148, 163, 184, 0.6) !important;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
    background-color: #000000 !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 2px rgba(234, 179, 8, 0.5) !important;
    color: var(--text-main) !important;
    outline: none;
}

.footer {
    border-top: 1px solid rgba(15, 23, 42, 1);
    font-size: .85rem;
    background: #020617;
}

/* Hero Carousel Styles */
#heroSlider {
    min-height: 350px;
}

#heroSlider .carousel-inner {
    min-height: 350px;
}

#heroSlider .carousel-item {
    transition: transform 0.6s ease-in-out;
    min-height: 350px;
}

#heroSlider .carousel-indicators {
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 0;
    justify-content: flex-start;
}

#heroSlider .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-muted);
    opacity: 0.4;
    border: none;
    margin: 0 4px;
    transition: all 0.3s ease;
}

#heroSlider .carousel-indicators button.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--accent);
    opacity: 1;
}

#heroSlider .carousel-indicators button:hover {
    opacity: 0.7;
}

/* Smooth fade animation */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#heroSlider .carousel-item-next,
#heroSlider .carousel-item-prev,
#heroSlider .carousel-item.active {
    animation: fadeSlide 0.6s ease-in-out;
}

/* Admin Link Hover Effect */
.hover-text-warning:hover {
    color: var(--accent) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

/* Enterprise Hero Panel Styles */
.hero-panel {
    border-radius: 1.6rem;
    background:
        radial-gradient(circle at top left, rgba(250, 204, 21, 0.16), transparent 55%),
        radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(30, 64, 175, 0.9);
    box-shadow:
        0 32px 90px rgba(0, 0, 0, 0.96),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    padding: 1.6rem 1.7rem;
}

.hero-panel-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-panel-title {
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--text-muted);
}

.hero-panel-name {
    font-size: 1.05rem;
    font-weight: 600;
}

.badge-soft {
    border-radius: 999px;
    padding: .2rem .65rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.7);
    font-size: .72rem;
}

.hero-row {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 1rem;
    margin-bottom: .6rem;
    font-size: .8rem;
    color: var(--text-muted);
}

.hero-row span:last-child {
    text-align: right;
    color: var(--text-main);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: .75rem;
    padding: .15rem .5rem;
    border-radius: 999px;
}

.status-badge.success {
    background: rgba(22, 163, 74, 0.15);
    color: #22c55e;
}

.status-badge.warning {
    background: rgba(234, 179, 8, 0.12);
    color: #eab308;
}

.status-dot {
    width: .4rem;
    height: .4rem;
    border-radius: 999px;
    background: currentColor;
}

/* Hero Badges - Özellik Etiketleri */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .15rem .55rem;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: rgba(15, 23, 42, 0.85);
    font-size: .75rem;
    color: var(--text-muted);
}

.pill-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #22c55e;
    flex-shrink: 0;
}

/* Hero Metric Items with Animated Dots */
.hero-metric-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.hero-metric-dot {
    width: .5rem;
    height: .5rem;
    border-radius: 999px;
    background: var(--accent-strong);
    position: relative;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Slider Etiketleri */
.slider-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.slider-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--border-subtle);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-tag-dot {
    width: 1rem;
    height: 1rem;
    position: relative;
    flex-shrink: 0;
    background: none;
}

.slider-tag-dot::before {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.9rem;
    color: #facc15;
    animation: star-glow 2s ease-in-out infinite;
}

@keyframes star-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.85;
        text-shadow: 0 0 8px rgba(250, 204, 21, 0.45);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.16);
        opacity: 1;
        text-shadow: 0 0 14px rgba(250, 204, 21, 0.9), 0 0 24px rgba(250, 204, 21, 0.55);
    }
}

/* Minimal Ripple Animasyon - Sadece Slider Etiketleri İçin */
.slider-tag-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 999px;
    border: 2px solid #facc15;
    background: transparent;
    opacity: 0.8;
    z-index: -1;
    animation: minimal-ripple 2s ease-out infinite;
}

@keyframes minimal-ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
        border-width: 2px;
    }
    100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
        border-width: 0px;
    }
}

/* Slider Carousel Kontrolleri - Ok Butonları Resim Üzerinde Ortalı */
#heroSlider {
    position: relative;
}

#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next {
    position: absolute;
    top: 150px;
    transform: translateY(-50%);
    height: 50px;
    width: 50px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    z-index: 10;
    transition: opacity 0.25s ease, visibility 0.25s ease, background 0.25s ease;
}

#heroSlider:hover .carousel-control-prev,
#heroSlider:hover .carousel-control-next,
#heroSlider:focus-within .carousel-control-prev,
#heroSlider:focus-within .carousel-control-next {
    opacity: 0.9;
    visibility: visible;
    pointer-events: auto;
}

#heroSlider .carousel-control-prev {
    left: 10px;
}

#heroSlider .carousel-control-next {
    right: 10px;
}

#heroSlider .carousel-control-prev:hover,
#heroSlider .carousel-control-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
}

#heroSlider .carousel-control-prev-icon,
#heroSlider .carousel-control-next-icon {
    width: 25px;
    height: 25px;
}

/* Carousel Indicators - Yıldız İkonları */
#heroSlider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: none;
    border: none;
    position: relative;
    opacity: 0.6;
}

#heroSlider .carousel-indicators button::before {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #facc15;
}

#heroSlider .carousel-indicators button.active {
    opacity: 1;
}

#heroSlider .carousel-indicators button.active::before {
    animation: star-pulse 1.5s ease-in-out infinite;
}

.hero-slider-indicators {
    position: relative;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
    gap: 0.6rem;
}

.hero-slider-indicators button {
    width: 30px !important;
    height: 4px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.55) !important;
    border: none !important;
    position: relative;
    opacity: 1 !important;
    margin: 0 !important;
}

.hero-slider-indicators button::before {
    content: '★';
    position: absolute;
    left: 50%;
    top: -11px;
    transform: translateX(-50%);
    font-size: 12px;
    color: #ffffff;
    opacity: 0;
}

.hero-slider-indicators button.active::before {
    opacity: 1;
    animation: star-pulse 1.5s ease-in-out infinite;
}

[data-theme="light"] .hero-slider-indicators button {
    background: rgba(234, 179, 8, 0.6) !important;
}

[data-theme="light"] .hero-slider-indicators button::before,
[data-theme="light"] .hero-slider-indicators button.active::before {
    color: #eab308;
}

[data-theme="light"] .hero-slider-indicators button.active {
    background: #eab308 !important;
}

.hero-slider-indicators button.active {
    background: #ffffff !important;
}

@keyframes star-pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Offcanvas Mobile Menu */
.offcanvas {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    height: 100vh !important;
    max-height: 100vh !important;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.offcanvas-title {
    color: var(--accent);
    font-weight: 600;
}

.offcanvas-body {
    padding: 1.5rem 1rem;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offcanvas .navbar-nav {
    width: 100%;
}

.offcanvas .nav-item {
    margin-bottom: 0.5rem;
}

.offcanvas .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.offcanvas .nav-link:hover {
    background: rgba(250, 204, 21, 0.1);
    transform: translateX(5px);
}

.offcanvas .nav-link.active {
    background: rgba(250, 204, 21, 0.15);
    color: var(--accent);
}

.offcanvas .btn-accent {
    width: 100%;
    margin-top: 1rem;
}

/* Offcanvas Contact Info */
.offcanvas-contact {
    padding-top: 1rem;
    margin-top: 1rem;
}

.offcanvas-contact-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.offcanvas-contact-item {
    margin-bottom: 0.75rem;
}

.offcanvas-contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: rgba(250, 204, 21, 0.05);
    border: 1px solid rgba(250, 204, 21, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.offcanvas-contact-link:hover {
    background: rgba(250, 204, 21, 0.1);
    border-color: rgba(250, 204, 21, 0.2);
    transform: translateX(5px);
}

.offcanvas-contact-link i {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.offcanvas-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.offcanvas-contact-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.offcanvas-contact-value {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
}

/* Desktop - hide offcanvas, show normal navbar */
@media (min-width: 992px) {
    .offcanvas {
        position: static !important;
        z-index: auto;
        flex-grow: 1;
        visibility: visible !important;
        background: transparent;
        border: none;
        transform: none !important;
        transition: none;
        width: auto !important;
    }

    .offcanvas-header {
        display: none;
    }

    .offcanvas-body {
        display: flex;
        flex-direction: row;
        flex-grow: 1;
        padding: 0;
        overflow-y: visible;
        align-items: center;
    }

    .offcanvas .navbar-nav {
        flex-direction: row;
        width: auto;
    }

    .offcanvas .nav-item {
        margin-bottom: 0;
    }

    .offcanvas .nav-link {
        padding: 0.5rem 1rem;
    }

    .offcanvas .nav-link:hover {
        transform: none;
    }

    .offcanvas .btn-accent {
        width: auto;
        margin-top: 0;
    }
}

/* ========================================
   LIGHT MODE - HAMBURGER MENU & OFFCANVAS (MOBIL MOD)
   ======================================== */

/* Mobil mod - Hamburger menu ve offcanvas stilleri */
@media (max-width: 991px) {
    [data-theme="light"] .navbar-toggler {
        border: 2px solid #0f172a !important;
        border-radius: 0.375rem;
    }

    [data-theme="light"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815,23,42,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    [data-theme="light"] .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(15, 23, 42, 0.18) !important;
    }

    /* Offcanvas her iki temada da light-mod mobil görünümünü kullansın */
    .offcanvas {
        background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%) !important;
    }

    .offcanvas-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .offcanvas .nav-link {
        color: #ffffff !important;
        font-weight: 600;
    }

    .offcanvas .nav-link:hover {
        color: #eab308 !important;
        background: rgba(234, 179, 8, 0.1);
    }

    .offcanvas .nav-link.active {
        color: #eab308 !important;
        background: rgba(234, 179, 8, 0.15);
    }

    .offcanvas-contact-divider {
        background: rgba(255, 255, 255, 0.1);
    }

    .offcanvas-contact-label {
        color: rgba(255, 255, 255, 0.6);
    }

    .offcanvas-contact-value {
        color: #ffffff;
    }
}
