:root {
    --bg-dark: #000000;
    --bg-light: #ffffff;
    --text-white: #f5f5f7;
    --text-dark: #1d1d1f;
    --accent-blue: #0071e3;
    --accent-green: #00ac48;
    --nav-bg: rgba(255, 255, 255, 0.98);
    --ease-apple: cubic-bezier(0.4, 0, 0.2, 1);
    --footer-bg: #f5f5f7;
    --footer-border: #d2d2d7;
    --as-primary: #3b82f6;
    --as-accent: #10b981;
    --blue: #0071e3;
    --green: #00ac48;
    --glow-color: rgba(0, 113, 227, 0.4);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --bg-ultra-light: #fbfbfd;
    --text-main: #1d1d1f;
    --card-border: rgba(0, 0, 0, 0.04);
    --brand-teal: #007d79;
    --brand-navy: #004a80;
    --text-muted: #64748b;
    --primary-color: #2563eb; /* Blue 600 */
    --primary-hover: #1d4ed8; /* Blue 700 */
}
@font-face {
    font-family: 'Baloo Chettan Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Baloo Chettan Regular'), url('../fonts/BalooChettan-Regular.woff') format('woff');
}

*:not(i,img,svg,path) {
    font-family: "Inter", "sans-serif" !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    color: #161618 !important;
    overflow-x: hidden;
    width: 100%;
    padding-top: 54px !important;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Noise Texture */
  

/* --- NAVIGATION --- */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 52px;
    background: var(--nav-bg);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 9000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.nav-logo-svg {
    height: 40px;
    width: auto;
    cursor: pointer;
}

.nav-logo-svg .akinsoft-renk1, .akinsoft-renk1 {
    fill: #084f9e;
}

.nav-logo-svg .akinsoft-renk2, .akinsoft-renk2 {
    fill: #00ac48;
}
/* Desktop Menu Links */

.nav-links-desktop {
    display: flex;
    gap: 30px;
    align-items: center;
    height: 100%;
    margin-left: 20px;
}

.nav-item {
    font-size: 12px;
    color: #333;
    font-weight: 400;
    opacity: 0.9;
    transition: color 0.3s;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5px;
}

.nav-item:hover {
    color: var(--accent-blue);
    opacity: 1;
}
/* RIGHT SIDE GROUP */

.nav-right-side {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-btn {
    color: #333;
    width: 18px;
    height: 18px;
    cursor: pointer;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-btn svg {
    width: 100%;
    height: 100%;
    fill: #1d1d1f;
}

.icon-btn:hover {
    opacity: 0.7;
}

.nav-icons-desktop {
    display: flex;
    gap: 15px;
    align-items: center;
}
/* LANGUAGE DROPDOWN CSS */

.lang-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
}

.lang-dropdown {
    position: absolute;
    top: 40px;
    right: -50px;
    width: 170px;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e5e5;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9100;
}
/* Desktop Hover */

@media (min-width: 769px) {
    .lang-container:hover .lang-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
@media(min-width: 999px){
    body {overflow-y: scroll;}
    #force-style::-webkit-scrollbar-track{-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.3);background-color: #F5F5F5;}
    #force-style::-webkit-scrollbar{width: 10px;background-color: #F5F5F5;}
    #force-style::-webkit-scrollbar-thumb{background-color: #333;border-left:1px solid rgba(255, 255, 255, .5);}
}
/* CLICK EFFECT FOR MOBILE (Handled by JS .active class) */

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 58px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
}
/* Mobile specific dropdown position */

@media (max-width: 768px) {
    .lang-dropdown {
        right: auto;
        top: 50px;
    }
    .lang-dropdown::before {
        right: 105px;
    }
}

.lang-title {
    font-size: 13px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0px;
    display: flex;
    justify-content: space-between;
}

.lang-options {
    font-size: 13px;
    color: #666;
    display: flex;
    gap: 5px;
    justify-content: space-around;
}

.lang-opt {
    cursor: pointer;
    color: #1d1d1f;
    font-weight: 500;
}

.lang-opt:hover {
    text-decoration: underline;
}

.lang-sep {
    /* border-right: 1px solid #ccc; */
    margin: 0 5px;
}
/* Auth Links */

.auth-separator {
    width: 1px;
    height: 20px;
    background-color: #d2d2d7;
    margin: 0 5px;
}

.auth-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-link {
    font-size: 11px;
    font-weight: 600;
    color: #424245;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.auth-link:hover {
    color: var(--accent-blue);
}

.auth-pipe {
    color: #d2d2d7;
    font-size: 12px;
}
/* Mobile specific styles */

.mobile-nav-right {
    display: none;
    align-items: center;
    gap: 15px;
}

.mobile-icon-btn {
    color: #1d1d1f;
    font-size: 18px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-icon-btn svg {
    width: 20px;
    height: 20px;
    fill: #1d1d1f;
}
/* --- MEGA MENU --- */

.mega-overlay {
    position: fixed;
    top: 52px;
    left: 0;
    width: 100%;
    height: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 8999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.mega-overlay.active {
    height: 380px;
}

.mega-content {
    max-width: 1000px;
    margin: 40px auto;
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 20px; */
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0.1s;
}
.mega-content .menu-container {
    max-width: 1000px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0.1s;
    display: none;
}
.mega-content .menu-container.active{
   
    opacity: 1;
    transform: translateY(0);
    display: flex;
    justify-content: space-between;
}
.mega-overlay.active .mega-content {
    opacity: 1;
    transform: translateY(0);
}

.mega-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.mega-sub-menu {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0.1s;
    display: none;
}
.mega-sub-menu.active {
    opacity: 1;
    transform: translateX(0);
    display: flex;
}
.mega-sub-menu a {
    font-size: 14px!important;
}
.mega-group a.active-sub {
    color: var(--accent-blue);
}
.mega-group h4 {
    font-size: 12px;
    color: #86868b;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.side-col h4 {
    font-size: 10px;
    color: #86868b;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.mega-group a {
    display: block;
    font-size: 18px;
    color: #1d1d1f;
    font-weight: 600;
    margin-bottom: 2px;
    text-decoration: none;
    transition: color 0.2s;
}
#submenu-list a {
    font-size: 14px !important;
}

.mega-group a:hover {
    color: var(--accent-blue);
}
       /* Sağ Kolon: Hızlı Bağlantılar */
        .side-links {
            list-style: none;
        }

        .side-col ul>li a {
            text-decoration: none;
            color: var(--text-main);
            font-size: 12px !important;
            font-weight: 600;
        }

        .side-links a:hover {
            color: var(--blue-link);
        }

        ul {
            padding-left: 0 !important
        }

        /* .sag-ok {
            margin-left: 1rem;
        } */
.sub-menu-btn{ display:flex !important;
align-items:center}
        .fs-6 {
            font-size: 0.7rem !important;
        }
        i {
    font-size: 1em;
    padding: 0 10px;
    transition: all 0.5s linear;
}

    .sub-menu-btn:hover i {
        transform: translateX(10px);
            color: var(--bs-link-color);
    }
/* --- MOBILE SLIDING MENU --- */

.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9001;
    transform: translateY(-100%);
    transition: transform 0.6s var(--ease-apple);
    overflow: hidden;
    visibility: hidden;
    display: none!important;
}

.mobile-menu-wrapper.active {
    transform: translateY(0);
    visibility: visible;
    display: block!important;
}

.menu-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 10;
}

.mobile-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f7;
    color: #1d1d1f;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-close-btn svg {
    width: 14px;
    height: 14px;
    fill: #333;
}

