/* ═══════════════════════════════════════════════════════════════
   AIR KURUMSAL CSS - Express Kargo Anonim Şirketi
   Modern Corporate Landing Page Theme
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ═══════════════ CSS DEĞİŞKENLERİ ═══════════════ */
:root {
    --ak-primary: #7B1818;
    --ak-primary-light: #9B2222;
    --ak-primary-dark: #5A0E0E;
    --ak-primary-darker: #3D0A0A;
    --ak-accent: #DC2626;
    --ak-accent-light: #EF4444;
    --ak-accent-hover: #B91C1C;
    --ak-white: #FFFFFF;
    --ak-off-white: #FAF5F5;
    --ak-bg-warm: #FDF8F8;
    --ak-bg-section: #FBF7F7;
    --ak-bg-dark: #1C1917;
    --ak-text-dark: #1C1917;
    --ak-text: #292524;
    --ak-text-secondary: #57534E;
    --ak-text-muted: #A8A29E;
    --ak-border: #E7DBDB;
    --ak-border-light: #F3EBEB;
    --ak-success: #059669;
    --ak-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ak-font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
    --ak-shadow-sm: 0 1px 3px rgba(123,24,24,0.06);
    --ak-shadow-md: 0 4px 14px rgba(123,24,24,0.08);
    --ak-shadow-lg: 0 12px 36px rgba(123,24,24,0.12);
    --ak-shadow-xl: 0 25px 50px rgba(123,24,24,0.18);
    --ak-radius-sm: 8px;
    --ak-radius-md: 12px;
    --ak-radius-lg: 16px;
    --ak-radius-xl: 24px;
    --ak-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════ GLOBAL ═══════════════ */
.ak-page {
    font-family: var(--ak-font);
    color: var(--ak-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ak-page *, .ak-page *::before, .ak-page *::after {
    box-sizing: border-box;
}

/* ═══════════════ SECTION TITLE (Ortak) ═══════════════ */
.ak-section-title {
    text-align: center;
    margin-bottom: 56px;
}

.ak-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FEF2F2 0%, #FECACA 100%);
    color: var(--ak-primary);
    font-family: var(--ak-font-display);
    font-size: 18px;
    font-weight: 800;
    padding: 12px 32px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 12px rgba(123,24,24,0.08);
    border: 1px solid rgba(220,38,38,0.08);
}

.ak-section-title p {
    font-size: 16px;
    color: var(--ak-text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.ak-section-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--ak-primary) 0%, var(--ak-accent) 100%);
    border-radius: 4px;
    margin: 24px auto 0;
}


/* ═══════════════════════════════════════════════════════════════
   HERO BÖLÜMÜ - Slider + Gönderi Takip Kutusu
   ═══════════════════════════════════════════════════════════════ */
.ak-hero-section {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--ak-primary-darker);
}

/* Owl-carousel item height */
.ak-hero-section .owl-carousel .item,
.ak-hero-section .owl-carousel .owl-item {
    min-height: 620px;
}

/* Slide background */
.ak-slide {
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
}

/* Dark gradient overlay per slide */
.ak-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(61,10,10,0.94) 0%,
        rgba(90,14,14,0.88) 35%,
        rgba(123,24,24,0.72) 65%,
        rgba(220,38,38,0.55) 100%
    );
}

/* Slide text content */
.ak-slide-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 0 0 0;
}

.ak-slide-content {
    max-width: 560px;
    padding: 40px 0;
}

.ak-slide-content h1 {
    font-family: var(--ak-font-display);
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -1.5px;
    color: #FFFFFF;
    text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.ak-slide-content p {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 36px;
    color: rgba(255,255,255,0.88);
    font-weight: 400;
    max-width: 480px;
}

/* Slide CTA buttons */
.ak-slide-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ak-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--ak-white);
    color: var(--ak-primary) !important;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--ak-font);
    border-radius: var(--ak-radius-md);
    text-decoration: none !important;
    transition: var(--ak-transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border: none;
}

.ak-slide-btn:hover {
    background: var(--ak-accent);
    color: var(--ak-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(220,38,38,0.35);
    text-decoration: none !important;
}

.ak-slide-btn i { margin-left: 4px; }

/* ─── Gönderi Takip Kutusu (Hero üstü) ─── */
.ak-hero-track {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 400px;
}

.ak-track-box {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--ak-radius-xl);
    padding: 36px 32px 32px;
    box-shadow: 0 30px 60px -10px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
}

