/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #005083;
    --primary-dark: #054E7B;
    --primary-light: #65B2E8;
    --secondary: #65B2E8;
    --secondary-light: #7EC8F0;
    --sky-blue: #65B2E8;
    --soft-blue: #66B1E1;
    --dark: #3F3F3F;
    --gray-100: #f5f7fa;
    --gray-200: #eaeef3;
    --gray-300: #d5dce6;
    --gray-500: #8a95a5;
    --gray-600: #6b7a8d;
    --gray-700: #4a5568;
    --white: #ffffff;
    --yellow-hover: #65B2E8;
    --transition: all 0.3s ease;
}

html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    zoom: 85%; /* Varsayılan Masaüstü */
}

/* Ekran boyutuna göre duyarlı yakınlaştırma (Responsive Zoom) */
@media (max-width: 1399px) {
    html { zoom: 90%; }
}
@media (max-width: 1199px) {
    html { zoom: 95%; }
}
@media (max-width: 991px) {
    html { zoom: 100%; } /* Mobil ve tabletlerde orijinal boyut (tam okunabilirlik için) */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    width: 100%;
    position: relative;
    top: 0 !important;
}

/* Hide Google Translate Top Bar */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-menu-value {
    display: none !important;
}
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}
html {
    margin-top: 0 !important;
}
.skiptranslate {
    display: none !important;
}
/* Re-enable display for elements we want to keep if they have skiptranslate class */
#google_translate_element, 
#google_translate_element * {
    display: block !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto; /* Ensure aspect ratio is maintained */
    display: block;
}

/* Slider Perfect Fit */
.detail-slider { 
    width: 100%; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    margin-bottom: 30px; 
    position: relative; 
    z-index: 5;
    background: #f8fafc;
}
.detail-slider .swiper-slide { width: 100%; height: auto; display: flex; align-items: center; justify-content: center; }
.detail-slider .swiper-slide img { 
    width: 100%; 
    height: auto; 
    display: block; 
}

