/* ──────────────────────────────────────
   Navbar — Desktop
────────────────────────────────────── */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    width: 100%;
}

.logo-group img {
    height: auto;
    object-fit: contain;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu ul {
    display: flex;
    list-style-type: none;
    gap: 16px;
    align-items: center;
}

.nav-menu ul li,
.nav-menu ul li a {
    color: var(--color-nav);
    text-decoration: none;
    font-family: var(--font-family);
    font-size: var(--text-md);
    line-height: 29px;
    letter-spacing: 0px;
    display: inline-flex;
    align-items: center;
}

.nav-menu ul li:not(:last-child)::after {
    content: "";
    background-color: var(--color-dot);
    margin-left: 16px;
    border-radius: 50%;
    width: 13px;
    height: 13px;
}

/* ──────────────────────────────────────
   Mobile Header
────────────────────────────────────── */
.mobile-header {
    display: none;
    flex-direction: column;
    padding: 10px 0;
}

.mobile-header-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 0;
}

.mobile-header-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px 20px;
}

.mobile-header-bottom .hamburger {
    position: absolute;
    right: 20px;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

/* ──────────────────────────────────────
   Mobile Menu (Tam Ekran Overlay)
────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 24px;
}

.mobile-menu-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px 24px 24px;
    position: relative;
}

.mobile-menu-top .mobile-close {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-nav {
    margin-top: 60px;
    background: var(--color-primary);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mobile-nav a {
    padding: 28px 24px;
    color: #fff;
    text-decoration: none;
    font-size: var(--text-md);
    font-weight: 400;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.2s;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
}

.mobile-overlay.open {
    display: block;
}

/* ── Nav Menu Responsive ── */
@media (max-width: 1500px) {
    .nav-menu ul {
        gap: 12px;
    }

    .nav-menu ul li,
    .nav-menu ul li a {
        font-size: var(--text-base);
    }

    .nav-menu ul li:not(:last-child)::after {
        margin-left: 12px;
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 1210px) {
    .nav-menu ul {
        gap: 8px;
    }

    .nav-menu ul li,
    .nav-menu ul li a {
        font-size: var(--text-sm);
    }

    .nav-menu ul li:not(:last-child)::after {
        margin-left: 8px;
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 1050px) {
    .navbar {
        display: none;
        padding: 0;
    }

    .logo-group {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .mobile-header {
        display: flex;
        width: 100%;
    }
}

/* ──────────────────────────────────────
   Page Header (İkincil Sayfa Başlığı)
────────────────────────────────────── */
.mainheadernot {
    display: none !important;
}

.page-header {
    background: var(--color-bg-gray);
    padding: 24px 0;
    min-height: 100px;
    display: flex;
    align-items: center;
}

.page-header .eg-container {
    width: 100%;
}

.page-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-header-left {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-left: 130px;
    flex: 1;
}

.page-header-left-one {
    position: relative;
    min-width: 150px;
    height: 60px;
}

.page-header-left-one img {
    position: absolute;
    top: -50px;
    width: 150px;
}

.page-header-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: #000000;
    line-height: 120%;
    letter-spacing: 0.5%;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    font-size: var(--text-sm);
    color: #575757;
    text-decoration: none;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: 0.5%;
}

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

.breadcrumb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    flex-shrink: 0;
}

.breadcrumb-current {
    font-size: var(--text-sm);
    color: var(--color-primary);
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.5%;
}

/* Page Header Responsive */
@media (max-width: 1500px) {
    .page-header-left {
        padding-left: 80px;
        gap: 48px;
    }

    .page-header-title {
        font-size: var(--text-lg);
    }
}

@media (max-width: 1280px) {
    .page-header-left {
        padding-left: 80px;
        gap: 40px;
    }

    .page-header-title {
        font-size: var(--text-base);
    }
}

@media (max-width: 1024px) {
    .page-header {
        padding: 20px 0;
        min-height: 80px;
    }

    .page-header-left {
        padding-left: 24px;
        gap: 0;
    }

    .page-header-left-one {
        display: none;
    }

    .page-header-title {
        font-size: var(--text-sm);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 16px 0;
        min-height: 70px;
    }

    .page-header-left {
        padding-left: 20px;
        gap: 0;
    }

    .page-header-title {
        font-size: var(--text-base);
    }

    .breadcrumb a {
        font-size: var(--text-xxs);
    }

    .breadcrumb-current {
        font-size: var(--text-xxs);
    }
}

@media (max-width: 576px) {
    .page-header-left {
        padding-left: 0px;
        gap: 14px;
    }

    .page-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .page-header-title {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 14px 0;
        min-height: 60px;
    }

    .page-header-left {
        padding-left: 0;
        gap: 10px;
    }

    .page-header-title {
        font-size: var(--text-sm);
    }

    .breadcrumb {
        gap: 6px;
    }
}

/* ──────────────────────────────────────
   CTA Section
────────────────────────────────────── */
.cta-section {
    background: var(--color-primary);
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    min-height: 350px;
}

.cta-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-section>.cta-col:first-child {
    justify-content: flex-end;
}

.cta-section>.cta-col:last-child {
    justify-content: flex-start;
}

.cta-img {
    object-fit: contain;
    border-radius: var(--radius);
}

.cta-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 48px 0;
    z-index: 1;
}

.cta-subtitle {
    font-size: var(--text-base);
    color: #F2F2F7;
    font-weight: 400;
}

.cta-title-img {
    max-width: 100%;
}

.cta-btn {
    background: #FFFFFF;
    color: var(--color-primary);
    font-weight: 600;
    padding: 12px 36px;
    border-radius: var(--radius-pill);
    font-size: var(--text-base);
    text-decoration: none;
    margin-top: 8px;
}

/* CTA Responsive */
@media (max-width: 1500px) {
    .cta-section {
        min-height: 300px;
    }

    .cta-center {
        padding: 40px 0;
        gap: 12px;
    }

    .cta-btn {
        padding: 10px 28px;
        font-size: var(--text-sm-2);
    }
}

@media (max-width: 1280px) {
    .cta-section {
        min-height: 280px;
    }

    .cta-subtitle {
        font-size: var(--text-sm-2);
    }
}

@media (max-width: 1024px) {
    .cta-section {
        grid-template-columns: 1fr 3fr 1fr;
        min-height: 260px;
    }

    .cta-center {
        padding: 32px 0;
    }

    .cta-img {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .cta-section {
        grid-template-columns: 0.5fr 1fr 0.5fr;
        min-height: 240px;
    }

    .cta-subtitle {
        font-size: var(--text-sm);
    }

    .cta-btn {
        padding: 10px 24px;
        font-size: var(--text-sm);
    }
}

@media (max-width: 576px) {
    .cta-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 0;
    }

    .cta-section>.cta-col:first-child,
    .cta-section>.cta-col:last-child {
        justify-content: center;
        padding: 0 20px;
    }

    .cta-img {
        width: 100%;
        max-width: 240px;
    }

    .cta-center {
        padding: 0 20px;
    }

    .cta-subtitle {
        font-size: var(--text-mobile-1);
    }
}

@media (max-width: 320px) {
    .cta-center {
        padding: 32px 16px;
        gap: 10px;
    }

    .cta-btn {
        padding: 9px 20px;
        font-size: var(--text-base);
    }

    .cta-subtitle {
        font-size: var(--text-base);
    }
}

/* ──────────────────────────────────────
   Footer
────────────────────────────────────── */
.footer {
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    padding: 32px 0 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 28px;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    display: none;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    /* Alt boşluk */
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mobile-logo {
    display: none;
}

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

.footer-nav a {
    font-family: 'Nunito', sans-serif;
    font-size: var(--text-sm);
    color: var(--color-nav);
    text-decoration: none;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0;
}

.footer-nav a:hover {
    color: var(--color-dot);
}

.footer-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-dot);
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: var(--text-base);
    color: #575757;
    line-height: 140%;
    letter-spacing: 0%;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: var(--text-base);
    color: #575757;
    line-height: 140%;
    letter-spacing: 0%;
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--color-dot);
}

