﻿/* ============================================
   AKTOR - Custom Styles
   ============================================ */
/* Font Definitions */
@font-face {
    font-family: 'Magistral';
    src: url('../fonts/magistral-light.woff') format('woff'), url('../fonts/magistral-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Magistral';
    src: url('../fonts/Magistral-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Magistral';
    src: url('../fonts/magistral-medium.woff') format('woff'), url('../fonts/magistral-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Magistral';
    src: url('../fonts/magistral-bold.woff') format('woff'), url('../fonts/Magistral-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Magistral';
    src: url('../fonts/magistral-extra-bold.woff') format('woff'), url('../fonts/magistral-extrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Color Variables */
:root {
    --ak-primary-blue: #015daa;
    --ak-primary-green: #4aa943;
    --ak-primary-dark: #1c1c1c;
    --ak-primary-white: #ffffff;
    --ak-secondary-dark-blue: #002d51;
    --ak-secondary-green: #23e813;
    --ak-secondary-gray: #606060;
    --ak-accent-blue: #00c3ff;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Magistral', sans-serif;
    color: var(--ak-primary-dark);
    overflow-x: hidden;
}

p {
    text-align: justify;
}

/* Thin Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

@media screen and (max-width: 768px) {
    .m-d-none {
        display: none;
    }
}

::-webkit-scrollbar-track {
    background: var(--ak-primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--ak-primary-green);
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--ak-secondary-green);
    }

/* ============================================
   HEADER - Fixed Navigation
   ============================================ */
.ak-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

/* Header on other pages (non-home) */
.ak-header-other {
    background: var(--ak-primary-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .ak-header-other .ak-nav-links a {
        color: var(--ak-primary-dark);
    }

    .ak-header-other .ak-lang-switch {
        color: var(--ak-primary-dark);
        border-color: rgba(28, 28, 28, 0.2);
    }

    .ak-header-other .ak-search-input {
        background: rgba(28, 28, 28, 0.05);
        border-color: rgba(28, 28, 28, 0.2);
        color: var(--ak-primary-dark);
    }

        .ak-header-other .ak-search-input::placeholder {
            color: rgba(28, 28, 28, 0.5);
        }

    .ak-header-other .ak-mobile-toggle {
        color: var(--ak-primary-dark);
    }

.ak-header.scrolled {
    background: var(--ak-primary-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .ak-header.scrolled .ak-nav-links a {
        color: var(--ak-primary-dark);
    }

/* Home page header - white background and dark text on scroll */
.ak-header-home.scrolled {
    background: var(--ak-primary-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .ak-header-home.scrolled .ak-logo img {
        filter: none;
    }

    .ak-header-home.scrolled .ak-nav-links a {
        color: var(--ak-primary-dark);
    }

    .ak-header-home.scrolled .ak-lang-switch {
        color: var(--ak-primary-dark);
        border-color: rgba(28, 28, 28, 0.2);
    }

    .ak-header-home.scrolled .ak-search-input {
        background: rgba(28, 28, 28, 0.05);
        border-color: rgba(28, 28, 28, 0.2);
        color: var(--ak-primary-dark);
    }

        .ak-header-home.scrolled .ak-search-input::placeholder {
            color: rgba(28, 28, 28, 0.5);
        }

    .ak-header-home.scrolled .ak-search-icon-left {
        color: rgba(28, 28, 28, 0.5);
    }

    .ak-header-home.scrolled .ak-mobile-toggle {
        color: var(--ak-primary-dark);
    }

.ak-header.scrolled .ak-lang-switch {
    color: var(--ak-primary-dark);
    border-color: rgba(28, 28, 28, 0.2);
}

.ak-header.scrolled .ak-search-input {
    background: rgba(28, 28, 28, 0.05);
    border-color: rgba(28, 28, 28, 0.2);
    color: var(--ak-primary-dark);
}

    .ak-header.scrolled .ak-search-input::placeholder {
        color: rgba(28, 28, 28, 0.5);
    }

.ak-header.scrolled .ak-mobile-toggle {
    color: var(--ak-primary-dark);
}

.ak-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.ak-logo {
    flex-shrink: 0;
}

    .ak-logo img {
        height: 45px;
        width: auto;
        transition: all 0.3s ease;
    }

@media screen and (max-width: 468px) {
    .ak-logo img {
        height: 35px;
    }
}

.ak-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 0 0 auto;
    justify-content: center;
}

.ak-nav-mobile-header,
.ak-nav-mobile-footer {
    display: none;
}

.ak-nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .ak-nav-links li {
        margin: 0;
        padding: 0;
    }

    .ak-nav-links a {
        color: var(--ak-primary-white);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
    }

/* Navigation links on other pages */
.ak-header-other .ak-nav-links a {
    color: var(--ak-primary-dark);
}

.ak-nav-links a:hover {
    color: var(--ak-primary-green);
}

.ak-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ak-primary-green);
    transition: width 0.3s ease;
}

.ak-nav-links a:hover::after {
    width: 100%;
}

.ak-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.ak-lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ak-primary-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .ak-lang-switch:hover {
        border-color: var(--ak-primary-green);
        color: var(--ak-primary-green);
    }

.ak-lang-icon {
    font-size: 16px;
}

.ak-lang-text {
    font-weight: 600;
}

.ak-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.ak-search-icon-btn {
    display: none;
}

.ak-search-box-desktop {
    display: flex;
    position: relative;
    align-items: center;
}

.ak-search-box-mobile-absolute {
    display: none;
}

.ak-search-icon-left {
    position: absolute;
    left: 12px;
    width: 32px;
    height: 32px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}

.ak-search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--ak-primary-white);
    padding: 10px 15px 10px 50px;
    border-radius: 12px;
    font-size: 14px;
    width: 200px;
    transition: all 0.3s ease;
}

    .ak-search-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .ak-search-input:focus {
        outline: none;
        border-color: var(--ak-primary-green);
        background: rgba(255, 255, 255, 0.15);
        width: 250px;
    }

        .ak-search-input:focus + .ak-search-icon-left {
            background: rgba(74, 169, 67, 0.2);
            color: var(--ak-primary-green);
        }

/* ============================================
   NOTIFICATION ALERTS
   ============================================ */
.ak-alert {
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 400px;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.ak-alert-success {
    background: var(--ak-primary-green);
    color: var(--ak-primary-white);
    border-left: 4px solid var(--ak-secondary-green);
}

.ak-alert-danger {
    background: #dc3545;
    color: var(--ak-primary-white);
    border-left: 4px solid #c82333;
}

.ak-alert-warning {
    background: #ffc107;
    color: var(--ak-primary-dark);
    border-left: 4px solid #e0a800;
}

.ak-alert-info {
    background: var(--ak-primary-blue);
    color: var(--ak-primary-white);
    border-left: 4px solid var(--ak-secondary-blue);
}

.ak-alert-details {
    background: var(--ak-secondary-gray);
    color: var(--ak-primary-white);
    border-left: 4px solid #505050;
}

.ak-alert-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.ak-alert-close {
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 18px;
}

    .ak-alert-close:hover {
        opacity: 1;
    }

    .ak-alert-close i {
        font-size: 16px;
    }

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Mobile Bottom Menu - Hidden on Desktop */
.ak-mobile-bottom-menu {
    display: none;
}

/* Mobile Menu Toggle */
.ak-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--ak-primary-white);
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    padding: 0;
    z-index: 1001;
}

    .ak-mobile-toggle span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: currentColor;
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: all 0.3s ease;
    }

        .ak-mobile-toggle span:nth-child(1) {
            top: 0px;
        }

        .ak-mobile-toggle span:nth-child(2) {
            top: 10px;
        }

        .ak-mobile-toggle span:nth-child(3) {
            top: 20px;
        }

    .ak-mobile-toggle.active span:nth-child(1) {
        top: 10px;
        transform: rotate(135deg);
    }

    .ak-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        left: -30px;
    }

    .ak-mobile-toggle.active span:nth-child(3) {
        top: 10px;
        transform: rotate(-135deg);
    }

/* ============================================
   HERO SECTION
   ============================================ */
.ak-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 45, 81, 0.6);
    background-image: linear-gradient(rgba(0, 45, 81, 0.6), rgba(1, 93, 170, 0.4)), url('../images/bg/portfoy.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    background-attachment: fixed;
    overflow: hidden;
    animation: heroZoom 8s ease-out forwards;
}

    /* Hero section altında smooth geçiş efekti */
    .ak-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient( to bottom, transparent 0%, rgba(0, 45, 81, 0.2) 15%, rgba(0, 45, 81, 0.5) 35%, rgba(0, 29, 51, 0.75) 55%, rgba(0, 29, 51, 0.9) 75%, rgba(0, 29, 51, 1) 100% );
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
        z-index: 1;
        pointer-events: none;
    }

@keyframes heroZoom {
    from {
        background-size: 110% auto;
    }

    to {
        background-size: 100% auto;
    }
}

.ak-hero-green-blob {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 169, 67, 0.3) 0%, rgba(35, 232, 19, 0.2) 30%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.ak-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 40px 200px;
    color: var(--ak-primary-white);
    z-index: 1;
}

.ak-hero-title {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ak-hero-title-light {
    font-weight: 500;
    color: var(--ak-primary-white);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.ak-hero-title-bold {
    font-weight: 500;
    color: var(--ak-primary-white);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.ak-hero-description {
    font-size: 28px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 700px;
    color: var(--ak-primary-white);
    font-family: 'Magistral', sans-serif;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
}

.ak-hero-more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--ak-secondary-green);
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.2s;
}

.ak-hero-more-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUpIcon 0.8s ease forwards;
    animation-delay: 1.5s;
    display: block;
    filter: brightness(0) saturate(100%) invert(48%) sepia(90%) saturate(500%) hue-rotate(75deg) brightness(95%) contrast(90%);
}

.ak-hero-more:hover {
    color: var(--ak-primary-green);
}

    .ak-hero-more:hover:not(:active) {
        transform: translateY(-2px);
    }

    .ak-hero-more:hover .ak-hero-more-icon {
        transform: translate(5px, -5px);
    }

/* Hero Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpIcon {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   AKTOR BAR (Inside Hero)
   ============================================ */
.ak-aktor-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    /* SVG viewBox yüksekliği ile uyumlu */
    display: flex;
    align-items: center;
    font-family: 'Magistral', sans-serif;
    z-index: 2;
}