/* Swiper Controls */
.swiper-button-next, .swiper-button-prev { 
    color: #fff !important; 
    background: rgba(14, 165, 233, 0.8) !important; 
    width: 45px !important; 
    height: 45px !important; 
    border-radius: 50% !important; 
    z-index: 20 !important; 
}
.swiper-button-next:after, .swiper-button-prev:after { font-size: 18px !important; font-weight: bold; }
.swiper-pagination { z-index: 20 !important; }
.swiper-pagination-bullet { background: #fff !important; opacity: 0.5; width: 10px; height: 10px; }
.swiper-pagination-bullet-active { background: #0ea5e9 !important; opacity: 1; }

@media (max-width: 991px) {
    /* Tablet adjustments removed to rely on natural image height */
}

@media (max-width: 576px) {
    /* Tıpkı eskisi gibi mobilde resmin boyutuna göre 4 köşeyi de tam ekrana oturtan, sağ sol boşluğu kaldıran özellik */
    .detail-slider { 
        border-radius: 0; 
        margin-left: -15px; 
        margin-right: -15px; 
        width: calc(100% + 30px); 
    }
    .detail-slider .swiper-slide img { 
        border-radius: 0; 
    }
}

ul { list-style: none; }

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 992px) {
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
}

/* Utilities */
.img-fluid { max-width: 100%; height: auto; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.text-center { text-align: center !important; }
.text-white { color: #fff !important; }
.mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.d-flex { display: flex !important; }
.align-items-center { align-items: center !important; }
.justify-content-between { justify-content: space-between !important; }
.section-padding { padding: 80px 0; }

@media (max-width: 768px) {
    .section-padding { padding: 40px 0; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--sky-blue);
    color: var(--white);
    font-size: 0.8rem;
    padding: 6px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-left a {
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
}

.top-bar-left a:hover { color: var(--secondary-light); }

.top-bar-right {
    display: flex;
    gap: 8px;
    align-items: center;
}

.top-bar-right a {
    color: var(--white);
    font-size: 0.85rem;
    opacity: 0.8;
    transition: var(--transition);
}

.top-bar-right a:hover { opacity: 1; }

/* ========== NAVBAR ========== */
.navbar {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    animation: headerSlideDown 0.4s ease;
}

@keyframes headerSlideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.navbar.sticky .container {
    height: 85px;
}

.mobile-nav-info {
    display: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 46px;
    height: 46px;
    border: 2.5px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-circle span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text .name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.brand-text .sub {
    font-size: 0.6rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 0;
}

.nav-menu a {
    padding: 0 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    height: 110px;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-menu a:hover { color: var(--primary); }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--primary); }

.nav-cta {
    margin-left: 12px;
    background: var(--sky-blue) !important;
    color: var(--white) !important;
    height: auto !important;
    padding: 10px 22px !important;
    border-radius: 5px;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    gap: 6px;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--soft-blue) !important;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 991px) {
    .desktop-cta { display: none !important; }
    .mobile-cta { display: flex !important; }
    .mobile-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 110px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 110px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
        transition: left 0.4s ease;
        overflow-y: auto;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .navbar.sticky .nav-menu {
        top: 85px;
        height: calc(100vh - 85px);
    }
    .nav-menu.mobile-open { left: 0; }
    .nav-menu > a {
        width: 100%;
        padding: 15px 25px;
        border-bottom: 1px solid var(--gray-200);
        font-size: 1rem;
        height: auto;
    }
    .nav-menu > a::after { display: none; }
    .nav-cta {
        margin: 20px 25px !important;
        width: calc(100% - 50px);
        text-align: center;
        justify-content: center;
    }
    .dropdown { width: 100%; border-bottom: 1px solid var(--gray-200); }
    .dropdown-toggle { width: 100%; padding: 15px 25px; height: auto; }
}

/* ========== LANGUAGE DROPDOWN ========== */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-drop-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s ease;
    font-size: 0.85rem;
    height: 42px;
}

.lang-drop-btn img {
    width: 22px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lang-drop-btn i {
    font-size: 10px;
    opacity: 0.7;
    transition: transform 0.3s;
}

.lang-drop-btn:hover {
    border-color: var(--sky-blue);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.lang-dropdown:hover .lang-drop-btn i {
    transform: rotate(180deg);
}

.lang-drop-content {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2100;
    margin-top: 10px;
    border: 1px solid #f1f5f9;
}

.lang-dropdown:hover .lang-drop-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-drop-content a {
    color: #475569;
    padding: 10px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
}

.lang-drop-content a img {
    width: 22px;
    height: auto;
    border-radius: 3px;
}

.lang-drop-content a:hover {
    background-color: #f8fafc;
    color: var(--sky-blue);
    padding-left: 25px;
}

@media (max-width: 991px) {
    .lang-drop-btn span {
        display: none;
    }
    .lang-drop-btn {
        padding: 0 12px;
        height: 40px;
        background: transparent;
        border-color: transparent;
    }
    .lang-drop-btn:hover {
        background: #f1f5f9;
        border-color: #e2e8f0;
    }
    .lang-drop-content {
        right: -10px;
        min-width: 160px;
    }
}

/* ========== THE KINAY STYLE HERO (PIXEL PERFECT REPLICA) ========== */
/* Ensure Google Fonts: Montserrat and Poppins are loaded in header.php */

.hero-kinay {
    position: relative;
    width: 100%;
    background: #ffffff;
    overflow: hidden;
    height: 90vh;
    min-height: 750px;
    margin-top: 0;
}

/* Make header absolute on home */
body.home-page .main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-bottom: none;
    z-index: 100;
}

.hero-kinay-container {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Left Content Area (42%) */
.hero-kinay-left {
    width: 42%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 10%;
    padding-right: 5%;
    background: #ffffff;
    z-index: 20;
    position: relative;
}

.hero-kinay-text-box {
    width: 100%;
}

.hero-kinay-content-item {
    display: none;
}

.hero-kinay-content-item.active {
    display: block;
}

/* Exact Kinay Typography */
.kinay-subtitle {
    display: block;
    color: #67B1E2 !important; /* Exact light blue */
    font-size: 2.2rem;
    font-weight: 200;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px; /* Tighter relation to title */
    line-height: 1.2;
}

.kinay-title {
    font-size: 3rem;
    font-weight: 800; /* Extra bold */
    font-family: 'Montserrat', sans-serif;
    color: #004B87 !important; /* Exact dark blue */
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: none;
    letter-spacing: -1px;
}

.kinay-desc {
    font-size: 1.2rem;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    color: #64748b !important; /* Slate gray/blue */
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 95%;
}

.kinay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #67B1E2; /* Button light blue */
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 8px; /* Rounded rectangle, not pill */
    font-weight: 800; /* Bold text */
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.kinay-btn:hover {
    background: #004B87;
    transform: translateY(-2px);
}

/* Right Visual Area (58%) */
.hero-kinay-right {
    width: 58%;
    height: 100%;
    position: relative;
    padding-left: 20px; /* Space for the gray border line */
}

.kinay-swiper {
    width: 100%;
    height: 100%;
    overflow: visible; /* Needed for the custom border shape */
}

/* THE MAGIC KINAY CURVE: Exact border-radius and border */
.kinay-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100% 0 32% 68% / 0 65% 35% 100%;
    border-left: 27px solid #D9D8D6; /* The signature gray vertical line */
    cursor: pointer !important;
}

/* Experience Badge */
.kinay-badge {
    position: absolute;
    bottom: 8%;
    left: 0;
    transform: translateX(-40%);
    z-index: 50;
}

.badge-inner {
    width: 13rem;
    height: 13rem;
    background: #64B1E6;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.badge-inner .b-num {
    font-family: 'Poppins', sans-serif;
    font-size: 4.85rem;
    font-weight: 800;
    line-height: 1;
}

.badge-inner .b-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 200;
    text-align: center;
    line-height: 1.2;
}

/* Controls */
.kinay-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 60;
    pointer-events: none;
}

.kinay-prev, .kinay-next {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: auto;
    font-size: 1.2rem;
}

.kinay-prev:hover, .kinay-next:hover {
    background: #64B1E6;
}

.kinay-dots {
    position: absolute;
    bottom: 40px;
    right: 80px;
    z-index: 60;
}

.kinay-dots .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #000;
    opacity: 0.8;
}

.kinay-dots .swiper-pagination-bullet-active {
    background: #64B1E6;
    opacity: 1;
}

/* STAGGERED ENTRANCE */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.active .animate-up {
    opacity: 1;
    transform: translateY(0);
}

