.home-form-cont {
    display: block;
    min-height: 700px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 20%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.12), transparent 18%),
        linear-gradient(135deg, #0f4c81 0%, #1565c0 42%, #1d4ed8 100%);
    position: relative;
    padding: 72px 0;
    overflow: hidden;
}

@media (max-width: 1466px) {
    .home-form-cont {
        padding: 64px 0;
    }
}

@media (max-width: 1024px) {
    .home-form-cont {
        min-height: auto;
        overflow: hidden;
        padding: 48px 0;
    }
}

.home-form-cont .bg-abs-img {
    display: inline-block;
    position: absolute;
    opacity: 0.22;
    pointer-events: none;
}

.home-form-cont .bg-abs-img.left {
    left: -20px;
    bottom: 0;
}

.home-form-cont .bg-abs-img.right {
    right: -20px;
    top: 0;
}

.home-form-cont .bg-abs-img img {
    display: block;
    max-width: 100%;
    height: auto;
}

@media (max-width: 932px) {
    .home-form-cont .bg-abs-img {
        opacity: 0.1;
    }
}

.home-form-cont .home-form {
    display: block;
    position: relative;
    max-width: 1220px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
    z-index: 2;
}

@media (max-width: 1366px) {
    .home-form-cont .home-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .home-form-cont .home-form {
        padding: 0 16px;
    }
}

.home-form-cont .home-form .tab-buttons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-align: center;
    background-color: rgba(8, 27, 59, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(7, 23, 52, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    gap: 4px;
}

@media (max-width: 932px) {
    .home-form-cont .home-form .tab-buttons {
        width: 100%;
        display: flex;
    }
}

.home-form-cont .home-form .tab-buttons .tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 16px 34px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: all 0.28s ease-in-out;
    cursor: pointer;
    min-height: 54px;
}

@media (max-width: 932px) {
    .home-form-cont .home-form .tab-buttons .tab {
        width: 33.33%;
        padding: 14px 8px;
        font-size: 13px;
    }
}

.home-form-cont .home-form .tab-buttons .tab:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.home-form-cont .home-form .tab-buttons .tab.active {
    background-color: #ffffff;
    color: #0f3d91;
    box-shadow: 0 12px 28px rgba(15, 61, 145, 0.18);
}

.home-form-cont .home-form .tab-buttons .tab.active:hover {
    background-color: #f8fbff;
    color: #0f3d91;
}

.home-form-cont .home-form .tab-choice {
    display: none;
    padding: 34px 0 18px;
    text-align: center;
}

.home-form-cont .home-form .tab-choice.active {
    display: block;
}

.home-form-cont .home-form .tab-choice li {
    display: inline-block;
    margin: 0 10px 14px;
    cursor: pointer;
    vertical-align: top;
    transition: transform 0.25s ease;
}

.home-form-cont .home-form .tab-choice li:hover {
    transform: translateY(-4px);
}

@media (max-width: 932px) {
    .home-form-cont .home-form .tab-choice li {
        margin: 0 6px 12px;
    }
}

.home-form-cont .home-form .tab-choice li i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    margin: 0 auto;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
    transition: all 0.28s ease;
    overflow: hidden;
    font-style: normal;
}

.home-form-cont .home-form .tab-choice li .tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 30px;
    line-height: 1;
}

@media (max-width: 932px) {
    .home-form-cont .home-form .tab-choice li i {
        width: 64px;
        height: 64px;
    }

    .home-form-cont .home-form .tab-choice li .tab-icon {
        width: 28px;
        height: 28px;
        font-size: 22px;
    }
}

.home-form-cont .home-form .tab-choice li span {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
    line-height: 1.35;
}

@media (max-width: 932px) {
    .home-form-cont .home-form .tab-choice li span {
        width: 90px;
        font-size: 12px;
        margin-top: 10px;
    }
}

.home-form-cont .home-form .tab-choice li:hover i,
.home-form-cont .home-form .tab-choice li.active i {
    background-color: #ffffff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
    transform: scale(1.03);
}

.home-form-cont .home-form .tab-choice li:hover .tab-icon,
.home-form-cont .home-form .tab-choice li.active .tab-icon {
    filter: none;
}

.home-form-cont .home-form .tab-cont-data {
    display: none;
    position: relative;
    padding-top: 8px;
}

.home-form-cont .home-form .tab-cont-data.active {
    display: block;
}

.home-form-cont .home-form .tab-cont-data .form-cont {
    display: none;
    text-align: left;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    padding: 32px;
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
}

@media (max-width: 932px) {
    .home-form-cont .home-form .tab-cont-data .form-cont {
        width: 100%;
        padding: 22px 18px;
        border-radius: 22px;
    }
}