/* SVG cutout: ekranın sol yarısını kaplasın */
.ak-aktor-cutout {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    /* hero genişliğinin yarısı */
    height: 520px;
    display: block;
    z-index: 2;
    top: -30px;
}

@media (max-width: 768px) {
    .ak-aktor-cutout {
        left: -30% !important;
        top: -65px !important;
        width: 100% !important;
    }
    .ak-aktor-slogan {
        margin-left: auto !important;
        margin-right: auto;
        font-size: 14px !important;
    }
}

@media (max-width: 1360px) {
    .ak-aktor-cutout {
        height: 420px;
        top: -20px;
        width: 60%;
        left: -220px;
    }

    .ak-aktor-slogan {
        margin-left: 40% !important;
        font-size: 24px !important;
    }
}
@media screen and (max-width: 1175px){
    .ak-aktor-cutout {
        left: -185px;
    }
    .ak-nav-links{
        gap: 20px;
    }
    .ak-header-container{
        gap: 30px;
    }
}

@media screen and (max-width: 992px){
    .ak-aktor-cutout {
        left: -165px;
    }
}

@media screen and (max-width: 528px){
    .ak-aktor-cutout {
        height: 320px!important;
        top: -45px !important;
        left: -27% !important;
    }
}

.ak-aktor-slogan {
    margin-left: 50%;
    /* SVG'nin bittiği yerden başla */
    padding-left: 40px;
    font-size: 26px;
    font-weight: 500;
    white-space: nowrap;
    color: #5AB8C9;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 3;
}

/* ============================================
   COLLECTOR TEXT SECTION
   ============================================ */
.ak-collector-text-section {
    width: 100%;
    background: var(--ak-primary-white);
    padding: 80px 0;
}

.ak-collector-text-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .ak-collector-text-container {
        padding: 20px !important;
    }
}

.ak-collector-text-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--ak-primary-green);
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 40px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .ak-collector-text-title.animated {
        opacity: 1;
        transform: translateX(0);
    }

.ak-collector-text-content {
    color: var(--ak-primary-dark);
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    font-weight: 500;
}

    .ak-collector-text-content p {
        margin-bottom: 20px;
    }

    .ak-collector-text-content ul {
        margin: 20px 0;
        padding-left: 30px;
    }

    .ak-collector-text-content li {
        margin-bottom: 10px;
    }

/* ============================================
   AKTOR SERVICES SECTION - Animated Diagram
   ============================================ */
.ak-services-section {
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(circle at 0% 0%, var(--ak-secondary-dark-blue) 0, var(--ak-primary-dark) 40%, #021c14 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    overflow: hidden;
}

    /* Services section üstünde smooth geçiş efekti */
    .ak-services-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient( to bottom, rgba(0, 29, 51, 1) 0%, rgba(0, 29, 51, 0.9) 25%, rgba(0, 29, 51, 0.75) 45%, rgba(0, 45, 81, 0.5) 65%, rgba(0, 45, 81, 0.2) 85%, transparent 100% );
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        z-index: 0;
        pointer-events: none;
    }

.ak-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Hub Wrapper */
.ak-hub-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 620px;
}

/* Merkez Logo */
.ak-hub-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 230px;
    height: 230px;
    background: radial-gradient(circle, #000000 0%, #000000 55%, #001a12 100%);
    box-shadow: 0 0 650px rgba(0, 255, 134, 0.9), 0 0 720px rgba(0, 255, 134, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

    .ak-hub-center::before {
        content: "";
        position: absolute;
        inset: 12px;
        border-radius: 50%;
        border: 2px solid rgba(0, 0, 0, 0.25);
    }

    .ak-hub-center img {
        max-width: 70%;
        max-height: 70%;
        object-fit: contain;
        filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8));
        z-index: 1;
        position: relative;
    }

@media screen and (max-width: 993px) {
    .ak-hub-wrapper {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        margin: auto;
    }

    .ak-hub-center {
        position: initial !important;
        transform: translate(0px, 10px) !important;
    }

    @media (max-width: 768px) {

        .ak-card-tl,
        .ak-card-tr,
        .ak-card-bl,
        .ak-card-br {
            position: initial !important;
            width: 300px !important;
        }
    }
}

/* Bağlantı Çizgileri */
.ak-connector {
    position: absolute;
    left: 65%;
    top: 50%;
    transform-origin: 0 50%;
    height: 2px;
    width: 30%;
    background: linear-gradient(to right, var(--ak-primary-green), rgba(74, 169, 67, 0.3));
    box-shadow: 0 0 14px rgba(74, 169, 67, 0.6);
    z-index: 2;
}

    .ak-connector::after {
        content: "";
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: var(--ak-primary-green);
        box-shadow: 0 0 20px rgba(74, 169, 67, 0.8);
    }

.ak-connector-tl {
    transform: translate(-50%, -50%) rotate(-150deg);
}

.ak-connector-tr {
    transform: translate(-50%, -50%) rotate(-30deg);
}

.ak-connector-bl {
    transform: translate(-50%, -50%) rotate(150deg);
}

.ak-connector-br {
    transform: translate(-50%, -50%) rotate(30deg);
}