.ak-track-box-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ak-track-box-title svg {
    width: 22px;
    height: 22px;
    fill: var(--ak-primary);
    flex-shrink: 0;
}

.ak-track-box-title h3 {
    font-family: var(--ak-font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--ak-text-dark);
    margin: 0;
}

.ak-track-box > p {
    font-size: 13.5px;
    color: var(--ak-text-secondary);
    line-height: 1.5;
    margin: 0 0 20px;
}

.ak-track-box input[type="text"] {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--ak-border);
    border-radius: var(--ak-radius-md);
    font-size: 13.5px;
    font-family: var(--ak-font);
    color: var(--ak-text);
    outline: none;
    transition: var(--ak-transition);
    margin-bottom: 12px;
    background: #FAFAFA;
}

.ak-track-box input[type="text"]:focus {
    border-color: var(--ak-accent);
    box-shadow: 0 0 0 4px rgba(220,38,38,0.08);
    background: #fff;
}

.ak-track-box input[type="text"]::placeholder {
    color: var(--ak-text-muted);
    font-size: 12.5px;
}

.ak-track-submit {
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, var(--ak-primary) 0%, var(--ak-accent) 100%);
    color: var(--ak-white);
    border: none;
    border-radius: var(--ak-radius-md);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--ak-font);
    cursor: pointer;
    transition: var(--ak-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ak-track-submit:hover {
    background: linear-gradient(135deg, var(--ak-primary-dark) 0%, var(--ak-primary) 100%);
    box-shadow: 0 8px 24px rgba(123,24,24,0.3);
    transform: translateY(-1px);
}

.ak-track-submit svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ─── Owl Carousel Nav & Dots (Hero) ─── */
.ak-hero-section .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 5;
}

.ak-hero-section .owl-nav button {
    pointer-events: all;
    width: 52px;
    height: 52px;
    border-radius: 50% !important;
    background-color: rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.3) !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: var(--ak-transition);
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 24px !important;
    overflow: hidden;
}

/* Sağa bakan uçak (İleri) */
.ak-hero-section .owl-nav button.owl-next {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z' transform='rotate(90 12 12)'/%3E%3C/svg%3E") !important;
}

/* Sola bakan uçak (Geri) */
.ak-hero-section .owl-nav button.owl-prev {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z' transform='rotate(-90 12 12)'/%3E%3C/svg%3E") !important;
}

.ak-hero-section .owl-nav button span {
    display: none !important;
}

.ak-hero-section .owl-nav button:hover {
    background-color: var(--ak-accent) !important;
    border-color: var(--ak-accent) !important;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(220,38,38,0.4);
}

.ak-hero-section .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-70%);
    z-index: 5;
    display: flex;
    gap: 8px;
}

.ak-hero-section .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4) !important;
    border: none !important;
    transition: var(--ak-transition);
    padding: 0 !important;
}

.ak-hero-section .owl-dot.active {
    background: var(--ak-white) !important;
    width: 28px;
    border-radius: 8px;
}


/* ═══════════════════════════════════════════════════════════════
   HIZLI İSTATİSTİKLER BARI
   ═══════════════════════════════════════════════════════════════ */
.ak-hero-stats {
    background: linear-gradient(135deg, #FFF5F5 0%, #FDE8E8 25%, #FECACA 50%, #FDE8E8 75%, #FFF5F5 100%);
    border-bottom: 1px solid rgba(220,38,38,0.08);
    border-top: 1px solid rgba(220,38,38,0.06);
    position: relative;
    z-index: 3;
    overflow: hidden;
}

/* Dekoratif daire deseni */
.ak-hero-stats::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(220,38,38,0.04);
    pointer-events: none;
}

.ak-hero-stats::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(123,24,24,0.04);
    pointer-events: none;
}

.ak-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ak-stat-item {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid rgba(220,38,38,0.08);
    transition: var(--ak-transition);
}

.ak-stat-item:last-child { border-right: none; }