/* Footer Responsive */
@media (max-width: 1500px) {
    .footer-copy {
        font-size: var(--text-sm-2);
    }

    .footer-bottom {
        justify-content: center;
    }
}

@media (max-width: 1280px) {
    .footer-nav a {
        font-size: var(--text-base);
    }

    .footer-top {
        gap: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 1024px) {
    .footer-top {
        gap: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-logos {
        gap: 16px;
    }

    .footer-copy {
        font-size: var(--text-sm);
    }

    .footer-legal {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        display: flex;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-logos {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }

    .footer-logos .desktop-logo {
        display: none !important;
    }

    .footer-logos .mobile-logo {
        display: block !important;
        height: 45px !important;
        object-fit: contain;
    }

    .footer-nav {
        display: none;
    }

    .footer-dot {
        display: none;
    }

    .footer-nav a {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #D9D9D9;
    }

    .footer-nav a:last-of-type {
        border-bottom: none;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    .footer-copy {
        font-size: 16px;
    }

    .footer-legal {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-logos img {
        height: 30px !important;
    }

    .footer-legal {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 24px 0 0 0;
    }

    .footer-top {
        padding-bottom: 20px;
    }

    .footer-logos img {
        height: 26px !important;
    }

    .footer-copy {
        font-size: 16px;
    }
}