.active .kinay-subtitle { transition-delay: 0s; }
.active .kinay-title { transition-delay: 0.2s; }
.active .kinay-desc { transition-delay: 0.4s; }
.active .kinay-btn { transition-delay: 0.6s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-kinay { height: auto; min-height: auto; }
    .hero-kinay-container { flex-direction: column; }
    .hero-kinay-left { order: 2; width: 100%; padding: 60px 20px 40px; text-align: left; }
    .hero-kinay-right { order: 1; width: 100%; height: 400px; padding-left: 0; }
    .kinay-slide-img { border-left: none; border-radius: 0 0 20% 65% / 0 0 10% 40%; }
    .kinay-badge { left: 10%; bottom: -60px; transform: none; }
    .kinay-subtitle { font-size: 2.1rem; }
    .kinay-title { font-size: 1.8rem; margin-bottom: 5px; }
    .kinay-desc { font-size: 1rem; margin-bottom: 20px; }
    .kinay-nav { top: 200px; padding: 0 20px; }
    .kinay-dots { bottom: auto; top: 360px; right: 20px; }
}

@media (max-width: 480px) {
    .badge-inner { width: 11rem; height: 11rem; }
    .badge-inner .b-num { font-size: 3rem; }
    .badge-inner .b-text { font-size: 1rem; }
}

/* Hero nav */
.hero-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    font-size: 1.1rem;
}

.hero-arrow:hover { background: rgba(255,255,255,0.35); }

.hero-dots {
    position: absolute;
    bottom: 24px;
    right: 40%;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 1.5px solid rgba(255,255,255,0.6);
}

.hero-dot.active {
    background: var(--white);
}

/* ========== ABOUT / COMPANY SECTION ========== */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ========== STATS ========== */
.stats-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.stat-circle::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 3px solid var(--sky-blue);
    border-color: var(--sky-blue) var(--sky-blue) transparent transparent;
    transform: rotate(-45deg);
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #054E7B;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--gray-600);
    font-weight: 500;
    text-align: left;
    line-height: 1.3;
}

/* ========== SERVICE CARDS (2 column big cards) ========== */
.services-section {
    padding: 40px 0 80px;
    background: var(--white);
}

.services-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.service-big-card {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.service-big-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-big-card:hover img {
    transform: scale(1.05);
}

.service-big-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    color: var(--white);
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-big-card .overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-big-card .overlay .sub-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.service-big-card .overlay .sub-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
}

.service-big-card .overlay .sub-links a:hover {
    color: var(--secondary-light);
}

/* ========== DETAILED SERVICES (6 grid) ========== */
.services-detail {
    padding: 80px 0;
    background: var(--gray-100);
}

.detail-header {
    text-align: center;
    margin-bottom: 50px;
}

.detail-header h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.detail-header p {
    color: var(--gray-600);
    max-width: 500px;
    margin: 10px auto 0;
    font-size: 0.9rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.detail-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.detail-card-img {
    height: 320px;
    background: #f1f5f9;
    overflow: hidden;
    position: relative;
}

.detail-slider .swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: contain; /* Changed from cover to contain to see full image if it's important */
    background: #f8fafc;
    display: block;
    transition: transform 0.3s ease;
}

.detail-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detail-card:hover .detail-card-img img {
    transform: scale(1.08);
}

.detail-card-body {
    padding: 22px;
}

.detail-card-body h3 {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.detail-card-body p {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 14px;
}

.detail-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
}

.detail-link:hover { color: var(--secondary); gap: 10px; }

/* ========== VALUES SECTION ========== */
.values-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.values-section h2 {
    font-size: 1.4rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid var(--primary);
}

.values-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 120px;
    max-width: 140px;
    text-align: center;
    padding: 20px 10px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: var(--transition);
    cursor: default;
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,114,188,0.1);
}

.value-card .icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.value-card:hover .icon {
    background: var(--primary);
    color: var(--white);
}

.value-card .label {
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== REFERENCES ========== */
.references-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.ref-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ref-text h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 18px;
    font-weight: 700;
}

.ref-text p {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 12px;
}

.cert-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.cert-tag {
    padding: 10px 20px;
    border: 2px solid var(--primary);
    border-radius: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.cert-tag:hover {
    background: var(--primary);
    color: var(--white);
}

.ref-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* ========== FLEET ========== */
.fleet-section {
    padding: 80px 0;
    background: var(--primary-dark);
    color: var(--white);
}

.fleet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.fleet-text h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.fleet-text p {
    font-size: 0.88rem;
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 12px;
}

.fleet-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.fleet-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    padding: 8px 14px;
    background: rgba(255,255,255,0.08);
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.1);
}

.fleet-list li i {
    color: var(--secondary-light);
    font-size: 0.8rem;
}

.fleet-image img {
    width: 100%;
    border-radius: 10px;
}

/* ========== CTA ========== */
.cta-section {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.cta-box {
    background: var(--gray-100);
    border-radius: 16px;
    padding: 50px 40px;
    border-top: 4px solid var(--primary);
}

.cta-box h2 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto 24px;
    font-size: 0.9rem;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-orange,
.btn-sky {
    background: var(--sky-blue);
    color: var(--white);
}

.btn-orange:hover,
.btn-sky:hover {
    background: var(--soft-blue);
    transform: translateY(-2px);
}

.btn-blue {
    background: var(--primary);
    color: var(--white);
}

.btn-blue:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-blue {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-blue:hover {
    background: var(--primary);
    color: var(--white);
}

/* ========== CONTACT ========== */
.contact-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.contact-header p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-top: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.contact-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-card p {
    font-size: 0.82rem;
    color: var(--gray-600);
}

.contact-form {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
}

.contact-form h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,114,188,0.1);
}

.form-group textarea {
    height: 110px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ========== FOOTER ========== */
.footer {
    background: #1a1f2e;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 30px;
    padding-bottom: 30px;
}

.footer-about .logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-about .logo-row .circle {
    width: 38px;
    height: 38px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-weight: 800;
    font-size: 1rem;
}

.footer-about .logo-row .text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.footer-about p {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    font-size: 0.85rem;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--secondary);
    font-weight: 700;
}