.ak-stat-item:hover {
    background: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.ak-stat-icon {
    width: 56px;
    height: 56px;
    background: var(--ak-white);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 14px;
    box-shadow: 0 4px 12px rgba(123,24,24,0.08);
    border: 1px solid rgba(220,38,38,0.06);
}

.ak-stat-number {
    font-family: var(--ak-font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--ak-primary);
    margin-bottom: 4px;
}

.ak-stat-label {
    font-size: 13px;
    color: var(--ak-text-secondary);
    font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════════
   HİZMETLER BÖLÜMÜ
   ═══════════════════════════════════════════════════════════════ */
.ak-services {
    padding: 100px 0;
    background: var(--ak-white);
}

.ak-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ak-service-card {
    position: relative;
    border-radius: var(--ak-radius-xl);
    overflow: hidden;
    height: 360px;
    cursor: pointer;
    transition: var(--ak-transition);
}

.ak-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ak-shadow-xl);
}

.ak-service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.7s ease;
}

.ak-service-card:hover .ak-service-card-bg {
    transform: scale(1.1);
}

.ak-service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 40%, rgba(61,10,10,0.92) 100%);
    transition: var(--ak-transition);
}

.ak-service-card:hover .ak-service-card-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.1) 20%, rgba(61,10,10,0.95) 100%);
}

.ak-service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
    transform: translateY(16px);
    transition: var(--ak-transition);
}

.ak-service-card:hover .ak-service-card-content {
    transform: translateY(0);
}

.ak-service-card-content h3 {
    font-family: var(--ak-font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ak-white);
    margin: 0 0 10px;
}

.ak-service-card-content p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0 0 18px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.ak-service-card:hover .ak-service-card-content p {
    opacity: 1;
    transform: translateY(0);
}

.ak-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ak-white) !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    padding: 10px 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    transition: var(--ak-transition);
    opacity: 0;
    transform: translateY(10px);
}

.ak-service-card:hover .ak-service-card-link {
    opacity: 1;
    transform: translateY(0);
}

.ak-service-card-link:hover {
    background: var(--ak-accent) !important;
    color: var(--ak-white) !important;
    text-decoration: none !important;
}


/* ═══════════════════════════════════════════════════════════════
   COUNTER / İSTATİSTİK BÖLÜMÜ
   ═══════════════════════════════════════════════════════════════ */
.ak-counter {
    position: relative;
    overflow: hidden;
}

.ak-counter .row { margin: 0; }

.ak-counter-image {
    min-height: 440px;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    border-radius: 0 24px 24px 0;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(123,24,24,0.15), 0 4px 16px rgba(0,0,0,0.1);
    border: 3px solid rgba(255,255,255,0.2);
    margin: 20px 0;
    transform: translateX(-10px);
    transition: var(--ak-transition);
}

.ak-counter-image:hover {
    transform: translateX(-5px);
    box-shadow: 0 16px 50px rgba(123,24,24,0.2), 0 6px 20px rgba(0,0,0,0.15);
}

.ak-counter-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123,24,24,0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.ak-counter-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(90,14,14,0.4) 100%);
    z-index: 1;
}

.ak-counter-content {
    background: linear-gradient(135deg, var(--ak-primary-darker) 0%, var(--ak-primary) 60%, var(--ak-primary-light) 100%);
    color: var(--ak-white);
    padding: 60px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ak-counter-content::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.ak-counter-content h2, .ak-counter-content h3, .ak-counter-content h4 {
    color: var(--ak-white) !important;
}

.ak-counter-content p {
    color: rgba(255,255,255,0.8) !important;
    line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════════
   ÜRÜNLER BÖLÜMÜ
   ═══════════════════════════════════════════════════════════════ */
.ak-products {
    padding: 100px 0;
    background: var(--ak-off-white);
}

.ak-product-card {
    background: var(--ak-white);
    border-radius: var(--ak-radius-lg);
    overflow: hidden;
    transition: var(--ak-transition);
    border: 1px solid var(--ak-border-light);
    height: 100%;
}

.ak-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ak-shadow-lg);
    border-color: var(--ak-accent);
}

.ak-product-img {
    position: relative;
    overflow: hidden;
    height: 230px;
}

.ak-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ak-product-card:hover .ak-product-img img {
    transform: scale(1.08);
}

.ak-product-body {
    padding: 22px 24px 28px;
}