/* Hizmet Kartları */
.ak-hub-card-link {
    text-decoration: none;
    position: absolute;
    z-index: 3;
}

.ak-hub-card {
    position: relative;
    min-width: 500px;
    max-width: 560px;
    padding: 20px 28px 18px;
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid var(--ak-primary-green);
    box-shadow: 0 0 22px rgba(74, 169, 67, 0.6), 0 0 50px rgba(74, 169, 67, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.6s ease;
    opacity: 0;
    transform: scale(0.8);
}

@keyframes hubCardFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ak-hub-card-link.animated .ak-hub-card {
    opacity: 1;
    transform: scale(1);
    animation: hubCardFadeIn 0.6s ease forwards;
}

.ak-hub-card.animated {
    opacity: 1;
    transform: scale(1);
    animation: hubCardFadeIn 0.6s ease forwards;
}

/* Animation delay'leri JavaScript'te kontrol ediliyor */

.ak-hub-card-link.animated:hover .ak-hub-card {
    transform: scale(1) translateY(-3px);
    box-shadow: 0 0 30px rgba(74, 169, 67, 0.9), 0 0 60px rgba(74, 169, 67, 0.5);
}

.ak-hub-card.animated:hover {
    transform: scale(1) translateY(-3px);
    box-shadow: 0 0 30px rgba(74, 169, 67, 0.9), 0 0 60px rgba(74, 169, 67, 0.5);
}

.ak-hub-card-title {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.35;
    color: var(--ak-primary-white);
    width: 450px;
}

@media (max-width: 768px) {
    .ak-hub-card-title {
        font-size: 20px;
        width: 250px;
    }
}

/* Kart İkon Alanı */
.ak-hub-card-icon {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ak-hub-card svg {
    display: block;
    height: 70px;
    width: auto;
    stroke: var(--ak-primary-green);
    fill: none;
    stroke-width: 2;
    filter: drop-shadow(0 0 6px rgba(74, 169, 67, 0.7));
}

/* Kartların Pozisyonları */
.ak-hub-card-link.ak-card-tl {
    left: 40px;
    top: 90px;
}

.ak-hub-card-link.ak-card-tr {
    right: 40px;
    top: 90px;
}

.ak-card-tl {
    left: 0;
    top: 0;
}

.ak-card-tr {
    right: 0;
    top: 0;
}

.ak-hub-card-link.ak-card-bl {
    left: 40px;
    bottom: 90px;
}

.ak-hub-card-link.ak-card-br {
    right: 40px;
    bottom: 90px;
}

.ak-card-bl {
    left: 0;
    bottom: 0;
}

.ak-card-br {
    right: 0;
    bottom: 0;
}

/* ============================================
   SUBSCRIBE SECTION - Split Layout
   ============================================ */
.ak-subscribe-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    position: relative;
}

.ak-subscribe-left {
    flex: 1 1 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

.ak-subscribe-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 45, 81, 0.7);
    background-image: linear-gradient(rgba(0, 45, 81, 0.7), rgba(1, 93, 170, 0.5)), url('../images/bg/hill.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    overflow: hidden;
}


@keyframes subscribeZoom {
    from {
        background-size: 100%;
    }

    to {
        background-size: 115%;
    }
}

.ak-subscribe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.ak-subscribe-content {
    position: relative;
    z-index: 3;
    text-align: left;
    padding: 40px;
}

.ak-subscribe-title {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ak-primary-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .ak-subscribe-title span {
        display: inline-block;
        opacity: 0 !important;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

        .ak-subscribe-title span.animated {
            opacity: 1 !important;
            transform: translateY(0);
        }

.ak-subscribe-title-highlight {
    color: var(--ak-accent-blue);
    font-size: 56px;
    font-weight: 500;
}

/* ============================================
   PRIVACY MODAL
   ============================================ */
.ak-privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

    .ak-privacy-modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.ak-privacy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.ak-privacy-modal-content {
    position: relative;
    background: var(--ak-primary-white);
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ak-privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid var(--ak-primary-green);
    flex-shrink: 0;
}

.ak-privacy-modal-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--ak-primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.ak-privacy-modal-close {
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--ak-primary-dark);
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

    .ak-privacy-modal-close:hover {
        background: var(--ak-primary-green);
        color: var(--ak-primary-white);
        transform: rotate(90deg);
    }

.ak-privacy-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    color: var(--ak-primary-dark);
    line-height: 1.8;
    font-weight: 500;
}

    .ak-privacy-modal-body h3 {
        font-size: 20px;
        font-weight: 700;
        color: var(--ak-primary-blue);
        margin-top: 25px;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .ak-privacy-modal-body h3:first-child {
            margin-top: 0;
        }

    .ak-privacy-modal-body p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .ak-privacy-modal-body ul {
        font-size: 16px;
        margin-bottom: 15px;
        padding-left: 30px;
    }

    .ak-privacy-modal-body li {
        margin-bottom: 8px;
    }

.ak-privacy-modal-date {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--ak-primary-green);
    font-style: italic;
    color: var(--ak-secondary-gray);
    font-size: 14px;
}

.ak-subscribe-right {
    flex: 1 1 50%;
    background: var(--ak-primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    min-height: 100vh;
}

.ak-subscribe-form-wrapper {
    width: 100%;
    max-width: 600px;
    border: 2px solid var(--ak-primary-blue);
    border-top-right-radius: 120px;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    padding: 40px;
    background: var(--ak-primary-white);
}

.ak-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ak-form-group {
    position: relative;
}

.ak-form-input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid rgba(1, 93, 170, 0.3);
    background: transparent;
    font-size: 22px;
    font-family: 'Magistral', sans-serif;
    color: var(--ak-primary-dark);
    outline: none;
    transition: border-color 0.3s ease;
}

@media (max-width: 768px) {
    .ak-form-input {
        font-size: 18px;
    }
}

.ak-form-input::placeholder {
    color: rgba(28, 28, 28, 0.5);
}

.ak-form-input:focus {
    border-bottom-color: var(--ak-primary-blue);
}

.ak-form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Magistral', sans-serif;
}

.ak-form-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
}

.ak-form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--ak-primary-dark);
    line-height: 1.6;
}

.ak-form-checkbox {
    display: none;
}

.ak-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--ak-primary-green);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.ak-form-checkbox:checked + .ak-checkbox-custom {
    background: var(--ak-primary-green);
}

    .ak-form-checkbox:checked + .ak-checkbox-custom::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
        height: 8px;
        background: var(--ak-primary-white);
        border-radius: 50%;
    }

.ak-checkbox-text {
    flex: 1;
}

.ak-checkbox-link {
    color: var(--ak-primary-blue);
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .ak-checkbox-link:hover {
        color: var(--ak-primary-green);
    }

.ak-form-submit-btn {
    padding: 14px 40px;
    background: transparent;
    border: 2px solid var(--ak-primary-green);
    border-radius: 8px;
    color: var(--ak-primary-green);
    font-size: 16px;
    font-weight: 700;
    font-family: 'Magistral', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    align-self: flex-end;
}

    .ak-form-submit-btn:hover {
        background: var(--ak-primary-green);
        color: var(--ak-primary-white);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(74, 169, 67, 0.3);
    }

/* Honeypot field - Bot koruması için gizli */
.ak-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

/* Form validation styles */
.ak-form-group {
    position: relative;
}

.ak-form-input:invalid:not(:placeholder-shown),
.ak-form-input.is-invalid {
    border-bottom-color: #dc3545;
}

.ak-form-input:valid:not(:placeholder-shown),
.ak-form-input.is-valid {
    border-bottom-color: var(--ak-primary-green);
}

.ak-form-error {
    display: none;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}

    .ak-form-error.show {
        display: block;
    }

.ak-form-checkbox-wrapper {
    position: relative;
}

.ak-form-checkbox:invalid + .ak-checkbox-custom,
.ak-form-checkbox.is-invalid + .ak-checkbox-custom {
    border-color: #dc3545;
}

/* ============================================
   PAGE HEADER (Breadcrumb)
   ============================================ */
.ak-page-header {
    width: 100%;
    background: var(--ak-primary-dark);
    padding: 20px 0 10px;
    margin-top: 80px;
}

.ak-page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.ak-page-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--ak-primary-white);
    letter-spacing: 1px;
}