.menu-back-btn {
    position: absolute;
    left: 20px;
    height: 24px;
    cursor: pointer;
    display: none;
    background: none;
    border: none;
    padding: 0;
}

.menu-back-btn svg {
    width: 100%;
    height: 100%;
    fill: #86868b;
}

.menu-layer {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    padding: 10px 32px 100px 32px;
    background: #fff;
    overflow-y: auto;
    transition: transform 0.5s var(--ease-apple), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateX(50px);
}

.menu-layer.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 2;
}

.menu-layer.moved-left {
    transform: translateX(-30%);
    opacity: 0;
    z-index: 1;
}
/* --- OVERLAY (Arka Plan Karartma ve Blur) --- */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Arka planı hafif karartır */
    backdrop-filter: blur(20px);    /* Apple tarzı yoğun blur efekti */
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 8000; /* Navigasyonun ve Mega Menu'nün altında kalmalı */
}

/* Menü açıkken body'ye eklenecek class ile overlay'i görünür yapıyoruz */
body.menu-open #overlay {
    opacity: 1;
    visibility: visible;
}

/* Navigasyon ve Mega Menu'nün overlay üzerinde kalması için z-index'leri kontrol edelim */
nav {
    z-index: 9000 !important;
}
.mega-overlay {
    z-index: 8999 !important;
}
.menu-layer.waiting-right {
    transform: translateX(100%);
    opacity: 1;
    z-index: 3;
}

.mobile-cat-link {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1f;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.mobile-cat-link:hover {
    color: var(--accent-blue);
}

.mobile-cat-link svg {
    width: 20px;
    height: 20px;
    fill: #86868b;
    opacity: 0.8;
}

.mobile-group-header {
    font-size: 12px;
    color: #86868b;
    letter-spacing: 0.5px;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.mobile-sub-item-link {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #1d1d1f;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f7;
    transition: color 0.2s;
}

.mobile-sub-item-link.mobile-cat-link{
    display: flex;
}
.mobile-sub-item-link:last-child {
    border-bottom: none;
}

.mobile-sub-item-link:hover {
    color: var(--accent-blue);
}

.mobile-section-header {
    font-size: 12px;
    color: #86868b;
    margin-bottom: 25px;
    margin-top: 10px;
    font-weight: 400;
}

.mobile-small-link {
    font-size: 14px;
    color: #1d1d1f;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f7;
}

.mobile-small-link:hover {
    color: var(--accent-blue);
}

.menu-spacer {
    height: 20px;
    width: 100%;
}

.mobile-bottom-auth {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.mobile-auth-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mobile-auth-link {
    font-size: 14px;
    font-weight: 600;
    color: #0071e3;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-lang-row {
    font-size: 14px;
    color: #1d1d1f;
    font-weight: 500;
}

.mobile-lang-row span {
    margin: 0 5px;
    color: #ccc;
}

.menu-layer.active .mobile-cat-link,
.menu-layer.active .mobile-sub-item-link,
.menu-layer.active .mobile-small-link {
    animation: fadeInSlide 0.5s ease forwards;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* --- SEARCH OVERLAY --- */

#search-overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 11000;
    display: flex;
    flex-direction: column;
    padding-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease-apple), visibility 0.3s;
}

#search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container-apple {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 100px 20px 20px 20px;
    animation: slideDownSearch 0.5s var(--ease-apple);
}

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

.search-form {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 40px;
    padding: 7px 20px;
}

.search-icon-main {
    width: 32px;
    height: 32px;
    fill: #86868b;
    margin-right: 20px;
}

.search-input-apple {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 400;
    color: #88888f;
    outline: none;
    padding: 10px 0;
    letter-spacing: -1px;
}

.search-input-apple::placeholder {
    color: #6e6e73;
}

.close-search-apple {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5e5e5;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.close-search-apple svg {
    width: 14px;
    height: 14px;
    fill: #666;
}

.close-search-apple:hover {
    background: #d5d5d5;
}

.search-quick-links h3 {
    font-size: 13px;
    color: #6e6e73;
    font-weight: 400;
    margin-bottom: 15px;
}

.ql-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1d1d1f;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    margin-bottom: 2px;
    transition: color 0.2s;
    cursor: pointer;
}

.ql-item:hover {
    color: var(--accent-blue);
}

.ql-item svg {
    width: 12px;
    height: 12px;
    margin-right: 12px;
    fill: #6e6e73;
    transition: transform 0.2s;
}

.ql-item:hover svg {
    fill: var(--accent-blue);
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .search-input-apple {
        font-size: 18px;
    }
    .search-container-apple {
        padding-top: 20px;
    }
}

/* Eğer Tailwind kullanmıyorsanız bu CSS 3 sütunlu yapıyı sağlar */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* Mobilde tek sütun */
    gap: 1rem;
    margin-top: 10px;
}

.ql-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* Linkler arası boşluk */
}

/* Tablet ve üzeri ekranlarda 3 sütun */
@media (min-width: 768px) {
    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ----- YENİ EKLENEN KISIM ----- */


/* Placeholder rengi opacity düşürme */
#head-arama-txt::-webkit-input-placeholder { opacity: 0.4; }
#head-arama-txt::-moz-placeholder { opacity: 0.4; }
#head-arama-txt:-ms-input-placeholder { opacity: 0.4; }
#head-arama-txt::placeholder { opacity: 0.4; }


/* --- HERO & CONTENT --- */

.hero {
    min-height: calc(100vh - 125px);
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: end;
    perspective: 1000px;
    flex-direction: column;
}


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 650px;
    object-fit: contain;
    opacity: 1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    transform-style: preserve-3d;
    animation: floatHero 6s ease-in-out infinite;
    margin-bottom: 10px;
}

.hero-logo-large {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.6));
    transform: translateZ(50px);
}

.hero-logo-large .ak-1 {
    fill: #ffffff !important;
}

.hero-logo-large .ak-2 {
    fill: #00ac48 !important;
}

.hero h1 {
    font-size: 80px;
    font-weight: 900;
    letter-spacing: -3px;
    transform: translateZ(30px);
}

.hero p {
    font-size: 24px;
    color: #ccc;
    margin-top: 15px;
    font-weight: 300;
    transform: translateZ(20px);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    color: #fff;
    opacity: 0.6;
    font-size: 14px;
    z-index: 5;
    animation: bounce 2s infinite;
    left: 50%;
}