.ak-product-body h5 {
    font-family: var(--ak-font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--ak-text-dark);
    margin: 0 0 14px;
    line-height: 1.4;
}

.ak-product-body h5 a {
    color: var(--ak-text-dark) !important;
    text-decoration: none !important;
    transition: var(--ak-transition);
}

.ak-product-body h5 a:hover {
    color: var(--ak-accent) !important;
}

.ak-product-price {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ak-price-old {
    font-size: 14px;
    color: var(--ak-text-muted);
    text-decoration: line-through;
}

.ak-price-new {
    font-size: 20px;
    font-weight: 800;
    color: var(--ak-primary);
}


/* ═══════════════════════════════════════════════════════════════
   PROJELER BÖLÜMÜ
   ═══════════════════════════════════════════════════════════════ */
.ak-projects {
    padding: 100px 0;
    background: var(--ak-white);
}

.ak-project-card {
    position: relative;
    border-radius: var(--ak-radius-xl);
    overflow: hidden;
    height: 300px;
    transition: var(--ak-transition);
}

.ak-project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ak-shadow-xl);
}

.ak-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ak-project-card:hover img {
    transform: scale(1.08);
}

.ak-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(61,10,10,0.88) 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
    transition: var(--ak-transition);
}

.ak-project-card:hover .ak-project-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(61,10,10,0.95) 100%);
}

.ak-project-overlay h5 {
    font-family: var(--ak-font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--ak-white);
    margin: 0;
}

.ak-project-overlay h5 a {
    color: var(--ak-white) !important;
    text-decoration: none !important;
}


/* ═══════════════════════════════════════════════════════════════
   CALL-TO-ACTION BÖLÜMÜ
   ═══════════════════════════════════════════════════════════════ */
.ak-cta {
    position: relative;
    padding: 110px 0;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed;
    text-align: center;
}

.ak-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(61,10,10,0.94) 0%,
        rgba(90,14,14,0.90) 40%,
        rgba(123,24,24,0.88) 70%,
        rgba(220,38,38,0.82) 100%
    );
}

.ak-cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.ak-cta-content h3 {
    font-family: var(--ak-font-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--ak-white) !important;
    margin: 0 0 32px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.ak-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 44px;
    background: var(--ak-white);
    color: var(--ak-primary) !important;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--ak-font);
    border-radius: var(--ak-radius-md);
    text-decoration: none !important;
    transition: var(--ak-transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.ak-cta-btn:hover {
    background: var(--ak-accent-light);
    color: var(--ak-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(220,38,38,0.35);
    text-decoration: none !important;
}

.ak-cta-btn i { margin-left: 6px; }


/* ═══════════════════════════════════════════════════════════════
   GOOGLE İŞLETME YORUMLARI
   ═══════════════════════════════════════════════════════════════ */
.ak-google-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--ak-off-white) 0%, #FFF8F8 40%, var(--ak-white) 100%);
}

/* ─── Google Üst Bilgi Kartı ─── */
.ak-google-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: var(--ak-white);
    border-radius: var(--ak-radius-xl);
    padding: 32px 40px;
    border: 1px solid var(--ak-border-light);
    box-shadow: var(--ak-shadow-md);
    max-width: 100%;
    margin: 0 auto 48px;
    flex-wrap: wrap;
}

.ak-gh-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ak-google-logo {
    flex-shrink: 0;
}

.ak-gh-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #E8F5E9;
    color: #2E7D32;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.3px;
}

.ak-gh-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ak-gh-score {
    font-family: var(--ak-font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--ak-text-dark);
    line-height: 1;
}

.ak-gh-stars-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ak-gh-stars {
    display: flex;
    gap: 2px;
}

.ak-star {
    color: #FBBC05;
    font-size: 20px;
    line-height: 1;
}

.ak-gh-label {
    font-size: 12px;
    color: var(--ak-text-muted);
    font-weight: 500;
}

/* ─── Dekoratif Çerçeve ─── */
.ak-reviews-frame {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 48px 44px;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--ak-primary), var(--ak-accent-light), var(--ak-primary)) 1;
    background:
        linear-gradient(var(--ak-white), var(--ak-white)) padding-box,
        linear-gradient(135deg, var(--ak-primary), var(--ak-accent-light), var(--ak-primary)) border-box;
    border-radius: 0;
}