.footer-col ul li a:hover {
    color: var(--yellow-hover);
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.footer-contact-item .ic {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-light);
    flex-shrink: 0;
    font-size: 0.8rem;
}

.footer-contact-item strong {
    display: block;
    color: var(--white);
    font-size: 0.82rem;
}

.footer-contact-item p {
    font-size: 0.78rem;
}

.footer-bottom {
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
}

/* ========== FLOATS ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.7rem;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.quote-float {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 14px 12px;
    border-radius: 8px 0 0 8px;
    font-size: 0.72rem;
    font-weight: 600;
    z-index: 9999;
    cursor: pointer;
    text-align: center;
    line-height: 1.4;
    box-shadow: -4px 0 15px rgba(0,80,131,0.3);
    transition: var(--transition);
}

.quote-float i {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.quote-float:hover {
    padding-right: 18px;
}

.scroll-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9999;
    font-size: 0.9rem;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto; /* Ensure clickable when visible */
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-grid, .ref-grid, .fleet-grid, .contact-grid { grid-template-columns: 1fr; }
    .services-row { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { gap: 30px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }

    /* Left-slide mobile menu with auto height */
    .nav-menu {
        display: flex;
        position: fixed;
        top: 70px; /* Logonun/Header'ın hemen altından başlar */
        left: -320px;
        width: 320px;
        height: auto;
        min-height: auto;
        max-height: calc(90vh - 70px); /* Don't go to the very bottom */
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        z-index: 9998;
        padding: 20px 30px 30px; /* Üst boşluk azaltıldı */
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
        transition: left 0.35s ease;
        overflow-y: auto;
        border-radius: 0 0 16px 0; /* Sağ alttan yuvarlatılmış */
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-menu a {
        height: auto;
        padding: 14px 0;
        font-size: 0.95rem;
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-menu a::after { display: none; }

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 15px;
        text-align: center;
        justify-content: center;
    }

    /* Mobile Contact Info inside menu */
    .mobile-nav-info {
        display: block;
        width: 100%;
        margin-top: 5px;
    }
    .mobile-nav-info hr {
        border: none;
        border-top: 1px solid var(--gray-200);
        margin: 10px 0;
    }
    .mobile-nav-info .info-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        font-size: 0.85rem;
        color: var(--gray);
        border: none;
    }
    .mobile-nav-info .info-item i {
        color: var(--primary);
        font-size: 1rem;
        width: 20px;
        text-align: center;
    }

    .mobile-toggle { display: flex; }

    .mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-toggle.open span:nth-child(2) { opacity: 0; }
    .mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero { aspect-ratio: 16 / 10; min-height: 400px; height: auto; }
    .hero-text h1 { font-size: 1.8rem; margin-bottom: 12px; }
    .hero-text .subtitle { font-size: 0.88rem; text-transform: none; letter-spacing: 0; line-height: 1.6; max-width: 340px; }
    .hero-text .desc { display: none; }
    .hero-exp { display: none; }
    .hero-arrows { padding: 0 10px; }
    
    .page-header { padding: 60px 0 !important; }
    .page-header h1 { font-size: 28px !important; }

    .about-grid, .ref-grid, .fleet-grid, .contact-grid { grid-template-columns: 1fr; }
    .services-row { grid-template-columns: 1fr; }

    .detail-slider { 
        aspect-ratio: 16 / 10; 
        height: auto !important;
    }
    .detail-slider .swiper-slide img { 
        height: 100% !important; 
        object-fit: cover !important; /* Fill the area on mobile */
    }
    .detail-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .values-row { gap: 10px; }
    .value-card { min-width: 80px; }
    .fleet-list { grid-template-columns: 1fr; }
    .cert-row { flex-wrap: wrap; }
    .stats-row { gap: 20px; }

    /* Fix float buttons - prevent horizontal scroll */
    .whatsapp-float {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
        bottom: 16px;
        right: 16px;
        z-index: 9990;
        display: none !important; /* Preference: Use the AI Widget instead if present */
    }

    .quote-float {
        padding: 10px 8px; /* Slightly larger padding to prevent text wrap cutoff */
        font-size: 0.65rem;
        top: 50%; /* Restore vertical center */
        transform: translateY(-50%);
        bottom: auto; /* Remove bottom positioning */
        z-index: 9990;
    }

    .quote-float i { font-size: 0.95rem; margin-bottom: 2px; }

    .scroll-top {
        bottom: 18px;
        left: 18px;
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    /* iPhone optimized */
    html { font-size: 15px; }

    .container { padding: 0 10px; }
    /* Navbar */
    .navbar .container { height: 60px; padding: 0 10px; }
    .navbar-brand { max-width: 75%; }
    .navbar-brand img { max-height: 40px !important; }
    .nav-menu { top: 60px; max-height: calc(90vh - 60px); }
    .logo-circle { width: 32px; height: 32px; }
    .logo-circle span { font-size: 1rem; }
    .brand-text .name { font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .brand-text .sub { font-size: 0.45rem; letter-spacing: 1px; }

    /* Hero */
    .hero { aspect-ratio: 16 / 9; min-height: auto; background: #000; }
    .hero-slide img { object-fit: contain; }
    .hero-overlay { width: 100%; height: 100%; background: rgba(0,0,0,0.3); }
    .hero-text { padding: 0 10px; }
    .hero-text .subtitle { font-size: 0.8rem; margin-bottom: 15px; max-width: 100%; }
    .hero-text h1 { font-size: 1.4rem; margin-bottom: 10px; }
    .hero-arrow { width: 34px; height: 34px; font-size: 0.8rem; background: rgba(0,0,0,0.4); } 
    .hero-arrows { transform: translateY(-50%) translateY(0); top: 50%; }
    .hero-dots { bottom: 10px; right: 0; left: 0; justify-content: center; }

    /* About */
    .about-section { padding: 50px 0; }
    .about-text h2 { font-size: 1.3rem; }
    .about-text p { font-size: 0.82rem; }

    /* Stats */
    .stats-section { padding: 40px 0; }
    .stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        justify-items: center;
    }
    .stat-item { flex-direction: column; gap: 8px; text-align: center; }
    .stat-circle { width: 65px; height: 65px; }
    .stat-number { font-size: 1.1rem; }
    .stat-label { font-size: 0.72rem; text-align: center; }

    /* Services big cards */
    .services-section { padding: 30px 0 50px; }
    .services-row { gap: 16px; }
    .service-big-card { height: 200px; border-radius: 8px; }
    .service-big-card .overlay { padding: 16px; }
    .service-big-card .overlay h3 { font-size: 1rem; }
    .service-big-card .overlay .sub-links a { font-size: 0.72rem; }

    /* Values */
    .values-section { padding: 40px 0; }
    .values-section h2 { font-size: 1.1rem; margin-bottom: 20px; }
    .values-row { gap: 8px; }
    .value-card { min-width: 75px; max-width: 85px; padding: 14px 6px; }
    .value-card .icon { width: 34px; height: 34px; font-size: 0.85rem; }
    .value-card .label { font-size: 0.58rem; }

    /* Detail services */
    .services-detail { padding: 50px 0; }
    .detail-header h2 { font-size: 1.3rem; }
    .detail-header p { font-size: 0.82rem; }
    .detail-card-img { height: 220px; }
    .detail-card-body { padding: 16px; }
    .detail-card-body h3 { font-size: 0.95rem; }
    .detail-card-body p { font-size: 0.78rem; }

    /* References */
    .references-section { padding: 50px 0; }
    .ref-text h2 { font-size: 1.3rem; }
    .ref-text p { font-size: 0.82rem; }
    .cert-row { gap: 8px; }
    .cert-tag { padding: 8px 14px; font-size: 0.75rem; }

    /* Fleet */
    .fleet-section { padding: 50px 0; }
    .fleet-text h2 { font-size: 1.3rem; }
    .fleet-text p { font-size: 0.82rem; }
    .fleet-list li { font-size: 0.78rem; padding: 7px 10px; }

    /* CTA */
    .cta-section { padding: 40px 0; }
    .cta-box { padding: 30px 20px; border-radius: 12px; }
    .cta-box h2 { font-size: 1.2rem; }
    .cta-box p { font-size: 0.82rem; }
    .cta-btns { flex-direction: column; gap: 10px; }
    .cta-btns .btn { width: 100%; justify-content: center; padding: 14px; }

    /* Contact */
    .contact-section { padding: 50px 0; }
    .contact-header h2 { font-size: 1.3rem; }
    .contact-form { padding: 20px; border-radius: 10px; }
    .contact-form h3 { font-size: 0.95rem; }
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* prevents iOS zoom on focus */
        border-radius: 8px;
    }
    .btn-submit { padding: 14px; font-size: 0.9rem; border-radius: 8px; }

    /* Footer */
    .footer { padding: 40px 0 0; }
    .footer-about p { font-size: 0.78rem; }
    .footer-col h4 { font-size: 0.88rem; }
    .footer-col ul li a { font-size: 0.78rem; }

    /* Floats */
    .whatsapp-float { width: 48px; height: 48px; font-size: 1.4rem; bottom: 16px; right: 16px; }
    .quote-float { padding: 10px 8px; font-size: 0.62rem; }
    .quote-float i { font-size: 1rem; margin-bottom: 4px; }
    .scroll-top { width: 36px; height: 36px; bottom: 16px; left: 16px; font-size: 0.8rem; }
}

/* iPhone SE, iPhone 12/13 mini (375px and smaller) */
@media (max-width: 375px) {
    .hero { aspect-ratio: 1 / 1.1; min-height: 320px; height: auto; }
    .hero-text h1 { font-size: 1.45rem; margin-bottom: 10px; }
    .hero-text .subtitle { font-size: 0.8rem; max-width: 260px; line-height: 1.5; }
    .hero-btn { padding: 8px 16px; font-size: 0.7rem; }

    .stats-row { gap: 14px; }
    .stat-circle { width: 55px; height: 55px; }
    .stat-number { font-size: 0.95rem; }

    .value-card { min-width: 65px; max-width: 75px; padding: 10px 4px; }
    .value-card .icon { width: 28px; height: 28px; font-size: 0.72rem; }
    .value-card .label { font-size: 0.52rem; }

    .service-big-card { height: 170px; }
    .service-big-card .overlay h3 { font-size: 0.88rem; }
    .cta-box { padding: 24px 16px; }
}

/* iOS Safari safe area support */
@supports (padding: env(safe-area-inset-bottom)) {
    .footer-bottom {
        padding-bottom: calc(16px + env(safe-area-inset-bottom));
    }
    .whatsapp-float {
        bottom: calc(16px + env(safe-area-inset-bottom));
    }
    .scroll-top {
        bottom: calc(16px + env(safe-area-inset-bottom));
    }
}

/* ========== AI WIDGET & FLOATING BUTTONS ========== */
.ai-widget-wrapper {
    position: fixed !important;
    bottom: 20px !important;
    left: 15px !important; 
    right: 15px !important;
    z-index: 1000000 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-end !important;
    gap: 15px !important;
    pointer-events: none !important;
}

.floating-buttons-col, .floating-buttons-col-right, .scroll-top {
    pointer-events: auto !important;
    width: auto !important;
}

.ai-chat-window {
    pointer-events: none !important;
    width: 340px !important;
}

.ai-chat-window.active {
    pointer-events: auto !important;
}

.floating-buttons-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    align-items: flex-start !important;
}