@media (max-width: 768px) {
    .hero-video {
        height: 590px;
        object-fit: cover;
    }
    .hero-content h1 {
        font-size: 36px !important;
        line-height: 48px;
    }
}
@media (max-width: 480px) {

}
/* --- SCROLL SCALE --- */

.scroll-scale-section {
    height: 350vh;
    background: #0a0a0a;
    position: relative;
    z-index: 2;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.scale-bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s;
    z-index: -1;
}

.scale-bg-video.visible {
    opacity: 0.3;
}

.scale-text-container {
    text-align: center;
    transform-origin: center center;
    will-change: transform;
}

.wolvox-big {
    font-size: 15vw;
    font-weight: 900;
    line-height: 0.9;
    background: linear-gradient(180deg, #fff, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.scale-details {
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    max-width: 600px;
    text-align: center;
    padding: 0 20px;
}

.scale-details.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    padding: 14px 32px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s;
    border: none;
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-blue);
    color: #fff;
}

.btn-link {
    color: var(--accent-blue);
    background: transparent;
    padding: 10px 0;
}

.btn:hover {
    transform: scale(1.05);
}
/* --- NEW SECTION: PRODUCT SHOWCASE (iPhone Style) --- */

.section-product-showcase {
    background-color: #fbfbfd;
    padding: 120px 0px 0px 0px;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 5;
    border-bottom: 1px solid #d2d2d7;
}

.showcase-content {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-content h2 {
    font-size: 64px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 15px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.showcase-content p {
    font-size: 26px;
    font-weight: 400;
    color: #1d1d1f;
    margin-bottom: 30px;
    letter-spacing: 0.2px;
}

.showcase-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-showcase {
    padding: 12px 28px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-showcase.primary {
    background-color: #0071e3;
    color: #fff;
}

.btn-showcase.primary:hover {
    background-color: #005bb5;
}

.btn-showcase.secondary {
    background-color: transparent;
    color: #0071e3;
    border: 1px solid #0071e3;
    /* Or just text style */
}

.btn-showcase.secondary:hover {
    background-color: #0071e3;
    color: #fff;
}

.showcase-image-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.showcase-image-wrap img {
    width: 100%;
    height: auto;
    height: 700px;
    min-height: 200px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .showcase-content h2 {
        font-size: 42px;
    }
    .showcase-content p {
        font-size: 20px;
    }
    .showcase-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn-showcase {
        width: 200px;
    }
}
/* --- STATS & ROBOT --- */

.section-stats {
    background: #fff;
    color: #1d1d1f;
    padding: 120px 20px;
    position: relative;
    z-index: 5;
}

.stats-header {
    text-align: center;
    margin-bottom: 80px;
}

.stats-header h2 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: #f5f5f7;
    transition: transform 0.3s;
}

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

.stat-svg{
    width: 20px;
    fill: #084f9e;

}
.stat-num {
    font-size: 40px;
    font-weight: 800;
    display: block;
    color: #084f9e;
}

.stat-label {
    font-size: 12px;
    color: #86868b;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
}

.section-robot {
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #000;
    z-index: 5;
}

.robot-stage {
    width: 300px;
    height: 400px;
    perspective: 1000px;
    cursor: grab;
    z-index: 2;
}

.robot-model-css {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.bot-head {
    width: 140px;
    height: 140px;
    background: #f0f0f0;
    border-radius: 35px;
    position: absolute;
    top: 0;
    left: 80px;
    border: 1px solid #ddd;
    transform-style: preserve-3d;
    box-shadow: inset -10px -10px 30px rgba(0, 0, 0, 0.1);
}

.bot-eye-row {
    width: 100px;
    height: 40px;
    background: #111;
    border-radius: 20px;
    position: absolute;
    top: 50px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateZ(10px);
}

.bot-eye {
    width: 12px;
    height: 12px;
    background: #00ac48;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ac48;
}

.bot-body {
    width: 180px;
    height: 220px;
    background: #fff;
    border-radius: 40px;
    position: absolute;
    top: 150px;
    left: 60px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 20px;
    color: #eee;
    transform-style: preserve-3d;
}

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

@keyframes bounce {
    0%,
    100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 10px);
    }
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1050px) {

    .nav-links-desktop {
        display: none;
    }
    .nav-icons-desktop {
        display: none;
    }
    .mobile-nav-right {
        display: flex;
    }
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
        letter-spacing: -1px;
    }
    .hero p {
        font-size: 18px;
        padding: 0 20px;
        margin-top: 5px;
    }
    .wolvox-big {
        font-size: 18vw;
    }
    .grid-wrapper {
        grid-template-columns: 1fr;
    }
    .grid-row-small {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    .grid-card,
    .small-card {
        height: 450px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
/* --- CAMPAIGN SECTION (NEW HERO STYLE) --- */

.section-campaigns {
    padding: 80px 0px;
    background-color: #fbfbfd;
    border-bottom: 1px solid #d2d2d7;
    position: relative;
    z-index: 5;
}

.campaigns-header {
    text-align: center;
    margin-bottom: 20px;
}

.campaigns-header :where(h2, span) {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.campaigns-header p {
    font-size: 21px;
    color: #86868b;
    font-weight: 400;
}

.campaign-slider {
    width: 100%;
    max-width: 100%;
    /* max-width: 1200px; */
    padding: 20px 0 30px 0; /* Alt ve üstten gölgeler kesilmesin diye boşluk */
    margin: 0 auto;
    background: transparent; 
    box-shadow: none;
    border-radius: 0;
    overflow: hidden; 
    height: auto; /* Yükseklik otomatik olsun */
}

.swiper-slide.camp-slide {
    width: 85%; /* Masaüstünde %85 genişlik (Kenarlardan %7.5 boşluk kalır) */
    max-width: 1000px; /* Çok büyük ekranlarda devasa olmasın */

    /* Kart stilini buraya taşıdık */
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); /* Hafif gölge */
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* height: 620px;  */
    /* background: #fff; */
    /* opacity: 0.6; */
    transition: all 0.4s ease;
    overflow: hidden; /* Resim taşmasın */
    height: 520px;

}
.swiper-slide-active.camp-slide {
    opacity: 1;
    transform: scale(1); /* Aktif olan tam boyut ve net */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); /* Aktifken gölge artsın */
    z-index: 10;
}

.camp-content-hero {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
}

.camp-hero-badge {
    font-size: 12px;
    font-weight: 700;
    color: #00ac48;
    background: rgba(0, 172, 72, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.camp-hero-title {
    font-size: 40px;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.camp-hero-desc {
    font-size: 16px;
    color: #86868b;
    line-height: 1.4;
    margin-bottom: 35px;
    max-width: 480px;
    font-weight: 400;
}

.camp-hero-btn {
    padding: 14px 36px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    background: #0071e3;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.camp-hero-btn:hover {
    background: #005bb5;
    transform: scale(1.02);
    color: #fff;
}

.camp-image-hero {
    /* flex: 1.3; */
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f7;
    /* mask-image: linear-gradient(to right, transparent, black 15%); */
}

.camp-image-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}

.swiper-slide-active .camp-image-hero img {
    transform: scale(1.00);
}

.camp-next,
.camp-prev {
    color: #1d1d1f !important;
    background: rgba(255, 255, 255, 0.7);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: background 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.camp-next:hover,
.camp-prev:hover {
    background: #fff;
}

.camp-next::after,
.camp-prev::after {
    font-size: 20px !important;
    font-weight: bold;
}

.campaign-slider .swiper-pagination {
    bottom: -25px !important;
    background: #353535de;
    width: initial;
    border-radius: 20px;
    padding: 5px 20px;
    margin: 0 auto;
    position: relative;
    width: max-content;

}

.campaign-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff !important;
    opacity: 0.5;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Aktif olan nokta uzun bar şeklinde */
.campaign-slider .swiper-pagination-bullet-active {
    width: 40px !important;
    opacity: 1;
}

@media (max-width: 992px) {
    .campaign-slider .swiper-slide{
        width: 100%!important;
    }
    .campaign-slider .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }

    /* Aktif olan nokta uzun bar şeklinde */
    .campaign-slider .swiper-pagination-bullet-active {
        width: 20px !important;
        opacity: 1;
    }

}

@media (max-width: 992px) {
    .section-campaigns {
        padding:10px 0px;
    }

    .campaign-slider {
        flex-direction: column-reverse;
        border-radius: 20px;
    }
    .swiper-slide.camp-slide {
        flex-direction: column-reverse;
        height: 100%;
    }
    .camp-image-hero {
        flex: none;
        width: 100%;
        height: auto;
        mask-image: none;
    }
    .camp-content-hero {
        padding: 40px 24px;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .camp-hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .camp-hero-desc {
        font-size: 17px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 25px;
    }
    .camp-next,
    .camp-prev {
        display: none;
    }
}
@media (max-width: 576px) {
    .campaign-slider {
        padding: 5px 0 5px 0;
    }
}
/* --- SECTORS & MARQUEE SECTION --- */

.section-sectors {
    background: #fff;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    z-index: 4;
}

.sectors-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.sectors-header h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #1d1d1f;
    margin-bottom: 10px;
}

.sectors-container {
    position: relative;
    width: 100%;
    height: 600px;
    /* Space for phone */
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Phone Mockup */
.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #1d1d1f;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.phone-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5; /* Notch'un altında, mockup tabanının üstünde */
    background: #000;
}

/* Her bir görsel katmanı */
.screen-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0; /* Başlangıçta görünmez */
    transition: opacity 0.3s ease-in-out; /* Yumuşak geçiş */
}

/* Aktif olan görsel */
.screen-layer.active {
    opacity: 0.9;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1d1d1f;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 11;
    pointer-events: none; /* Tıklamayı engellemesin */
}
.screen-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out; /* Smooth geçiş hızı */
}

.screen-layer.active {
    opacity: 1;
    z-index: 6;
}

.sector-pill {
    cursor: pointer;
    user-select: none;
}
/* Marquee Rows */

.marquee-wrapper {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: auto;
}

.marquee-row {
    display: flex;
    gap: 20px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 20px;
    padding-right: 20px;
    /* animation: marquee 40s linear infinite; */
        cursor: grab;
    user-select: none; /* Metinlerin seçilmesini engeller, sürüklemeyi kolaylaştırır */
    white-space: nowrap;
    cursor: grab;
    will-change: transform;
    width: max-content; /* İçerik kadar genişlemesini sağlar */

}

.marquee-track:active {
    cursor: grabbing;
}

.marquee-wrapper:hover .marquee-track {
    /* animation-play-state: paused; */
}

.marquee-row:nth-child(2) .marquee-track {
    animation-direction: reverse;
}

.sector-pill {
    background: #f5f5f7;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        cursor: grab;

}
/* .sector-pill:hover {
    background: #1d1d1f;
    color: #f5f5f7;
    transition: all 0.3s ease-in-out;
} */
.sector-pill {
    /* Mevcut diğer kodlarınız... */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
    /* transform özelliğini CSS transition'dan kesinlikle hariç tutuyoruz */
}

.sector-pill:hover {
    background: #1d1d1f;
    color: #f5f5f7;
}

/* Sürükleme sırasında hover efektinin takılmaması için bu class'ı kullanacağız */
.marquee-track.is-dragging .sector-pill {
    pointer-events: none; /* Sürüklerken piller hover olduğunu anlamasın */
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-30%);
    }
}