/* Alternatif: dashed görünüm için clip-path ile rounded border */
.ak-reviews-frame::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px dashed rgba(123,24,24,0.15);
    border-radius: 4px;
    pointer-events: none;
    z-index: 0;
}

/* Köşe dekorları */
.ak-frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 2;
}

.ak-frame-corner::before,
.ak-frame-corner::after {
    content: '';
    position: absolute;
    background: var(--ak-primary);
    border-radius: 1px;
}

.ak-frame-corner::before {
    width: 20px;
    height: 3px;
}

.ak-frame-corner::after {
    width: 3px;
    height: 20px;
}

/* Sol üst */
.ak-fc-tl { top: -1px; left: -1px; }
.ak-fc-tl::before { top: 0; left: 0; }
.ak-fc-tl::after { top: 0; left: 0; }

/* Sağ üst */
.ak-fc-tr { top: -1px; right: -1px; }
.ak-fc-tr::before { top: 0; right: 0; }
.ak-fc-tr::after { top: 0; right: 0; }

/* Sol alt */
.ak-fc-bl { bottom: -1px; left: -1px; }
.ak-fc-bl::before { bottom: 0; left: 0; }
.ak-fc-bl::after { bottom: 0; left: 0; }

/* Sağ alt */
.ak-fc-br { bottom: -1px; right: -1px; }
.ak-fc-br::before { bottom: 0; right: 0; }
.ak-fc-br::after { bottom: 0; right: 0; }

/* Frame içindeki google header */
.ak-reviews-frame .ak-google-header {
    margin: 0 0 36px;
    max-width: 100%;
    border-radius: var(--ak-radius-lg);
}

/* ─── Yorum Kartları Grid ─── */
.ak-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 100%;
    margin: 0 auto 40px;
}

.ak-review-card {
    background: var(--ak-white);
    border-radius: var(--ak-radius-lg);
    padding: 28px 26px;
    border: 1px solid var(--ak-border-light);
    transition: var(--ak-transition);
    position: relative;
}

.ak-review-card:hover {
    border-color: var(--ak-accent);
    box-shadow: var(--ak-shadow-lg);
    transform: translateY(-4px);
}

.ak-review-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.ak-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ak-primary) 0%, var(--ak-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ak-white);
    font-family: var(--ak-font-display);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(123,24,24,0.2);
}

.ak-review-meta h4 {
    font-family: var(--ak-font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ak-text-dark);
    margin: 0 0 2px;
}

.ak-review-meta span {
    font-size: 12px;
    color: var(--ak-text-muted);
    font-weight: 500;
}

.ak-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.ak-review-stars .ak-star {
    font-size: 15px;
}

.ak-star-empty {
    opacity: 0.25;
}

.ak-star-half {
    background: linear-gradient(90deg, #FBBC05 50%, rgba(251,188,5,0.25) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Google profil fotoğrafı */
.ak-review-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--ak-border-light);
}

.ak-review-text {
    font-size: 14px;
    color: var(--ak-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Google icon on review card */
.ak-review-card::after {
    content: 'G';
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #4285F4;
    opacity: 0.35;
}

/* ─── Google CTA Button ─── */
.ak-google-cta-wrap {
    text-align: center;
}

.ak-google-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: #4285F4;
    color: var(--ak-white) !important;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--ak-font);
    border-radius: var(--ak-radius-md);
    text-decoration: none !important;
    transition: var(--ak-transition);
    box-shadow: 0 4px 16px rgba(66,133,244,0.3);
}

.ak-google-cta:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(66,133,244,0.4);
    color: var(--ak-white) !important;
    text-decoration: none !important;
}

.ak-google-cta svg {
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   BLOG BÖLÜMÜ
   ═══════════════════════════════════════════════════════════════ */
.ak-blog {
    padding: 100px 0;
    background: var(--ak-white);
}

.ak-blog-card {
    background: var(--ak-white);
    border-radius: var(--ak-radius-xl);
    overflow: hidden;
    transition: var(--ak-transition);
    border: 1px solid var(--ak-border-light);
    margin: 10px 8px 20px;
}

.ak-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ak-shadow-lg);
    border-color: var(--ak-accent);
}

.ak-blog-card-img {
    height: 210px;
    overflow: hidden;
}

