/* NAVBAR STYLES */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-nav {
    display: none;
}

@media (min-width: 1024px) {
    .navbar-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--color-primary);
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: none;
}

@media (min-width: 1024px) {
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}

/* Mobile Menu Button */
.mobile-toggle {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 1001;
    padding: 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.mobile-nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
    display: block;
}

.mobile-nav-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-actions .btn {
    width: 100%;
}

/* FOOTER STYLES */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

/* Footer Background Elements */
.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(15, 23, 42, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-brand p {
    color: var(--text-light-secondary);
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--text-light-secondary);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    display: inline-block;
}

.footer-link:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light-secondary);
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--color-accent);
    margin-top: 0.25rem;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text-light-secondary);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

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

/* Page Header (İç Sayfalar İçin Hero Alanı) */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-secondary));
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M10 10h80v80h-80z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>') repeat;
    opacity: 0.5;
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-light-secondary);
    margin-bottom: 2rem;
}

/* INNER PAGE NAVBAR SPACING AND COLOR RULES */
body.inner-page {
    /* Navbar fixed olduğu için üstten boşluk bırakıyoruz, içerikle karışmaması için */
    padding-top: 88px;
}

body.inner-page .navbar {
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* ============ Footer — Trust + Apps strip ============ */
.footer-strip {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1.75rem 0;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 820px) {
    .footer-strip { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.4rem;
    align-items: center;
}
@media (max-width: 820px) { .footer-trust { justify-content: center; } }
.footer-trust__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 7px 13px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.footer-trust__badge i {
    width: 14px;
    height: 14px;
    color: #7dd3fc;
    flex-shrink: 0;
}
.footer-trust__badge--green i { color: #22c55e; }

.footer-apps {
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width: 820px) { .footer-apps { justify-content: center; } }
.footer-app {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 9px 16px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
    min-width: 150px;
}
.footer-app:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
    background: #111;
}
.footer-app i { width: 22px; height: 22px; flex-shrink: 0; color: #fff; }
.footer-app__text { display: flex; flex-direction: column; line-height: 1.1; }
.footer-app__small { font-size: 10px; font-weight: 500; opacity: 0.75; letter-spacing: 0.02em; }
.footer-app__big { font-size: 14px; font-weight: 700; letter-spacing: 0.01em; }

/* ============ İletişim — Hero ============ */
.ct-hero {
    background: linear-gradient(135deg, #1a0e35 0%, #2d1b69 50%, #1a0e35 100%);
    color: #fff;
    padding: 6rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}
.ct-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(125, 211, 240, 0.18), transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(167, 139, 250, 0.15), transparent 50%);
    pointer-events: none;
}
.ct-hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 960px) {
    .ct-hero .container { grid-template-columns: 1fr; gap: 2.5rem; }
}

.ct-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.65);
    flex-wrap: wrap;
}
.ct-hero .breadcrumb a { color: rgba(255, 255, 255, 0.65); text-decoration: none; }
.ct-hero .breadcrumb a:hover { color: #fff; }
.ct-hero .breadcrumb .sep { color: rgba(255, 255, 255, 0.3); }
.ct-hero .breadcrumb strong { color: rgba(255, 255, 255, 0.95); font-weight: 600; }

.ct-hero__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #7dd3fc;
    background: rgba(125, 211, 252, 0.12);
    border: 1px solid rgba(125, 211, 252, 0.25);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 1rem;
}
.ct-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}
.ct-hero__sub {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin: 0 0 2rem;
    max-width: 540px;
}
.ct-hero__ctas {
    display: inline-flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.ct-hero__ctas .btn,
.ct-hero__ctas .btn-primary,
.ct-hero__ctas .btn-outline {
    padding: 0.95rem 1.75rem;
    font-weight: 700;
}
.ct-hero__ctas .btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.ct-hero__ctas .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    color: #fff;
}

/* Live status card (right) */
.ct-status {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.75rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.ct-status__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}
.ct-status__head[hidden] { display: none; }
.ct-status__stats {
    padding-top: 0;
    border-top: none;
}
.ct-status__online {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #86efac;
    letter-spacing: 0.01em;
}
.ct-status__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: ctPulse 2s infinite;
}
@keyframes ctPulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.65); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.ct-status__time {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.ct-status__team {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}
.ct-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    border: 2px solid #1e1740;
    margin-left: -10px;
}
.ct-avatar:first-child { margin-left: 0; }
.ct-avatar--1 { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.ct-avatar--2 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.ct-avatar--3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.ct-avatar--4 { background: linear-gradient(135deg, #10b981, #06b6d4); }
.ct-status__team-text {
    margin-left: 0.85rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.35;
}
.ct-status__team-text strong { color: #fff; font-weight: 700; }

.ct-status__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}
.ct-status__stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.ct-status__stat-value {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 700;
}

/* Quick access cards inside hero */
.ct-quick {
    margin-top: 2.75rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    grid-column: 1 / -1;
    position: relative;
    z-index: 2;
}
@media (max-width: 720px) { .ct-quick { grid-template-columns: 1fr; } }
.ct-quick__card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.ct-quick__card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(125, 211, 252, 0.4);
}
.ct-quick__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(125, 211, 252, 0.15);
    color: #7dd3fc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ct-quick__icon i { width: 20px; height: 20px; }
.ct-quick__label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 0.1rem;
}
.ct-quick__value {
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
}

/* ── Language Switcher ── */
.lang-switcher,
.mobile-lang-switcher {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}
.lang-switcher .lang-flag,
.mobile-lang-switcher .lang-flag {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.2);
    opacity: 0.5;
    text-decoration: none;
    transition: opacity .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.lang-switcher .lang-flag:hover,
.mobile-lang-switcher .lang-flag:hover {
    opacity: 0.85;
    border-color: rgba(255,255,255,0.5);
}
.lang-switcher .lang-flag.active,
.mobile-lang-switcher .lang-flag.active {
    opacity: 1;
    border-color: rgba(255,255,255,0.8);
    box-shadow: 0 0 8px rgba(255,255,255,0.2);
}
.lang-switcher .lang-flag img,
.mobile-lang-switcher .lang-flag img {
    width: 150%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
    display: block;
}
.lang-switcher .lang-flag[aria-label="English"] img,
.mobile-lang-switcher .lang-flag[aria-label="English"] img {
    object-position: center center;
}
.mobile-lang-switcher {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