@media (max-width: 768px) {
    .sectors-header h2 {
        font-size: 36px;
    }
    .as-prem-gradient-text{
        font-size: 40px!important;
    }
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    .sector-pill {
        font-size: 14px;
        padding: 10px 20px;
    }
    .sectors-container {
        height: 500px;
    }
}
/* --- BENTO GRID --- */

.grid-section {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-card {
    background: #fff;
    height: 600px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s var(--ease-apple), box-shadow 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    border:1px solid #e7e7e7;
}

.grid-card:hover {
    transform: scale(1.015);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.gc-content {
    z-index: 2;
    padding: 0 40px;
}

.gc-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1d1d1f;
    line-height: normal;
}

.gc-sub {
    font-size: 20px;
    color: #1d1d1f;
    margin-bottom: 10px;
    font-weight: 400;
}

.gc-visual {
    margin-top: auto;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}
.gc-visual img{
    padding: 10px;
}

/* .card-cloud {
    background: #ACDBED;
    background: linear-gradient(180deg,rgba(172, 219, 237, 1) 0%, rgba(242, 246, 247, 1) 100%);
}
.card-eticaret {
background: #D4EAF7;
background: linear-gradient(180deg,rgba(212, 234, 247, 1) 0%, rgba(248, 248, 250, 1) 100%);
}
 */
.cloud-art {
    width: 200px;
    height: 120px;
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    border-radius: 60px;
    position: absolute;
    bottom: 100px;
    box-shadow: 0 20px 40px rgba(161, 196, 253, 0.4);
    animation: float 6s ease-in-out infinite;
}

.cloud-art::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 30px;
    width: 80px;
    height: 80px;
    background: inherit;
    border-radius: 50%;
}

.cloud-art::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 80px;
    width: 100px;
    height: 100px;
    background: inherit;
    border-radius: 50%;
}

.card-eticaret {
    /* background: #fbfbfd; */
}

.bag-art {
    width: 180px;
    height: 220px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    border-radius: 0 0 20px 20px;
    position: absolute;
    bottom: 50px;
    display: flex;
    justify-content: center;
}

.bag-handle {
    position: absolute;
    top: -40px;
    width: 100px;
    height: 80px;
    border: 10px solid #ff9a9e;
    border-radius: 50px 50px 0 0;
    border-bottom: 0;
}