.ak-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ak-blog-card:hover .ak-blog-card-img img {
    transform: scale(1.08);
}

.ak-blog-card-body {
    padding: 24px 28px 28px;
}

.ak-blog-card-body h5 {
    font-family: var(--ak-font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--ak-text-dark);
    margin: 0 0 12px;
    line-height: 1.4;
}

.ak-blog-card-body h5 a {
    color: var(--ak-text-dark) !important;
    text-decoration: none !important;
    transition: var(--ak-transition);
}

.ak-blog-card-body h5 a:hover {
    color: var(--ak-accent) !important;
}

.ak-blog-card-body > p {
    font-size: 14px;
    color: var(--ak-text-secondary);
    line-height: 1.65;
    margin: 0 0 18px;
}

.ak-blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ak-primary) !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--ak-transition);
}

.ak-blog-card-link:hover {
    color: var(--ak-accent) !important;
    gap: 12px;
    text-decoration: none !important;
}

.ak-blog-card-link i { transition: var(--ak-transition); }


/* ═══════════════════════════════════════════════════════════════
   REFERANSLAR BÖLÜMÜ
   ═══════════════════════════════════════════════════════════════ */
.ak-references {
    padding: 80px 0;
    background: linear-gradient(135deg, #1C1917 0%, #292524 50%, #1C1917 100%);
    position: relative;
    overflow: hidden;
}

.ak-references::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220,38,38,0.3), transparent);
}

.ak-references .ak-section-title p {
    color: rgba(255,255,255,0.5);
}

.ak-references .ak-section-line {
    background: linear-gradient(90deg, var(--ak-accent), var(--ak-accent-light));
}

