html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/*Header Styles*/

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 0 2.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

    .header-logo img {
        height: 44px;
        width: auto;
    }

.header-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .header-nav > li {
        position: static;
    }

    .header-nav a {
        text-decoration: none;
        color: #1a1a2e;
        font-size: 0.95rem;
        font-weight: 450;
        letter-spacing: 0.01em;
        position: relative;
        padding-bottom: 12px;
        transition: color 0.2s ease;
    }

        .header-nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #e8354a;
            transition: width 0.25s ease;
        }

        .header-nav a:hover {
            color: #e8354a;
        }

            .header-nav a:hover::after {
                width: 100%;
            }

/* Dropdown Trigger */
.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: #1a1a2e;
    font-size: 0.95rem;
    font-weight: 450;
    font-family: inherit;
    letter-spacing: 0.01em;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s ease;
    height: 80px;
}

    .nav-dropdown-trigger::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #e8354a;
        transition: width 0.25s ease;
    }

    .nav-dropdown-trigger:hover,
    .nav-dropdown-trigger.active {
        color: #e8354a;
    }

        .nav-dropdown-trigger:hover::after,
        .nav-dropdown-trigger.active::after {
            width: 100%;
        }

.dropdown-chevron {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-top: 1px;
}

.nav-dropdown-trigger.active .dropdown-chevron {
    transform: rotate(180deg);
}

/* Mega Dropdown */
/* Kurumsal mini dropdown */
.kurumsal-dropdown {
    position: fixed;
    top: 80px;
    background: #ffffff;
    border-top: 2px solid #e8354a;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 999;
    min-width: 180px;
    border-radius: 0 0 8px 8px;
}

.kurumsal-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kurumsal-dropdown-item {
    display: block;
    padding: 11px 22px;
    font-size: 0.9rem;
    color: #222;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.kurumsal-dropdown-item:hover {
    background: #f5f5f8;
    color: #112FC7;
}

.mega-dropdown {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 2px solid #e8354a;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    padding: 2.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 999;
}

    .mega-dropdown.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.mega-dropdown-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.mega-dropdown-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e8354a;
    margin-bottom: 1.5rem;
}

.mega-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem 1.5rem;
}

.mega-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: #1a1a2e;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
    border: 1px solid transparent;
}

    .mega-dropdown-item:hover {
        background: #fdf2f3;
        color: #e8354a;
        border-color: #f5c6cb;
        transform: translateX(3px);
    }

        .mega-dropdown-item:hover::after {
            display: none;
        }

.item-icon {
    width: 55px;
    height: 55px;
    border-radius: 6px;
    background: #f4f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.18s ease;
}

    .item-icon img {
        width: 40px;
        height: 40px;
    }


.mega-dropdown-item:hover .item-icon {
    background: #fce8ea;
}

.item-icon svg {
    width: 16px;
    height: 16px;
    stroke: #6b7280;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.18s ease;
}

.mega-dropdown-item:hover .item-icon svg {
    stroke: #e8354a;
}
/* Dropdown divider */
.mega-dropdown-divider {
    border: none;
    border-top: 1px solid #f0f0f2;
    margin: 1.5rem 0 1.2rem;
}

.mega-dropdown-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mega-dropdown-footer-text {
    font-size: 0.8rem;
    color: #9ca3af;
}

.mega-dropdown-all-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

    .mega-dropdown-all-link:hover {
        color: #e8354a;
    }

    .mega-dropdown-all-link::after {
        display: none !important;
    }

    .mega-dropdown-all-link svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
/* Backdrop */
.dropdown-backdrop {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.2);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
}

    .dropdown-backdrop.open {
        opacity: 1;
        visibility: visible;
    }
/* CTA Button */
.header-cta {
    text-decoration: none;
    background-color: #1a1a2e;
    color: #ffffff !important;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.15s ease;
    flex-shrink: 0;
}

    .header-cta:hover {
        background-color: #2d2d50;
        transform: translateY(-1px);
    }

    .header-cta::after {
        display: none !important;
    }
/* ── HAMBURGEr BUTONU ── */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
}

    .hamburger-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: #1a1a2e;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }

    .hamburger-btn.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
/* ── MOBİL OVERLAY ── */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .mobile-overlay.open {
        opacity: 1;
    }
/* ── MOBİL DRAWER ── */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100dvh;
    background: #ffffff;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

    .mobile-drawer.open {
        transform: translateX(0);
    }

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e8eaf0;
    flex-shrink: 0;
}

    .mobile-drawer-header .header-logo img {
        height: 36px;
    }

.drawer-close-btn {
    width: 36px;
    height: 36px;
    background: #f4f4f6;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    transition: background 0.2s;
}

    .drawer-close-btn:hover {
        background: #e8eaf0;
    }

    .drawer-close-btn svg {
        width: 18px;
        height: 18px;
    }