/* ============================================
   CORPORATE SECTION
   ============================================ */
.ak-corporate-section {
    width: 100%;
    padding: 60px 0;
    background: var(--ak-primary-white);
}

.ak-corporate-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.ak-corporate-left {
    flex: 1;
    max-width: 60%;
}

.ak-corporate-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

@media (max-width: 768px) {
    .ak-corporate-content {
        gap: 30px;
    }

    .ak-corporate-block {
        margin-bottom: 20px !important;
    }

    .ak-corporate-blocks-row {
        gap: 20px;
    }

    .ak-corporate-block-half {
        margin-bottom: 20px;
    }

    .ak-corporate-block-title {
        font-size: 24px;
    }
}

.ak-corporate-block {
    margin-bottom: 40px;
}

.ak-corporate-blocks-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.ak-corporate-block-half {
    flex: 1;
    margin-bottom: 0;
}

.ak-corporate-block-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--ak-primary-blue);
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
}

.ak-corporate-block-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ak-primary-dark);
    font-weight: 500;
}

    .ak-corporate-block-text p {
        margin-bottom: 20px;
    }

.ak-corporate-right {
    flex: 1;
    max-width: 40%;
    position: sticky;
    top: 130px;
    height: fit-content;
}

.ak-corporate-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

    .ak-corporate-image img {
        width: 100%;
        height: 500px;
        display: block;
        object-fit: cover;
    }

/* ============================================
   VALUES SECTION
   ============================================ */
.ak-values-section {
    width: 100%;
    position: relative;
}

.ak-values-top {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.ak-values-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 45, 81, 0.8), rgba(1, 93, 170, 0.6)), url('../images/bg/blog-5.webp') center/cover no-repeat;
    z-index: 1;
}

.ak-values-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 195, 255, 0.1) 100%);
    z-index: 2;
}

.ak-values-bottom {
    width: 100%;
    background: var(--ak-secondary-dark-blue);
    padding: 80px 0;
    position: relative;
}

.ak-values-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.ak-values-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--ak-secondary-green);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 100px;
    letter-spacing: 2px;
}

.ak-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

    .ak-values-grid > .ak-value-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

.ak-value-card {
    padding: 0;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    position: relative;
}

    .ak-value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

.ak-value-card-green {
    background: var(--ak-primary-green);
}

.ak-value-card-blue {
    background: var(--ak-primary-blue);
}

.ak-value-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 1rem;
    flex-shrink: 0;
}

    .ak-value-icon i {
        font-size: 36px;
        color: var(--ak-primary-white);
        display: block;
    }

        .ak-value-icon i.fa-shield-check {
            font-size: 36px;
        }

    .ak-value-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

.ak-value-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ak-primary-white);
    text-transform: none;
    margin: 0;
    padding: 15px 20px;
    letter-spacing: 0.5px;
    line-height: 1.3;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    width: 220px;
    text-align: center;
    word-wrap: break-word;
    white-space: normal;
}

.ak-value-card-content {
    padding: 40px 25px 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ak-value-card-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ak-primary-white);
    font-weight: 500;
    text-align: center;
    margin: 0;
    padding: 3rem;
    height: 190px;
}

/* ============================================
   ACTIVITIES SECTION
   ============================================ */
.ak-activities-section {
    width: 100%;
    padding: 60px 0;
    background: var(--ak-primary-white);
}

.ak-activities-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .ak-activities-container {
        padding: 20px !important;
    }
}

.ak-activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 0;
}

.ak-activity-item {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    position: relative;
}

    .ak-activity-item:nth-child(odd) {
        background: var(--ak-primary-white);
    }

    .ak-activity-item:nth-child(even) {
        background: #f8f9fa;
    }

.ak-activity-text {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.ak-activity-image {
    padding: 0;
    overflow: hidden;
}

    .ak-activity-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.ak-activity-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--ak-primary-blue);
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
}

.ak-activity-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--ak-primary-dark);
    font-weight: 500;
}

    .ak-activity-content p {
        margin: 0;
    }

.ak-activity-image-overlay {
    position: relative;
}

    .ak-activity-image-overlay::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='20' r='2' fill='white' opacity='0.8'/%3E%3Ccircle cx='50' cy='30' r='2' fill='white' opacity='0.8'/%3E%3Ccircle cx='80' cy='25' r='2' fill='white' opacity='0.8'/%3E%3Ccircle cx='30' cy='60' r='2' fill='white' opacity='0.8'/%3E%3Ccircle cx='70' cy='70' r='2' fill='white' opacity='0.8'/%3E%3Cline x1='20' y1='20' x2='50' y2='30' stroke='white' stroke-width='0.5' opacity='0.6'/%3E%3Cline x1='50' y1='30' x2='80' y2='25' stroke='white' stroke-width='0.5' opacity='0.6'/%3E%3Cline x1='30' y1='60' x2='70' y2='70' stroke='white' stroke-width='0.5' opacity='0.6'/%3E%3C/svg%3E") repeat;
        background-size: 200px 200px;
        opacity: 0.7;
        z-index: 1;
        pointer-events: none;
    }

/* ============================================
   BLOG LIST SECTION
   ============================================ */
.ak-blog-list-section {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--ak-secondary-dark-blue) 0%, var(--ak-primary-dark) 100%);
    padding: 80px 0;
}

.ak-blog-list-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media screen and (max-width: 768px) {
    .ak-blog-list-container {
        padding: 0.2rem;
    }

    .ak-blog-card-content p {
        margin-bottom: 0px;
    }
}

.ak-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ak-blog-card {
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .ak-blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-color: rgba(74, 169, 67, 0.3);
    }

.ak-blog-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

    .ak-blog-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.ak-blog-card:hover .ak-blog-card-image img {
    transform: scale(1.05);
}

.ak-blog-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .ak-blog-card-content p {
        font-size: 16px;
        line-height: 1.6;
        color: var(--ak-primary-white);
        margin-bottom: 20px;
        flex: 1;
        font-weight: 500;
    }

.ak-blog-card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--ak-primary-green);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ak-blog-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ak-primary-white);
    margin-bottom: 20px;
    flex: 1;
    font-weight: 500;
}

.ak-blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ak-blog-card-date {
    font-size: 14px;
    color: var(--ak-primary-green);
    font-weight: 500;
}

.ak-blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ak-primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .ak-blog-card-link:hover {
        color: var(--ak-secondary-green);
    }

.ak-blog-card-arrow {
    width: 14px;
    height: 14px;
    display: block;
    filter: brightness(0) saturate(100%) invert(48%) sepia(90%) saturate(500%) hue-rotate(75deg) brightness(95%) contrast(90%);
    transition: transform 0.3s ease;
}

.ak-blog-card-link:hover .ak-blog-card-arrow {
    transform: translate(3px, -3px);
}

/* ============================================
   BLOG DETAIL SECTION
   ============================================ */
