/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
/* Variables */
:root {
    --primary: #3699ff; /* Ana mavi */
    --secondary: #4ECCA3; /* Açık yeşil */
    --light: #F8F9FA; /* Açık gri */
    --dark: #212529; /* Koyu gri */
    --white: #FFFFFF;
    --gradient-start: #3699ff;
    --gradient-end: #4ECCA3;
    --wave-fill-color: #ffffff;
}

/* Base Styles */
body {
    font-family: "Jost", sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    overflow: hidden; /* Sayfanın scroll'unu engelle */
}

/* Navbar Styles */
.navbar {
    background: transparent !important;
    padding: 0;
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.login-btn {
    background: #3699ff;
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
}

.login-btn:hover {
    background: #4ECCA3;
}

/* Hero Section Styles */
.hero {
    background: transparent;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 2;
    min-height: 100vh;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(43, 80, 170, 0.9), rgba(78, 204, 163, 0.8));
}

.hero-text {
    position: relative;
    z-index: 2;
    color: white;
    padding-left: 3rem;
}

/* Animasyonlu başlık stilleri */
.title-wrapper {
    margin-bottom: 2rem;
}

.changing-title {
    position: relative;
    height: 120px;
}

.title-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.title-line.active {
    opacity: 1;
    transform: translateY(0);
}

.title-line.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

/* Alt metin stilleri */
.hero-description {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2rem 0;
    font-weight: 300;
    color: white;
    max-width: 700px;
}

/* Buton stilleri */
.hero-buttons {
    margin-top: 3rem;
}

.fade-in-btn {
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInButton 1.5s ease forwards;
}

.hero-buttons .btn:nth-child(1) {
    animation-delay: 0.5s;
}

.hero-buttons .btn:nth-child(2) {
    animation-delay: 0.8s;
}