.float-btn {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 1.25rem !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    cursor: pointer !important;
    border: 3px solid #ffffff !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    background: #1e293b;
}

.float-btn i {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: normal !important;
}

.float-btn:hover {
    transform: scale(1.1) translateX(8px) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2) !important;
}

.ai-toggle-btn { 
    background: #e11d48 !important; 
    width: 62px !important; 
    height: 62px !important; 
    font-size: 1.8rem !important;
    border: 4px solid #ffffff !important;
}

.ai-pulse {
    position: absolute !important;
    top: -6px !important;
    left: -6px !important;
    right: -6px !important;
    bottom: -6px !important;
    border-radius: 50% !important;
    border: 2px solid #e11d48 !important;
    animation: pulseAnim 2s infinite !important;
}

@keyframes pulseAnim {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.insta-btn { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important; }
.phone-btn { background: #0f172a !important; }
.wp-btn { background: #22c55e !important; }
.email-btn { background: #f59e0b !important; }

/* Removed old language float styles as requested */

@media (max-width: 768px) {
    .floating-buttons-col-right {
        bottom: 20px !important; 
        right: 15px !important;
    }
    .lang-btn {
        width: 42px !important;
        height: 42px !important;
    }
    .ai-chat-window {
        position: fixed !important;
        left: 15px !important;
        right: 15px !important;
        width: auto !important;
        max-width: none !important;
        bottom: 85px !important; /* Move above buttons */
        margin-bottom: 0 !important;
        transform-origin: center bottom !important;
    }
    .ai-chat-window.active {
        transform: scale(1) translateY(0) !important;
    }
    .page-header {
        padding: 80px 0 !important;
    }
}

/* AI Chat Window */
.ai-chat-window {
    width: 340px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    transform-origin: left bottom !important;
    transform: scale(0) !important;
    opacity: 0 !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    margin-bottom: 30px !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
}

.ai-chat-window.active {
    transform: scale(1) !important;
    opacity: 1 !important;
}

.ai-chat-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
    padding: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    color: #ffffff !important;
    position: relative !important;
}

.ai-chat-header::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: linear-gradient(90deg, #e11d48, #f59e0b, #e11d48) !important;
}

.ai-avatar {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255,255,255,0.15) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.6rem !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
}

.ai-header-info h4 { font-size: 1.2rem !important; margin: 0 !important; font-weight: 800 !important; letter-spacing: -0.5px !important; }
.ai-header-info span { font-size: 0.75rem !important; opacity: 0.8 !important; }

.ai-close-btn {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #ffffff !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s !important;
}

.ai-close-btn:hover { background: #e11d48 !important; border-color: #e11d48 !important; transform: rotate(90deg) scale(1.1) !important; }

.ai-chat-body {
    height: 400px !important;
    padding: 20px !important;
    background: #f8fafc !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.ai-chat-body::-webkit-scrollbar { width: 4px !important; }
.ai-chat-body::-webkit-scrollbar-thumb { background: #cbd5e1 !important; border-radius: 10px !important; }

.ai-message {
    font-size: 0.9rem !important;
    padding: 14px 18px !important;
    border-radius: 18px !important;
    line-height: 1.6 !important;
    max-width: 88% !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03) !important;
}

.ai-message.received {
    background: #ffffff !important;
    color: #334155 !important;
    align-self: flex-start !important;
    border-bottom-left-radius: 4px !important;
    border: 1px solid #f1f5f9 !important;
}

.ai-message.sent {
    background: #1e3a8a !important;
    color: #ffffff !important;
    align-self: flex-end !important;
    border-bottom-right-radius: 4px !important;
}

.ai-quick-replies {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 5px !important;
}

.quick-reply {
    background: #ffffff !important;
    border: 2px solid #f1f5f9 !important;
    color: #475569 !important;
    padding: 12px 18px !important;
    border-radius: 14px !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    text-align: left !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-weight: 600 !important;
}

.quick-reply:hover {
    border-color: #e11d48 !important;
    color: #e11d48 !important;
    background: #fff1f2 !important;
    transform: translateY(-2px) !important;
}

.ai-action-buttons {
    display: flex !important;
    gap: 10px !important;
    margin-top: 5px !important;
}

.action-btn {
    flex: 1 !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    padding: 12px !important;
    font-size: 0.8rem !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    color: #64748b !important;
    font-weight: 700 !important;
    transition: all 0.3s !important;
}

.action-btn:hover { background: #f8fafc !important; color: #1e3a8a !important; border-color: #1e3a8a !important; }

.ai-chat-input-area {
    padding: 18px !important;
    background: #ffffff !important;
    border-top: 1px solid #f1f5f9 !important;
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
}

.ai-chat-input-area input {
    flex: 1 !important;
    border: 2px solid #f1f5f9 !important;
    padding: 12px 20px !important;
    border-radius: 16px !important;
    outline: none !important;
    font-size: 0.95rem !important;
    transition: all 0.3s !important;
}

.ai-chat-input-area input:focus { border-color: #1e40af !important; background: #f8fafc !important; }

.ai-send-btn {
    background: #1e3a8a !important; /* Marka mavisi yapıldı */
    color: #ffffff !important;
    border: none !important;
    width: 40px !important; /* Biraz küçültüldü */
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    flex-shrink: 0 !important; 
    border-radius: 50% !important; 
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    padding: 0 !important;
}

.ai-send-btn i {
    font-size: 1rem !important; /* Orantılı küçültüldü */
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: normal !important;
}

.ai-send-btn:hover { transform: scale(1.1) !important; background: #1e40af !important; }

.ai-chat-input-area {
    padding: 12px 15px !important; /* Ufaltıldı */
    background: #ffffff !important;
    border-top: 1px solid #f1f5f9 !important;
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
}

.ai-chat-input-area input {
    flex: 1 !important;
    border: 1px solid #e2e8f0 !important;
    padding: 8px 15px !important; /* Ufaltıldı */
    border-radius: 20px !important;
    outline: none !important;
    font-size: 0.85rem !important;
    transition: all 0.3s !important;
}

.whatsapp-float { display: none !important; }

@media (max-width: 768px) {
    .ai-widget-wrapper {
        left: 10px !important;
        right: 10px !important;
        gap: 10px !important;
    }
    .ai-chat-window {
        width: 270px !important;
        margin-bottom: 25px !important;
        max-height: 80vh !important;
    }
    .float-btn {
        width: 44px !important;
        height: 44px !important;
    }
    .ai-toggle-btn {
        width: 55px !important;
        height: 55px !important;
    }
}


/* ========== KINAY STYLE HEADER (PIXEL PERFECT) ========== */
.container-kinay {
    max-width: 1620px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kinay-top-bar {
    background: #67B1E2;
    height: 40px;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 13px;
    z-index: 1001;
    position: relative;
}

.kinay-top-bar a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.kinay-top-bar a:hover {
    opacity: 0.8;
}

.kinay-top-bar .top-left {
    display: flex;
    gap: 15px;
}

.kinay-top-bar .top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.kinay-top-bar .sep {
    opacity: 0.6;
}

.kinay-top-bar .flags {
    display: flex;
    gap: 8px;
    margin-left: 10px;
}

.kinay-top-bar .flags img {
    height: 14px;
    border-radius: 2px;
}

.kinay-header {
    background: #ffffff;
    height: 85px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
    margin: 10px 30px; /* Floating look */
    border-radius: 6px;
    transition: all 0.3s;
}

/* Home page header placement */
body.home-page .kinay-header {
    position: absolute;
    top: 50px; /* Below top bar */
    left: 0;
    right: 0;
    margin: 0 30px;
}

/* Sticky Header on Scroll */
.kinay-header.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    height: 70px !important;
    z-index: 2000;
}

.nav-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kinay-logo img {
    max-height: 60px;
}

.kinay-nav-menu {
    display: flex;
    align-items: center;
}

.kinay-nav-menu > a, .kinay-dropdown > a {
    color: #333333;
    font-weight: 700;
    font-size: 14px;
    padding: 0 20px;
    text-decoration: none;
    border-right: 1px solid #A4D0EE;
    height: 25px;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.kinay-nav-menu > a:last-of-type {
    border-right: none;
}

.kinay-nav-menu a:hover {
    color: #67B1E2;
}

.kinay-tracking-btn {
    background: #67B1E2;
    color: #ffffff !important;
    padding: 12px 25px !important;
    border-radius: 4px;
    margin-left: 20px;
    border: none !important;
    height: auto !important;
    font-size: 13px !important;
    box-shadow: 0 4px 10px rgba(103, 177, 226, 0.3);
}

.kinay-tracking-btn i {
    margin-right: 8px;
}

/* Dropdown Active State */
.kinay-dropdown.active .kinay-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.kinay-dropdown-content {
    transform: translateX(-50%) translateY(10px);
}

/* ========== EXACT KINAY CIRCLE-OVERLAP LAYOUT (RESPONSIVE) ========== */

.kinay-swiper-right {
    width: 100%;
    height: 100%;
    overflow: visible !important;
}

.kinay-complex-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 1. Main Background Image with bottom-left curve */
.kinay-curve-image-wrap {
    width: 100%;
    height: 65%;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 350px;
    border-left: 12px solid #e2e8f0;
    border-bottom: 12px solid #e2e8f0;
    box-shadow: -15px 15px 30px rgba(0,0,0,0.05);
}

.kinay-main-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 2. The 3 Overlapping Circular Thumbnails */
.kinay-circle-group {
    position: absolute;
    top: 65%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.kinay-circle-thumb {
    width: clamp(140px, 12vw, 200px);
    height: clamp(140px, 12vw, 200px);
    border-radius: 50%;
    border: 8px solid #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    overflow: hidden;
    position: relative;
    background: #fff;
    flex-shrink: 0;
}

.kinay-circle-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-orange {
    margin-right: -30px;
    transform: translateY(-40px);
    outline: 2px solid #f97316;
    outline-offset: -2px;
    z-index: 1;
}

.circle-blue {
    margin-right: -30px;
    transform: translateY(10px);
    outline: 2px solid #005083;
    outline-offset: -2px;
    z-index: 2;
    width: clamp(160px, 14vw, 230px);
    height: clamp(160px, 14vw, 230px);
}

.circle-darkblue {
    transform: translateY(40px);
    outline: 2px solid #1e3a8a;
    outline-offset: -2px;
    z-index: 3;
}

/* 3. Bottom Text Overlay */
.kinay-slide-bottom-text {
    margin-top: auto;
    padding-bottom: 40px;
    text-align: right;
    padding-right: 40px;
    font-family: 'Montserrat', sans-serif;
}

.kinay-slide-bottom-text h3 {
    font-size: clamp(1.5rem, 2vw, 2.2rem);
    color: #004B87;
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kinay-slide-bottom-text h3 span {
    color: #f97316;
}

.kinay-slide-bottom-text p {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: #4b5563;
    font-weight: 500;
}

/* 4. Experience Badge Repositioning */
.kinay-badge {
    position: absolute;
    bottom: 25%;
    left: 20px; /* Inside the container, prevents overlap with left text */
    z-index: 50;
    transform: scale(0.85); /* Slightly smaller to fit better */
    transform-origin: left bottom;
}

/* 5. Navigation Arrows */
.kinay-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 100;
    pointer-events: none; /* Let clicks pass through the container */
}

.kinay-prev, .kinay-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    pointer-events: auto; /* Re-enable clicks for the buttons */
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.kinay-prev {
    left: 30px;
    background: #9ca3af; /* Matches the user's screenshot grayish-blue */
}

.kinay-prev:hover {
    background: #004B87;
}

.kinay-next {
    right: 30px;
    background: #004B87; /* Matches the dark blue in screenshot */
}

.kinay-next:hover {
    background: #67B1E2;
}

/* ========== HERO KINAY MOBILE RESPONSIVENESS ========== */
@media (max-width: 991px) {
    .hero-kinay {
        height: auto;
        min-height: 100vh;
    }
    .hero-kinay-container {
        flex-direction: column;
    }
    .hero-kinay-left {
        width: 100%;
        padding: 120px 20px 40px; /* Space for fixed navbar */
        text-align: center;
    }
    .kinay-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .kinay-btn {
        margin: 0 auto;
    }
    
    .hero-kinay-right {
        width: 100%;
        height: 50vh;
        min-height: 400px;
        padding-left: 0;
    }
    .kinay-curve-image-wrap {
        border-bottom-left-radius: 80px; /* Smaller curve on mobile */
        border-left-width: 5px;
        border-bottom-width: 5px;
    }
    
    /* Resize and recenter circles on mobile */
    .kinay-circle-group {
        left: 0;
        width: 100%;
        padding-right: 0;
        justify-content: center;
    }
    .kinay-circle-thumb {
        border-width: 4px;
        width: 90px;
        height: 90px;
    }
    .circle-orange {
        margin-right: -20px;
        transform: translateY(-15px);
    }
    .circle-blue {
        width: 110px;
        height: 110px;
        margin-right: -20px;
        transform: translateY(10px);
    }
    .circle-darkblue {
        transform: translateY(-5px);
    }
    
    /* Adjust text and badge */
    .kinay-slide-bottom-text {
        text-align: right;
        padding-right: 15px;
        padding-bottom: 40px;
        padding-left: 70px;
        position: relative;
        z-index: 90;
    }
    .kinay-slide-bottom-text h3 {
        font-size: 1.4rem;
    }
    .kinay-badge {
        bottom: 15%;
        left: 5px;
        transform: scale(0.65);
        z-index: 85;
    }
    
    /* Hide navigation arrows on small screens, rely on swipe */
    .kinay-nav {
        display: none !important;
    }
}

/* 5. Sticky "Hızlı Teklif Al" Button */
.kinay-sticky-offer {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    background: #f97316;
    color: #fff !important;
    border-top-left-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 20px;
    padding-left: 20px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s;
    z-index: 60;
    box-shadow: -5px -5px 20px rgba(0,0,0,0.1);
}

.kinay-sticky-offer:hover {
    background: #004B87;
    transform: scale(1.05);
}

.kinay-sticky-offer i {
    font-size: 24px;
    margin-bottom: 5px;
}

/* Restored and styled navigation arrows */
.kinay-nav {
    display: block !important;
}

.kinay-prev, .kinay-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #8eabc0; /* Muted blue-gray from screenshot */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 100;
    opacity: 0.9;
    transition: all 0.3s;
}

.kinay-prev {
    left: 0;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    padding-right: 5px;
}

.kinay-next {
    right: 0;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    padding-left: 5px;
}

.kinay-prev:hover, .kinay-next:hover {
    background: #004B87;
    opacity: 1;
}

.kinay-dots {
    display: none !important;
}

/* Dropdown Content Typography */
.kinay-dropdown-content a {
    font-weight: 400 !important;
    font-size: 13.5px !important;
    text-transform: none !important;
}

.kinay-dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.kinay-dropdown-content a:hover {
    background: #f8f9fa;
    color: #67B1E2;
}

/* Mobile Toggle */
.kinay-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.kinay-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .kinay-nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        padding: 40px;
    }
    .kinay-nav-menu.mobile-open {
        display: flex;
    }
    .kinay-nav-menu > a, .kinay-dropdown > a {
        border-right: none;
        font-size: 20px;
        padding: 15px 0;
        height: auto;
    }
    .kinay-mobile-toggle {
        display: flex;
        z-index: 10000;
    }
    .kinay-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .kinay-mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .kinay-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

    .kinay-top-bar .top-right a { font-size: 11px; }
    .kinay-top-bar .sep { display: none; }
}