.home-form-cont .home-form .tab-cont-data .form-cont.active {
    display: block;
}

.form-card-title {
    display: block;
    margin-bottom: 6px;
    text-align: center;
}

.form-card-title .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #e7f2ff;
    color: #0f3d91;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}

.form-card-title strong {
    display: block;
    font-size: 26px;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 10px;
}

.form-card-title p {
    display: block;
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin: 0 auto;
    max-width: 560px;
}

.service-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    margin-top: 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 16px 30px rgba(34, 197, 94, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(34, 197, 94, 0.3);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

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

.s-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

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

.faq-card {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
}

.faq-card strong {
    display: block;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.faq-card p {
    display: block;
    font-size: 14px;
    line-height: 1.8;
    color: #64748b;
}
body {
    padding-bottom: 118px;
}

.bottom-fixed-logo-band {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(135deg, #0f8f43 0%, #15a34a 50%, #16a34a 100%);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.16);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    overflow: hidden;
}

.bottom-fixed-logo-band-inner {
    display: block;
    width: 100%;
    padding: 10px 0 12px;
}

.bottom-fixed-logo-band-title {
    display: block;
    text-align: center;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bottom-fixed-logo-band-track-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.bottom-fixed-logo-band-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 14px;
    animation: bottomFixedLogoMarquee 34s linear infinite;
    will-change: transform;
}

body.menu-open .bottom-fixed-logo-band {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.bottom-fixed-logo-item {
    flex: 0 0 auto;
    width: 126px;
    height: 58px;
    padding: 10px 14px;
    border-radius: 14px;

    background: #ffffff; /* 🔥 ANA ÇÖZÜM */
    border: 1px solid rgba(0, 0, 0, 0.06);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);

    transition: all 0.25s ease;
}

.bottom-fixed-logo-item img {
    max-width: 100%;
    max-height: 32px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: none;
    opacity: 1;

}

.bottom-fixed-logo-band:hover .bottom-fixed-logo-band-track {
    animation-play-state: paused;
}

@keyframes bottomFixedLogoMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 106px;
    }

    .bottom-fixed-logo-band-inner {
        padding: 8px 0 10px;
    }

    .bottom-fixed-logo-band-title {
        font-size: 12px;
        margin-bottom: 8px;
        letter-spacing: 0.06em;
    }

    .bottom-fixed-logo-band-track {
        gap: 10px;
        animation-duration: 26s;
    }

body.menu-open .bottom-fixed-logo-band {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
	}
	
	
.faq-shell {
    max-width: 960px;
    margin: 42px auto 0;
}

.faq-scroll {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

.faq-scroll::-webkit-scrollbar {
    width: 8px;
}

.faq-scroll::-webkit-scrollbar-thumb {
    background: rgba(37, 99, 235, 0.28);
    border-radius: 999px;
}

.faq-scroll::-webkit-scrollbar-track {
    background: rgba(148, 163, 184, 0.12);
    border-radius: 999px;
}

.faq-category-title {
    margin: 26px 0 14px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #e7f2ff;
    color: #0f3d91;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-flex;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    border: none;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    transition: background 0.25s ease;
}

.faq-question:hover {
    background: #f8fbff;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    line-height: 1;
    color: #2563eb;
    font-weight: 700;
}

.faq-item.active .faq-question {
    background: #eef5ff;
    color: #0f3d91;
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 22px;
    background: #ffffff;
}

.faq-answer p {
    margin: 0;
    padding: 0 0 18px;
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
}

@media (max-width: 768px) {
    .faq-scroll {
        max-height: 480px;
        padding-right: 4px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 14px;
    }

    .faq-question::after {
        right: 18px;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-answer p {
        font-size: 13px;
        padding-bottom: 16px;
    }
}

.service-side-visual {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-side-visual img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 36px rgba(15, 23, 42, 0.16));
}

.service-side-visual-left {
    left: 60px;
    top: 50%;
    transform: translateY(-60%);
    width: 300px;
    max-width: 22vw;
}

.service-side-visual-right {
    right: 60px;
    top: 50%;
    transform: translateY(-60%);
    width: 320px;
    max-width: 24vw;
}

.home-form {
    position: relative;
    z-index: 3;
}

@media (max-width: 1366px) {
    .service-side-visual-left {
        left: 22px;
        width: 230px;
    }

    .service-side-visual-right {
        right: 22px;
        width: 240px;
    }
}

@media (max-width: 1100px) {
    .service-side-visual-left,
    .service-side-visual-right {
        opacity: 0.20;
        width: 180px;
        bottom: 20px;
    }
}

@media (max-width: 932px) {
    .service-side-visual-left,
    .service-side-visual-right {
        display: none;
    }
}