.mobile-nav {
    list-style: none;
    padding: 12px 0;
    margin: 0;
    flex: 1;
}

    .mobile-nav > li > a,
    .mobile-cozumler-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 24px;
        font-size: 0.97rem;
        font-weight: 500;
        color: #1a1a2e;
        text-decoration: none;
        background: none;
        border: none;
        cursor: pointer;
        font-family: inherit;
        transition: background 0.15s, color 0.15s;
    }

        .mobile-nav > li > a:hover,
        .mobile-cozumler-btn:hover {
            background: #f4f4f6;
            color: #e8354a;
        }

        .mobile-cozumler-btn.active .dropdown-chevron {
            transform: rotate(180deg);
        }

.mobile-cozumler-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: #f8f9fc;
    transition: max-height 0.35s ease;
}

    .mobile-cozumler-list.open {
        max-height: 600px;
    }

    .mobile-cozumler-list li a {
        display: block;
        padding: 11px 24px 11px 40px;
        font-size: 0.88rem;
        color: #374151;
        text-decoration: none;
        transition: color 0.15s, background 0.15s;
        border-left: 3px solid transparent;
    }

        .mobile-cozumler-list li a:hover {
            color: #112FC7;
            background: #eef1fd;
            border-left-color: #112FC7;
        }

.mobile-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid #e8eaf0;
    flex-shrink: 0;
}

.mobile-cta {
    display: block;
    text-align: center;
    background: #1a1a2e;
    color: #ffffff !important;
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.2s;
}

    .mobile-cta:hover {
        background: #2d2d50;
    }

@media (max-width: 768px) {
    .site-header {
        padding: 0 1.25rem;
    }

    .header-nav {
        display: none;
    }

    .mega-dropdown {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .mobile-overlay {
        display: block;
    }
}
/*Header Styles End*/
/*Footer Styles*/

footer {
    background: #000e66 !important;
    color: white !important;
    padding: 64px 80px 0;
}
/* ── TOP SECTION ── */
.footer-top {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--white-40);
}
/* Brand block */
.footer-brand {
    flex: 0 0 280px;
}

    .footer-brand p {
        font-size: 14px;
        font-weight: 400;
        color: var(--white-70);
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .footer-brand .phone {
        font-size: 40px;
        font-weight: 300;
        color: #fff;
        letter-spacing: -0.5px;
        text-decoration:none;
    }
/* Nav columns */
.footer-nav {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 24px;
    padding-left: 80px;
}

    .footer-nav ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

        .footer-nav ul li a {
            text-decoration: none;
            color: var(--white-70);
            font-size: 15px;
            font-weight: 400;
            transition: color 0.2s ease;
        }

            .footer-nav ul li a:hover {
                color: #fff;
            }
/* ── BOTTOM SECTION ── */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}
/* Logo + copyright */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .footer-logo .logo-icon {
        width: 125px;
    }

        .footer-logo .logo-icon svg {
            opacity: 0.85;
        }

    .footer-logo .logo-wordmark {
        font-size: 22px;
        font-weight: 600;
        letter-spacing: 1px;
        color: #fff;
    }

    .footer-logo .copyright {
        font-size: 13px;
        color: var(--white-70);
        margin-left: 6px;
    }
/* Right side */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 1.5px solid var(--white-40);
        border-radius: 50%;
        color: #fff;
        transition: border-color 0.2s, background 0.2s;
        text-decoration: none;
    }

        .social-links a:hover {
            border-color: #fff;
            background: rgba(255,255,255,0.08);
        }

        .social-links a svg {
            width: 18px;
            height: 18px;
            fill: #fff;
        }

        .social-links a img {
            width: 18px;
            height: 18px;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

.footer-legal {
    display: flex;
    gap: 24px;
}

    .footer-legal a {
        font-size: 13px;
        color: var(--white-70);
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-legal a:hover {
            color: #fff;
        }
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    footer {
        padding: 48px 32px 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 48px;
    }

    .footer-brand {
        flex: none;
    }

    .footer-nav {
        padding-left: 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-right {
        align-items: flex-start;
    }
}
/* Footer Styles End */
/* Index Slider*/
/* ── HERO SLIDER ── */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
}

.hero-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

    .hero-slide.active {
        opacity: 1;
    }
/* Görsel — slide'ı tamamen kaplar, oranı bozulmaz */
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* İçerik bloğu — görselin üzerinde */
.hero-content {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 80px;
    max-width: 750px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(232, 53, 74, 0.85);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    width: fit-content;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: black;
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    font-weight: 400;
    color: black;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #000e66;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    width: fit-content;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .hero-btn::after {
        display: none !important;
    }

    .hero-btn:hover {        
        transform: translateY(-2px);
        color: #fff;
    }
/* Dots */
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #000e66;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

    .hero-dot.active {
        background: black;
        border-color: #ffffff;
        transform: scale(1.25);
    }

    .hero-dot:hover:not(.active) {
        background: rgba(255, 255, 255, 0.4);
        border-color: rgba(255, 255, 255, 0.9);
    }
/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-slider {
        height: calc(100svh - 80px);
    }

    .hero-content {
        padding: 0 24px;
        max-width: 100%;
        justify-content: flex-end;
        padding-bottom: 80px;
    }

    .hero-dots {
        bottom: 24px;
    }
}
/* Index Slider End */
/* ── ÇÖZÜMLER SECTION ── */
.cozumler-section {
    width: 100%;
    background: #f8f9fc;
    padding: 80px 0 88px;
}