.grid-row-small {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.small-card {
    height: 500px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s;
}

.small-card:hover {
    transform: scale(1.02);
}



.paper-stack {
    width: 160px;
    height: 220px;
    position: relative;
    margin-top: 40px;
}

.paper {
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e5e5;
}

.paper:nth-child(1) {
    transform: rotate(-5deg);
}

.paper:nth-child(2) {
    transform: rotate(5deg);
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
}

.p-line {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
}


.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
    opacity: 0.5;
}

.app-icon {
    width: 60px;
    height: 60px;
    background: #333;
    border-radius: 14px;
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
    .grid-section {
        padding: 20px 15px;
    }
    
    .grid-card {
        height: 500px;
        padding-top: 40px;
    }
    
    .gc-title {
        font-size: 32px;
    }
    
    .gc-sub {
        font-size: 18px;
    }
    
    .gc-content {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .grid-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .grid-card {
        height: 450px;
        padding-top: 40px;
    }
    
    .gc-title {
        font-size: 28px;
    }
    
    .gc-sub {
        font-size: 17px;
        margin-bottom: 15px;
    }
    
    .gc-content {
        padding: 0 25px;
    }
    
    /* Bulut küçült */
    .cloud-art {
        width: 150px;
        height: 90px;
        bottom: 80px;
    }
    
    .cloud-art::before {
        width: 60px;
        height: 60px;
        top: -30px;
        left: 20px;
    }
    
    .cloud-art::after {
        width: 80px;
        height: 80px;
        top: -45px;
        left: 60px;
    }
    
    /* Çanta küçült */
    .bag-art {
        width: 140px;
        height: 180px;
        bottom: 40px;
    }
    
    .bag-handle {
        width: 80px;
        height: 60px;
        border-width: 8px;
        top: -30px;
    }
    
    /* Alt kartlar */
    .grid-row-small {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .small-card {
        height: 400px;
    }
    
    .paper-stack {
        width: 140px;
        height: 180px;
        margin-top: 30px;
    }
    
    .icon-grid {
        margin-top: 30px;
        gap: 12px;
    }
    
    .app-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .grid-section {
        padding: 15px 10px;
    }
    
    .grid-card {
        height: 400px;
        padding-top: 30px;
        border-radius: 15px;
    }
    
    .gc-title {
        font-size: 24px;
    }
    
    .gc-sub {
        font-size: 16px;
    }
    
    .gc-content {
        padding: 0 20px;
    }
    
    .btn-link {
        font-size: 15px;
    }
    
    /* Bulut daha da küçült */
    .cloud-art {
        width: 120px;
        height: 70px;
        bottom: 60px;
    }
    
    .cloud-art::before {
        width: 50px;
        height: 50px;
        top: -25px;
        left: 15px;
    }
    
    .cloud-art::after {
        width: 65px;
        height: 65px;
        top: -35px;
        left: 50px;
    }
    
    /* Çanta daha da küçült */
    .bag-art {
        width: 120px;
        height: 150px;
        bottom: 30px;
    }
    
    .bag-handle {
        width: 70px;
        height: 50px;
        border-width: 6px;
        top: -25px;
    }
    
    .small-card {
        height: 350px;
    }
    
    .card-edonusum,
    .card-sektorel {
        padding-top: 30px;
    }
    
    .paper-stack {
        width: 120px;
        height: 150px;
        margin-top: 25px;
    }
    
    .paper:nth-child(2) {
        padding: 15px;
        gap: 8px;
    }
    
    .p-line {
        height: 6px;
    }
    
    .icon-grid {
        margin-top: 25px;
        gap: 10px;
    }
    
    .app-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }
}
/* --- FIXED FOOTER (Desktop vs Mobile) --- */

footer {
    background-color: var(--footer-bg);
    color: #1d1d1f;
    font-size: 12px;
    padding: 40px 0 20px 0;
    border-top: 1px solid #e5e5e5;
    position: relative;
    z-index: 5;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-section {
    margin-bottom: 2px;
}

.footer-accordion-header {
    font-size: 12px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 3px;
    cursor: default;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    line-height: 20px;
    text-align: left;
    /* Desktop default: no click */
}
/* Hide Icons on Desktop */

.footer-icon-wrap {
    display: none;
}

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

.footer-links li {
    margin-bottom: 0px;
    line-height: 24px;
}

.footer-links a {
    text-decoration: none;
    color: #424245;
    transition: text-decoration 0.2s;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #1d1d1f;
}

.footer-bottom {
    max-width: 1000px;
    margin: 30px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid #d2d2d7;
    font-size: 11px;
    color: #86868b;
}

.footer-bottom > div:first-of-type {
    display:flex; flex-wrap:wrap; justify-content:space-between;text-align:center
}


.footer-legal-links a {
    color: #424245;
    text-decoration: none;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #d2d2d7;
}

.footer-legal-links a:last-child {
    border: none;
}

.footer-legal-links a:hover {
    text-decoration: underline;
}


/* --- MOBILE FOOTER STYLES (Fixed Accordion) --- */

@media (max-width: 768px) {
    .footer-content {
        display: block;
        padding: 0;
    }
    .footer-column {
        display: block;
        gap: 0;
    }
    .footer-section {
        border-bottom: 1px solid #d2d2d7;
    }
    .footer-accordion-header {
        padding: 14px 20px;
        margin: 0;
        cursor: pointer;
        pointer-events: auto;
        width: 100%;
        /* Enable clicks */
    }
    .footer-icon-wrap {
        display: flex;
        width: 14px;
        height: 14px;
        transition: transform 0.3s ease;
        opacity: 0.6;
        right: 20px;
        position: absolute;
    }
    .footer-icon-wrap svg {
        width: 100%;
        height: 100%;
        fill: #1d1d1f;
    }
    .footer-section.active .footer-icon-wrap {
        transform: rotate(180deg);
    }
    .footer-links {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    }
    .footer-section.active .footer-links {
        max-height: 500px;
        padding-bottom: 15px;
    }
    .footer-bottom {
        border-top: none;
    }
    .footer-bottom > div:first-of-type {
        justify-content:center;
    }

}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.stat-card2 {
    background: var(--card-bg);
    padding: 1.75rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.7);
    box-shadow: var(--shadow-elegant);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center; /* Yan yana hizalama için kritik */
    gap: 1.5rem; /* İkon ve içerik arası boşluk */
    cursor: default;
}

.stat-card2:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(37, 99, 235, 0.2);
}

.icon-box {
    width: 64px;
    height: 64px;
    min-width: 48px; /* Daralmaması için */
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.icon-box svg{
    width: 24px;
height: 24px;
fill: #084f9e;
}
.stat-card2:hover .icon-box {
    transform: scale(1.1) rotate(-3deg);
}

.content-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.35rem;
    color: #084f9e;
}

.label-group {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #084f9e;
    letter-spacing: 0.04em;
    line-height:normal
}


.card-decoration {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, currentColor 0%, transparent 70%);
    opacity: 0.04;
    pointer-events: none;
}


/* scroll */

/* --- Sahne 2: Scroll Scale --- */