.ak-blog-detail-section {
    width: 100%;
    background: radial-gradient(circle at 0% 0%, #1e69a4 0, var(--ak-primary-dark) 40%, #094d2c 100%);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.ak-blog-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
    margin-bottom: 40px;
}

.ak-blog-detail-hero {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

    .ak-blog-detail-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.ak-blog-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px 0;
    margin-bottom: 20px;
}

.ak-blog-detail-date {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.ak-blog-detail-share {
    display: flex;
    gap: 15px;
}

.ak-blog-share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--ak-primary-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

    .ak-blog-share-btn:hover {
        background: var(--ak-primary-green);
        border-color: var(--ak-primary-green);
        color: var(--ak-primary-white);
        transform: translateY(-2px);
    }

.ak-blog-detail-title {
    font-size: 42px;
    font-weight: 600;
    color: var(--ak-accent-blue);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 50px 30px;
    margin: 0;
}

.ak-blog-detail-content {
    padding: 0 50px 50px;
    color: var(--ak-primary-white);
}

    .ak-blog-detail-content p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 1rem;
        text-align: left;
        font-weight: 500;
        color: #b8b8b8;
    }

    .ak-blog-detail-content ul {
        margin-bottom: 0;
    }

    .ak-blog-detail-content li {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 1rem;
        text-align: left;
        font-weight: 500;
        color: #b8b8b8;
    }

    .ak-blog-detail-content p:last-child {
        margin-bottom: 0;
    }

.ak-blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 30px 50px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ak-blog-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--ak-primary-white);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .ak-blog-tag:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

.ak-blog-detail-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 50px 30px;
    color: var(--ak-primary-white);
}

.ak-blog-author-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.ak-blog-author-name {
    font-size: 16px;
    color: var(--ak-primary-green);
    font-weight: 600;
}

/* ============================================
   SEARCH SECTION
   ============================================ */
.ak-search-section {
    width: 100%;
    min-height: 60vh;
    background: var(--ak-primary-dark);
    padding: 80px 0;
}

.ak-search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.ak-search-form-wrapper {
    margin-bottom: 50px;
}

.ak-search-form {
    width: 100%;
}

.ak-search-input-group {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 157, 0.3);
    border-radius: 12px;
    padding: 5px 5px 5px 20px;
    transition: all 0.3s ease;
}

    .ak-search-input-group:focus-within {
        border-color: var(--ak-primary-green);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
    }

.ak-search-icon {
    color: var(--ak-primary-green);
    font-size: 20px;
    flex-shrink: 0;
}

.ak-search-input-large {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--ak-primary-white);
    font-size: 18px;
    padding: 15px 0;
    font-family: inherit;
    outline: none;
}

    .ak-search-input-large::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

.ak-search-submit-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--ak-primary-green);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .ak-search-submit-btn:hover {
        background: var(--ak-secondary-green);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 255, 157, 0.3);
    }

.ak-search-results {
    margin-top: 40px;
}

.ak-search-results-info {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-weight: 500;
}

    .ak-search-results-info strong {
        color: var(--ak-primary-green);
        font-weight: 700;
    }

.ak-search-results-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ak-search-result-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

    .ak-search-result-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--ak-primary-green);
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(0, 255, 157, 0.1);
    }

    .ak-search-result-item p {
        font-weight: 500;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: var(--ak-primary-white);
    }

.ak-search-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.ak-search-result-type {
    background: var(--ak-primary-green);
    color: var(--ak-primary-dark);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ak-search-result-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
}

.ak-search-result-title {
    margin: 0 0 12px 0;
    font-size: 22px;
    font-weight: 700;
}

    .ak-search-result-title a {
        color: var(--ak-primary-white);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .ak-search-result-title a:hover {
            color: var(--ak-primary-green);
        }

.ak-search-result-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.ak-search-result-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ak-primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .ak-search-result-link:hover {
        color: var(--ak-secondary-green);
        gap: 12px;
    }

.ak-search-result-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) invert(48%) sepia(90%) saturate(500%) hue-rotate(75deg) brightness(95%) contrast(90%);
}

.ak-search-result-link:hover .ak-search-result-arrow {
    transform: translateX(4px);
}

.ak-search-no-results {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 500;
}

.ak-search-empty {
    text-align: center;
    padding: 100px 20px;
}

.ak-search-empty-icon {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.ak-search-empty-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .ak-search-container {
        padding: 0 20px;
    }

    .ak-search-input-group {
        flex-direction: column;
        padding: 15px;
    }

    .ak-search-input-large {
        width: 100%;
        padding: 12px 0;
    }

    .ak-search-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.ak-contact-top {
    width: 100%;
    background: var(--ak-secondary-dark-blue);
    padding: 80px 0;
}

.ak-contact-top-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.ak-contact-company-name {
    font-size: 36px;
    font-weight: 500;
    color: var(--ak-primary-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 50px;
    line-height: 1.4;
}

.ak-contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.ak-contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 768px) {
    .ak-contact-info-item {
        flex-direction: column;
    }
}

.ak-contact-icon {
    font-size: 24px;
    color: var(--ak-primary-green);
    flex-shrink: 0;
}

.ak-contact-text {
    font-size: 18px;
    color: var(--ak-primary-white);
    font-weight: 500;
}

.ak-contact-map {
    width: 100%;
    height: 600px;
    position: relative;
    background: #e0e0e0;
    overflow: hidden;
}

.ak-contact-map-container {
    width: 100%;
    height: 100%;
}

    .ak-contact-map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }

    .ak-contact-map-container #aktorMap,
    .ak-contact-map-container #adminAktorMap {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
        z-index: 1;
    }

.ak-contact-social {
    width: 100%;
    background: var(--ak-secondary-dark-blue);
    padding: 60px 0;
}

.ak-contact-social-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.ak-contact-social-link {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

    .ak-contact-social-link:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

.ak-contact-social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.ak-contact-social-linkedin {
    background: #0077b5;
}

.ak-contact-social-link i {
    font-size: 28px;
    color: var(--ak-primary-white);
}

.ak-contact-social-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--ak-primary-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.ak-footer {
    background: var(--ak-primary-dark);
    color: var(--ak-primary-white);
    padding: 60px 0 30px;
}

.ak-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .ak-footer-container {
        padding: 20px !important;
        padding-bottom: 2rem !important;
    }
}

.ak-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.ak-footer-logo-section {
    flex: 0 0 auto;
}

.ak-footer-logo {
    margin-bottom: 20px;
}

    .ak-footer-logo img {
        height: 50px;
        width: auto;
    }

.ak-footer-address {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 250px;
    font-weight: 500;
}

.ak-footer-links-section {
    flex: 0 0 auto;
    margin: 0 40px;
}

.ak-footer-links-block {
    min-width: 200px;
}

.ak-footer-links-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--ak-primary-green);
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--ak-primary-green);
    padding-bottom: 8px;
    display: inline-block;
}

.ak-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ak-footer-links li {
        margin-bottom: 12px;
    }

.ak-footer-links-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

    .ak-footer-links-row li {
        margin-bottom: 0;
    }

.ak-footer-links a {
    color: var(--ak-primary-white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

    .ak-footer-links a:hover {
        color: var(--ak-primary-green);
    }

.ak-footer-blocks {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.ak-footer-social-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.ak-footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ak-footer-follow-text {
    color: var(--ak-primary-white);
    font-size: 16px;
    font-weight: 600;
    margin-right: 5px;
}

.ak-footer-social-link {
    color: var(--ak-primary-white);
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.ak-footer-social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.ak-footer-social-linkedin {
    background: #0077b5 !important;
}

.ak-footer-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ak-footer-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    min-width: 200px;
    flex: 1;
    max-width: 280px;
}

.ak-footer-block-logo {
    width: 50px;
    height: 50px;
    background: var(--ak-primary-dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

    .ak-footer-block-logo img {
        max-width: 40px;
        max-height: 40px;
    }

.ak-footer-block-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--ak-primary-green);
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--ak-primary-green);
    padding-bottom: 8px;
    display: inline-block;
}

.ak-footer-block-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--ak-primary-white);
    font-weight: 500;
    text-align: left;
}