.ak-ref-item {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ak-ref-item a {
    display: block;
    transition: var(--ak-transition);
}

.ak-ref-item img {
    max-height: 55px;
    width: auto;
    opacity: 0.45;
    transition: var(--ak-transition);
    filter: brightness(0) invert(1);
}

.ak-ref-item:hover img {
    opacity: 0.9;
    transform: scale(1.08);
}

/* Carousel slider overrides for blog, sponsor */
.ak-blog .carousel-slider {
    margin: 0 -8px;
}

.ak-references .carousel-slider {
    margin: 0 -8px;
}


/* ═══════════════════════════════════════════════════════════════
   HIZLI TEKLİF BÖLÜMÜ (Opsiyonel - Statik)
   ═══════════════════════════════════════════════════════════════ */
.ak-quick-services {
    padding: 80px 0;
    background: var(--ak-off-white);
    border-top: 1px solid var(--ak-border-light);
    border-bottom: 1px solid var(--ak-border-light);
}

.ak-qs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.ak-qs-card {
    background: var(--ak-white);
    border-radius: var(--ak-radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 2px solid var(--ak-border-light);
    transition: var(--ak-transition);
    cursor: pointer;
}

.ak-qs-card:hover {
    border-color: var(--ak-accent);
    box-shadow: var(--ak-shadow-md);
    transform: translateY(-4px);
}

.ak-qs-card-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.ak-qs-card h4 {
    font-family: var(--ak-font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ak-text-dark);
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   NEDEN BİZ BÖLÜMÜ (İstatistik bölümü alt kısmı)
   ═══════════════════════════════════════════════════════════════ */
.ak-why-us {
    padding: 80px 0;
    background: var(--ak-white);
}

.ak-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ak-why-card {
    text-align: center;
    padding: 36px 20px;
    border-radius: var(--ak-radius-lg);
    transition: var(--ak-transition);
}

.ak-why-card:hover {
    background: var(--ak-off-white);
    transform: translateY(-4px);
}

.ak-why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FEF2F2, #FECACA);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.ak-why-card h4 {
    font-family: var(--ak-font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--ak-text-dark);
    margin: 0 0 8px;
}

.ak-why-card p {
    font-size: 13.5px;
    color: var(--ak-text-secondary);
    line-height: 1.6;
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE TASARIM
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1300px) {
    .ak-hero-track {
        right: 3%;
        width: 370px;
    }
    .ak-slide-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 1100px) {
    .ak-hero-track {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 520px;
        margin: -60px auto 0;
        padding: 0 20px;
        z-index: 10;
    }

    .ak-hero-section {
        min-height: auto;
    }

    .ak-hero-section .owl-carousel .item,
    .ak-hero-section .owl-carousel .owl-item,
    .ak-slide {
        min-height: 480px;
    }

    .ak-slide-content h1 {
        font-size: 36px;
    }

    .ak-slide-content {
        max-width: 100%;
    }

    .ak-hero-section .owl-dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
}

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

    .ak-service-card { height: 300px; }

    .ak-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ak-stat-item:nth-child(2) { border-right: none; }
    .ak-stat-item:nth-child(4) { border-right: none; }

    .ak-section-badge {
        font-size: 15px;
        padding: 10px 24px;
    }

    .ak-section-title {
        margin-bottom: 40px;
    }

    .ak-cta-content h3 {
        font-size: 28px;
    }

    .ak-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ak-qs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ak-counter-content {
        padding: 40px 32px;
    }

    .ak-reviews-frame {
        padding: 36px 28px;
    }

    .ak-reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ak-hero-section .owl-carousel .item,
    .ak-hero-section .owl-carousel .owl-item,
    .ak-slide {
        min-height: 420px;
    }

    .ak-slide-content {
        padding: 30px 0;
    }

    .ak-slide-content h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .ak-slide-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .ak-slide-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .ak-hero-track {
        margin: -40px auto 0;
        padding: 0 16px;
    }

    .ak-track-box {
        padding: 28px 22px 24px;
        border-radius: var(--ak-radius-lg);
    }

    .ak-services, .ak-products, .ak-projects,
    .ak-google-section, .ak-blog {
        padding: 60px 0;
    }

    .ak-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ak-service-card { height: 280px; }

    .ak-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ak-cta {
        padding: 70px 0;
        background-attachment: scroll;
    }

    .ak-cta-content h3 {
        font-size: 24px;
    }

    .ak-qs-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .ak-reviews-frame {
        padding: 28px 20px;
    }

    .ak-google-header {
        padding: 20px 16px;
        gap: 16px;
        flex-direction: column;
        text-align: center;
    }

    .ak-gh-left {
        flex-direction: column;
        gap: 10px;
    }

    .ak-gh-score {
        font-size: 36px;
    }

    .ak-reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ak-review-card {
        padding: 22px 20px;
    }

    .ak-frame-corner { display: none; }

    .ak-reviews-frame::before {
        inset: 4px;
    }

    .ak-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .ak-counter-image {
        min-height: 280px;
        border-radius: 16px 16px 0 0;
        transform: translateX(0);
        margin: 0 0 20px;
    }

    .ak-counter-image:hover {
        transform: translateY(-3px);
    }

    .ak-counter-content {
        padding: 36px 24px;
    }
}

@media (max-width: 480px) {
    .ak-hero-section .owl-carousel .item,
    .ak-hero-section .owl-carousel .owl-item,
    .ak-slide {
        min-height: 380px;
    }

    .ak-slide-content h1 {
        font-size: 24px;
    }

    .ak-slide-content p {
        font-size: 14px;
    }

    .ak-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ak-stat-item {
        padding: 24px 16px;
        border-right: none;
        border-bottom: 1px solid rgba(220,38,38,0.06);
    }

    .ak-stat-item:nth-child(odd) {
        border-right: 1px solid rgba(220,38,38,0.06);
    }

    .ak-stat-item:nth-child(3),
    .ak-stat-item:nth-child(4) { border-bottom: none; }

    .ak-stat-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .ak-stat-number { font-size: 24px; }
    .ak-stat-label { font-size: 11px; }

    .ak-why-grid {
        grid-template-columns: 1fr;
    }

    .ak-section-badge {
        font-size: 13px;
        padding: 8px 18px;
    }

    .ak-hero-section .owl-nav { display: none !important; }

    .ak-hero-track {
        margin-top: -30px;
    }
}


/* ═══════════════════════════════════════════════════════════════
   ANİMASYONLAR
   ═══════════════════════════════════════════════════════════════ */
@keyframes akFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes akPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.ak-animate-up {
    animation: akFadeUp 0.8s ease-out both;
}

/* Scrollda görünürlük için JS ile eklenecek */
.ak-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ak-reveal.ak-visible {
    opacity: 1;
    transform: translateY(0);
}