.scroll-scale-section {
    height: 180vh;
    background: #0a0a0a;
    position: relative;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
/* Warp Grid Effect */

.warp-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    mask-image: radial-gradient(circle, black, transparent 80%);
    opacity: 0;
    transition: opacity 0.8s var(--ease);
    z-index: 1;
}

.scale-text-container {
    z-index: 2;
    transform-style: preserve-3d;
    will-change: transform, opacity, filter;
}
/* SVG Metalik Parlama Efekti */

.wolvox-svg-pro {
    width: 1100px;
    max-width: 1200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0));
    transition: filter 0.5s var(--ease);
}

.shimmer-layer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 4s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.yayinda-badge {
    margin-top: 40px;
    padding: 12px 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 100px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 5px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease);
}

.yayinda-badge.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-details {
    margin-top: 50px;
    max-width: 550px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s var(--ease);
    z-index: 5;
}

.scale-details.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-pro {
    padding: 20px 45px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s var(--ease);
}

.btn-pro:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}
/* Scroll Hint */

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: 4px;
    opacity: 0.4;
}


/* fark */

.fark-section {
    background: var(--bg-ultra-light);
    padding: 80px 0;
    color: var(--text-main);
    background-image: radial-gradient(#e5e5e5 0.5px, transparent 0.5px);
    background-size: 30px 30px;
}

.fark-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.fark-header {
    margin-bottom: 60px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease-apple);
}

.fark-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.fark-header :where(h2, span) {
    display: block;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.03em;
}
/* --- GRID --- */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 95px;
    gap: 10px;
}

.bento-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--card-border);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s var(--ease-apple), background 0.3s ease;
}

.fark-card svg{width: 30px;height: auto;fill: #3c82f6;}
/* Aktifleşme Durumu */

.bento-card.reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.bento-card:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
    z-index: 10;
}
/* --- ICON BOX (Ultra Premium) --- */

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03), 0 4px 12px rgba(0, 0, 0, 0.02);
}

.icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: currentColor;
    opacity: 0.12;
    border-radius: inherit;
}

.card-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    fill: none;
}
/* --- TEXT --- */

.text-group {
    display: flex;
    flex-direction: column;
}

.val {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
    line-height: normal;
}
/* --- COLORS --- */

.c1 {
    color: #4318ff;
}

.c2 {
    color: #d62f7f;
}

.c3 {
    color: #10b981;
}

.c4 {
    color: #f97316;
}

.c5 {
    color: #3b82f6;
}

.c6 {
    color: #8b5cf6;
}

.c7 {
    color: #f43f5e;
}

.c8 {
    color: #64748b;
}

.c9 {
    color: #0f172a;
}

.c10 {
    color: #eab308;
}

.c11 {
    color: #059669;
}

.c12 {
    color: #57534e;
}
/* --- Responsive --- */

@media (max-width: 1400px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .wolvox-svg-pro{
        width: 100%;
    }
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 90px;
    }
    .fark-header h2 {
        font-size: 30px;
    }
    .fark-section {
        padding: 80px 0;
    }
}

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

/* e-dönüşüm */

.section-edo {
    padding: 150px 40px;
    background: white;
    text-align: center;
}

/* .edo-gradient-text span{
    background: linear-gradient(90deg, #05cf5a 0%, #02913e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.edo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 80px auto 0;
}

.edo-item {
    text-decoration: none;
    color: inherit;
    transition: 0.4s var(--ease);
}

.edo-icon-box {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: var(--bg-base);
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    position: relative;
    transition: 0.5s;
}

.edo-icon-box i {
    font-size: 56px;
    color: var(--accent-green);
    transition: 0.5s;
}
.edo-icon-box img {
    padding: 28px;
}

.edo-item:hover .edo-icon-box {
    background: white;
    border-color: var(--accent-green);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 210, 133, 0.1);
}

.edo-item h3, .edo-item h4 {
    font-size: 22px;
    font-weight: 700;
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
    .edo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin: 60px auto 0;
    }
    
    .section-edo {
        padding: 100px 30px;
    }
}

@media (max-width: 768px) {
    .section-edo {
        padding: 80px 20px;
    }
    
    .section-edo h2 {
        font-size: 32px !important;
    }
    
    .section-edo p {
        font-size: 16px !important;
    }
    
    .edo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin: 50px auto 0;
    }
    
    .edo-icon-box {
        width: 140px;
        height: 140px;
    }
    
    .edo-icon-box i {
        font-size: 42px;
    }
    
    .edo-item h3, .edo-item h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .section-edo {
        padding: 60px 15px;
    }
    
    .section-edo h2 {
        font-size: 28px !important;
        letter-spacing: -1px !important;
    }
    
    .section-edo p {
        font-size: 15px !important;
        padding: 0 10px;
    }
    
    .edo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin: 40px auto 0;
    }
    
    .edo-icon-box {
        width: 160px;
        height: 160px;
    }
    
    .edo-icon-box i {
        font-size: 48px;
    }
    
    .edo-item h3, .edo-item h4 {
        font-size: 19px;
    }
}
.urunler-baslik{
    background: linear-gradient(to right, #0B1C2D, #1E3A8A, #4C1D95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
        line-height: 60px;
}

.section-text{
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ddd;
    padding: 50px 0;
}
.section-text h2{
    font-size: 42px;
}
.section-text .text-sub{
font-size: 18px;
    margin: 10px;}


@media (max-width: 991px) {
    .nav-links-desktop, .nav-icons-desktop { display: none !important; }
    .mobile-nav-right { display: flex !important; }
    .hero-logo-large { width: 150px !important; height: auto !important; }
}
@media (max-width: 767px) {
    /* Scale Section Fix */
    .scale-text-container { width: 90vw !important; }
    .wolvox-svg-pro { width: 100% !important; height: auto !important; }
    #scaleSection .sticky-wrapper { overflow: hidden; }
    
    /* Bento Grid Fix */
    .bento-grid { 
        display: flex !important; 
        flex-direction: column !important; 
        gap: 15px !important; 
    }
    .bento-card { width: 100% !important; height: auto !important; min-height: 100px; }

    /* Grid Section Fix */
    .grid-wrapper { grid-template-columns: 1fr !important; }
    .grid-row-small { grid-template-columns: 1fr !important; }
    
    /* Campaigns Fix */
    .camp-slide { flex-direction: column !important; padding: 10px !important; text-align: center; }
    .camp-content-hero, .camp-image-hero { width: 100% !important; margin: 0 !important; }
    .camp-image-hero img { max-width: 100% !important; height: auto !important; }
    
    /* Sectors Fix */
    .phone-mockup { display: none !important; }
    .marquee-wrapper { width: 100% !important; }
    
    /* Footer Fix */
    .footer-content { grid-template-columns: 1fr !important; }
    .footer-column { width: 100% !important; }
    .footer-links { display: none; margin-top: 10px;padding: 0 25px 14px 25px!important; }
    .footer-section.active .footer-links { display: block !important; }
}

/* 1. Scoped CSS - Tüm isimler benzersizdir */
.as-prem-hero-wrapper {
    position: relative;
    background-color: #020617; /* Saf Koyu */
    color: #ffffff;
    overflow: hidden;
}