.ak-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.ak-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--ak-primary-green);
    color: var(--ak-primary-white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 998;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 169, 67, 0.3);
}

    .ak-scroll-top:hover {
        background: var(--ak-secondary-green);
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(74, 169, 67, 0.4);
    }

    .ak-scroll-top.show {
        display: flex;
    }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .ak-header-container {
        padding: 0 20px;
        gap: 30px;
        justify-content: space-between;
    }

    .ak-nav {
        gap: 20px;
    }

    .ak-nav-links {
        gap: 20px;
    }

    .ak-search-input {
        width: 150px;
    }

        .ak-search-input:focus {
            width: 180px;
        }

    .ak-hero-title {
        font-size: 42px;
    }

    .ak-hero-content {
        padding: 60px 20px 180px;
    }

    .ak-hero-description {
        font-size: 16px;
        font-weight: 500;
    }

    .ak-hero-green-blob {
        width: 400px;
        height: 400px;
    }

    .ak-aktor-logo {
        font-size: 32px;
    }

    .ak-aktor-slogan {
        font-size: 14px !important;
        padding-left: 0;
    }

    .ak-footer-blocks {
        flex-direction: column;
    }

    .ak-footer-block {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .ak-mobile-toggle {
        display: block;
    }

    /* Override scrolled and other page styles for mobile offcanvas menu */
    .ak-nav.active ~ .ak-header-right .ak-mobile-toggle.active {
        color: var(--ak-primary-white) !important;
    }

    .ak-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--ak-primary-dark);
        flex-direction: column;
        padding: 80px 40px 40px;
        transition: left 0.3s ease;
        gap: 20px;
        z-index: 1000;
        overflow-y: auto;
    }

        .ak-nav.active {
            left: 0;
        }

    .ak-nav {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .ak-nav-mobile-header,
    .ak-nav-mobile-footer {
        display: flex;
    }

    /* Offcanvas Mobile Header */
    .ak-nav-mobile-header {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 30px;
        width: 100%;
    }

    .ak-nav-mobile-logo img {
        height: 40px;
        width: auto;
    }

    .ak-search-box-mobile {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0.4rem;
    }

    .ak-search-input-mobile {
        width: 100%;
        padding: 12px 15px 12px 45px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        color: var(--ak-primary-white);
        font-size: 14px;
        font-weight: 500;
    }

        .ak-search-input-mobile::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

    .ak-nav-mobile-lang .ak-lang-switch {
        border-color: rgba(255, 255, 255, 0.3) !important;
        color: var(--ak-primary-white) !important;
    }

    /* Offcanvas Mobile Footer */
    .ak-nav-mobile-footer {
        margin-top: auto;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ak-nav-mobile-social {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-bottom: 20px;
    }

    .ak-nav-social-link {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--ak-primary-white);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .ak-nav-social-link:hover {
            background: var(--ak-primary-green);
            transform: translateY(-2px);
        }

    .ak-nav-mobile-legal {
        display: flex;
        flex-direction: row;
        gap: 10px;
        text-align: center;
        align-items: center;
        justify-content: center;
        padding-bottom: 1rem;
        padding-left: 0.2rem;
    }

        .ak-nav-mobile-legal a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s ease;
            font-weight: 500;
        }

            .ak-nav-mobile-legal a:hover {
                color: var(--ak-primary-green);
            }

    .ak-nav-links {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

        .ak-nav-links a {
            color: var(--ak-primary-white) !important;
            font-size: 18px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

    /* Override scrolled and other page styles for mobile offcanvas */
    .ak-header-home.scrolled .ak-nav-links a,
    .ak-header-other .ak-nav-links a {
        color: var(--ak-primary-white) !important;
    }

    .ak-nav-links a:hover {
        color: var(--ak-primary-green) !important;
    }

    .ak-header-right {
        gap: 10px;
    }

    /* Mobile Toggle Button - Always white when offcanvas is active */
    .ak-nav.active ~ .ak-header-right .ak-mobile-toggle.active,
    .ak-header-home.scrolled .ak-mobile-toggle.active,
    .ak-header-other .ak-mobile-toggle.active {
        color: var(--ak-primary-white) !important;
    }

    .ak-header-right .ak-search-box {
        display: none !important;
    }

    /* Mobile Search Icon Button */
    .ak-search-icon-btn {
        display: block;
        background: transparent;
        border: none;
        color: var(--ak-primary-white);
        font-size: 20px;
        cursor: pointer;
        padding: 8px;
        transition: color 0.3s ease;
    }

    .ak-header.scrolled .ak-search-icon-btn,
    .ak-header-other .ak-search-icon-btn {
        color: var(--ak-primary-dark);
    }

    .ak-search-box-desktop {
        display: none;
    }

    /* Mobile Absolute Search Box */
    .ak-search-box-mobile-absolute {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: var(--ak-primary-white);
        padding: 15px 20px;
        z-index: 10001;
        display: none;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

        .ak-search-box-mobile-absolute.active {
            display: flex !important;
        }

    .ak-search-input-mobile-absolute {
        flex: 1;
        padding: 12px 15px;
        border: 1px solid rgba(28, 28, 28, 0.2);
        border-radius: 8px;
        font-size: 16px;
        color: var(--ak-primary-dark);
        width: 100%;
    }

    .ak-search-close {
        background: transparent;
        border: none;
        color: var(--ak-primary-dark);
        font-size: 20px;
        cursor: pointer;
        padding: 8px;
        flex-shrink: 0;
    }

    .ak-scroll-top {
        bottom: 100px;
    }

    /* Mobile Bottom Menu */
    .ak-mobile-bottom-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: transparent;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        padding: 0 20px 20px;
        z-index: 999;
        gap: 20px;
    }

    .ak-mobile-bottom-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--ak-secondary-gray);
        text-decoration: none;
        font-size: 20px;
        padding: 12px;
        transition: all 0.3s ease;
        flex: 1;
        text-align: center;
        background: var(--ak-primary-white);
        border-radius: 16px;
        min-height: 50px;
    }

        .ak-mobile-bottom-item i {
            font-size: 24px;
        }

        .ak-mobile-bottom-item.active,
        .ak-mobile-bottom-item:hover {
            color: var(--ak-primary-green);
        }

    .ak-mobile-bottom-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        background: var(--ak-primary-dark);
        color: var(--ak-primary-white);
        border: none;
        border-radius: 20px;
        padding: 12px 20px;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        min-height: 60px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        flex: 1.2;
    }

        .ak-mobile-bottom-center i {
            font-size: 24px;
        }

        .ak-mobile-bottom-center:hover {
            background: var(--ak-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
        }

    .ak-nav.active ~ .ak-mobile-bottom-menu .ak-mobile-bottom-center {
        background: var(--ak-primary-green);
        color: var(--ak-primary-white);
    }

        .ak-nav.active ~ .ak-mobile-bottom-menu .ak-mobile-bottom-center i::before {
            content: "\f00d";
        }

    .ak-mobile-bottom-left,
    .ak-mobile-bottom-right {
        max-width: 80px;
    }


    .ak-hero {
        min-height: 80vh;
        background-attachment: scroll;
        background-size: cover !important;
    }

        /* Mobile için geçiş efektini küçült */
        .ak-hero::after {
            height: 120px;
        }

    .ak-services-section::before {
        height: 120px;
    }

    .ak-hero-content {
        padding: 40px 20px 150px;
    }

    .ak-hero-title {
        font-size: 28px;
    }

    .ak-hero-description {
        font-size: 14px;
    }

    .ak-hero-green-blob {
        width: 300px;
        height: 300px;
    }

    .ak-hero-more-icon {
        font-size: 24px;
    }

    .ak-aktor-bar {
        padding: 0 20px;
        flex-direction: column;
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .ak-aktor-logo {
        font-size: 24px;
        padding-right: 0;
        margin-bottom: 10px;
    }

        .ak-aktor-logo::after {
            display: none;
        }

    .ak-aktor-slogan {
        margin-left: 0 !important;
        font-size: 12px !important;
        text-align: center;
    }

    .ak-footer-top {
        flex-direction: column;
    }

    .ak-footer-blocks {
        width: 100%;
    }

    .ak-collector-text-section {
        padding: 60px 0;
    }

    .ak-collector-text-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .ak-collector-text-content {
        font-size: 16px;
    }

        .ak-collector-text-content li {
            text-align: left;
        }

    .ak-services-section {
        min-height: 80vh;
        padding: 80px 0;
    }

    .ak-services-container {
        padding: 0 20px;
    }

    .ak-hub-wrapper {
        width: 100%;
        height: auto;
        padding: 0;
    }

    .ak-hub-center {
        position: relative;
        left: 50%;
        top: 0;
        transform: translate(-50%, 0);
        margin-bottom: 50px;
        width: 180px;
        height: 180px;
    }

    .ak-connector {
        display: none;
    }

    .ak-hub-card {
        position: static;
        margin: 14px auto;
        min-width: 280px;
        max-width: 100%;
    }

    .ak-card-tl,
    .ak-card-tr,
    .ak-card-bl,
    .ak-card-br {
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .ak-subscribe-section {
        flex-direction: column;
    }

    .ak-subscribe-left,
    .ak-subscribe-right {
        min-height: 50vh;
        padding: 20px !important;
    }

    .ak-subscribe-title {
        font-size: 28px;
    }

    .ak-subscribe-title-highlight {
        font-size: 42px;
    }

    .ak-subscribe-form-wrapper {
        padding: 30px 20px;
    }

    .ak-page-header {
        padding: 40px 0 20px;
        margin-top: 60px;
    }

    .ak-page-header-content {
        padding: 0 20px;
    }

    .ak-page-title {
        font-size: 28px;
    }

    .ak-privacy-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .ak-privacy-modal-header {
        padding: 20px;
    }

    .ak-privacy-modal-title {
        font-size: 20px;
    }

    .ak-privacy-modal-body {
        padding: 20px;
    }

        .ak-privacy-modal-body h3 {
            font-size: 18px;
        }

        .ak-privacy-modal-body p,
        .ak-privacy-modal-body ul {
            font-size: 14px;
        }

    .ak-corporate-container {
        flex-direction: column;
        gap: 40px;
        padding: 20px !important;
    }

    .ak-corporate-left,
    .ak-corporate-right {
        max-width: 100%;
    }

    .ak-corporate-right {
        position: relative;
        top: 0;
    }

    .ak-corporate-blocks-row {
        flex-direction: column;
        gap: 30px;
    }

    .ak-footer-links-section {
        margin: 0 0px;
    }

    .ak-values-top {
        height: 300px;
    }

    .ak-values-bottom {
        padding: 60px 0;
    }

    .ak-values-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .ak-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ak-value-card {
        padding: 0;
        width: 100%;
        min-height: auto !important;
    }

    .ak-value-card-title {
        font-size: 18px;
        padding: 20px 15px 15px;
        min-height: 60px;
        position: inherit;
        top: 0;
        box-shadow: none;
    }

    .ak-value-card-content {
        padding: 0 15px 30px;
    }

    .ak-value-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
        padding: 0.5rem !important;
    }

        .ak-value-icon i {
            font-size: 28px;
        }

        .ak-value-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .ak-value-card-text {
        font-size: 14px;
        padding: 0rem;
        height: 66px;
    }
}

@media (max-width: 480px) {
    .ak-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .ak-activities-section {
        padding: 20px 0;
    }

    .ak-activities-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .ak-activity-item {
        min-height: 300px;
        padding: 40px 30px;
    }

    /* Mobile Flip: Text ve Image sırasını değiştir - 8 item için */
    .ak-activities-grid .ak-activity-item:nth-child(1) {
        order: 1;
        padding-left: 0;
    }

    .ak-activities-grid .ak-activity-item:nth-child(2) {
        order: 2;
        padding-left: 0;
    }

    .ak-activities-grid .ak-activity-item:nth-child(3) {
        order: 4;
        padding-left: 0;
    }

    .ak-activities-grid .ak-activity-item:nth-child(4) {
        order: 3;
        padding-left: 0;
    }

    .ak-activities-grid .ak-activity-item:nth-child(5) {
        order: 5;
        padding-left: 0;
    }

    .ak-activities-grid .ak-activity-item:nth-child(6) {
        order: 6;
        padding-left: 0;
    }

    .ak-activities-grid .ak-activity-item:nth-child(7) {
        order: 8;
        padding-left: 0;
    }

    .ak-activities-grid .ak-activity-item:nth-child(8) {
        order: 7;
        padding-left: 0;
    }

    .ak-activity-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .ak-activity-content {
        font-size: 16px;
    }

        .ak-activity-content p {
            margin-bottom: 15px;
            text-align: left;
        }

            .ak-activity-content p:last-child {
                margin-bottom: 0;
            }

    .ak-activity-image {
        padding: 0;
        min-height: 250px;
    }

    .ak-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ak-blog-detail-hero {
        height: 300px;
    }

    .ak-blog-detail-title {
        font-size: 32px;
        padding: 30px 40px 20px;
    }

    .ak-blog-detail-content {
        padding: 0 40px 40px;
    }

        .ak-blog-detail-content p {
            font-size: 16px;
        }
}

@media (max-width: 768px) {
    .ak-blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ak-blog-card-image {
        height: 200px;
    }

    .ak-blog-card-content {
        padding: 25px;
    }

    .ak-blog-card-title {
        font-size: 20px;
    }

    .ak-blog-card-text {
        font-size: 14px;
    }

    .ak-blog-detail-container {
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 12px;
    }

    .ak-blog-detail-hero {
        height: 250px;
    }

    .ak-blog-detail-title {
        font-size: 24px;
        padding: 25px 30px 20px;
    }

    .ak-blog-detail-content {
        padding: 0 30px 30px;
    }

        .ak-blog-detail-content p {
            font-size: 15px;
            line-height: 1.6;
        }

    .ak-blog-detail-tags {
        padding: 20px 30px 15px;
    }

    .ak-blog-detail-author {
        padding: 0 30px 25px;
    }

    .ak-contact-company-name {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .ak-contact-text {
        font-size: 16px;
    }

    .ak-contact-icon {
        font-size: 20px;
    }

    .ak-contact-map {
        height: 400px;
        overflow: hidden;
    }

    .ak-contact-social {
        margin-top: 10rem;
    }

    .ak-contact-social-container {
        flex-direction: column;
        gap: 25px;
    }

    .ak-contact-social-text {
        order: -1;
        margin-bottom: 10px;
    }

    .ak-contact-social-link {
        width: 55px;
        height: 55px;
    }

        .ak-contact-social-link i {
            font-size: 24px;
        }
}

@media (max-width: 480px) {
    .ak-contact-company-name {
        font-size: 22px;
        line-height: 1.3;
    }

    .ak-contact-text {
        font-size: 14px;
    }

    .ak-contact-icon {
        font-size: 18px;
    }

    .ak-contact-map {
        height: 350px;
        overflow: hidden;
    }

    .ak-contact-social-text {
        font-size: 16px;
    }
}

/* ============================================
   SELECTION COLOR
   ============================================ */
::selection {
    background: var(--ak-primary-green);
    color: var(--ak-primary-white);
}

::-moz-selection {
    background: var(--ak-primary-green);
    color: var(--ak-primary-white);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.ak-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ak-secondary-dark-blue);
    padding: 25px 40px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ak-cookie-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ak-cookie-banner-text {
    flex: 1;
    min-width: 300px;
    font-weight: 500;
}

    .ak-cookie-banner-text p {
        color: var(--ak-primary-white);
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
    }

    .ak-cookie-banner-text a {
        color: var(--ak-primary-green);
        text-decoration: underline;
        transition: color 0.3s ease;
    }

        .ak-cookie-banner-text a:hover {
            color: var(--ak-accent-green);
        }

.ak-cookie-banner-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.ak-cookie-accept,
.ak-cookie-decline {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Magistral', sans-serif;
}

.ak-cookie-accept {
    background: var(--ak-primary-green);
    color: var(--ak-primary-white);
}

    .ak-cookie-accept:hover {
        background: var(--ak-accent-green);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(74, 169, 67, 0.4);
    }

.ak-cookie-decline {
    background: transparent;
    color: var(--ak-primary-white);
    border: 2px solid var(--ak-primary-white);
}

    .ak-cookie-decline:hover {
        background: var(--ak-primary-white);
        color: var(--ak-secondary-dark-blue);
    }

/* ============================================
   ERROR PAGES
   ============================================ */
.ak-error-section {
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ak-secondary-dark-blue) 0%, var(--ak-primary-dark) 100%);
    padding: 60px 20px;
}