@keyframes fadeInButton {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-buttons .btn {
    padding: 15px 40px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-primary {
    background: #6c5ce7;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
}

.btn-primary:hover {
    background: #4ECCA3;
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 2px solid white;
}

.btn-outline-light:hover {
    background: white;
    color: #3699ff;
    transform: translateY(-3px);
}

.navbar.scrolled .btn-outline-light {
    color: #344767;
    border-color: #344767;
}

.navbar.scrolled .btn-outline-light:hover {
    background: #344767;
    color: white;
}

/* Responsive */
@media (max-width: 1400px) {
    .hero-text {
        padding-left: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-text {
        padding-left: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-text {
        padding: 1rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .navbar {
        padding: 20px 0 !important;
    }
    .navbar.scrolled{
        padding: 15px 0 !important;
    }
}

.btn-outline-light {
    border: 1px solid white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
}

.btn-outline-light:hover {
    background: white;
    color: #344767;
}

/* Sections genel stil */
.section-padding {
    padding: 100px 0;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    margin-bottom: 30px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .icon {
    font-size: 2.5rem;
    color: #3699ff;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-subtitle {
    color: #3699ff;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.features-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-item i {
    color: #4ECCA3;
    margin-right: 10px;
    margin-top: 5px;
}

.feature-item span {
    color: #444;
    line-height: 1.4;
}

.feature-item strong {
    color: #3699ff;
}

/* Dairesel Diyagram Stili */
.circular-diagram {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.center-circle h3 {
    text-align: center;
    color: #3699ff;
    font-size: 1.2rem;
    font-weight: 700;
}

.module-items {
    position: absolute;
    width: 100%;
    height: 100%;
}

.module-item {
    position: absolute;
    width: 120px;
    height: 120px;
    background: #4ECCA3;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.module-item:hover {
    transform: scale(1.05);
}

.module-item .icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.module-item span {
    font-size: 0.8rem;
    line-height: 1.2;
}

/* Module item positions */
.item1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.item2 {
    top: 15%;
    right: 15%;
}

.item3 {
    bottom: 15%;
    right: 15%;
}

.item4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.item5 {
    bottom: 15%;
    left: 15%;
}

.item6 {
    top: 15%;
    left: 15%;
}

@media (max-width: 992px) {
    .circular-diagram {
        width: 400px;
        height: 400px;
        margin-top: 50px;
    }

    .module-item {
        width: 100px;
        height: 100px;
    }

    .center-circle {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .circular-diagram {
        width: 300px;
        height: 300px;
    }

    .module-item {
        width: 80px;
        height: 80px;
    }

    .module-item .icon {
        font-size: 20px;
    }

    .module-item span {
        font-size: 0.7rem;
    }

    .center-circle {
        width: 100px;
        height: 100px;
    }

    .center-circle h3 {
        font-size: 1rem;
    }
}


/* Animasyon için başlangıç stilleri */
.animate-text {
    opacity: 0;
    transform: translateX(-50px);
}

.animate-btn {
    opacity: 0;
    transform: translateY(20px);
}

/* AOS animasyonları için ek stiller */
[data-aos] {
    pointer-events: none; /* Animasyon sırasında tıklamayı engelle */
}

[data-aos].aos-animate {
    pointer-events: auto; /* Animasyon bitince tıklamaya izin ver */
}

/* Scroll olduğunda navbar style */
.navbar.scrolled {
    background: rgba(255, 255, 255, 1) !important;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar link styles */
.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 30px 1rem !important;
    transition: all 0.3s ease;
}

/* Scrolled durumunda link rengi */
.navbar.scrolled .nav-link {
    color: #2191eb !important;
}

/* Giriş Yap button */
.navbar .btn-primary {
    background: transparent;
    border: 2px solid white;
    padding: 8px 24px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Scrolled durumunda buton style */
.navbar.scrolled .btn-primary {
    background: #3699ff;
    border-color: #3699ff;
    color: white;
}

/* Hover effects */
.navbar .btn-primary:hover {
    background: white;
    color: #3699ff;
}

.navbar.scrolled .btn-primary:hover {
    background: #4ECCA3;
    border-color: #4ECCA3;
}

/* Logo styles */
.navbar-brand img {
    height: 40px;
    transition: all 0.3s ease;
    margin-top: 6px;
}

/* Sadece değişen başlık stilleri */
.title-wrapper {
    margin-bottom: 2rem;
}

.changing-title {
    position: relative;
    height: 120px;
}

.title-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.title-line.active {
    opacity: 1;
    transform: translateY(0);
}

.title-line.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

.title-line,
.desc-line {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    position: absolute;
}

.title-line.active,
.desc-line.active {
    opacity: 1;
    visibility: visible;
}

.fade-out {
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Diğer statik elementler */
.hero-description {
    font-size: 1.5rem;
    margin: 2rem 0 3rem;
    font-weight: 300;
    color: white;
    max-width: 700px;
}

.hero-buttons .btn {
    padding: 15px 40px;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .title-line {
        font-size: 2.8rem;
    }

    .changing-title {
        height: 100px;
    }
}

@media (max-width: 992px) {
    .title-line {
        font-size: 2.5rem;
    }

    .changing-title {
        height: 90px;
    }
}

@media (max-width: 768px) {
    .title-line {
        font-size: 2rem;
    }

    .changing-title {
        height: 80px;
    }
}

/* Description animasyon stilleri */
.description-wrapper {
    margin: 2rem 0;
}

.changing-description {
    position: relative;
    height: 80px; /* İçeriğe göre ayarlayın */
}

.desc-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 300;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    max-width: 800px;
    margin: 0;
}

.desc-line.active {
    opacity: 1;
    transform: translateY(0);
}

.desc-line.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

/* Responsive */
@media (max-width: 992px) {
    .changing-description {
        height: 100px;
    }

    .desc-line {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .changing-description {
        height: 120px;
    }

    .desc-line {
        font-size: 1rem;
    }
}

/* Responsive düzenlemeler için mevcut media query'lere ek ayarlar gerekmez */

.solution-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Görsel animasyonu için hover efekti */
.solution-image:hover img {
    transform: translateY(-5px);
}

/* Responsive ayarlar */
@media (max-width: 992px) {
    .solution-image {
        margin-top: 40px;
    }

    .solution-image img {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .solution-image img {
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .solution-image img {
        max-width: 300px;
    }
}

/* Opsiyonel: Görsel etrafında hafif bir glow efekti */
.solution-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background: radial-gradient(circle, rgba(76, 202, 163, 0.1) 0%, rgba(43, 80, 170, 0.05) 100%);
    border-radius: 50%;
    z-index: -1;
}

/* Mobil görünümde resim her zaman üstte olsun */
@media (max-width: 992px) {
    .solutions .row {
        flex-direction: column;
    }

    .solutions .solution-image {
        margin-bottom: 40px;
        margin-top: 0; /* Önceki margin-top'ı sıfırla */
    }

    /* Sıralama için */
    .solutions .row > div:first-child {
        order: 1;
    }

    .solutions .row > div:last-child {
        order: 2;
    }
}

/* Opsiyonel: Farklı düzenler için */
.solutions-reversed .row {
    flex-direction: row-reverse;
}

@media (max-width: 992px) {
    .solutions-reversed .row {
        flex-direction: column;
    }
}

.btn-modern {
    position: relative;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(45deg, #3699ff, #4ECCA3);
    border: none;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(43, 80, 170, 0.2);
    z-index: 1;
}

/* Hover efekti için gradient overlay */
.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #4ECCA3, #3699ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* Hover durumları */
.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 80, 170, 0.3);
    color: #fff;
}

.btn-modern:hover::before {
    opacity: 1;
}

/* Active durumu */
.btn-modern:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(43, 80, 170, 0.2);
}

/* Buton içinde ikon varsa */
.btn-modern i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-modern:hover i {
    transform: translateX(4px);
}

/* Loading durumu için */
.btn-modern.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-modern.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: button-loading 0.8s linear infinite;
}

@keyframes button-loading {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Alternatif renk şemaları */
.btn-modern.blue-theme {
    background: linear-gradient(45deg, #3699ff, #3B7BE7);
}

.btn-modern.blue-theme::before {
    background: linear-gradient(45deg, #3B7BE7, #3699ff);
}

.btn-modern.green-theme {
    background: linear-gradient(45deg, #4ECCA3, #45B69C);
}

.btn-modern.green-theme::before {
    background: linear-gradient(45deg, #45B69C, #4ECCA3);
}

/* Outline versiyonu */
.btn-modern.outline {
    background: transparent;
    border: 2px solid #3699ff;
    color: #3699ff;
}

.btn-modern.outline:hover {
    background: #3699ff;
    color: #fff;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .btn-modern {
        padding: 12px 25px;
        font-size: 14px;
    }
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.sections-container {
    position: relative;
    width: 100%;
    overflow: hidden; /* Taşan içeriği gizle */
}

.solutions-section {
    position: relative;
    width: 100%;
    transform-origin: center;
    will-change: transform, opacity;
    margin: 50px 0;
}

/* Smooth scroll için */
html {
    scroll-behavior: smooth;
}

/* Section aralarındaki boşluk */
.solutions-section:not(:first-child) {
    margin-top: 50px;
}

/* Performans optimizasyonu */
.solutions-section {
    isolation: isolate;
    contain: content;
}

.card {
    width: 95%;
    max-width: 1400px;
    min-height: 600px; /* Minimum yükseklik ekliyoruz */
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card.active {
    opacity: 1;
    transform: translateY(0);
}

/* İçerik düzeni */
.card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-left {
    max-width: 600px;
}

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

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .card {
        padding: 40px;
    }

    .card-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .card {
        padding: 30px;
    }

    .card-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .card {
        padding: 20px;
        width: 98%;
    }
}

/* Gradient'i tek bir yerden kontrol etmek için */
.gradient-bg {
    background: linear-gradient(135deg,
    var(--gradient-start) 0%,
    var(--gradient-end) 100%
    );
}

.solutions-section.bg-light {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.solution-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-text {
    padding-left: 0; /* Eğer varsa padding'i kaldırıyoruz */
}

@media (min-width: 1200px) {
    .hero .container {
        margin: 0 auto;
    }
}

.footer {
    background: linear-gradient(340deg, rgba(10, 12, 16, 1) 0%, rgba(23, 67, 111, 1) 100%);
    color: #fff;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* İletişim Bölümü Stilleri */
.contact-info {
    position: relative;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.contact-text h6 {
    color: #fff;
    margin: 0 0 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-text p,
.contact-text a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    word-break: break-all;
}

.contact-text a:hover {
    color: #fff;
}

/* Alt Bilgi Stilleri */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0 0 20px 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.certificates {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.certificates img {
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.certificates img:hover {
    opacity: 1;
}

/* Ödeme yöntemleri için container */
.payment-methods {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px; /* Logolar arası boşluk */
}

.payment-methods img {
    max-width: 100%;
    height: 30px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
}

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


@media (max-width: 768px) {
    .contact-item {
        padding: 10px;
    }

    .certificates,
    .payment-methods {
        justify-content: center;
        margin: 15px 0;
    }

    .copyright {
        text-align: center;
    }
}


/* Mobil uygulama butonları için modern tasarım */
.app-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.app-store-btn {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 25px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.app-store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.app-store-btn img {
    height: 30px;
    margin-right: 5px;
}

.app-store-btn .app-store-text {
    display: flex;
    flex-direction: column;
}

.app-store-btn .app-store-text small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.app-store-btn .app-store-text span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Mobil Uygulama Section Stilleri */
.app-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    color: #3699ff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.app-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    color: #3699ff;
    margin-right: 10px;
    font-size: 1.2rem;
}

.feature-item span {
    color: #444;
    font-weight: 500;
}

.app-download {
    display: flex;
    gap: 15px;
}

.app-store-btn {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    background: #2a2a2a;
}

.app-showcase-image {
    position: relative;
    text-align: center;
}

.main-mockup {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.floating-notification {
    position: absolute;
    top: 30%;
    right: 0;
    background: white;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: #3699ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.notification-icon i {
    color: white;
}

.notification-content h6 {
    margin: 0;
    font-size: 0.9rem;
    color: #1a1a1a;
}

.notification-content p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .app-showcase {
        padding: 60px 0;
    }

    .app-showcase-image {
        margin-top: 40px;
    }

    .floating-notification {
        display: none;
    }
}

@media (max-width: 768px) {
    .app-download {
        flex-direction: column;
    }

    .app-store-btn {
        width: 100%;
        justify-content: center;
    }
}

.footer .app-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer .app-store-btn {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1); /* Yarı saydam beyaz arka plan */
    border-radius: 8px;
    padding: 20px 25px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2); /* İnce beyaz çerçeve */
}

.footer .app-store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 499px) {

    .footer .app-buttons {
        padding-right: 20px;
    }

    .footer .app-store-btn {
        padding: 10px 15px;
    }

    .footer .app-store-btn img {
        height: 24px;
    }
}


/* Mevcut CSS'e eklenecek notification stilleri */
.app-showcase-image {
    position: relative;
    text-align: right;
    padding-left: 40px;
    max-width: 600px; /* Maksimum genişlik */
    margin-left: auto; /* Sağa yaslamak için */
}

.mockup-image {
    width: 85%; /* Konteyner içinde görsel boyutu */
    height: auto;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
}

.floating-notification {
    position: absolute;
    top: 15%;
    right: 25%;
    background: white;
    border-radius: 12px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.notification-icon {
    width: 36px;
    height: 36px;
    background: #3699ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.notification-icon i {
    color: white;
    font-size: 0.9rem;
}

.notification-content {
    flex: 1;
}

.notification-content h6 {
    margin: 0;
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 600;
}

.notification-content p {
    margin: 3px 0 0;
    font-size: 0.8rem;
    color: #666;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive düzenlemeler için notification ayarları */
@media (max-width: 992px) {
    .app-showcase-image {
        max-width: 500px;
        margin: 40px auto 0;
        padding-left: 0;
    }

    .mockup-image {
        width: 75%;
        transform: none;
    }

    .floating-notification {
        position: absolute;
        top: 10%;
        right: 10%;
    }
}

@media (max-width: 768px) {
    .app-showcase-image {
        max-width: 400px;
    }

    .mockup-image {
        width: 85%;
    }

    .floating-notification {
        display: none; /* Mobilde gizle */
    }
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .mockup-image {
        width: 90%;
    }
}


/* Feature list stilleri */
.app-showcase-content .feature-list {
    margin: 30px 0;
}

.app-showcase-content .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 16px 20px;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.app-showcase-content .feature-item:hover {
    background: #3699ff;
    color: #ffffff;
    transform: translateX(5px);
}

.app-showcase-content .feature-item:hover .feature-icon {
    background: #ffffff;
}

.app-showcase-content .feature-item:hover .feature-icon i {
    color: #3699ff;
}

.app-showcase-content .feature-item:hover .feature-text {
    color: #ffffff;
}

.app-showcase-content .feature-icon {
    width: 46px;
    height: 46px;
    background: #3699ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    margin-bottom: 0px;
    flex-shrink: 0;
}

.app-showcase-content .feature-icon i {
    color: white;
    font-size: 1.25rem;
    margin: 0;
    padding: 0;
}

.app-showcase-content .feature-text {
    color: #3699ff;
    font-weight: 500;
    font-size: 1.05rem;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 12px;
    background: #3699ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(43, 80, 170, 0.25);

    background: #4ECCA3;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .feature-item {
        padding: 14px 18px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
    }

    .feature-text {
        font-size: 1rem;
    }

    .app-store-btn {
        padding: 10px 20px;
    }

    .app-store-btn img {
        height: 32px;
    }
}

.side-form-panel {
    position: fixed;
    top: 0;
    right: -500px;
    width: 500px;
    height: 100vh;
    background: rgba(255, 255, 255, 1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
}

.side-form-panel.active {
    right: 0;
}

/* Form açıkken arka planı karartma */
.side-form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.side-form-overlay.active {
    display: block;
}

/* Diğer stiller aynı kalacak */
.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.form-header h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    padding-bottom: 1rem;
}

.form-header h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #eef2f7;
    transform: rotate(90deg);
}

/* Form stilleri */
.side-form-panel .form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.7rem;
    display: block;
}

.side-form-panel .form-control {
    height: 55px;
    padding: 0.75rem 1.2rem;
    border: 2px solid #eef2f7;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    padding-right: 2.5rem;
}

.side-form-panel .form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 5px 15px rgba(43, 80, 170, 0.1);
}

.side-form-panel .mb-3 {
    margin-bottom: 1.5rem !important;
    position: relative;
}

.side-form-panel .btn-primary {
    height: 55px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    box-shadow: 0 5px 15px rgba(43, 80, 170, 0.2);
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.side-form-panel .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 80, 170, 0.3);
}


/* Mobil uyumluluk için */
@media (max-width: 576px) {
    .side-form-panel {
        width: 100%;
        padding: 2rem;
    }
}

.side-form-panel .side-form-body .side-form-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.side-form-panel .side-form-body .side-form-loader img {
    width: 100px;
    height: 100px;
}

/* Datetime picker özel stilleri */
.bootstrap-datetimepicker-widget {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1051 !important;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background-color: #007bff;
    border-radius: 4px;
}

.bootstrap-datetimepicker-widget table td.today:before {
    border-bottom-color: #007bff;
}

/* Testimonials Section */
.testimonials {
    background: #FFFFFF;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials .section-title {
    color: #3699ff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.testimonials .section-description {
    color: #666;
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.testimonial-carousel {
    position: relative;
    padding: 20px 0;
}

.testimonial-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 40px;
}

.modern-testimonial {
    flex: 0 0 calc(33.333% - 27px);
    perspective: 1000px;
}

.testimonial-inner {
    position: relative;
    width: 100%;
    height: 320px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.modern-testimonial:hover .testimonial-inner {
    transform: rotateY(180deg);
}

.testimonial-front,
.testimonial-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.testimonial-front {
    background: #fff;
    border: 1px solid rgba(43, 80, 170, 0.1);
    box-shadow: 0 10px 30px rgba(43, 80, 170, 0.05);
    transition: all 0.3s ease;
}

.testimonial-back {
    background: linear-gradient(135deg, #3699ff 0%, #4ECCA3 100%);
    transform: rotateY(180deg);
    box-shadow: 0 10px 30px rgba(43, 80, 170, 0.1);
}

.company-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(43, 80, 170, 0.05);
    transition: transform 0.3s ease;
}

.modern-testimonial:hover .company-logo {
    transform: scale(1.05);
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-name {
    color: #3699ff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.testimonial-text {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 400;
}

.testimonial-author {
    color: #fff;
    position: relative;
    padding-top: 20px;
}

.testimonial-author h5 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.testimonial-author span {
    font-size: 0.95rem;
    opacity: 0.9;
    display: block;
    margin-top: 5px;
    color: #fff;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid rgba(43, 80, 170, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3699ff;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(43, 80, 170, 0.05);
}

.carousel-nav:hover {
    background: #3699ff;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -70px;
}

.carousel-nav.next {
    right: -70px;
}

.carousel-nav i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.carousel-nav:hover i {
    transform: scale(1.2);
}

.modern-testimonial:hover .testimonial-front {
    box-shadow: 0 15px 40px rgba(43, 80, 170, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .modern-testimonial {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .modern-testimonial {
        flex: 0 0 calc(100% - 20px);
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonials .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

/* Company Logo'yu Comment Icon'a çevirelim */
.comment-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43, 80, 170, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.comment-icon i {
    font-size: 32px;
    color: #3699ff;
    transition: all 0.3s ease;
}

.modern-testimonial:hover .comment-icon {
    background: rgba(43, 80, 170, 0.1);
    transform: scale(1.05);
}

.modern-testimonial:hover .comment-icon i {
    transform: scale(1.1);
}

/* Quote mark styling */
.quote-mark {
    color: rgba(255, 255, 255, 0.1);
    font-size: 48px;
    position: absolute;
    top: 20px;
    left: 20px;
}

/* Testimonial text adjustments for longer content */
.testimonial-back {
    padding: 50px 30px 30px;
    overflow-y: auto;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Custom scrollbar for overflow content */
.testimonial-back::-webkit-scrollbar {
    width: 6px;
}

.testimonial-back::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.testimonial-back::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

/* Adjust card height for better content fit */
.testimonial-inner {
    height: 350px;
}

/* Enhanced front side styling */
.testimonial-front .comment-icon {
    background: rgba(43, 80, 170, 0.08);
}

.testimonial-front .comment-icon i {
    color: #3699ff;
    font-size: 36px;
}

/* Author info styling */
.testimonial-author {
    margin-top: auto;
    padding-top: 15px;
}

.testimonial-author h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Testimonial back side styling */
.testimonial-back {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Dikey ortalama */
    min-height: 100%;
    position: relative;
}

/* Content wrapper for better alignment */
.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    gap: 20px;
}

/* Quote styling */
.quote-mark {
    color: rgba(255, 255, 255, 0.1);
    font-size: 48px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin: 0; /* Reset margin */
}

/* Author info styling */
.testimonial-author {
    margin-top: 20px;
    padding-top: 15px;
    position: relative;
}


/* Statistics Section */
.statistics {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.stat-item {
    position: relative;
    text-align: center;
    padding: 0 40px;
    transition: all 0.3s ease;
}

/* İnce dikey çizgiler için */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(43, 80, 170, 0.1), transparent);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 700;
    color: #3699ff;
    margin-bottom: 10px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.counter {
    display: inline-block;
    background: linear-gradient(135deg, #3699ff 0%, #4ECCA3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plus, .unit {
    font-size: 2.2rem;
    font-weight: 500;
    color: #3699ff;
    opacity: 0.8;
}

.stat-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    opacity: 0.8;
}

/* Hover effect */
.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:hover .counter {
    background: linear-gradient(135deg, #4ECCA3 0%, #3699ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
        gap: 40px;
    }

    .stat-item {
        padding: 20px 0;
    }

    .stat-item:not(:last-child)::after {
        height: 1px;
        width: 200px;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        bottom: -20px;
        background: linear-gradient(to right, transparent, rgba(43, 80, 170, 0.1), transparent);
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .plus, .unit {
        font-size: 2rem;
    }
}

.section-header {
    margin-bottom: 50px;
}

.app-showcase-content .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: left;
}

.divider {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.divider span {
    display: inline-block;
    width: 50px;
    height: 3px;
    background: #007bff;
}

.app-showcase-content .section-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

/* Logo Styling */
.logo-item {
    padding: 20px;
}

.logo-wrapper {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 150px; /* Sabit yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.logo-wrapper img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-wrapper:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Owl Carousel Customization */
.reference-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.reference-carousel .owl-dots {
    margin-top: 30px;
}

.reference-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.reference-carousel .owl-dot.active span {
    background: #007bff;
    transform: scale(1.5);
}

.references-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-divider {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.section-divider span {
    display: inline-block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d084);
}

.section-header p {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Slider Styling */
.logo-slider {
    position: relative;
    padding: 20px 0;
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(120px * 20); /* logo width * number of logos * 2 */
}

.slide {
    flex: 0 0 auto;
    padding: 0 30px;
}

.logo-card {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.logo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(45deg, #007bff, #00d084);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.logo-card:hover::before {
    opacity: 1;
}

.logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-120px * 10)); /* Half of total width */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .slide {
        padding: 0 15px;
    }

    .logo-card {
        width: 100px;
        height: 100px;
    }
}

/* Optional: Add a gradient overlay at the edges */
.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 0%, transparent 100%);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 0%, transparent 100%);
}

/* Çerez Yönetimi Banner Stili */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cookie-banner p {
    color: #333;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cookie-banner a {
    color: #3699ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-banner a:hover {
    color: #4ECCA3;
}

.cookie-banner .button-group {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.cookie-banner .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-banner .btn-primary {
    background-color: #3699ff;
    border-color: #3699ff;
}

.cookie-banner .btn-primary:hover {
    background-color: #4ECCA3;
    border-color: #4ECCA3;
}

.cookie-banner .btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.cookie-banner .btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        border-radius: 12px 12px 0 0;
        transform: none;
    }

    .cookie-banner .row {
        flex-direction: column;
    }

    .cookie-banner .col-md-4 {
        margin-top: 15px;
    }
}

@media (max-width: 991px) {
    .cookie-banner .row {
        flex-direction: column;
    }

    .cookie-banner .col-lg-8,
    .cookie-banner .col-lg-4 {
        width: 100%;
        text-align: center;
    }

    .cookie-banner p {
        margin-bottom: 1rem;
        text-align: center;
    }

    .cookie-banner .button-group {
        justify-content: center;
        margin: 0 auto;
    }

    .cookie-banner .text-lg-end {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner .button-group {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }
}


.partnership-hero {
    background: linear-gradient(135deg, #00B4DB, #0193b4);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.commission-counter {
    font-size: 4rem;
    font-weight: bold;
    margin: 2rem 0;
}

.partnership-features {
    padding: 80px 0;
}

.feature-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00B4DB;
}

.partnership-form {
    background: #f8f9fa;
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-partner {
    background: linear-gradient(135deg, #00B4DB, #0083B0);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-partner:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 180, 219, 0.3);
}

.achievement-text {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.achievement-icon {
    font-size: 2.5rem;
    color: #FFD700;
}

.achievement-message {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 500;
}

.btn-partner-green {
    background: #5fe0b7;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-partner-green:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    color: white;
}

.btn-partner-gradient {
    background: linear-gradient(135deg, #5fe0b7, #00B4DB);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-partner-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container .form-control {
    border-radius: 10px;
    padding: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-container .form-control:focus {
    border-color: #00B4DB;
    box-shadow: 0 0 0 0.2rem rgba(0, 180, 219, 0.1);
}

.form-container .form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

.gradient-text {
    background: #000000;
    color: #000000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 2.5rem;
}

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    position: relative;
    overflow: hidden;
}

/* Animated Background Pattern */
.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25px 25px, rgba(255, 255, 255, 0.2) 2%, transparent 0%),
    radial-gradient(circle at 75px 75px, rgba(255, 255, 255, 0.2) 2%, transparent 0%);
    background-size: 100px 100px;
    animation: patternMove 20s linear infinite;
    opacity: 0.3;
}

.header-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #5fe0b7, #00B4DB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.statistics-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.statistics-section .section-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #5fe0b7;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    color: #00B4DB;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.stat-number::after {
    content: '+';
    font-size: 2rem;
    position: relative;
    top: -5px;
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5fe0b7, #00B4DB);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover .card-decoration {
    opacity: 1;
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@media (max-width: 768px) {
    .stat-card {
        padding: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-number::after {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Update existing form styles */
.form-container {
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.partnership-form {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.contact-info-column {
    background: #1a237e;
    padding: 60px 40px;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100%;
}

.contact-info-content {
    width: 100%;
}

.text-content {
    text-align: left;
}

.contact-info-column h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #5fe0b7;
    line-height: 1.3;
}

.contact-info-column .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(46, 204, 113, 0.9);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contact-info-column {
        padding: 40px 30px;
    }

    .text-content {
        text-align: center;
    }

    .contact-info-column h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .contact-info-column {
        padding: 30px 20px;
    }

    .contact-info-column h2 {
        font-size: 1.5rem;
    }

    .contact-info-column .lead {
        font-size: 1rem;
    }
}

.contact-form-column {
    padding: 60px 40px;
}

.contact-form .form-label {
    font-weight: 500;
    color: #344767;
    margin-bottom: 8px;
}

.btn-submit {
    background: #3699fe;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #cccccc;
    border-color: #cccccc;
    pointer-events: none;
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .contact-info-column {
        padding: 40px;
    }

    .contact-form-column {
        padding: 40px;
    }

    .handshake-animation {
        display: none;
    }
}

.partnership-benefits {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.benefits-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.gradient-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.header-decoration {
    position: relative;
    height: 40px;
    margin-top: 20px;
}

.arrow-down {
    width: 40px;
    height: 40px;
    fill: #5fe0b7;
    animation: bounce 2s infinite;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #5fe0b7, #00B4DB);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    margin-bottom: 20px;
    color: #5fe0b7;
    transition: all 0.3s ease;
}

.benefit-icon svg {
    width: auto;
    height: 60px;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    color: #00B4DB;
}

.benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #344767;
}

.benefit-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .gradient-text {
        font-size: 1.6rem;
        margin-bottom: 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .benefit-card {
        padding: 25px;
        text-align: center;
    }
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    position: relative;
    overflow: hidden;
}

.contact-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.info-column {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    color: white;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.info-content {
    position: relative;
    z-index: 2;
}

.partner-icon {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.info-column h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInLeft 1s ease;
}

.info-column .lead {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    animation: fadeInLeft 1.2s ease;
}

.decoration-line {
    width: 60px;
    height: 4px;
    background: #fff;
    margin-top: 30px;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    background: linear-gradient(117deg, rgba(10, 12, 16, 1) 0%, rgb(23 81 140) 100%);
}

.form-column {
    padding: 60px 40px;
    background: white;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #344767;
    font-weight: 500;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #64748b;
    z-index: 2;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
    height: auto;
}

.form-control:focus {
    border-color: #5fe0b7;
    box-shadow: 0 0 0 0.2rem rgba(46, 204, 113, 0.1);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991px) {
    .info-column, .form-column {
        padding: 40px 30px;
    }

    .info-column h2 {
        font-size: 1.75rem;
    }
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    z-index: 2;
    font-size: 16px;
}

textarea.form-control {
    padding-top: 12px !important;
}

textarea.form-control + .input-icon {
    top: 24px;
    transform: none;
}

.form-control::placeholder {
    color: #a0aec0;
    font-size: 14px;
}

.form-control:focus::placeholder {
    opacity: 0.5;
}

.wave-divider {
    position: relative;
    width: 100%;
    height: 120px;
    margin-top: -1px; /* Üstteki bölümle birleşmesi için */
    margin-bottom: -1px; /* Alttaki bölümle birleşmesi için */
}

.wave-divider svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(180deg); /* Dalgayı ters çeviriyoruz */
}

/* İstatistik kartlarının alt margin'ini ayarlayalım */
.statistics-grid {
    margin-bottom: 60px; /* Dalga ile arasında boşluk bırakalım */
}

/* Contact section üst kısmını ayarlayalım */
.contact-section {
    background: #ffffff; /* Beyaz arka plan */
}

.contact-card {
    margin-top: -60px; /* Kartı yukarı çekelim */
    position: relative;
    z-index: 2;
}

/* Smooth scroll için sayfa davranışını ayarla */
html {
    scroll-behavior: smooth;
}

/* Buton stilleri */
.btn-partner-green {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.achievement-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 30px auto;
    max-width: 800px;
}

.achievement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.medal-icon {
    font-size: 2.5rem;
    color: #FFD700;
}

.achievement-text {
    font-size: 1.5rem;
    color: white;
    margin: 0;
    text-align: center;
}

.commission-amount {
    color: #27ae60; /* Koyu yeşil renk */
    font-weight: bold;
}

@media (max-width: 768px) {
    .achievement-text {
        font-size: 1.2rem;
    }

    .medal-icon {
        font-size: 2rem;
    }
}

.hero-partnership {
    background: radial-gradient(at center bottom, rgba(55, 154, 254, 1.0), rgb(1 56 112), rgba(10, 13, 16, 1.0));
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-partnership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.commission-display {
    margin: 40px 0 10px 0;
}

.text-line {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 400;
}

.amount-wrapper {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.currency {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
}

.amount-wrapper .amount {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-left: 5px;
    position: relative;
}

@media (max-width: 767px) {
    .amount-wrapper .amount {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 2rem;
    margin: 10px 0 30px 0;
    font-weight: 500;
    opacity: 0.9;
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #2ecc71;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .hero-partnership {
        padding: 100px 0 60px;
    }

    .text-line {
        font-size: 1.4rem;
    }

    .amount {
        font-size: 3.5rem;
    }

    .currency {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .hero-cta {
        padding: 14px 32px;
        font-size: 1.1rem;
    }
}

/* Page Hero */
.page-hero {
    background-color: #00B5E2;
    padding: 100px 0 50px 0;
}

.page-hero .hero-content {
    text-align: left;
    color: white;
}

.page-hero .hero-title {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}

.page-hero .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 10px;
}

.page-hero .breadcrumb-item a {
    color: white;
    opacity: 0.9;
}

.page-hero .breadcrumb-item.active {
    color: white;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: white;
    opacity: 0.9;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links .social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-links .social-link:hover {
    background: #00b894;
    transform: translateY(-2px);
}

/* contract */
.contract-section {
    padding: 70px 0;
    background: #f5f7fa;
}

.contract-wrapper {
    display: flex;
    gap: 30px;
}

/* Sol Menü Stili */
.contract-menu {
    width: 280px;
    position: sticky;
    top: 20px;
    height: fit-content;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contract-menu h3 {
    font-size: 1.25rem;
    color: #1e3a8a;
    padding: 20px;
    margin: 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.menu-list {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.menu-list li a {
    display: block;
    padding: 12px 20px;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
}

.menu-list li a:hover {
    background: #f1f5f9;
    color: #1e3a8a;
    border-left-color: #1e3a8a;
}

.menu-list li a.active {
    background: #1e3a8a;
    color: white;
    border-left-color: #3b82f6;
}

/* Sağ İçerik Stili */
.contract-content {
    flex: 1;
}

.contract-container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contract-article {
    margin-bottom: 40px;
}

.contract-article h2 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.article-content {
    color: #334155;
    line-height: 1.8;
    font-size: 1rem;
}

.article-content p {
    margin-bottom: 1rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .contract-wrapper {
        flex-direction: column;
    }

    .contract-menu {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }

    .contract-container {
        padding: 20px;
    }
}

/* faq */
.faq-section {
    background-color: #f8f9fa;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3436;
}

.custom-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 1rem;
}

.custom-accordion .accordion-button {
    background: white;
    border: none;
    border-radius: 12px !important;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d3436;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #0d6efd;
    background: white;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.custom-accordion .accordion-button:hover {
    background-color: #f8f9fa;
}

.custom-accordion .accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-body {
    background: white;
    padding: 1.5rem;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.custom-accordion .accordion-body p {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.custom-accordion .accordion-body ul {
    color: #636e72;
    padding-left: 1.2rem;
}

.custom-accordion .accordion-body ul li {
    margin-bottom: 0.5rem;
}

/* Hover efekti */
.custom-accordion .accordion-item:hover .accordion-button {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2rem;
    }

    .custom-accordion .accordion-button {
        padding: 1.2rem;
        font-size: 1rem;
    }
}


.custom-page-hero {
    position: relative;
    padding: 100px 0 120px 0;
    /*background: linear-gradient(90deg, #3699FF 0%, #5FE0B7 100%);*/
    background: linear-gradient(90deg, rgba(10, 12, 16, 1) 0%, rgb(1 56 112) 100%);
    overflow: hidden;
    min-height: 240px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    margin-bottom: -.5px;
}

.fill-light-wrapper {
    fill: var(--wave-fill-color);
}

.custom-hero-content .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.custom-hero-content .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.custom-hero-content .breadcrumb-item a:hover {
    color: #fff;
}

.custom-hero-content .breadcrumb-item.active {
    color: #fff;
}

.custom-hero-content .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.9);
}

.custom-hero-title {
    color: #fff;
    font-size: 2.25rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .custom-hero-title {
        font-size: 1.75rem;
    }

    .custom-page-hero {
        padding: 90px 0;
    }
}

.title-container {
    display: inline-block;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    animation: titleFadeIn 1s ease-out forwards;
    transform: translateY(20px);
    opacity: 0;
}

@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* contact page */
.contact-hero {
    background: linear-gradient(rgba(14, 29, 52, 0.8), rgba(14, 29, 52, 0.8)),
    url('images/contact-hero.avif') center/cover;
    padding: 100px 0;
    text-align: center;
    color: white;
    margin-bottom: -100px; /* Increased overlap */
}

.contact-section {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.unified-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
}

.contact-side {
    flex: 1;
    padding: 40px;
}

.contact-side:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.card-title {
    color: #00b894;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-form .form-control {
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #00b894;
    box-shadow: 0 0 0 0.2rem rgba(0, 184, 148, 0.15);
}

.btn-send {
    background: linear-gradient(135deg, #00b894, #0066cc);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.btn-send:hover {
    background: linear-gradient(135deg, #009677, #0052a3);
    transform: translateY(-2px);
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066cc;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #00b894;
    color: white;
}

@media (max-width: 991px) {
    .unified-contact-container {
        flex-direction: column;
    }

    .contact-side:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .contact-hero {
        margin-bottom: -50px;
    }
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links .social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-links .social-link:hover {
    background: #00b894;
    transform: translateY(-2px);
}


.contact-side {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.contact-side .section-title {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-side .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #007bff;
}

.contact-side .contact-info-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-side .info-card {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-side .info-card:hover {
    transform: translateY(-3px);
}

.contact-side .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #007bff;
    border-radius: 50%;
    margin-right: 1rem;
}

.contact-side .icon-circle i {
    color: #fff;
    font-size: 1.2rem;
}

.contact-side .info-title {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-side .info-text,
.contact-side .info-link {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.contact-side .info-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-side .info-link:hover {
    color: #007bff;
}

.contact-side .social-media-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.contact-side .social-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-side .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.contact-side .social-btn {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s;
}

.contact-side .social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.contact-side .social-btn i {
    margin-right: 0.5rem;
}

.contact-side .social-btn.linkedin {
    background: #0077b5;
}

.contact-side .social-btn.instagram {
    background: #e4405f;
}

.contact-side .social-btn.twitter {
    background: #1da1f2;
}

.contact-side .social-name {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .contact-side .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-side .social-btn {
        padding: 0.5rem 1rem;
    }

    .contact-side .social-name {
        display: none;
    }
}


/* solutions */
.solutions-section {
    background-color: #ffffff;
}

.solution-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3699ff 0%, #4ECCA3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 30px;
    color: white;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #3699ff;
}

.card-description {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #3699ff;
    border-color: #3699ff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #4ECCA3;
    border-color: #4ECCA3;
}

/* services */
.features-showcase {
    padding: 80px 0 20px 0;
    background: #f8f9fa;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.showcase-item.reverse {
    flex-direction: row-reverse;
}

.showcase-content {
    flex: 1;
}

.showcase-content h2 {
    color: #2d4b9a;
    font-size: 2rem;
    margin-bottom: 20px;
}

.showcase-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.showcase-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-tags span {
    background: #f0f4ff;
    color: #2d4b9a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-tags i {
    font-size: 1rem;
}

@media (max-width: 992px) {
    .showcase-item,
    .showcase-item.reverse {
        flex-direction: column;
        padding: 30px;
        gap: 40px;
    }

    .showcase-content h2 {
        font-size: 1.8rem;
    }

    .showcase-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .feature-tags {
        flex-direction: column;
    }
}

/* integrations */

.integrations-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    color: #2d4b9a;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.integration-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.integration-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    border-radius: 50%;
    color: #2d4b9a;
}

.integration-icon i {
    font-size: 2rem;
}

.integration-card h3 {
    color: #2d4b9a;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.integration-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Hover efekti için ikon animasyonu */
.integration-card:hover .integration-icon {
    background: #2d4b9a;
    color: white;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .integrations-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .integration-card {
        padding: 20px;
    }

    .integration-icon {
        width: 60px;
        height: 60px;
    }

    .integration-icon i {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

.partner-form {
    width: 100%;
}

.partner-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.partner-form .form-label {
    font-size: 0.9rem;
    color: #344767;
}

.partner-form .form-control {
    height: auto;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    background-color: #fff;
    transition: all 0.2s ease;
}

.partner-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

.partner-form .form-control::placeholder {
    color: #adb5bd;
    opacity: 0.8;
}

.input-wrapper {
    margin-bottom: 0;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.has-error .form-control {
    border-color: #dc3545;
}

.has-error .form-control:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.1);
}

.professional-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    max-width: 1400px;
    margin: auto;
    overflow: hidden;
}

.text-content {
    max-width: 40%;
    padding-right: 60px;
}

.text-content h1, .text-content h2 {
    margin: 0 0 20px;
}

.text-content ul {
    list-style-type: none;
    padding: 0;
}

.text-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.text-content li:before {
    content: "✓";
    color: #00d1b2;
    position: absolute;
    left: 0;
}

.mockup-container {
    position: relative;
    width: 56%;
    min-height: 400px;
}

.mockup-laptop {
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    animation: slideInLaptop 0.8s ease-out forwards;
}

.mockup-phone {
    position: absolute;
    width: 25%;
    left: -10%;
    bottom: 10%;
    opacity: 0;
    transform: translateX(100%);
    animation: slideInPhone 0.8s ease-out 0.2s forwards;
    transition: width 0.3s ease-in-out;
}

.mockup-phone:hover {
    transform: scale(1.1);
    width: 35%;
}

@media (max-width: 991px) {
    .mockup-container {
        display: none;
    }

    .text-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .text-content h2 {
        text-align: center;
    }

    .text-content p {
        text-align: center;
    }
}

@keyframes slideInLaptop {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInPhone {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .professional-section {
        padding: 30px;
    }

    .text-content {
        padding-right: 20px;
    }

    .mockup-phone {
        width: 30%;
    }
}

@media (max-width: 768px) {
    .professional-section {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .text-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .text-content li {
        padding-left: 0;
    }

    .text-content li:before {
        position: static;
        margin-right: 10px;
    }

    .mockup-container {
        width: 100%;
        margin-top: 30px;
    }

    .mockup-phone {
        width: 35%;
        left: 0;
        bottom: -20%;
    }
}

.doctor-solutions {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.solution-item {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1rem;
}

.solution-item:last-child {
    margin-bottom: 0;
}

.solution-item.reverse {
    flex-direction: row-reverse;
}

.solution-image {
    flex: 0 0 50%;
    padding: 40px;
    position: relative;
    transition: transform 0.3s ease;
    max-width: 400px;
}

.solution-image:hover {
    transform: translateY(-5px);
}

.solution-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.solution-content {
    flex: 0 0 50%;
    padding: 40px 60px;
    position: relative;
}

.solution-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 40px;
    background: #00d1b2;
    transform: translateY(-50%);
}

.solution-item.reverse .solution-content::before {
    left: auto;
    right: 0;
}

.solution-content h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.solution-content h2:hover {
    color: #00d1b2;
}

.solution-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #5c6c7c;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-item:nth-child(2) {
    animation-delay: 0.2s;
}

.solution-item:nth-child(3) {
    animation-delay: 0.4s;
}

.solution-item:nth-child(4) {
    animation-delay: 0.6s;
}

@media (max-width: 1024px) {
    .solution-content {
        padding: 30px 40px;
    }

    .solution-content h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .solution-item,
    .solution-item.reverse {
        flex-direction: column;
        margin-bottom: 80px;
        text-align: center;
    }

    .solution-image {
        padding: 20px;
        max-width: 400px;
    }

    .solution-content {
        padding: 30px 20px;
    }

    .solution-content::before {
        left: 50%;
        top: 0;
        width: 40px;
        height: 3px;
        transform: translateX(-50%);
    }

    .solution-item.reverse .solution-content::before {
        right: auto;
        left: 50%;
    }
}

/* mobile menu */
body:has(.mobile-menu.show) {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}

.mobile-menu-btn {
    border: none;
    background: transparent;
    padding: 0.5rem;
}

.mobile-menu-btn .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .mobile-menu-btn .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mobile-menu {
    width: 100% !important; /* Full width */
    background-color: #1a1a1a !important;
}

.mobile-menu.show {
    overflow-y: auto;
    position: fixed;
    width: 100vw !important;
    height: 100vh !important;
}

.mobile-menu .offcanvas-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .btn-close {
    background-color: white;
    opacity: 0.8;
}

.mobile-menu-items {
    padding: 2rem 0;
}

.mobile-menu-item {
    display: block;
    padding: 1.2rem 2rem;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu-item:hover,
.mobile-menu-item.active {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 2.5rem;
}

.mobile-menu-buttons {
    padding: 2rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: inherit;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-collapse {
        display: none !important;
    }
}

.feature-column {
    text-align: left;
    padding-left: 40px;
}

.plan-header {
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.plan-header.featured {
    background: #e3f2fd;
    transform: scale(1.05);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2196f3;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.plan-type {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.price {
    margin: 24px 0;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2196f3;
}

.period {
    font-size: 1rem;
    color: #666;
}

.cancel-note {
    font-size: 0.8rem;
    color: #666;
    margin: 8px 0 16px;
}

.feature-name {
    font-weight: 500;
    color: #333;
}

.message-price {
    font-size: 0.9rem;
    color: #666;
}

.btn {
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2196f3;
    border-color: #2196f3;
    color: white;
}

.btn-outline-primary {
    border-color: #2196f3;
    color: #2196f3;
}

.btn-outline-primary:hover {
    background: #2196f3;
    color: white;
}

@media (max-width: 991px) {
    .pricing-row {
        grid-template-columns: 1fr;
    }

    .feature-column {
        background: #f8f9fa;
        text-align: center;
        padding: 16px;
    }

    .plan-header.featured {
        transform: none;
    }
}

/* solution index page */
.mc-solutions-wrapper {
    padding: 6rem 0;
    background: #f8f9fa;
    overflow: hidden;
}

.mc-solutions-wrapper-light {
    padding: 6rem 0;
    background: #ffffff;
    overflow: hidden;
}

.mc-solutions-inner {
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.mc-solutions-inner--reverse {
    grid-template-columns: 1fr 1fr;
    direction: unset; /* eski direction özelliğini kaldıralım */
    grid-auto-flow: dense;
    grid-template-areas: "content image";
}

.mc-solutions-visual {
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

.mc-solutions-visual img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

.mc-solutions-inner--reverse .mc-solutions-visual {
    grid-area: image;
}

.mc-solutions-inner--reverse .mc-solutions-text {
    grid-area: content;
}

.mc-solutions-text {
    max-width: 600px;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
    animation-delay: 0.2s;
}

.mc-solutions-heading {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.mc-solutions-paragraph {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .mc-solutions-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .mc-solutions-visual,
    .mc-solutions-text {
        transform: translateY(30px);
        animation-name: slideInUp;
    }

    .mc-solutions-inner,
    .mc-solutions-inner--reverse {
        grid-template-columns: 1fr;
        grid-template-areas: unset;
    }
}

@media (max-width: 576px) {
    .mc-solutions-wrapper {
        padding: 2rem 0 4rem 0;
    }

    .mc-solutions-inner {
        padding: 0 1rem;
    }

    .mc-solutions-heading {
        font-size: 2rem;
    }

    .mc-solutions-paragraph {
        font-size: 1rem;
    }
}

/* Hero Section Styles */
.mc-solutions-hero {
    margin: 0 auto;
}

.mc-solutions-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mc-solutions-hero-content {
    text-align: left;
}

.mc-solutions-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #1a365d, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.mc-solutions-hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 3rem;
}

.mc-solutions-hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.mc-solutions-hero-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
    position: relative;
    overflow: hidden;
    flex: 1;
}

.mc-solutions-hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.1)
    );
    transition: all 0.5s ease;
}

.mc-solutions-hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px -3px rgba(37, 99, 235, 0.4);
    background: #1d4ed8;
}

.mc-solutions-hero-button:hover::before {
    left: 100%;
}

.mc-solutions-hero-button svg {
    transition: transform 0.3s ease;
    width: 45px;
    height: 45px;
}

.mc-solutions-hero-button:last-child svg {
    width: 70px;
    height: 70px;
}

.mc-solutions-hero-button:hover svg {
    transform: translateX(5px);
}

.mc-solutions-hero-image {
    position: relative;
}

.mc-solutions-hero-image img {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    margin-left: auto;
}

@media (max-width: 992px) {
    .mc-solutions-hero {
        padding: 6rem 2rem;
    }

    .mc-solutions-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mc-solutions-hero-content {
        text-align: center;
    }

    .mc-solutions-hero-buttons {
        flex-direction: column;
        max-width: 400px;
        margin: 2.5rem auto 0;
    }

    .mc-solutions-hero-button {
        width: 100%;
    }

    .mc-solutions-hero-image img {
        margin: 0 auto;
    }

    .mc-solutions-hero-button:last-child svg {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .mc-solutions-hero {
        padding: 1rem 1rem;
    }

    .mc-solutions-hero-title {
        font-size: 2.2rem;
    }

    .mc-solutions-hero-description {
        font-size: 1rem;
    }

    .mc-solutions-hero-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .mc-solutions-hero-buttons {
        gap: 0.75rem;
    }

    .mc-solutions-hero-image {
        display: none !important;
    }

    .mc-solutions-wrapper-light {
        padding: 6rem 0 3rem 0;
    }
}

.testimonials-wrapper {
    padding: 80px 20px;
    background-color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #eaeaea;
    transition: transform 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    color: #333333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-color: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 20px;
    color: #3699ff;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a4a4a;
    margin: 0;
}

.author-position {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

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

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

    .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .testimonials-wrapper {
        padding: 60px 20px;
    }
}

.stats-card {
    background: linear-gradient(340deg, rgba(10, 12, 16, 1) 0%, rgba(23, 67, 111, 1) 100%);
    border-radius: 16px;
    padding: 40px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(34, 80, 65, 0.2);
}

.stats-card svg {
    width: 60px;
    height: auto;
    padding-bottom: 30px;
}

.stats-card span {
    border-bottom: 1px solid #fff;
}

@media (max-width: 767px) {
    .stats-card svg {
        padding-bottom: 50px;
    }
}

.stats-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.stats-text {
    font-size: 1.2rem;
    opacity: 0.9;
    text-align: left;
}

/* SVG icon styles */
.stats-icon {
    width: 32px;
    height: 32px;
    color: white;
}

@media (max-width: 768px) {
    .stats-card {
        padding: 30px;
    }

    .stats-number {
        font-size: 3rem;
    }

    .stats-text {
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 90%;
    }
}

/* pricing */
.pricing-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Pricing toggle styles */
.pricing-toggle {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.toggle-label {
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}

.yearly-discount {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-left: 1rem;
}

/* Switch control */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #5fe0b7;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Pricing table styles */
.pricing-table {
    margin: 2rem auto;
    max-width: 900px;
}

.pricing-row {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 -0.25rem;
}

.pricing-column {
    flex: 1;
    margin: 0 0.25rem;
}

.plan-header {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.25rem 1.25rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-header:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.plan-header.featured {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
}

/* Price display */
.price {
    position: relative;
    height: 50px;
    margin: 1rem 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-change {
    height: 30px;
    color: #5fe0b7;
    padding: 5px 0 0;
}

.amount {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    color: #2196F3;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.amount.fade-enter {
    transform: translateY(20px);
    opacity: 0;
}

.amount.fade-exit {
    transform: translateY(-20px);
    opacity: 0;
}

.period {
    font-size: 1rem;
    color: #666;
}

.plan-header.featured .period {
    color: rgba(255, 255, 255, 0.8);
}

.package-icon {
    display: inline-block;
    color: #5fe0b7;
    margin: -12px 0 5px 0;
}

.sticky-package .package-icon {
    margin: 5px 0 0;
}

.package-icon svg {
    width: auto;
    height: 60px;
}

.sticky-package .package-icon svg {
    height: 40px;
}

/* Feature icons and info */
.storage-info {
    margin: 0 0 1.5rem 0;
    font-size: 0.9rem;
}

.storage-info div {
    margin: 0.5rem 0;
    color: #666;
}

.plan-header.featured .storage-info div {
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.plan-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.btn-primary {
    background: #2196F3;
    color: white !important;
    border: none;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid #2196F3;
    color: #2196F3 !important;
}

.plan-header.featured .btn-primary {
    background: white;
    color: #2196F3 !important;
}

.plan-header.featured .btn-outline-primary {
    border-color: white;
    color: white !important;
}

/* Features section */
.features-section {
    margin-top: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-category-header {
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.feature-category-header:first-child {
    margin-top: 0;
}

.feature-category-header h3 {
    color: #2196F3;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.feature-row {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.2s ease;
}

.feature-row:hover {
    background-color: #f8f9fa;
}

.feature-name {
    flex: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-text {
    color: #495057;
    font-weight: 400;
}

.feature-value {
    flex: 1;
    text-align: center;
    font-size: 1.1rem;
}

.feature-check {
    color: #5fe0b7;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.feature-times {
    color: #dc3545;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.feature-row:hover .feature-check {
    opacity: 1;
}

.feature-row:hover .feature-times {
    opacity: 0.9;
}

/* Sticky header styles */
.sticky-pricing-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sticky-pricing-header.visible {
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .pricing-row {
        flex-direction: column;
    }

    .pricing-column {
        margin-bottom: 1rem;
    }

    .feature-row {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .feature-name {
        margin-bottom: 1rem;
        justify-content: center;
    }

    .feature-value {
        padding: 0.5rem 0;
    }

    .feature-category-header {
        text-align: center;
    }
}

/* Sticky Buttons Styles */
.sticky-buttons {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sticky-buttons-content {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.sticky-package {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-package:hover {
    transform: translateY(-2px);
}

.sticky-package.featured {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: #28a745;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.package-info {
    text-align: center;
    margin-bottom: 1rem;
}

.package-name {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2196F3;
}

.sticky-package.featured .package-price {
    color: white;
}

.package-buttons {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.package-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
}

.sticky-package.featured .btn-primary {
    background: white;
    color: #2196F3;
}

.sticky-package.featured .btn-outline-primary {
    border-color: white;
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .sticky-buttons-content {
        flex-direction: column;
    }

    .sticky-package {
        margin-bottom: 1rem;
    }

    .package-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .package-buttons .btn {
        width: auto;
    }
}

@media (max-width: 576px) {
    .package-buttons {
        flex-direction: column;
    }

    .package-buttons .btn {
        width: 100%;
    }

    .sticky-package {
        padding: 0.75rem;
    }

    .package-name {
        font-size: 1rem;
    }

    .package-price {
        font-size: 1.25rem;
    }
}

/* Features Table Styles */
.features-table {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.features-header {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
}

.feature-col {
    flex: 1;
    padding: 1rem;
    text-align: center;
}

.feature-name-col {
    flex: 2;
    text-align: left;
}

.feature-category {
    border-bottom: 1px solid #e9ecef;
}

.category-header {
    background: #f8f9fa;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.category-header h3 {
    margin: 0;
    color: #2196F3;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.2s ease;
}

.feature-row:hover {
    background-color: #f8f9fa;
}

.feature-text {
    color: #495057;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-toggle {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .pricing-toggle p {
        margin-bottom: 1rem;
    }

    .features-header {
        display: none;
    }

    .feature-row {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid #e9ecef;
    }

    .feature-col {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        width: 100%;
    }

    .feature-name-col {
        font-weight: 600;
        color: #2196F3;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
    }

    .feature-col:not(.feature-name-col)::before {
        content: attr(data-package);
        font-weight: 500;
    }

    .sticky-pricing-header {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .sticky-pricing-header {
        display: none !important;
    }
}

/* Sticky Header Styles */
.sticky-pricing-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sticky-pricing-header.visible {
    transform: translateY(0);
}

.sticky-buttons-content {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-package {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.sticky-package:hover {
    transform: translateY(-2px);
}

.package-info {
    margin-bottom: 0.75rem;
}

.package-name {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    display: block;
    margin-bottom: 0.25rem;
}

.package-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2196F3;
}

.package-price small {
    font-size: 0.875rem;
    opacity: 0.8;
}

.package-buttons .btn {
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .sticky-buttons-content {
        flex-direction: column;
        padding: 0 1rem;
    }

    .sticky-package {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.5rem;
        padding: 0.75rem;
    }

    .package-info {
        margin-bottom: 0;
        text-align: left;
    }

    .package-buttons {
        width: auto;
    }

    .package-buttons .btn {
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .sticky-package {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .package-info {
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .package-buttons {
        width: 100%;
    }
}

.plan-type {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.comparison-section {
    background: radial-gradient(at center bottom, rgba(55, 154, 254, 1.0), rgb(1 56 112), rgba(10, 13, 16, 1.0));
    padding: 125px 0 0;
}

.comparison-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.comparison-title {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 24px;
}

.comparison-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 48px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 10px;
}

.vs-text {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
}

.company-block {
    text-align: center;
    color: #333333;
}

.compare-logo {
    width: 200px;
    height: 120px;
    object-fit: contain;
}

.company-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .company-block {
        padding: 20px;
        min-height: 0;
    }

    .company-block:last-child {
        padding: 20px 0 50px 0;
    }

    .vs-text {
        display: none;
    }
}

.faq-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.faq-section .section-description {
    color: #596677;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.versus-container {
    background:#f8f9fa;
    padding: 80px 0;
}

.comparison-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    perspective: 1000px;
}

.comparison-card:hover {
    transform: translateY(-8px);
    text-decoration: none;
    color: inherit;
}

.versus-block {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.versus-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #379afe 0%, #013870 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.versus-block:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.versus-block:hover::before {
    opacity: 1;
}

.versus-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 30px;
    padding: 0 10px;
    position: relative;
}

.versus-logo span {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 120px;
}

.versus-logo span img {
    width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.versus-block:hover .versus-logo span img {
    transform: scale(1.05);
}

.vs-badge {
    font-size: 11px;
    color: #333;
    font-weight: 400;
    flex: 0 0 auto !important;
    position: relative;
}

.versus-description {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.versus-description h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
    min-height: auto;
}

.versus-description p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.row.justify-content-center {
    display: flex;
    flex-wrap: wrap;
}

.versus-container .col-md-3 {
    display: flex;
    margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .versus-container .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .versus-container .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 15px;
    }
}

.versus-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 20px;
    min-height: 60px;
    padding: 0 10px;
}

.versus-logo span {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 120px;
}

.versus-logo span img {
    width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.versus-block:hover .versus-logo span img {
    transform: scale(1.05);
}

.versus-description {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.versus-description h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
    min-height: auto;
}

.versus-description p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.row.justify-content-center {
    display: flex;
    flex-wrap: wrap;
}

.versus-container .col-md-4 {
    display: flex;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .versus-container {
        padding: 40px 0;
    }

    .col-md-3 {
        padding: 0 15px;
    }

    .versus-block {
        padding: 20px;
        margin-bottom: 20px;
    }

    .versus-logo {
        min-height: 50px;
        margin-bottom: 20px;
    }

    .versus-logo span img {
        max-width: 100px;
        height: 35px;
    }

    .versus-description h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .versus-description p {
        font-size: 14px;
    }
}

.comparison-grid-section {
    background: #ffffff;
    padding: 60px 0;
}

.comparison-hero-wave {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.comparison-hero-wave svg {
    width: 100%;
    height: auto;
    margin-bottom: -.5px;
}

@media (max-width: 768px) {
    .versus-logo {
        gap: 20px;
    }

    .vs-badge {
        font-size: 10px;
    }
}

.max-w-1000 {
    max-width: 1000px;
    margin:0 auto;
}

/* Dropdown temel stilleri */
.navbar .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    width: 100vw;
    background: rgba(255, 255, 255, 1) !important;
    border: 1px solid #eaeaea;
    border-radius: 0;
    padding: 40px 0;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    z-index: 1050;
    transform: translateX(-50%);
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.navbar .dropdown {
    position: static !important;
}

/* Mega menü container */
.navbar .mega-menu-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mega menü kartları için hover efekti */
.navbar .mega-menu-item {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.navbar .mega-menu-item:hover {
    background-color: rgba(41, 119, 255, 0.05);
}

/* Mega menü başlıkları için iyileştirmeler */
.navbar .mega-menu-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.navbar .mega-menu-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #2977ff;
}

/* Mega menü açıklamaları */
.navbar .mega-menu-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Mega menü linkleri */
.navbar .mega-menu-link {
    color: #2977ff;
    text-decoration: none;
}

/* Mega menü içerik düzeni */
.navbar .row {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
}

.navbar .col-md-3 {
    padding: 0 15px;
    flex: 0 0 25%;
    max-width: 25%;
    box-sizing: border-box;
}

/* Responsive düzenlemeler */
@media (max-width: 991.98px) {
    .navbar .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    .navbar .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .navbar .dropdown-menu {
        padding: 20px 0;
    }
}

/* Dropdown hover durumunda overlay'i göster */
.navbar .dropdown:hover{
    opacity: 1;
    visibility: visible;
}

/* Hover durumunda dropdown'ı göster */
.navbar .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.d365-accordion-header {
    margin: 0 !important;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.d365-accordion-btn {
    width: 100%;
    text-align: left;
    background: transparent !important;
    box-shadow: none !important;
    color: #fff !important;
    border: none;
    padding: 1.2rem 2rem;
    position: relative;
}

.d365-accordion-btn::after {
    content: '';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease-in-out;
}

.d365-accordion-btn:not(.collapsed)::after {
    transform: translateY(-50%) rotate(-180deg);
}

.d365-accordion-body {
    padding: 0.5rem 2rem;
}

.d365-accordion-item {
    background-color: transparent !important;
}

/* Diğer stiller korundu */
.mobile-menu .accordion-body .mobile-menu-item {
    padding: 8px 0;
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu .accordion-body .mobile-menu-item:hover {
    color: #fff;
}