.cozumler-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.cozumler-header {
    margin-bottom: 52px;
}

.cozumler-ustbaslik {
    font-size: 1.5rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 6px;
}

.cozumler-baslik {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}
/* Grid: 4 sütun */
.cozumler-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
/* Sarıcı — grid hücresini sabit tutar */
.kart-sarici {
    position: relative;
    height: 200px;
}
/* Kart — normalde sarıcıyı doldurur */
.cozum-kart {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; /* sarıcı yüksekliğine kilitli */
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e8eaf0;
    border-radius: 14px;
    padding: 24px 20px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    z-index: 1;
}

    .cozum-kart::after {
        display: none !important;
    }
    /* Hover: bottom kısıtı kalkar, kart içerikle birlikte aşağı büyür */
    .cozum-kart:hover {
        bottom: auto;
        overflow: hidden;
        box-shadow: 0 12px 40px rgba(17, 47, 199, 0.14);
        border-color: #c7d0f8;
        z-index: 10;
        color: inherit;
    }
/* İkon */
.kart-ikon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: #f0f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

    .kart-ikon img {
        width: 65px;
        height: 65px;
        object-fit: contain;
    }

.cozum-kart:hover .kart-ikon {
    background: #e0e6fd;
}
/* İçerik */
.kart-icerik {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.kart-baslik {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.35;
}

.kart-ozet {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
}
/* Hover'da açılan detay */
.kart-detay {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
}

.cozum-kart:hover .kart-detay {
    max-height: 120px;
    opacity: 1;
    margin-top: 6px;
}
/* Bilgi Al butonu */
.kart-btn {
    display: inline-block;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #112FC7;
    border: 1.5px solid #112FC7;
    border-radius: 50px;
    padding: 0 14px;
    line-height: 28px;
    width: fit-content;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease, background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.cozum-kart:hover .kart-btn {
    max-height: 40px;
    opacity: 1;
    margin-top: 12px;
}

.kart-btn:hover {
    background: #112FC7;
    color: #fff;
}
/* Responsive */
@media (max-width: 1100px) {
    .cozumler-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kart-sarici {
        height: 150px;
    }
}

@media (max-width: 600px) {
    .cozumler-inner {
        padding: 0 20px;
    }

    .cozumler-grid {
        grid-template-columns: 1fr;
    }

    .kart-sarici {
        height: 130px;
    }
}
/* ── ÇÖZÜMLER SECTION END ── */
/* ── TANITIM SECTIONLARI ── */
.tanitim-wrapper {
    width: 100%;
    background: #ffffff;
    padding: 80px 0 88px;
}

.tanitim-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}
/* Yatay çizgi */
.tanitim-hr {
    border: none;
    border-top: 1px solid #494949;
    margin: 64px 0;
}
/* Blok: başlık üstte, altında görsel+liste grid'i */
.tanitim-blok {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
/* Başlık — bloğun üstünde tam genişlikte */
.tanitim-baslik-grup {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tanitim-baslik-grup--sag {
    text-align: right;
}

.tanitim-ustbaslik {
    font-size: 1.5rem;
    font-weight: 500;
    color: #6b7280;
    margin: 0;
}

.tanitim-baslik {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
}
/* İç grid: görsel | liste — align-items: center artık sadece bu ikisini karşılaştırır */
.tanitim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
/* Ters: görsel sağa, liste sola */
.tanitim-grid--ters {
    direction: rtl;
}

    .tanitim-grid--ters > * {
        direction: ltr;
    }

.tanitim-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    border-radius: 16px;
    display: block;
}
/* Marka logosu override */
.marka-logo-img {
    object-fit: contain;
    aspect-ratio: 3 / 2;
    padding: 24px;
    background: #f7f8fc;
    border-radius: 20px;
}

.marka-baslik {
    font-size: 1.6rem;
    font-weight: 700;
    color: #10064A;
    margin: 0 0 14px;
}

.marka-aciklama {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 24px;
}

/* Liste + buton kolonu */
.tanitim-sag {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tanitim-liste {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .tanitim-liste li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 0.97rem;
        color: #374151;
        line-height: 1.5;
    }

        .tanitim-liste li::before {
            content: '';
            flex-shrink: 0;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(135deg, #112FC7, #201174);
            margin-top: 6px;
        }
/* Buton */
.tanitim-btn {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background-color: #000e66;
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

    .tanitim-btn::after {
        display: none !important;
    }

    .tanitim-btn:hover {
        opacity: 0.88;
        transform: translateY(-2px);
        color: #ffffff;
    }
/* Responsive */
@media (max-width: 900px) {
    .tanitim-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }

    .tanitim-baslik-grup--sag {
        text-align: left;
    }

    .tanitim-inner {
        padding: 0 24px;
    }
}
/* ── TANITIM SECTIONLARI END ── */
/* ── GÖRSEL & SES KAROUSELİ ── */
.gs-section {
    width: 100%;
    background: #f8f9fc;
    padding: 80px 0 60px;
    overflow: hidden;
}

.gs-header {
    text-align: center;
    margin-bottom: 48px;
}

.gs-ustbaslik {
    font-size: 1.5rem;
    font-weight: 500;
    color: #6b7280;
    margin: 0 0 6px;
}

.gs-baslik {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}
/* Carousel sahne */
.gs-carousel {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}
/* Slide — varsayılan: görünmez */
.gs-slide {
    position: absolute;
    width: 38%;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.55s ease, z-index 0s 0.27s;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7) translateX(0);
    z-index: 0;
}
    /* Aktif — ortada, büyük, önde */
    .gs-slide.gs-active {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0) scale(1);
        z-index: 3;
        transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.55s ease;
    }
    /* Önceki — solda, küçük, arkada */
    .gs-slide.gs-prev {
        opacity: 0.65;
        pointer-events: auto;
        transform: translateX(-70%) scale(0.75);
        z-index: 2;
        transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.55s ease;
    }
    /* Sonraki — sağda, küçük, arkada */
    .gs-slide.gs-next {
        opacity: 0.65;
        pointer-events: auto;
        transform: translateX(70%) scale(0.75);
        z-index: 2;
        transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.55s ease;
    }

        .gs-slide.gs-prev:hover,
        .gs-slide.gs-next:hover {
            opacity: 0.85;
        }
/* Görsel */
.gs-link {
    display: block;
    position: relative;
    text-decoration: none;
}

    .gs-link::after {
        display: none !important;
    }

.gs-slide img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}
/* Üst metin overlay */
.gs-slide-metin {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px 24px;
    background: linear-gradient(to top, rgba(10,14,80,0.75) 0%, transparent 100%);
    border-radius: 0 0 18px 18px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gs-slide.gs-active .gs-slide-metin {
    opacity: 1;
    transform: translateY(0);
}

.gs-slide-ust {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    margin: 0 0 4px;
    letter-spacing: 0.05em;
}

.gs-slide-alt {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}
/* Dots */
.gs-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.gs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #b0b8d4;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

    .gs-dot.active {
        background: #112FC7;
        border-color: #112FC7;
        transform: scale(1.25);
    }

    .gs-dot:hover:not(.active) {
        border-color: #112FC7;
        background: rgba(17,47,199,0.2);
    }

@media (max-width: 768px) {
    .gs-carousel {
        height: 260px;
    }

    .gs-slide {
        width: 78%;
    }

        .gs-slide.gs-prev {
            transform: translateX(-72%) scale(0.75);
        }

        .gs-slide.gs-next {
            transform: translateX(72%) scale(0.75);
        }
}
/* ── GÖRSEL & SES KAROUSELİ END ── */
/* ── TESTİMONİAL ── */
.testimonial-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 0 88px;
}

.testimonial-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}
/* Üst tanıtım metni */
.testimonial-intro {
    text-align: center;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 400;
    color: #374151;
    line-height: 1.75;
    max-width: 780px;
    margin: 0 auto 56px;
}
/* 4 kart grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
/* Kart */
.testimonial-kart {
    background: #000e66;
    border-radius: 16px;
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    min-height: 280px;
}
/* Yorum metni */
.t-yorum {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}
/* Alt blok: logo + isim + ünvan */
.t-alt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
}