.ak-error-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ak-error-content {
    color: var(--ak-primary-white);
}

.ak-error-code {
    font-size: 120px;
    font-weight: 800;
    color: var(--ak-primary-green);
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 30px rgba(74, 169, 67, 0.5);
}

.ak-error-title {
    font-size: 42px;
    font-weight: 800;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ak-error-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    text-align: center;
    font-weight: 500;
}

.ak-error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.ak-error-button {
    padding: 15px 40px;
    background: var(--ak-primary-green);
    color: var(--ak-primary-white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .ak-error-button:hover {
        background: var(--ak-accent-green);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(74, 169, 67, 0.4);
        color: var(--ak-primary-white);
    }

.ak-error-button-secondary {
    background: transparent;
    border: 2px solid var(--ak-primary-white);
    color: var(--ak-primary-white);
}

    .ak-error-button-secondary:hover {
        background: var(--ak-primary-white);
        color: var(--ak-secondary-dark-blue);
        border-color: var(--ak-primary-white);
    }

/* ============================================
   PRIVACY & COOKIE & SITEMAP PAGES
   ============================================ */
.ak-privacy-section,
.ak-cookie-section,
.ak-sitemap-section {
    width: 100%;
    padding: 60px 0;
    background: var(--ak-primary-white);
}

.ak-privacy-container,
.ak-cookie-container,
.ak-sitemap-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

@media screen and (max-width: 768px) {

    .ak-privacy-container,
    .ak-cookie-container,
    .ak-sitemap-container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 768px) {

    .ak-privacy-content,
    .ak-cookie-content,
    .ak-sitemap-content {
        font-size: 16px;
    }
}

.ak-privacy-content,
.ak-cookie-content,
.ak-sitemap-content {
    color: var(--ak-primary-dark);
    line-height: 1.8;
}

    .ak-privacy-content h2,
    .ak-cookie-content h2,
    .ak-sitemap-content h2 {
        font-size: 32px;
        font-weight: 500;
        color: var(--ak-primary-blue);
        margin-top: 40px;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .ak-privacy-content h2:first-child,
        .ak-cookie-content h2:first-child,
        .ak-sitemap-content h2:first-child {
            margin-top: 0;
        }

    .ak-privacy-content h3,
    .ak-cookie-content h3 {
        font-size: 24px;
        font-weight: 500;
        color: var(--ak-primary-blue);
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .ak-privacy-content p,
    .ak-cookie-content p {
        font-size: 18px;
        margin-bottom: 20px;
        font-weight: 500;
    }

    .ak-privacy-content ul,
    .ak-cookie-content ul {
        font-size: 18px;
        margin-bottom: 20px;
        padding-left: 30px;
    }

    .ak-privacy-content li,
    .ak-cookie-content li {
        margin-bottom: 10px;
        font-weight: 500;
    }

.ak-privacy-update,
.ak-cookie-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid var(--ak-primary-green);
    font-style: italic;
    color: var(--ak-primary-dark);
    opacity: 0.8;
}

.ak-sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ak-sitemap-list li {
        margin-bottom: 15px;
    }

    .ak-sitemap-list a {
        font-size: 18px;
        color: var(--ak-primary-blue);
        text-decoration: none;
        transition: color 0.3s ease;
        display: inline-block;
    }

        .ak-sitemap-list a:hover {
            color: var(--ak-primary-green);
            text-decoration: underline;
        }

/* ============================================
   FOOTER LEGAL LINKS
   ============================================ */
.ak-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ak-footer-legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

    .ak-footer-legal-links a {
        color: var(--ak-primary-white);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
        font-weight: 500;
    }

        .ak-footer-legal-links a:hover {
            color: var(--ak-primary-green);
        }

.ak-footer-separator {
    color: var(--ak-primary-white);
    opacity: 0.5;
}

.ak-footer-bottom-content p {
    font-weight: 500;
}

@media (max-width: 768px) {
    .ak-cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .ak-cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }

    .ak-cookie-accept,
    .ak-cookie-decline {
        flex: 1;
        min-width: 120px;
    }

    .ak-error-code {
        font-size: 80px;
    }

    .ak-error-title {
        font-size: 28px;
    }

    .ak-error-text {
        font-size: 16px;
    }

    .ak-error-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .ak-privacy-content h2,
    .ak-cookie-content h2,
    .ak-sitemap-content h2 {
        font-size: 24px;
    }

    .ak-privacy-content p,
    .ak-cookie-content p,
    .ak-sitemap-list a {
        font-size: 16px;
    }

    .ak-footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .ak-footer-legal-links {
        justify-content: center;
    }
}

/* ============ LOGIN PAGE ============ */
.ak-login-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #021c14 0%, #032647 50%, #020815 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Magistral', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ak-login-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    margin: auto;
    margin-top: 10rem;
    margin-bottom: 5rem;
}

.ak-login-box {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--ak-primary-green);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 0 40px rgba(0, 255, 150, 0.3), 0 0 80px rgba(0, 255, 150, 0.1);
    backdrop-filter: blur(10px);
}