/* Arka Plan Izgara Efekti */
.as-prem-grid-layer {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
    background-size: 45px 45px;
    z-index: 1;
}

.as-prem-bg-glow {
    position: absolute;
    top: -10%; right: -5%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 2;
}

/* İçerik Stilleri */
.as-prem-tag {
    background: rgba(59, 130, 246, 0.1);
    color: var(--as-primary);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.as-prem-main-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 25px 0;
}

.as-prem-gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 54px;
}

.as-prem-lead-text {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 520px;
    line-height: 1.6;
}

/* Butonlar */
.as-prem-btn-group {
    display: flex;
    flex-wrap: wrap; /* Sığmadığında alt satıra geçmesi için */
    gap: 15px;      /* Butonlar arasındaki boşluk (hem yatay hem dikey) */
    justify-content: flex-start; /* Soldan hizalar */
    align-items: center;
}

.as-prem-btn-main {
    background: var(--as-primary);
    color: white !important;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    cursor: pointer;
    border: none;
}

.as-prem-btn-main:hover {
    transform: translateY(-3px);
    color: white !important;
    filter: brightness(1.1);
}

.as-prem-btn-glass {
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    /* margin-left: 15px;  <-- BUNU SİLDİK, yerine gap kullanıyoruz */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.as-prem-btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* MOBİL DÜZENLEME */
@media (max-width: 768px) {
    .as-prem-btn-group {
        flex-direction: column; /* Alt alta dizilmeleri için */
        align-items: flex-start; /* Soldan hizalamak için */
    }
    
    .as-prem-btn-main, .as-prem-btn-glass {
        text-align: center; /* Yazıyı ortalar */
        box-sizing: border-box;
    }
}

/* Görsel & Float Kartlar */
.as-prem-visual-box { position: relative; perspective: 1200px; }

.as-prem-mockup-frame {
    transform: rotateY(-12deg) rotateX(8deg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    background: #0f172a;
    padding: 8px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    transition: transform 0.2s ease-out; /* Scroll hareketini yumuşatır */
    will-change: transform; /* Performans optimizasyonu */
    transform-style: preserve-3d;
}
.as-prem-floating { position: absolute; z-index: 10; transition: transform 0.1s ease-out; }
.as-prem-float-1 { top: 10%; right: -25px; }
.as-prem-float-2 { bottom: 15%; left: -35px; }

.as-prem-glass-card {
    background: rgba(255,255,255,0.95);
    color: #020617;
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 600;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.as-prem-glass-card.dark { background: #1e293b; color: white; border: 1px solid rgba(255,255,255,0.1); }

/* Giriş Animasyonları */
.as-prem-js-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.as-prem-js-reveal.as-active {
    opacity: 1;
    transform: translateY(0);
}


.footer-sosyal-medya a {
    display: inline-block;
    margin: 0;
    padding: 0;
    border: 1px solid #333;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    text-align: center;
    -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.15);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.15);
    color: #FFF;
    font-size: 16px;
    line-height: 16px;
}

.footer-sosyal-medya a svg {
    fill: #333;
    max-width: 16px;
    max-height: 16px;
    margin: 0 auto;
    display: block;
    -webkit-box-align: center;
    align-items: center;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
    transition: .5s
}

.footer-sosyal-medya a:hover svg {
    fill: #FFF
}

.footer-sosyal-medya a:hover {
    background: #0056b3;
    color: #FFF;
}

@media(max-width: 768px) {
    .footer-sosyal-medya {
        float:none;
    }

    .copyright {
        text-align: center;
        padding: 0 20px;
        margin: 0 0 10px 0;
    }

    .footer-sosyal-medya {
        text-align: center;
    }
}


/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Background */
.hero-section {
    background: linear-gradient(to bottom, #f8fafc, #eff6ff);
    position: relative;
}

/* Blob Effects */
.blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}
.blob-red { background-color: rgba(254, 226, 226, 0.5); width: 100px; height: 100px; top: -20px; left: -20px; }
.blob-blue { background-color: rgba(219, 234, 254, 0.5); width: 150px; height: 150px; bottom: -40px; right: -40px; }

/* Dashboard Image Container */
.dashboard-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid white;
    position: relative;
    z-index: 1;
}

/* Features Cards */
.feature-card {
    transition: all 0.3s ease;
}
.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Module Tabs Customization */
.nav-pills .nav-link {
    text-align: left;
    color: #475569;
    background-color: white;
    margin-bottom: 0.5rem;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    transition: all 0.3s;
}
.nav-pills .nav-link:hover {
    background-color: #f1f5f9;
}
.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(191, 219, 254, 0.5);
}

.tab-content-card {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

/* Image Overlay */
.img-overlay-container {
    position: relative;
    min-height: 300px;
    background-color: #0f172a;
}
.img-overlay-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    position: absolute;
}
.img-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent);
}

/* Gallery Hover */
.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #1e293b;
}
.gallery-item img {
    opacity: 0.6;
    transition: opacity 0.5s;
}
.gallery-item:hover img {
    opacity: 1;
}