.t-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.t-isim {
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.t-unvan {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    text-align: center;
}

@media (max-width: 1100px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonial-inner {
        padding: 0 20px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
/* ── TESTİMONİAL END ── */
/* ── KATALOG İNDİR ── */
.katalog-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 0 88px;
}

.katalog-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.katalog-baslik {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    text-align: center;
}

.katalog-alt {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0 0 20px;
    text-align: center;
}

.katalog-form {
    display: flex;
    align-items: center;
    width: 100%;
    background: #0d1145;
    border-radius: 12px;
    padding: 8px 8px 8px 20px;
    gap: 8px;
}

.katalog-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    min-width: 0;
}

    .katalog-input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

.katalog-btn {
    flex-shrink: 0;
    background: #e8354a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .katalog-btn:hover {
        background: #c9293d;
    }
/* ── KATALOG İNDİR END ── */

/* ── ÇÖZÜM SAYFASI ORTAK ── */

/* Hero */
.cozum-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
}

.cozum-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cozum-hero-metin {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    max-width: 1050px;
    background: transparent;
}

.cozum-hero-baslik {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    color: #10064A;
    margin: 0 0 16px;
    line-height: 1.2;
}

.cozum-hero-alt {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    font-weight: 400;
    color: #10064A;
    margin: 0;
    line-height: 1.6;
}