.ak-login-logo {
    text-align: center;
    margin-bottom: 30px;
}

    .ak-login-logo img {
        max-width: 180px;
        height: auto;
        filter: drop-shadow(0 0 10px rgba(0, 255, 150, 0.5));
    }

.ak-login-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.ak-login-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    text-align: center;
    margin: 0 0 35px 0;
    font-weight: 500;
}

.ak-login-form {
    width: 100%;
}

.ak-login-input-group {
    position: relative;
    margin-bottom: 25px;
}

.ak-login-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ak-primary-green);
    font-size: 18px;
    z-index: 1;
}

.ak-login-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 150, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    font-weight: 500;
}

    .ak-login-input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

    .ak-login-input:focus {
        border-color: var(--ak-primary-green);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 20px rgba(0, 255, 150, 0.3);
    }

.ak-login-error {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.5);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    color: #ff6b6b;
    font-size: 14px;
    text-align: center;
}

.ak-login-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--ak-primary-green) 0%, #00c04b 100%);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 255, 150, 0.3);
}

    .ak-login-button:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 255, 150, 0.5);
    }

    .ak-login-button:active:not(:disabled) {
        transform: translateY(0);
    }

    .ak-login-button:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

.ak-login-button-loader {
    display: inline-block;
}

    .ak-login-button-loader i {
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .ak-login-box {
        padding: 40px 30px;
    }

    .ak-login-title {
        font-size: 24px;
    }

    .ak-login-subtitle {
        font-size: 14px;
    }

    .ak-login-logo img {
        max-width: 150px;
    }
}