/* Glassmorphism CTA */
.glass-cta {
    background: rgb(245 245 245 / 70%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3rem;
    position: relative;
    overflow: hidden;
}
.cta-blob-blue { position: absolute; top: -50px; left: -50px; width: 250px; height: 250px; background: #dbeafe; border-radius: 50%; filter: blur(80px); opacity: 0.5; z-index: -1; }
.cta-blob-red { position: absolute; bottom: -50px; right: -50px; width: 250px; height: 250px; background: #fee2e2; border-radius: 50%; filter: blur(80px); opacity: 0.5; z-index: -1; }

/* Utilities */
.text-slate-600 { color: #475569; }
.text-slate-500 { color: #64748b; }
.bg-blue-50 { background-color: #eff6ff; }
.text-blue-600 { color: #2563eb; }

.tab-content {
    margin-left: 0;
    padding-top: 0;
}
.tab-pane {
    margin-bottom: 0;
}

.features-section {
    background-color: #f8fafc; /* Slate 50 */
    position: relative;
    overflow: hidden;
}

/* Arka plan dekoratif daireler */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(80px);
    z-index: 0;
}
.circle-1 { background: #dbeafe; width: 400px; height: 400px; top: -100px; right: -100px; }
.circle-2 { background: #d1fae5; width: 300px; height: 300px; bottom: 0; left: -50px; }

/* Modern Kart Tasarımı */
.feature-box {
    background: #ffffff;
    border-radius: 1.5rem; /* Daha yuvarlak köşeler */
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-10px); /* Yukarı kalkma efekti */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(16, 185, 129, 0.3); /* Hover'da hafif yeşil border */
}

/* İkon Kutusu */
.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-box:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Renk Temaları */
.theme-primary .icon-wrapper { background-color: #eff6ff; color: #2563eb; }
.theme-success .icon-wrapper { background-color: #ecfdf5; color: #059669; }
.theme-warning .icon-wrapper { background-color: #fffbeb; color: #d97706; }
.theme-info .icon-wrapper    { background-color: #ecfeff; color: #0891b2; }
.theme-danger .icon-wrapper  { background-color: #fef2f2; color: #dc2626; }

.feature-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Kartın altına ince çizgi efekti */
.feature-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    transition: width 0.3s ease;
    border-radius: 4px 4px 0 0;
}

.feature-box:hover::after {
    width: 80%;
}

    /* Orbit Animasyonlu Arka Plan */
.orbit-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    z-index: -1;
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(16, 185, 129, 0.1); /* Teal rengi, düşük opaklık */
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 { width: 300px; height: 300px; animation: spin 20s linear infinite; }
.ring-2 { width: 500px; height: 500px; animation: spin-reverse 25s linear infinite; }
.ring-3 { width: 700px; height: 700px; animation: spin 30s linear infinite; }

/* Gezegen Noktaları (Süsleme) */
.planet {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #10b981; /* Emerald 500 */
    top: -5px; /* Çemberin üzerine oturtur */
    left: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

@keyframes spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spin-reverse { from { transform: translate(-50%, -50%) rotate(360deg); } to { transform: translate(-50%, -50%) rotate(0deg); } }

/* İçerik Stilleri */
.integration-section {
    overflow: hidden;
    position: relative;
}

.img-card-wrapper {
    position: relative;
    padding: 1rem;
    z-index: 2;
    transition: transform 0.5s ease;
}

.img-card {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
    background: white;
    border: 8px solid white;
    transform: perspective(1000px) rotateY(0deg);
    transition: all 0.5s ease;
}

.img-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

/* Hover Efekti */
.row:hover .img-card {
    box-shadow: 0 30px 60px -15px rgba(16, 185, 129, 0.25);
    transform: perspective(1000px) rotateY(2deg) translateY(-5px);
}
.row:hover .img-card img {
    transform: scale(1.05);
}

/* Buton Stili */
.btn-custom-teal {
    background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 118, 110, 0.3);
}
.btn-custom-teal:hover {
    background: linear-gradient(135deg, #115e59 0%, #134e4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.4);
    color: white;
}

/* Scroll Animasyon Sınıfları (JS ile tetiklenecek) */
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 1s ease-out; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 1s ease-out; }
.reveal-active { opacity: 1; transform: translateX(0); }


/* Mutlu müşteri */


.testimonials-section {
    background-color: #ffffff;
    padding: 40px 0;
    overflow: hidden;
}

/* Başlık ve Buton Alanı */
.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title {
    color: var(--brand-teal);
    font-weight: 800;
    font-size: 2.5rem;
}

.btn-gradient-teal {
    background: linear-gradient(90deg, var(--brand-teal) 0%, var(--brand-navy) 100%);
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 125, 121, 0.2);
    color: white;
}

.swiper{
    padding-top: 10px;
}
/* Swiper Kart Tasarımı */
.testimonial-card {
    background: #ffffff;
    border: 1px solid #037e7a;
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    /* border-color: transparent; */
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.testimonial-card h3 {
    color: #3b3486; /* Görseldeki lacivert tonu */
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 25px;
    min-height: 65px;
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.read-more-link {
    color: #3b3486;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more-link:hover {
    color: var(--brand-teal);
}

/* Navigasyon Okları (Görseldeki gibi yuvarlak) */
.nav-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.swiper-nav-btn {
    width: 50px;
    height: 50px;
    border: 1.5px solid #cbd5e1;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #334155;
}

.swiper-nav-btn:hover {
    background: #334155;
    color: white;
    border-color: #334155;
}

/* Swiper'ın paddingi (gölgelerin kesilmemesi için) */
.swiper-container-padding {
    padding: 20px 10px 40px 10px;
}

/* 1. Swiper Slide'ı flex yapıyoruz ki içindeki kart boyu algılasın */
.swiper-slide {
    display: flex;
    height: auto; /* En uzun slide boyuna otomatik uyum sağlar */
}

/* 2. Kartın tüm yüksekliği kaplamasını sağlıyoruz */
.testimonial-card {
    display: flex;
    flex-direction: column; /* İçerikleri dikey hizala */
    height: 100%;          /* Slide'ın tüm boyuna yayıl */
    width: 100%;           /* Genişliği koru */
}

/* 3. İçerikteki metne flex-grow vererek butonu aşağıya itiyoruz */
.testimonial-card p {
    flex-grow: 1;          /* Bu satır çok önemli! */
    /* Metin ne kadar kısa olursa olsun, linki/butonu en alta iter */
}


/* Kampanyalar */

    /* Modern Arka Plan: Atmospheric Glow */
.campaign-wrapper {
    position: relative;
    background-color: #ffffff;
    padding: 100px 0 40px 0;
    overflow: hidden;
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 125, 121, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 74, 128, 0.05) 0px, transparent 50%);
}

/* Arka Plan Süsü: Hareketli Halkalar */
.bg-decoration {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(0, 125, 121, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -200px;
    z-index: 0;
    pointer-events: none;
}

.c-title-area { position: relative; z-index: 1; margin-bottom: 60px; }
.c-title-area h2 {
    font-weight: 800;
    font-size: 2.8rem;
    color: #1e293b;
    letter-spacing: -1px;
}
.c-title-area span { color: #007d79; }

/* Modern Kart Tasarımı */
.c-slide-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 12px;
    border: 1px solid rgba(241, 245, 249, 1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.c-img-container {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.c-img-container img {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
    display: block;
}

/* Floating Badge (Son Gün) */
.c-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(239, 68, 68, 0.9);
    backdrop-filter: blur(8px);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Hover Efektleri */
.c-slide-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 74, 128, 0.08);
    border-color: rgba(0, 125, 121, 0.2);
}
.c-slide-card:hover img { transform: scale(1.08); }

/* Navigasyon: Minimalist */
.c-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 5px;
}
.c-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1e293b;
}
.c-nav-btn:hover { 
    background: #007d79; 
    color: white; 
    border-color: #007d79;
    transform: scale(1.1);
}

/* Swiper slide boylarını eşitleme */
.swiper-slide { height: auto; display: flex; }

.mySwiper.is-centered .swiper-wrapper {
    justify-content: center;
    transform: none !important;
}

.mySwiper.is-centered .swiper-slide {
    flex-shrink: 0;
}

/* Pürüzsüz geçiş efekti */

.active-transition {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Cam efekti (Bright Look) */

.glass-bright {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.font-akinsoft{
    font-family: "Baloo Chettan Regular", sans-serif!important;
}

.header-bg {
    background: linear-gradient(135deg, #005a4a 0%, #003a5c 100%);
    position: relative;
    overflow: hidden;
}

.mesh-accent {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 40%;
    height: 120%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: skewX(-15deg);
    pointer-events: none;
}
.fancybox__container {
    z-index: 9999!important;
}
.edo-gradient-text {
    background: linear-gradient(135deg, #064e3b 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}