/* Özet metin */
.cozum-ozet-section {
    width: 100%;
    background: #ffffff;
    padding: 72px 0;
}

.cozum-ozet-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 48px;
}

.cozum-ozet-metin {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: #374151;
    line-height: 1.85;
    margin: 0;
    text-align: center;
}

/* Detay: görsel + madde listesi */
.cozum-detay-section {
    width: 100%;
    background: #fff;
    padding: 80px 0 88px;
}

.cozum-detay-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.cozum-detay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.cozum-detay-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.cozum-detay-sag {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cozum-detay-liste {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .cozum-detay-liste li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        font-size: 1rem;
        font-weight: 500;
        color: #1a1a2e;
        line-height: 1.5;
    }

    .cozum-detay-liste li::before {
        content: '';
        flex-shrink: 0;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: linear-gradient(135deg, #112FC7, #201174);
        margin-top: 6px;
    }

@media (max-width: 900px) {
    .cozum-hero-metin {
        padding: 0 24px;
        max-width: 100%;
    }

    .cozum-detay-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .cozum-ozet-inner,
    .cozum-detay-inner {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .cozum-hero {
        height: calc(40svh - 80px);
    }
}

/* ── ÇÖZÜM SAYFASI ORTAK END ── */

/* Hero metin hizalama — sayfa bazlı override */
/* padding-left = içerik container'ının sol kenarıyla hizalanır */
.cozum-hero-metin--referanslar {
    max-width: 100%;
    padding-left: max(48px, calc((100% - 1280px) / 2 + 48px));
    padding-right: 48px;
}

.cozum-hero-metin--iletisim {
    max-width: 100%;
    padding-left: max(20px, calc((100% - 1350px) / 2 + 0px));
    padding-right: 40px;
}

@media (max-width: 900px) {
    .cozum-hero-metin--referanslar,
    .cozum-hero-metin--iletisim {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ── REFERANSLAR ── */
.referans-kart-section {
    width: 100%;
    background: #f8f9fc;
    padding: 80px 0 88px;
}

.referans-kart-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.referans-kart-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.referans-kart {
    background: #ffffff;
    border: 1.5px solid #e8eaf0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

    .referans-kart:hover {
        transform: translateY(-6px);
        border-color: #ff5562;
        box-shadow: 0 10px 32px rgba(255, 85, 98, 0.12);
    }

    .referans-kart img {        
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

@media (max-width: 1100px) {
    .referans-kart-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .referans-kart-inner { padding: 0 20px; }
    .referans-kart-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .referans-kart-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ── REFERANSLAR END ── */

/* ── HAKKIMIZDA HERO ── */
.hakkimizda-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
}

.hakkimizda-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.hakkimizda-hero-metin {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding-top: 72px;
}

    .hakkimizda-hero-metin h1 {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        font-weight: 500;
        color: white;
        text-align: center;
        line-height: 1.45;
        margin: 0;
        text-shadow: 0 2px 16px rgba(0,0,0,0.35);
    }

@media (max-width: 768px) {
    .hakkimizda-hero {
        height: calc(100svh - 80px);
    }

    .hakkimizda-hero-metin {
        padding-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* ── HAKKIMIZDA HERO END ── */

/* ── HAKKIMIZDA METİN ── */
.hakkimizda-metin-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 0 88px;
}

.hakkimizda-metin-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

    .hakkimizda-metin-inner p {
        font-size: clamp(1rem, 1.4vw, 1.1rem);
        color: #374151;
        line-height: 1.85;
        margin: 0;
    }

@media (max-width: 768px) {
    .hakkimizda-metin-inner {
        padding: 0 24px;
    }
}
/* ── HAKKIMIZDA METİN END ── */

/* ── CTA BANNER SECTION ── */
.cta-banner-section { width: 100%; background: #ffffff; }

.cta-banner-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px;
}


/* ── CTA BANNER ── */
.cta-banner {
    position: relative;
    width: 100%;
    border-radius: 70px;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13), 0 1px 6px rgba(0, 0, 0, 0.07);
    align-items: center;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right;
    display: block;
}

.cta-banner-icerik {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 48px;
    max-width: 520px;
}

.cta-banner-baslik {
    font-size: clamp(1rem, 1.8vw, 1.75rem);
    font-weight: 350;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.5;
}

.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: #1a1a2e;
    color: #ffffff;
    text-decoration: none;
    padding: 0.65rem 1.6rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .cta-banner-btn::after {
        display: none !important;
    }

    .cta-banner-btn:hover {
        background: #2d2d50;
        transform: translateY(-1px);
        color: #ffffff;
    }

@media (max-width: 768px) {
    .cta-banner-wrapper {
        padding: 32px 20px;
    }

    .cta-banner-bg {
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 600px) {
    .cta-banner-icerik {
        padding: 28px 24px;
    }
}
/* ── CTA BANNER END ── */

/* ── KARİYER SAYFASI ── */
.kariyer-section {
    padding: 80px 24px 60px;
    text-align: center;
}

.kariyer-inner {
    max-width: 700px;
    margin: 0 auto;
}

.kariyer-baslik {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.kariyer-metin {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.kariyer-form {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1.5px solid #acb0b7;
    border-radius: 10px;
    overflow: hidden;
    background: transparent;
}

.kariyer-dosya-kutu {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 24px;
    cursor: pointer;
    min-height: 60px;
}

.kariyer-dosya-metin {
    color: black;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kariyer-gonder-btn {
    background: #ff5562;
    color: #fff;
    border: none;
    padding: 0 36px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    min-height: 60px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.kariyer-gonder-btn:hover {
    background: #c4222b;
}
/* ── KARİYER SAYFASI END ── */

/* ── İLETİŞİM SAYFASI ── */
.iletisim-section {
    padding: 70px 40px 80px;
}

.iletisim-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: start;
}

/* Form */
.iletisim-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.iletisim-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.iletisim-form-group:last-child {
    margin-bottom: 0;
}

.iletisim-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #222;
}

.iletisim-input {
    border: 1px solid #d9dde8;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    background: #fafbff;
    font-family: inherit;
}

.iletisim-input:focus {
    border-color: #000e66;
    background: #fff;
}

.iletisim-textarea {
    min-height: 130px;
    resize: vertical;
}

.iletisim-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 24px;
    font-size: 0.88rem;
    color: #555;
}

.iletisim-check-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #000e66;
    flex-shrink: 0;
    cursor: pointer;
}

.iletisim-gonder-btn {
    background: #000e66;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.iletisim-gonder-btn:hover {
    background: #112FC7;
}

/* Bilgi kolonu */
.iletisim-bilgi-listesi {
    margin: 0 0 32px;
    padding: 0;
}

.iletisim-bilgi-satir {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0 12px;
    padding: 14px 0;
    border-bottom: 1px solid #e8e8e8;
    align-items: start;
}

.iletisim-bilgi-satir:first-child {
    border-top: 1px solid #e8e8e8;
}

.iletisim-bilgi-satir dt {
    font-weight: 700;
    color: #111;
    font-size: 0.95rem;
}

.iletisim-bilgi-satir dd {
    margin: 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

.iletisim-bilgi-satir dd a {
    color: #444;
    text-decoration: none;
}

.iletisim-bilgi-satir dd a:hover {
    color: #000e66;
}

/* Sosyal medya ikonları */
.iletisim-sosyal {
    display: flex;
    gap: 10px;
}

.iletisim-sosyal-btn {
    width: 42px;
    height: 42px;
    border: 1.5px solid #112FC7;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #112FC7;
    transition: background 0.2s, color 0.2s;
}

.iletisim-sosyal-btn svg {
    width: 18px;
    height: 18px;
}

.iletisim-sosyal-btn:hover {
    background: #112FC7;
    color: #fff;
}

/* Toast */
.iletisim-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #222;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 9999;
    max-width: 90vw;
    text-align: center;
}

.iletisim-toast.gorunur {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.iletisim-toast.basari {
    background: #1a7f45;
}

.iletisim-toast.hata {
    background: #c4222b;
}

@media (max-width: 900px) {
    .iletisim-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .iletisim-form-row {
        grid-template-columns: 1fr;
    }

    .iletisim-section {
        padding: 50px 20px 60px;
    }
}
/* ── İLETİŞİM SAYFASI END ── */



/* Sertifikalar*/

.Sertifikalar {
    font-family: Arial, sans-serif;
    max-width: 50%;
    margin: 40px auto;
    overflow: hidden;
}

@media (max-width: 768px) {
    .Sertifikalar {
        max-width: 90%;
    }
}

.sertifika-baslik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: #dd5766;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
    width: 100vh;
}

    .sertifika-baslik h2 {
        margin: 0;
        font-size: 1.3rem;
        color: white;
    }

    .sertifika-baslik .ikon {
        font-size: 1.4rem;
        color: white;
        transition: transform 0.4s ease;
    }

    .sertifika-baslik.active .ikon {
        transform: rotate(180deg);
    }

.sertifika-listesi {
    background-color: #dd5766;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0 25px;
}

    .sertifika-listesi.active {
        max-height: 500px;
        padding: 20px 25px;
        border-top: 1px solid #e0e0e0;
    }

    .sertifika-listesi ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sertifika-listesi li {
        margin-bottom: 12px;
    }

    .sertifika-listesi a {
        text-decoration: none;
        color: white;
        font-size: 1rem;
        display: block;
        padding: 8px 12px;
        border-radius: 5px;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

        .sertifika-listesi a:hover {
            background-color: #edecec;
            color: black;
            text-decoration: underline;
        }

/* ── SERTİFİKALAR  End── */

/* ── ERİŞİLEBİLİRLİK ── */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* ── ERİŞİLEBİLİRLİK End── */

/*Testimonial*/

.tise-testimonials {
    --tise-navy: #000e66;
    --tise-coral: #ff5562;
    --tise-coral-soft: #fff5f6;
    --tise-coral-border: #ffd0d5;
    --tise-bg: #ffffff;
    --tise-bg-soft: #fafbff;
    --tise-border: #eaedf7;
    --tise-text: #2a3050;
    --tise-muted: #6b7290;
    background: var(--tise-bg);
    padding: 96px 64px;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--tise-text);
    box-sizing: border-box;
}

    .tise-testimonials *,
    .tise-testimonials *::before,
    .tise-testimonials *::after {
        box-sizing: border-box;
    }

.tise-testimonials__inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* ---------- Header ---------- */
.tise-testimonials__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 56px;
}

.tise-testimonials__eyebrow {
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--tise-coral);
    font-weight: 700;
    margin-bottom: 14px;
}

.tise-testimonials__title {
    font-family: inherit;
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.1;
    color: var(--tise-navy);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.025em;
    max-width: 680px;
}

/* ---------- Nav arrows ---------- */
.tise-testimonials__nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.tise-testimonials__nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #dfe2ef;
    background: #fff;
    color: var(--tise-navy);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: all 0.2s ease;
    font-family: inherit;
}

    .tise-testimonials__nav-btn:hover {
        border-color: var(--tise-navy);
        transform: translateY(-1px);
    }

.tise-testimonials__nav-btn--primary {
    background: var(--tise-navy);
    color: #fff;
    border: none;
}

    .tise-testimonials__nav-btn--primary:hover {
        background: #000a4d;
    }

/* ---------- Main split layout ---------- */
.tise-testimonials__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    min-height: 520px;
}

/* ---------- Feature card (left) ---------- */
.tise-feature {
    background: var(--tise-navy);
    color: #fff;
    border-radius: 8px;
    padding: 56px 56px 48px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tise-feature__number {
    position: absolute;
    right: -20px;
    bottom: -80px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 380px;
    line-height: 1;
    color: rgba(255, 85, 98, 0.12);
    font-weight: 400;
    user-select: none;
    pointer-events: none;
}

.tise-feature__tag {
    align-self: flex-start;
    padding: 6px 12px;
    background: rgba(255, 85, 98, 0.15);
    color: var(--tise-coral);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 2px;
    margin-bottom: 36px;
}

.tise-feature__mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 96px;
    line-height: 0.5;
    color: var(--tise-coral);
    height: 40px;
    margin-bottom: 12px;
}

.tise-feature__quote {
    font-size: 22px;
    line-height: 1.5;
    margin: 0 0 40px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #f4f5fb;
    flex: 1;
    position: relative;
    z-index: 1;
}

.tise-feature__foot {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.tise-feature__name {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 4px;
}

.tise-feature__title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.tise-feature__company {
    font-size: 13px;
    color: var(--tise-coral);
    font-weight: 600;
    margin-top: 2px;
}

.tise-feature__project {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    letter-spacing: 0.05em;
    max-width: 180px;
}

/* ---------- Selector list (right) ---------- */
.tise-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tise-list__item {
    text-align: left;
    background: var(--tise-bg-soft);
    border: 1px solid var(--tise-border);
    border-radius: 6px;
    padding: 20px 22px;
    cursor: pointer;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
    font-family: inherit;
    color: inherit;
}

    .tise-list__item:hover {
        border-color: #c4c9de;
        transform: translateX(2px);
    }

    .tise-list__item.is-active {
        background: var(--tise-coral-soft);
        border-color: var(--tise-coral);
    }

.tise-list__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tise-list__index {
    font-size: 11px;
    color: var(--tise-muted);
    font-weight: 700;
    letter-spacing: 0.15em;
}

.tise-list__item.is-active .tise-list__index {
    color: var(--tise-coral);
}

.tise-list__company {
    font-size: 12px;
    color: var(--tise-muted);
    font-weight: 600;
}

.tise-list__item.is-active .tise-list__company {
    color: var(--tise-coral);
}

.tise-list__excerpt {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--tise-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tise-list__who {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--tise-navy);
}

.tise-list__who-role {
    color: var(--tise-muted);
    font-weight: 400;
}

/* ---------- Fade animation on content swap ---------- */
.tise-feature__body.is-swapping {
    opacity: 0;
    transform: translateY(6px);
}

.tise-feature__body {
    transition: opacity 0.25s ease, transform 0.25s ease;
    display: contents;
}

.tise-feature__animated {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.tise-feature.is-swapping .tise-feature__animated {
    opacity: 0;
    transform: translateY(6px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .tise-testimonials {
        padding: 72px 40px;
    }

    .tise-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .tise-feature {
        padding: 44px 36px 36px;
    }

    .tise-feature__number {
        font-size: 260px;
        bottom: -60px;
    }
}

@media (max-width: 640px) {
    .tise-testimonials {
        padding: 56px 20px;
    }

    .tise-testimonials__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .tise-feature {
        padding: 32px 24px 28px;
    }

    .tise-feature__quote {
        font-size: 18px;
    }

    .tise-feature__foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .tise-feature__project {
        text-align: left;
        max-width: none;
    }

    .tise-feature__number {
        font-size: 200px;
        right: -10px;
        bottom: -40px;
    }
}

/* ── TESTİMONİAL END ── */


/*Tise Cookie*/

.tise-cookie {
    --tise-navy: #000e66;
    --tise-coral: #ff5562;
    --tise-coral-soft: #fff5f6;
    --tise-coral-border: #ffd0d5;
    --tise-border: #eef0f7;
    --tise-muted: #6b7290;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 24px;
    box-shadow: 0 20px 50px -12px rgba(0, 14, 102, 0.18), 0 4px 12px rgba(0, 14, 102, 0.06);
    border: 1px solid var(--tise-border);
    display: flex;
    align-items: center;
    gap: 24px;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    animation: tise-cookie-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-sizing: border-box;
}

    .tise-cookie *,
    .tise-cookie *::before,
    .tise-cookie *::after {
        box-sizing: border-box;
    }

    .tise-cookie[hidden] {
        display: none !important;
    }

@keyframes tise-cookie-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tise-cookie.is-leaving {
    animation: tise-cookie-out 0.25s ease forwards;
}

@keyframes tise-cookie-out {
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* --- Icon --- */
.tise-cookie__icon {
    width: 44px;
    height: 44px;
    background: var(--tise-coral-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--tise-coral-border);
}

/* --- Text --- */
.tise-cookie__text {
    flex: 1;
    min-width: 0;
}

.tise-cookie__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--tise-navy);
    margin: 0 0 3px;
}

.tise-cookie__body {
    font-size: 13px;
    color: var(--tise-muted);
    line-height: 1.5;
    margin: 0;
}

.tise-cookie__link {
    color: var(--tise-navy);
    font-weight: 600;
    text-decoration: underline;
    margin-left: 4px;
}

    .tise-cookie__link:hover {
        color: var(--tise-coral);
    }

/* --- Buttons --- */
.tise-cookie__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.tise-cookie__btn {
    padding: 11px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tise-cookie__btn--reject {
    background: transparent;
    color: var(--tise-muted);
    border: 1px solid #dfe2ef;
}

    .tise-cookie__btn--reject:hover {
        color: var(--tise-navy);
        border-color: var(--tise-navy);
    }

.tise-cookie__btn--accept {
    background: var(--tise-navy);
    color: #ffffff;
    border: none;
    font-weight: 700;
}

    .tise-cookie__btn--accept:hover {
        background: #000a4d;
        transform: translateY(-1px);
    }

/* --- Responsive --- */
@media (max-width: 780px) {
    .tise-cookie {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 20px;
        bottom: 12px;
        left: 12px;
        right: 12px;
    }

    .tise-cookie__icon {
        align-self: flex-start;
    }

    .tise-cookie__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/*Tise Cookie End*/