/*
 * Orbisis - CSS Reset
 * Modern CSS Reset for cross-browser consistency
 */

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin and padding */
* {
    margin: 0;
    padding: 0;
}

/* Prevent font size inflation */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    scroll-behavior: smooth;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
label {
    line-height: 1.2;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
    color: currentColor;
}

/* Make images easier to work with */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
    min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
    scroll-margin-block: 5ex;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Remove default button styles */
button {
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove default list styles */
ul,
ol {
    list-style: none;
}

/* Remove default fieldset styles */
fieldset {
    border: none;
}

/* Remove default table styles */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* Remove built-in form typography styles */
input,
button,
textarea,
select {
    font: inherit;
}

/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* Create a root stacking context */
#root,
#__next {
    isolation: isolate;
}

/* Selection styling */
::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Focus visible styling */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gray-400);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gray-500);
}

/*
 * Orbisis - CSS Variables
 * Design system tokens and custom properties
 */

:root {
    /* ========================================
       COLOR PALETTE
       ======================================== */

    /* Primary Colors - From Logo */
    --color-primary: #4AADE8;
    --color-primary-light: #6BC0EF;
    --color-primary-dark: #3A9AD8;
    --color-primary-rgb: 74, 173, 232;

    /* Secondary Colors - Main Brand Color */
    --color-secondary: #001B43;
    --color-secondary-light: #0A2A5A;
    --color-secondary-dark: #001230;
    --color-secondary-rgb: 0, 27, 67;

    /* Accent Colors */
    --color-accent: #00D4FF;
    --color-accent-light: #33DDFF;
    --color-accent-dark: #00B8E0;

    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Gray Scale */
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-400: #9CA3AF;
    --color-gray-500: #6B7280;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;

    /* Semantic Colors */
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --color-error: #EF4444;
    --color-info: #3B82F6;

    /* ========================================
       TYPOGRAPHY
       ======================================== */

    /* Font Families - Single Font */
    --font-primary: 'Bai Jamjuree', sans-serif;
    --font-secondary: 'Bai Jamjuree', sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    /* 12px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1rem;
    /* 16px */
    --text-lg: 1.125rem;
    /* 18px */
    --text-xl: 1.25rem;
    /* 20px */
    --text-2xl: 1.5rem;
    /* 24px */
    --text-3xl: 1.875rem;
    /* 30px */
    --text-4xl: 2.25rem;
    /* 36px */
    --text-5xl: 3rem;
    /* 48px */
    --text-6xl: 3.75rem;
    /* 60px */
    --text-7xl: 4.5rem;
    /* 72px */
    --text-8xl: 6rem;
    /* 96px */

    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;

    /* Letter Spacing */
    --tracking-tighter: -0.05em;
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;

    /* ========================================
       SPACING
       ======================================== */

    --space-0: 0;
    --space-1: 0.25rem;
    /* 4px */
    --space-2: 0.5rem;
    /* 8px */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.25rem;
    /* 20px */
    --space-6: 1.5rem;
    /* 24px */
    --space-8: 2rem;
    /* 32px */
    --space-10: 2.5rem;
    /* 40px */
    --space-12: 3rem;
    /* 48px */
    --space-16: 4rem;
    /* 64px */
    --space-20: 5rem;
    /* 80px */
    --space-24: 6rem;
    /* 96px */
    --space-32: 8rem;
    /* 128px */

    /* ========================================
       LAYOUT
       ======================================== */

    /* Container */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1440px;
    --container-max-width: 1320px;
    --container-padding: 1.5rem;

    /* Header */
    --header-height: 95px;
    --header-height-scrolled: 70px;

    /* ========================================
       BORDERS
       ======================================== */

    --border-width: 1px;
    --border-width-2: 2px;
    --border-width-4: 4px;

    --radius-none: 0;
    --radius-sm: 0.25rem;
    /* 4px */
    --radius-md: 0.5rem;
    /* 8px */
    --radius-lg: 0.75rem;
    /* 12px */
    --radius-xl: 1rem;
    /* 16px */
    --radius-2xl: 1.5rem;
    /* 24px */
    --radius-full: 9999px;

    /* ========================================
       SHADOWS
       ======================================== */

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 15px -2px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 30px 20px -3px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 60px 40px -7px rgba(0, 0, 0, 0.2);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);

    /* Colored Shadows */
    --shadow-primary: 0 10px 40px -10px rgba(var(--color-primary-rgb), 0.4);
    --shadow-secondary: 0 10px 40px -10px rgba(var(--color-secondary-rgb), 0.4);

    /* ========================================
       TRANSITIONS
       ======================================== */

    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-slower: 700ms ease;

    /* Easing Functions */
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* ========================================
       Z-INDEX
       ======================================== */

    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    --z-preloader: 9999;

    /* ========================================
       GRADIENTS
       ======================================== */

    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    --gradient-dark: linear-gradient(135deg, #001B43 0%, #0A2A5A 50%, #001230 100%);
    --gradient-hero: linear-gradient(180deg, rgba(0, 27, 67, 0.7) 0%, rgba(0, 27, 67, 0.3) 50%, rgba(0, 27, 67, 0.7) 100%);

    /* ========================================
       ANIMATIONS
       ======================================== */

    --animation-spin: spin 1s linear infinite;
    --animation-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    --animation-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    --animation-bounce: bounce 1s infinite;
}

/* ========================================
   KEYFRAMES
   ======================================== */

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeReverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/*
 * Orbisis - Base Styles
 * Foundation styles and utility classes
 */

/* ========================================
   BODY & HTML
   ======================================== */

html {
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: var(--leading-normal);
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* ========================================
   CONTAINER
   ======================================== */

.container {
    width: 100%;
    max-width: var(--container-2xl);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container-sm {
    max-width: var(--container-sm);
}

.container-md {
    max-width: var(--container-md);
}

.container-lg {
    max-width: var(--container-lg);
}

.container-xl {
    max-width: var(--container-xl);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: var(--font-bold);
    color: var(--color-secondary);
    margin-bottom: var(--space-4);
}

h1 {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    line-height: var(--leading-tight);
}

h2 {
    font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
    line-height: var(--leading-tight);
}

h3 {
    font-size: clamp(var(--text-xl), 2.5vw, var(--text-3xl));
    line-height: var(--leading-snug);
}

h4 {
    font-size: clamp(var(--text-lg), 2vw, var(--text-2xl));
    line-height: var(--leading-snug);
}

h5 {
    font-size: clamp(var(--text-base), 1.5vw, var(--text-xl));
    line-height: var(--leading-normal);
}

h6 {
    font-size: clamp(var(--text-sm), 1.25vw, var(--text-lg));
    line-height: var(--leading-normal);
}

p {
    margin-bottom: var(--space-4);
    color: var(--color-gray-600);
}

p:last-child {
    margin-bottom: 0;
}

strong,
b {
    font-weight: var(--font-semibold);
}

em,
i {
    font-style: italic;
}

small {
    font-size: var(--text-sm);
}

/* Text Utilities */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   LINKS
   ======================================== */

a {
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn i {
    font-size: 1.2em;
    transition: transform var(--transition-fast);
}

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

/* Button Sizes */
.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

/* Primary Button */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px -10px rgba(var(--color-primary-rgb), 0.5);
    color: var(--color-white);
}

/* Secondary Button */
.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
    transform: translateY(-2px);
    color: var(--color-white);
}

/* Outline Button */
.btn-outline {
    background-color: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-outline:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

/* White Button */
.btn-white {
    background-color: var(--color-white);
    color: var(--color-secondary);
    border-color: var(--color-white);
}

.btn-white:hover {
    background-color: var(--color-gray-100);
    border-color: var(--color-gray-100);
    color: var(--color-secondary);
}

/* Outline White Button */
.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-secondary);
}

/* ========================================
   SECTIONS
   ======================================== */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-6);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
}

.section-header.text-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-header-content {
    max-width: 600px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: var(--font-bold);
    color: var(--color-secondary);
    line-height: 1.2;
    margin-bottom: var(--space-3);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    max-width: 600px;
}

.section-header.text-center .section-description {
    margin-left: auto;
    margin-right: auto;
}

.section-header-nav {
    display: flex;
    gap: var(--space-3);
}

/* ========================================
   SWIPER NAVIGATION
   ======================================== */

.swiper-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: var(--color-white);
    border: 2px solid var(--color-gray-200);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    transition: all var(--transition-base);
    cursor: pointer;
}

.swiper-nav-btn:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.swiper-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   CARDS
   ======================================== */

.card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

/* ========================================
   PRELOADER
   ======================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.loader-logo {
    width: 150px;
    height: auto;
    animation: pulse 2s ease-in-out infinite;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-gray-200);
    border-top-color: var(--color-primary);
    border-radius: var(--radius-full);
    animation: spin 1s linear infinite;
}

/* ========================================
   BACK TO TOP
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: var(--z-fixed);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Display */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.d-grid {
    display: grid !important;
}

/* Flexbox */
.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.gap-1 {
    gap: var(--space-1);
}

.gap-2 {
    gap: var(--space-2);
}

.gap-3 {
    gap: var(--space-3);
}

.gap-4 {
    gap: var(--space-4);
}

.gap-6 {
    gap: var(--space-6);
}

.gap-8 {
    gap: var(--space-8);
}

/* Margin */
.m-0 {
    margin: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-6 {
    margin-bottom: var(--space-6);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

/* Padding */
.p-0 {
    padding: 0 !important;
}

.py-4 {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}

.py-8 {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
}

/* Width */
.w-100 {
    width: 100%;
}

/* Position */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

/* Visibility */
.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

/* Opacity */
.opacity-0 {
    opacity: 0;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-100 {
    opacity: 1;
}


/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

/* Initial state for animated elements */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fadeInUp"] {
    transform: translateY(40px);
}

[data-animate="fadeInDown"] {
    transform: translateY(-40px);
}

[data-animate="fadeInLeft"] {
    transform: translateX(-40px);
}

[data-animate="fadeInRight"] {
    transform: translateX(40px);
}

[data-animate="fadeIn"] {
    transform: none;
}

[data-animate="scaleIn"] {
    transform: scale(0.9);
}

/* Animated state */
.animated {
    opacity: 1 !important;
    transform: none !important;
}

/* Keyframe animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateY(6px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   SECTION ANIMATIONS
   ======================================== */

.animate-section {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Solutions section - slide from left */
.solutions-section.animate-section {
    transform: translateX(-60px);
}

.solutions-section.animate-section.in-view {
    transform: translateX(0);
}

/* Services section - slide from right */
.services-section.animate-section {
    transform: translateX(60px);
}

.services-section.animate-section.in-view {
    transform: translateX(0);
}


.fancybox__html5video,
.fancybox__iframe {
    border-radius: var(--radius-xl);
}

/*
 * Orbisis - Header Styles
 * Navigation, mobile menu, and header components
 */

/* ========================================
   HEADER
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(-100px);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.header.scrolled::before {
    opacity: 1;
}

.header.scrolled {
    height: var(--header-height-scrolled);
}

.header-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 calc(var(--space-8));
}

/* ========================================
   LOGO
   ======================================== */

.logo {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    min-width: 150px;
    min-height: 50px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.25s ease;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Logo Scroll Transition - İlk logo görünür, scroll'da 2. logo */
.logo-img.logo-default {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease;
    filter: brightness(1);
}

.logo .logo-img.logo-default:hover {
    filter: brightness(1.15) drop-shadow(0 0 22px rgba(100, 180, 255, 0.7));
}

.logo-img.logo-scrolled {
    opacity: 0;
    visibility: hidden;
}

.header.scrolled .logo-img.logo-default {
    opacity: 0;
    visibility: hidden;
}

.header.scrolled .logo-img.logo-scrolled {
    opacity: 1;
    visibility: visible;
}

.header.scrolled .logo-img {
    height: 42px;
}

/* ========================================
   MAIN NAVIGATION
   ======================================== */

.main-nav {
    display: none;
    position: relative;
    z-index: 10;
}

@media (min-width: 1200px) {
    .main-nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--color-white);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.header.scrolled .nav-link {
    color: var(--color-secondary);
}

.nav-link:hover,
.nav-item:hover .nav-link {
    color: var(--color-primary);
    background-color: rgba(var(--color-primary-rgb), 0.1);
}

.nav-link i {
    margin-top: 4px;
    font-size: 0.8em;
    transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link i {
    margin-top: 0px;
    transform: rotate(180deg);
}

/* ========================================
   DROPDOWN MENU
   ======================================== */

/* Mega Dropdown Container */
.dropdown-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: var(--space-4);
    padding-top: var(--space-4);
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    z-index: var(--z-dropdown);
    min-width: 420px;
}

/* Invisible bridge to prevent hover gap - menü ile mega menü arasındaki boşlukta mouse geçişi için */
.dropdown-mega::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    height: 25px;
    background: transparent;
}

.nav-item:hover .dropdown-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content {
    display: flex;
    gap: var(--space-4);
    align-items: stretch;
}

.dropdown-mega .dropdown-menu {
    position: relative;
    top: auto;
    left: auto;
    min-width: max-content;
    background: none;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.dropdown-image {
    position: relative;
    width: 220px;
    min-height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    align-self: stretch;
}

.dropdown-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nav-item:hover .dropdown-image img {
    transform: scale(1.1);
}

.dropdown-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 27, 67, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-4);
}

.dropdown-image-overlay span {
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
}

/* Fallback for non-mega dropdowns */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
}

.nav-item:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-gray-700);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.dropdown-link:hover {
    color: var(--color-primary);
    background-color: var(--color-gray-50);
    padding-left: 15px;
}

/* ========================================
   HEADER ACTIONS
   ======================================== */

.header-actions {
    display: none;
    position: relative;
    z-index: 10;
}

@media (min-width: 1200px) {
    .header-actions {
        display: flex;
        align-items: center;
        gap: var(--space-4);
    }
}

.header-actions .btn {
    background: var(--color-white);
    color: var(--color-secondary);
}

.header-actions .btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.header.scrolled .header-actions .btn {
    background: var(--gradient-primary);
    color: var(--color-white);
}

/* ========================================
   MOBILE MENU TOGGLE
   ======================================== */

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    position: relative;
}

@media (min-width: 1200px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.header.scrolled .hamburger-line {
    background-color: var(--color-secondary);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   MOBILE NAVIGATION
   ======================================== */

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-white);
    z-index: var(--z-modal);
    display: flex;
    flex-direction: column;
    transition: right var(--transition-base);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--color-gray-200);
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.mobile-nav-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    color: var(--color-gray-600);
    background: var(--color-gray-100);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.mobile-nav-close:hover {
    background: var(--color-gray-200);
    color: var(--color-secondary);
}

.mobile-nav-content {
    flex: 1;
    padding: var(--space-4) 0;
    overflow-y: auto;
}

.mobile-nav-list {
    padding: 0 var(--space-4);
}

.mobile-nav-item {
    border-bottom: 1px solid var(--color-gray-100);
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-2);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--color-secondary);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--color-primary);
}

.mobile-nav-link i {
    font-size: var(--text-sm);
    transition: transform var(--transition-fast);
}

.mobile-nav-item.active .mobile-nav-link i {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
    display: none;
    padding: 0 0 var(--space-4) var(--space-4);
}

.mobile-nav-item.active .mobile-submenu {
    display: block;
}

.mobile-submenu li {
    margin-bottom: var(--space-1);
}

.mobile-submenu a {
    display: block;
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-submenu a:hover {
    color: var(--color-primary);
    background-color: var(--color-gray-50);
}

/* Mobile Nav Footer */
.mobile-nav-footer {
    padding: var(--space-6);
    border-top: 1px solid var(--color-gray-200);
    background-color: var(--color-gray-50);
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    font-size: var(--text-sm);
    color: var(--color-gray-700);
    transition: color var(--transition-fast);
}

.mobile-contact-link:hover {
    color: var(--color-primary);
}

.mobile-contact-link i {
    font-size: var(--text-lg);
    color: var(--color-primary);
}

.mobile-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-gray-200);
}

.mobile-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    background-color: var(--color-white);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.mobile-social a:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    z-index: calc(var(--z-modal) - 1);
    transition: all var(--transition-base);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ========================================
   LANGUAGE SWITCHER
   ======================================== */

.language-switcher {
    position: relative;
    z-index: 10;
    display: none;
}

@media (min-width: 1200px) {
    .language-switcher {
        display: block;
    }
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.header.scrolled .lang-toggle {
    color: var(--color-secondary);
    border-color: var(--color-gray-300);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.header.scrolled .lang-toggle:hover {
    background: var(--color-gray-100);
    border-color: var(--color-gray-400);
}

.lang-toggle i:first-child {
    font-size: var(--text-lg);
}

.lang-arrow {
    font-size: 0.75em;
    transition: transform var(--transition-fast);
}

.language-switcher.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

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

.lang-option {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-gray-700);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.lang-option:hover {
    background: var(--color-gray-50);
    color: var(--color-primary);
}

.lang-option.active {
    background: var(--color-gray-100);
    color: var(--color-secondary);
}

.lang-option span:first-child {
    font-weight: var(--font-bold);
    min-width: 24px;
}

.lang-name {
    font-weight: var(--font-normal);
    color: var(--color-gray-500);
}

.lang-option.active .lang-name,
.lang-option:hover .lang-name {
    color: inherit;
}


/* ========================================
   SIMPLE DROPDOWN (Medya gibi basit menüler için)
   ======================================== */

.dropdown-simple {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 160px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
    z-index: 1000;
}

.dropdown-simple::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 25px;
    background: transparent;
}

.nav-item.has-dropdown:hover .dropdown-simple {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu-simple {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu-simple li {
    margin: 0;
}

.dropdown-menu-simple .dropdown-link {
    display: block;
    padding: var(--space-3) var(--space-4);
    color: var(--color-secondary);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.dropdown-menu-simple .dropdown-link:hover {
    background: var(--color-gray-100);
    color: var(--color-primary);
}

/*
 * Orbisis - Hero Section Styles
 * Full-screen slider with video and image support
 */

/* ========================================
   HERO SECTION
   ======================================== */
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    width: auto;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* Top gradient overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 3;
    background: linear-gradient(180deg, rgba(0, 27, 67, 0.85) 14%, transparent 100%);
    pointer-events: none;
}

/* Dotted pattern overlay */
.hero-section .bg-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: url(../img/bg-dots.png);
    background-repeat: repeat;
    pointer-events: none;
    opacity: 0.5;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-wrapper {
    height: 100%;
}

/* ========================================
   HERO SLIDE
   ======================================== */

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Slide gradient overlay */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 27, 67, 0.7) 0%, rgba(0, 27, 67, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Video Slide */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 2;
}

/* Image Slide */
.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.swiper-slide-active .hero-image {
    transform: scale(1);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(26, 43, 74, 0.85) 0%,
            rgba(26, 43, 74, 0.6) 50%,
            rgba(26, 43, 74, 0.85) 100%);
    z-index: 2;
}

/* ========================================
   HERO CONTENT
   ======================================== */

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 var(--space-24);
}

.hero-content .container {
    max-width: 900px;
    margin: 0;
}

.hero-subtitle {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-white);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    margin-bottom: var(--space-6);
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: var(--font-bold);
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: var(--space-5);
}

.hero-title strong {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.15;
}

.hero-description {
    font-size: clamp(var(--text-base), 2vw, var(--text-xl));
    line-height: var(--leading-relaxed);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: var(--space-8);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.hero-buttons .btn-primary {
    background: var(--color-white);
    color: var(--color-secondary);
    border-color: var(--color-white);
}

.hero-buttons .btn-primary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-buttons .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-secondary);
    border-color: var(--color-white);
}

/* ========================================
   HERO CONTENT ANIMATION
   ======================================== */

.hero-slide .animate-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-slide-active .animate-item {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .animate-item:nth-child(1) {
    transition-delay: 0.2s;
}

.swiper-slide-active .animate-item:nth-child(2) {
    transition-delay: 0.4s;
}

.swiper-slide-active .animate-item:nth-child(3) {
    transition-delay: 0.6s;
}

.swiper-slide-active .animate-item:nth-child(4) {
    transition-delay: 0.8s;
}

/* ========================================
   HERO NAVIGATION
   ======================================== */

.hero-navigation {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    z-index: 20;
    /* Başlangıçta görünmez - JS ile animasyon yapılacak */
    opacity: 0;
}

.hero-nav-btn {
    width: 32px;
    height: 48px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    cursor: pointer;
    transition: all var(--transition-base);
}

.hero-nav-btn:hover {
    background: var(--color-white);
    color: var(--color-secondary);
    border-color: var(--color-white);
}

.hero-pagination {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    opacity: 1;
    transition: all var(--transition-base);
    cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 40px;
    background: var(--color-white);
    border-radius: var(--radius-full);
}

/* ========================================
   PAGE HEADER / BREADCRUMB SECTION
   ======================================== */

.page-header {
    position: relative;
    background: var(--color-secondary);
    padding: 180px 0 80px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/bg-dots.png');
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 27, 67, 0.95) 0%,
            rgba(10, 42, 90, 0.9) 50%,
            rgba(0, 18, 48, 0.95) 100%);
    z-index: 2;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
}

/* ========================================
   BREADCRUMB
   ======================================== */

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-2);
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
}

.breadcrumb-item.active {
    color: var(--color-primary);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--text-xs);
}

.breadcrumb-separator i {
    display: block;
}

@media (max-width: 1024px) {
    .page-header {
        padding: 150px 0 60px;
        min-height: 280px;
    }

    .page-title {
        font-size: var(--text-2xl);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 20px;
        min-height: 250px;
    }

    .page-title {
        font-size: var(--text-2xl);
    }

    .breadcrumb {
        gap: var(--space-1);
    }

    .breadcrumb-item {
        font-size: var(--text-xs);
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 120px 0 40px;
        min-height: 220px;
    }

    .page-title {
        font-size: var(--text-2xl);
    }
}

/* ========================================
   PAGE CONTENT AREA
   ======================================== */

.page-content {
    background-color: var(--color-gray-50);
}

.page-content-inner {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-sm);
    padding: var(--space-12);
    max-width: 100%;
}

@media (max-width: 768px) {
    .page-content {
        padding: var(--space-12) 0;
    }

    .page-content-inner {
        padding: var(--space-6);
    }
}

/* ========================================
   SCROLL INDICATOR
   ======================================== */

.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: calc(var(--space-8));
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-3);
    z-index: 20;
    cursor: pointer;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.scroll-indicator:hover {
    transform: translateY(-5px);
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    transition: all var(--transition-base);
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--color-white);
    border-radius: 2px;
    animation: scrollDown 1.5s ease-in-out infinite;
}

.scroll-text {
    font-size: 11px;
    font-weight: var(--font-medium);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all var(--transition-base);
}

.scroll-indicator:hover .scroll-text {
    color: rgba(255, 255, 255, 1);
    transition: all var(--transition-base);
}

.scroll-indicator:hover .scroll-mouse {
    border: 2px solid rgba(255, 255, 255, 1);
    transition: all var(--transition-base);
}

/* ========================================
   HERO RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
    }

    .hero-content .container {
        text-align: center;
        margin: 0 auto;
    }

    .hero-subtitle {
        font-size: var(--text-xs);
    }

    .hero-content {
        padding: 0 var(--space-4);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-description {
        font-size: var(--text-base);
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-navigation {
        bottom: var(--space-6);
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: var(--text-lg);
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/**
 * Orbisis - Section Styles
 * About, References, Solutions, Services, Partners, News, CTA
 */

/* ========================================
   ABOUT SECTION - YENİ BÜTÜNLEŞİK TASARIM
   ======================================== */

.about-section-new {
    background: var(--color-gray-50);
    padding: var(--space-20) 0;
    overflow: hidden;
}

.about-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
    .about-card {
        grid-template-columns: 0.45fr 0.55fr;
        gap: 0;
    }
}

/* Sol: Fotoğraf */
.about-image-side {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 300px;
}

@media (min-width: 992px) {
    .about-image-wrapper {
        min-height: 450px;
    }
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.about-badge {
    position: absolute;
    bottom: var(--space-6);
    left: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: var(--color-white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-secondary);
}

.about-badge i {
    color: var(--color-primary);
    font-size: var(--text-lg);
}

/* Sağ: İçerik */
.about-content-side {
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .about-content-side {
        padding: var(--space-12);
    }
}

.about-header {
    margin-bottom: var(--space-6);
}

.about-subtitle {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-3);
}

.about-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--font-bold);
    color: var(--color-secondary);
    line-height: 1.3;
}

.about-main-title strong {
    color: var(--color-primary);
}

.about-description {
    margin-bottom: var(--space-6);
}

.about-description p {
    font-size: var(--text-base);
    color: var(--color-gray-600);
    line-height: 1.8;
}

/* İstatistikler */
.about-stats-row {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-5) 0;
    border-top: 1px solid var(--color-gray-100);
    border-bottom: 1px solid var(--color-gray-100);
    margin-bottom: var(--space-6);
}

.about-stat {
    flex: 1;
    text-align: center;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
}

.about-stat .stat-number {
    font-family: var(--font-primary);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--color-secondary);
    line-height: 1;
}

.about-stat .stat-plus {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--color-primary);
}

.stat-text {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-gray-500);
    margin-top: var(--space-1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Butonlar */
.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.btn-about-primary:hover {
    background: var(--color-secondary-light);
    transform: translateY(-2px);
}

.btn-about-video {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: transparent;
    color: var(--color-secondary);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.btn-about-video:hover {
    border-color: var(--color-secondary);
    background: var(--color-secondary);
    color: var(--color-white);
}

/* Referanslar */
.about-references {
    margin-top: var(--space-10);
    text-align: center;
}

.references-title {
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-5);
}

.references-track-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.references-track {
    display: flex;
    width: max-content;
    animation: references-scroll 25s linear infinite;
}

.references-track-content {
    display: flex;
    align-items: center;
    gap: var(--space-10);
    padding-right: var(--space-10);
}

.references-track-content img {
    max-height: 32px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: all var(--transition-base);
}

.references-track-content img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes references-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-stats-row {
        gap: var(--space-4);
    }

    .about-stat .stat-number {
        font-size: var(--text-2xl);
    }

    .about-actions {
        flex-direction: column;
    }

    .btn-about-primary,
    .btn-about-video {
        justify-content: center;
        width: 100%;
    }
}

/* ========================================
   ABOUT SECTION - ESKİ STİLLER (YEDEK)
   ======================================== */

.about-section {
    background-color: var(--color-gray-50);
    overflow: hidden;
    padding-top: var(--space-20);
    padding-bottom: 0 !important;
}

.about-partners-section {
    background-color: var(--color-gray-50);
    overflow: hidden;
    padding-bottom: 0 !important;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    align-items: start;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
}

@media (min-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--space-12);
        padding: var(--space-10);
        align-items: center;
    }
}

.about-content {
    order: 2;
    padding: var(--space-4);
}

@media (min-width: 992px) {
    .about-content {
        order: 1;
        padding: var(--space-6);
    }
}

.about-main-title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: var(--font-bold);
    color: var(--color-secondary);
    line-height: 1.2;
    margin-bottom: var(--space-6);
}

.about-content p {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    margin-bottom: var(--space-6);
    line-height: 1.8;
}

.about-stats-inline {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
    margin: var(--space-8) 0;
    padding: var(--space-5) var(--space-4);
}

.stat-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.stat-inline .stat-icon {
    font-size: var(--text-4xl);
    color: var(--color-primary);
    margin-bottom: 0;
}

.stat-inline .stat-number {
    font-family: var(--font-primary);
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--color-secondary);
    line-height: 1;
    display: inline;
}

.stat-inline .stat-number::after {
    content: none;
}

.stat-plus {
    font-family: var(--font-primary);
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--color-primary);
}

.stat-inline .stat-label {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    margin-top: var(--space-1);
}

.about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-2);
}

.about-buttons .btn {
    flex: 1 1 calc(50% - var(--space-3) / 2);
    min-width: 180px;
    justify-content: center;
    text-align: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: var(--color-secondary);
    color: var(--color-white);
    font-weight: var(--font-medium);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.btn-secondary i {
    font-size: 1.1em;
    line-height: 1;
}

.btn-secondary:hover {
    background: var(--color-secondary-light);
    transform: translateY(-2px);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: transparent;
    color: var(--color-secondary);
    font-weight: var(--font-medium);
    border: 2px solid var(--color-secondary);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.btn-outline-dark i {
    font-size: 1.1em;
    line-height: 1;
}

.btn-outline-dark:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.about-buttons .btn i {
    font-size: 1.5em;
}

/* About Gallery */
.about-gallery {
    position: relative;
    order: 1;
}

@media (min-width: 992px) {
    .about-gallery {
        order: 2;
    }
}


.gallery-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: var(--color-white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    z-index: 10;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-secondary);
}

.gallery-badge i {
    color: var(--color-primary);
    font-size: var(--text-lg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-4);
    height: 600px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 27, 67, 0.9) 0%, rgba(0, 27, 67, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: var(--space-6);
    opacity: 0;
    transition: all var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: var(--text-3xl);
    color: var(--color-white);
    margin-bottom: var(--space-2);
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

.gallery-overlay span {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--color-white);
    transform: translateY(20px);
    transition: transform var(--transition-base) 0.1s;
}

.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-main {
    grid-row: span 2;
}

/* References Inline - Container İçinde */
.references-inline {
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-gray-200);
}

.references-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0;
}

.references-swiper-wrapper {
    position: relative;
    overflow: hidden;
}

.references-swiper-wrapper::before,
.references-swiper-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.references-swiper-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-white), transparent);
}

.references-swiper-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-white), transparent);
}

.references-swiper {
    overflow: visible;
}

.references-swiper .swiper-wrapper {
    padding: 15px 0 var(--space-24) 0;
    transition-timing-function: linear !important;
}

.references-swiper .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-3);
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
}



/* ========================================
   REFERENCES MARQUEE
   ======================================== */

.references-marquee {
    position: relative;
    overflow: hidden;
}

.references-marquee::before,
.references-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.references-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-gray-50), transparent);
}

.references-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-gray-50), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

/* Referanslar - hover'da durmaz */
.references-marquee .marquee-track:hover {
    animation-play-state: running;
}

.marquee-content {
    display: flex;
    gap: var(--space-12);
    padding: 0 var(--space-6);
}

.reference-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.reference-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.reference-item img {
    max-height: 45px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-base);
}

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

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

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   SOLUTIONS SECTION
   ======================================== */

.solutions-section {
    background: var(--color-white);
    overflow: hidden;
}

.solutions-slider-wrapper {
    margin-top: var(--space-12);
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

.solutions-slider-inner {
    padding-left: calc((100vw - var(--container-2xl)) / 2 + var(--container-padding));
}

@media (max-width: 1440px) {
    .solutions-slider-inner {
        padding-left: var(--container-padding);
    }
}

.solutions-slider {
    overflow: visible !important;
}

a.solution-card,
a.service-card {
    text-decoration: none;
    color: inherit;
    display: flex;
}

.solution-card {
    background: var(--color-secondary);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

/* Solutions Slider - Eşit Yükseklik */
.solutions-slider .swiper-slide {
    height: auto;
}

.solutions-slider .swiper-wrapper {
    align-items: stretch;
}

.solution-card:hover {
    transform: translateY(-10px) scale(1.04) !important;
    box-shadow: var(--shadow-2xl);
}

.solution-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary-light);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-6);
}

.solution-icon i {
    font-size: 2rem;
    color: var(--color-primary);
}

.solution-card h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-4);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.solution-card p {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-6);
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-primary);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.solution-link:hover {
    gap: var(--space-3);
    color: var(--color-secondary);
}

/* Solution link üzerine gelince normal cursor */
.services-slider-wrapper .solution-link {
    position: relative;
    cursor: pointer;
}

/* Solutions slider içindeki solution-link hover - beyaz renk */
.solutions-slider-wrapper .solution-link {
    color: var(--color-white);
}

.solutions-slider-wrapper .solution-link:hover {
    color: var(--color-primary);
    gap: var(--space-3);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    background: var(--color-gray-50);
    overflow: hidden;
    position: relative;
    padding-bottom: var(--space-12) !important;
}

.services-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-image: url('../img/bg-dots.png');
    background-repeat: repeat;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.services-dots::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, var(--color-gray-50) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.services-section .container,
.services-section .services-slider-wrapper {
    position: relative;
    z-index: 1;
}

.services-slider-wrapper {
    margin-top: var(--space-12);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.services-slider {
    padding: 15px 0 var(--space-12) 0;
}

.services-slider .swiper-wrapper {
    overflow: visible;
    align-items: stretch;
}

.services-slider .swiper-slide {
    height: auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: var(--shadow-2xl);
}

.service-image {
    position: relative;
    height: 225px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: var(--space-6);
}

.service-content .service-title {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--color-secondary);
    margin-bottom: var(--space-3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-content .service-desc {
    font-size: var(--text-base);
    color: var(--color-gray-600);
    margin-bottom: var(--space-4);
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-content .solution-link {
    margin-top: auto;
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: var(--font-medium);
    color: var(--color-primary);
    transition: all var(--transition-fast);
}

.service-link:hover {
    gap: var(--space-3);
    color: var(--color-secondary);
}

/* Services Pagination */

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0;
}

.news-mobile-pagination,
.services-pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-8);
}

.news-mobile-pagination .swiper-pagination-bullet,
.services-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--color-gray-300);
    opacity: 1;
    transition: all var(--transition-fast);
    pointer-events: none;
    cursor: default;
}

.news-mobile-pagination .swiper-pagination-bullet-active,
.services-pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: var(--radius-full);
    background: var(--color-secondary);
}


/* ========================================
   PARTNERS SECTION
   ======================================== */

.partners-section {
    padding: var(--space-20) 0;
    background: var(--color-white);
    overflow: hidden;
}

.partners-group {
    margin-bottom: var(--space-16);
}

.partners-group:last-child {
    margin-bottom: 0;
}

.partners-group-title {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-6);
    text-align: center;
}

.partners-marquee {
    position: relative;
    overflow: hidden;
}

.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-white), transparent);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-white), transparent);
}

.partners-track {
    display: flex;
    width: max-content;
}

.partners-track.scroll-left {
    animation: marquee 25s linear infinite;
}

.partners-track.scroll-right {
    animation: marquee-reverse 25s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partners-content {
    display: flex;
    gap: var(--space-10);
    padding: 0 var(--space-5);
}

.partner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-6);
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.partner-item:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.partner-item img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-base);
}

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

/* Strategic Partners - Dark Theme */
.partners-group.strategic {
    background: var(--color-secondary);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: var(--space-12) 0;
}

.partners-group.strategic .partners-group-title {
    color: rgba(255, 255, 255, 0.6);
}

.partners-group.strategic .partners-marquee::before {
    background: linear-gradient(to right, var(--color-secondary), transparent);
}

.partners-group.strategic .partners-marquee::after {
    background: linear-gradient(to left, var(--color-secondary), transparent);
}

.partners-group.strategic .partner-item {
    background: rgba(255, 255, 255, 0.1);
}

.partners-group.strategic .partner-item:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.partners-group.strategic .partner-item img {
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.partners-group.strategic .partner-item:hover img {
    opacity: 1;
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ========================================
   NEWS SECTION - MODERN
   ======================================== */

.news-section {
    padding: var(--space-20) 0;
    background: var(--color-white);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
    gap: var(--space-6);
}

.news-header-content {
    max-width: 500px;
}

.news-header-content .section-title {
    margin-bottom: 0;
}

/* News Grid - 3 Column (1 Large + 2 Small) */
.news-grid-3col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 992px) {
    .news-grid-3col {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* Large News Card */
.news-card-large {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    height: 400px;
}

@media (min-width: 992px) {
    .news-card-large {
        height: 500px;
    }
}

/* Small News Cards Container */
.news-small-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

/* Small News Card */
.news-card-small {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    height: 200px;
    flex: 1;
}

@media (min-width: 992px) {
    .news-card-small {
        height: auto;
    }
}

.news-card-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.news-card-image {
    position: absolute;
    inset: 0;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card-large:hover .news-card-image img,
.news-card-small:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 27, 67, 0.8) 0%, rgba(0, 27, 67, 0.2) 30%, transparent 100%);
    transition: background 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.news-card-large:hover .news-card-overlay,
.news-card-small:hover .news-card-overlay {
    background: linear-gradient(to top, rgba(0, 27, 67, 0.95) 0%, rgba(0, 27, 67, 0.6) 50%, rgba(0, 27, 67, 0.3) 100%);
}

.news-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    z-index: 2;
    transform: translateY(60px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card-large:hover .news-card-body,
.news-card-small:hover .news-card-body {
    transform: translateY(0);
}

.news-card-date {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--color-primary);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-1);
}

.news-card-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: var(--space-4);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all var(--transition-base);
}

.news-card-large .news-card-title {
    font-size: var(--text-2xl);
}

.news-card-small .news-card-title {
    font-size: var(--text-base);
    -webkit-line-clamp: 2;
}

.news-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    color: var(--color-secondary);
    font-size: var(--text-lg);
    transform: translateX(-10px);
    opacity: 0;
    transition: all var(--transition-base);
}

.news-card-large:hover .news-card-arrow,
.news-card-small:hover .news-card-arrow {
    transform: translateX(0);
    opacity: 1;
}

.news-card-arrow i {
    transition: transform var(--transition-fast);
}

.news-card-modern:hover .news-card-arrow i {
    transform: translateX(3px);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #0a1628 0%, var(--color-secondary) 50%, #0d1d35 100%);
    border-bottom: 1px solid #182d4c;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg-dots.png');
    background-repeat: repeat;
    opacity: 0.1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--font-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.cta-description,
.cta-text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-10);
    line-height: 1.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-5);
}

.cta-buttons .btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.cta-buttons .btn-primary:hover {
    background: var(--color-primary-dark);
}

.cta-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

/* ========================================
   PARTNERS SECTION - DUAL COLUMN SWIPER
   ======================================== */

.partners-section-dual {
    padding: var(--space-20) 0;
    background: var(--color-white);
}

.partners-section {
    padding: var(--space-16) 0;
    background: var(--color-gray-50);
}

.partners-section .section-header {
    margin-bottom: var(--space-8);
}

.partners-dual-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

@media (min-width: 992px) {
    .partners-dual-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

.partners-column {
    position: relative;
    overflow: hidden;
    padding: var(--space-6) 0 0;
    border-radius: var(--radius-2xl);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.partners-column-title {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: var(--space-3);
    position: relative;
    width: 100%;
}

.partners-column-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(231 231 231), transparent);
}


.partners-swiper-wrapper {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}


.partners-swiper .swiper-wrapper {
    padding: 15px 0 var(--space-24) 0;
    transition-timing-function: linear !important;
}

.partner-logo {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.5;
    height: 110px;
    transition: all var(--transition-base);
    padding: var(--space-3) var(--space-3);
    border-radius: var(--radius-md);
}


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

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-15px) scale(1.05) !important;
    box-shadow: var(--shadow-2xl);
}


/* ========================================
   REFERENCES SECTION - FOOTER ÜSTÜ
   ======================================== */

.references-section {
    padding: var(--space-12) 0;
    background: var(--color-white);
}

.references-section .references-inline {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}


/* ========================================
   PARTNERS INTEGRATED - ABOUT İÇİNDE
   ======================================== */

.partners-integrated {
    margin-top: var(--space-12);
    padding: var(--space-10) var(--space-8);
    background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-gray-100);
}

.partners-header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.partners-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--font-semibold);
    color: var(--color-secondary);
    margin-bottom: var(--space-3);
}

.partners-subtitle {
    font-size: var(--text-base);
    color: var(--color-gray-500);
    max-width: 500px;
    margin: 0 auto;
}


/* ========================================
   KODES İMZASI - FOOTER
   ======================================== */

.copyright-kodes {
    display: flex;
    align-items: center;
}

.copyright-kodes a {
    display: flex;
    align-items: center;
    transition: opacity var(--transition-base);
}

.copyright-kodes a:hover {
    opacity: 0.8;
}

.copyright-kodes .img-kodes {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: all var(--transition-base);
}

.copyright-kodes a:hover .img-kodes {
    opacity: 1;
}

@media (max-width: 992px) {
    .footer-copyright-content {
        width: 100% !important;
    }

    .copyright {
        text-align: center;
        font-size: var(--text-xs) !important;
    }

}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }

    .copyright-kodes {
        margin: var(--space-4) 0 var(--space-2) 0;
        justify-content: center;
    }
}

/* ========================================
   KVKK / ÇEREZ BİLDİRİMİ BALONU
   ======================================== */

.kvkk-notice {
    position: fixed;
    bottom: var(--space-8);
    left: var(--space-8);
    max-width: 480px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: var(--space-6);
    z-index: 9999;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.kvkk-notice.show {
    transform: translateY(0);
    opacity: 1;
}

.kvkk-notice.hide {
    transform: translateY(150%);
    opacity: 0;
    pointer-events: none;
}

.kvkk-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.kvkk-header i {
    font-size: 1.75rem;
    color: var(--color-primary);
}

.kvkk-title {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--color-secondary);
    margin: 0;
}

.kvkk-text {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-5);
}

.kvkk-text a {
    color: var(--color-primary);
    font-weight: var(--font-medium);
    text-decoration: underline;
    transition: color var(--transition-base);
}

.kvkk-text a:hover {
    color: var(--color-primary-dark);
}

.kvkk-accept {
    width: 100%;
    padding: var(--space-3) var(--space-6);
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: all var(--transition-base);
}

.kvkk-accept:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

@media (max-width: 576px) {
    .kvkk-notice {
        left: var(--space-4);
        right: var(--space-4);
        bottom: var(--space-4);
        max-width: none;
    }
}

/* Partners Integrated Responsive */
@media (max-width: 768px) {
    .partners-integrated {
        margin-top: var(--space-10);
        padding: var(--space-6) var(--space-4);
    }

    .partners-header {
        margin-bottom: var(--space-6);
    }

    .partners-title {
        font-size: 1.25rem;
    }
}


/* ========================================
   PARTNERS SECTION - BAĞIMSIZ
   ======================================== */

.partners-section {
    padding: var(--space-16) 0 var(--space-20);
    background: var(--color-white);
    position: relative;
}

.partners-section .section-header {
    margin-bottom: var(--space-12);
}

.partners-section .section-header.text-center {
    text-align: center;
}

.partners-section .section-header.text-center .section-description {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-gray-600);
}


/* ========================================
   REFERENCES MARQUEE - CSS ANIMATION
   ======================================== */

.references-inline-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-5);
}

.references-inline-about .references-title {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: var(--space-3);
    position: relative;
    width: 100%;
}

.references-inline-about .references-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(231 231 231), transparent);
}

.references-inline-about .references-swiper-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.references-inline-about .swiper-slide {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.5;
    height: 110px;
    transition: all var(--transition-base);
}

.references-inline-about .swiper-slide:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-15px) scale(1.05) !important;
    box-shadow: var(--shadow-2xl);
}

.references-inline-about .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.references-inline-about .references-label {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
}

.references-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.references-marquee {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.references-marquee-content {
    display: flex;
    align-items: center;
    gap: var(--space-10);
    padding-right: var(--space-10);
}

.references-marquee-content img {
    max-height: 35px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all var(--transition-base);
}

.references-marquee-content img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

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

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .references-inline-about {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }

    .references-inline-about .references-label {
        width: 100%;
        text-align: center;
    }

    .references-marquee-wrapper {
        width: 100%;
    }
}


/* ========================================
   NEWS MOBILE SLIDER
   ======================================== */

.news-mobile-slider {
    display: none;
}

.news-card-mobile {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.news-card-mobile .news-card-link {
    display: block;
}

.news-card-mobile .news-card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.news-card-mobile .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-mobile .news-card-body {
    padding: var(--space-5);
}

.news-card-mobile .news-card-date {
    font-size: var(--text-xs);
    color: var(--color-primary);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

.news-card-mobile .news-card-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-top: var(--space-2);
    line-height: 1.4;
}

.news-card-mobile .news-card-body {
    transform: translateY(0px);
}

.news-card-mobile .news-card-overlay {
    background: linear-gradient(to top, rgba(0, 27, 67, 0.9) 0%, rgba(0, 27, 67, 0.4) 30%, transparent 100%);
    transition: background 0.95s ease-in-out, opacity 0.95s ease-in-out;
}


@media (max-width: 992px) {
    .news-desktop {
        display: none !important;
    }

    .news-mobile-slider {
        display: block;
    }
}

/* ========================================
   SWIPE HINT - Kaydır Efekti
   ======================================== */

.swipe-hint {
    position: absolute;
    pointer-events: none;
    z-index: 100;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.swipe-hint i {
    font-size: 1.1rem;
}

.swipe-hint.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* solution-link veya pagination üstüne gelince gizle */
.swipe-hint.force-hide {
    opacity: 0 !important;
    transform: translate(-50%, -50%) scale(0.8) !important;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Services slider cursor none when swipe hint active */
.services-slider:hover {
    cursor: none;
}

/* Mobile'da swipe hint gizle */
@media (max-width: 991px) {
    .swipe-hint {
        display: none;
    }

    .services-slider:hover {
        cursor: grab;
    }

    .services-section .swiper-wrapper {
        padding-left: var(--container-padding);
    }

    .news-mobile-slider .swiper-wrapper {
        padding-left: var(--container-padding);
    }

}

/*
 * Orbisis - Footer Styles
 * Comprehensive footer with multiple columns
 */

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--color-secondary);
    color: var(--color-white);
}

/* ========================================
   FOOTER TOP
   ======================================== */

.footer-top {
    padding: var(--space-16) 0 var(--space-12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
}

@media (min-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
        gap: var(--space-8);
    }
}

/* Footer Brand */
.footer-brand {
    grid-column: 1 / -1;
}

@media (min-width: 992px) {
    .footer-brand {
        grid-column: auto;
    }
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--space-6);
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-description {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: var(--text-lg);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    /* Default styles */
}

.footer-title {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-6);
    position: relative;
    padding-bottom: var(--space-3);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-menu li a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.footer-menu li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--color-primary);
    margin-right: 0;
    transition: all var(--transition-fast);
}

.footer-menu li a:hover {
    color: var(--color-white);
    padding-left: var(--space-2);
}

.footer-menu li a:hover::before {
    width: 10px;
    margin-right: var(--space-2);
}

/* Footer Contact */
.footer-contact {
    /* Default styles */
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.contact-list li i {
    font-size: var(--text-lg);
    color: var(--color-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-list li span,
.contact-list li a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: var(--leading-relaxed);
    transition: color var(--transition-fast);
}

.contact-list li a:hover {
    color: var(--color-white);
}

/* ========================================
   FOOTER BOTTOM
   ======================================== */
.footer-legal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-6) 0 var(--space-2) 0;
    position: relative
}

.footer-legal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(24 45 76), transparent);
}

.footer-copyright-content {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    position: relative;
    padding: 0 0 var(--space-6) 0;
    width: 75%;
}

@media (min-width: 768px) {
    .footer-legal-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.copyright {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2) var(--space-6);
}

@media (min-width: 768px) {
    .footer-legal {
        justify-content: flex-end;
    }
}

.footer-legal li a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-legal li a:hover {
    color: var(--color-white);
}

/* ========================================
   FOOTER NEWSLETTER (Optional)
   ======================================== */

.footer-newsletter {
    margin-top: var(--space-6);
}

.newsletter-form {
    display: flex;
    gap: var(--space-2);
}

.newsletter-input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    font-size: var(--text-sm);
    outline: none;
    transition: all var(--transition-fast);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: var(--space-3) var(--space-4);
    background: var(--color-primary);
    border: none;
    border-radius: var(--radius-lg);
    color: var(--color-white);
    font-size: var(--text-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.newsletter-btn:hover {
    background: var(--color-primary-dark);
}

/*
 * Orbisis - Responsive Styles
 * Media queries for all screen sizes
 */

/* ========================================
   ANIMATIONS
   ======================================== */

.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.fadeInDown {
    animation-name: fadeInDown;
}

.fadeIn {
    animation-name: fadeIn;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

.scaleIn {
    animation-name: scaleIn;
}

/* ========================================
   LARGE DESKTOP (1400px+)
   ======================================== */

@media (min-width: 1400px) {
    .container {
        padding-left: var(--space-8);
        padding-right: var(--space-8);
    }

    .section {
        padding: var(--space-24) 0;
    }
}

/* ========================================
   DESKTOP (1200px - 1399px)
   ======================================== */

@media (max-width: 1399px) {
    :root {
        --header-height: 75px;
        --header-height-scrolled: 65px;
    }

    .nav-link {
        padding: var(--space-2);
        font-size: var(--text-sm);
    }
}

/* ========================================
   SMALL DESKTOP / LARGE TABLET (992px - 1199px)
   ======================================== */

@media (max-width: 1199px) {
    :root {
        --header-height: 70px;
        --header-height-scrolled: 60px;
    }

    .section {
        padding: var(--space-16) 0;
    }

    .section-header {
        margin-bottom: var(--space-10);
    }
}

/* ========================================
   TABLET (768px - 991px)
   ======================================== */

@media (max-width: 991px) {
    .section {
        padding: var(--space-12) 0;
    }

    .partners-swiper .swiper-wrapper,
    .references-swiper .swiper-wrapper {
        padding: 15px 0 var(--space-12) 0;
    }

    .services-section {
        padding-bottom: 0 !important;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }

    .section-header.text-center {
        align-items: center;
    }

    /* About Section */
    .about-grid {
        gap: var(--space-8);
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: var(--space-6);
    }

    .about-image-decoration {
        display: none;
    }

    /* News Section */
    .news-grid {
        gap: var(--space-4);
    }

    /* CTA Section */
    .cta-section {
        padding: var(--space-16) 0;
    }

    .header-container {
        padding: 0 calc(var(--space-6));
    }

    .mobile-menu-toggle {
        width: auto;
        padding: 0;
    }

    .partners-dual-grid {
        margin-top: var(--space-6);
    }
}

/* ========================================
   LARGE MOBILE (576px - 767px)
   ======================================== */

@media (max-width: 767px) {
    :root {
        --container-padding: 1rem;
    }

    .section {
        padding: var(--space-10) 0;
    }

    .section-header {
        margin-bottom: var(--space-8);
    }

    /* Typography */
    h1 {
        font-size: var(--text-4xl);
    }

    h2 {
        font-size: var(--text-3xl);
    }

    h3 {
        font-size: var(--text-2xl);
    }

    /* Buttons */
    .btn {
        padding: var(--space-3) var(--space-5);
    }

    .btn-lg {
        padding: var(--space-3) var(--space-6);
    }

    /* About Section */
    .about-wrapper {
        padding: var(--space-6);
    }

    .about-text {
        font-size: var(--text-base);
    }

    .about-content {
        padding: 0;
    }

    .stat-number {
        font-size: var(--text-3xl);
    }

    .gallery-grid {
        height: 380px;
    }

    /* References */
    .references-marquee::before,
    .references-marquee::after {
        width: 80px;
    }

    .reference-item {
        padding: var(--space-3) var(--space-4);
    }

    .reference-item img {
        height: 40px;
        max-width: 120px;
    }

    .solution-card:hover {
        transform: translateY(0px) scale(1) !important;
        box-shadow: none !important;
    }

    .service-card:hover {
        transform: translateY(0px) scale(1) !important;
        box-shadow: var(--shadow-sm) !important;
    }

    /* Partners */
    .partners-marquee::before,
    .partners-marquee::after {
        width: 60px;
    }

    .partner-item {
        padding: var(--space-3) var(--space-6);
    }

    .partner-item img {
        height: 40px;
        max-width: 130px;
    }

    /* News */
    .news-image {
        height: 180px;
    }

    .news-content {
        padding: var(--space-4);
    }

    /* Footer */
    .footer-top {
        padding: var(--space-12) 0 var(--space-8);
    }

    .footer-grid {
        gap: var(--space-8);
    }

    .footer-description {
        max-width: 100%;
    }

    /* Back to top */
    .back-to-top {
        bottom: var(--space-4);
        right: var(--space-4);
        width: 44px;
        height: 44px;
    }

    .footer-logo img {
        width: 100%;
    }

    .footer-links {
        display: none;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        display: block;
        text-align: center;
    }

    .footer-description {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-menu {
        align-items: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-3);
    }

    .footer-legal {
        justify-content: center;
    }

}

/* ========================================
   MOBILE (max 575px)
   ======================================== */

@media (max-width: 575px) {
    :root {
        --container-padding: 0.875rem;
        --header-height: 65px;
        --header-height-scrolled: 60px;
    }

    .section {
        padding: var(--space-8) 0;
    }

    /* Typography */
    h1 {
        font-size: var(--text-3xl);
    }

    h2 {
        font-size: var(--text-2xl);
    }

    h3 {
        font-size: var(--text-xl);
    }

    .section-subtitle {
        font-size: var(--text-xs);
    }

    .section-description {
        font-size: var(--text-base);
    }

    /* Logo */
    .logo-img {
        height: 35px;
    }

    .header.scrolled .logo-img {
        height: 32px;
    }

    /* Buttons */
    .btn {
        padding: var(--space-2) var(--space-4);
        font-size: var(--text-sm);
    }

    .section-header-nav {
        display: none;
    }

    /* About Stats */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
        padding: var(--space-4);
        margin: var(--space-6) 0;
    }

    .stat-number {
        font-size: var(--text-2xl);
    }

    .stat-label {
        font-size: var(--text-xs);
    }

    /* Solutions */
    .solutions-slider .swiper-slide {
        width: 280px;
    }

    .solution-card {
        padding: var(--space-6);
    }

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

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

    /* Services */
    .service-image {
        height: 180px;
    }

    .service-content {
        padding: var(--space-5);
    }

    .service-icon {
        width: 50px;
        height: 50px;
        top: -25px;
    }

    .service-icon i {
        font-size: 1.25rem;
    }

    /* Partners */
    .partners-row-title {
        font-size: var(--text-sm);
    }

    /* News */
    .news-card-featured .news-image {
        height: 200px;
    }

    .news-title {
        font-size: var(--text-base);
    }

    .news-card-featured .news-title {
        font-size: var(--text-lg);
    }

    /* CTA */
    .cta-section {
        padding: var(--space-12) 0;
    }

    .cta-text {
        font-size: var(--text-base);
    }
}

/* ========================================
   EXTRA SMALL MOBILE (max 374px)
   ======================================== */

@media (max-width: 374px) {
    :root {
        --container-padding: 0.75rem;
    }

    h1 {
        font-size: var(--text-2xl);
    }

    h2 {
        font-size: var(--text-xl);
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.65rem;
        padding: var(--space-1) var(--space-3);
    }

    .hero-description {
        font-size: var(--text-sm);
    }

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

    .stat-number {
        font-size: var(--text-xl);
    }
}

/* ========================================
   LANDSCAPE MOBILE
   ======================================== */

@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        height: auto;
        padding: var(--space-20) 0 var(--space-10);
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-description {
        font-size: var(--text-base);
        margin-bottom: var(--space-4);
    }

    .hero-navigation {
        bottom: var(--space-4);
    }

    .scroll-indicator {
        display: none;
    }
}

/* ========================================
   HIGH DPI SCREENS
   ======================================== */

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    /* Sharper borders and shadows */
    .card,
    .solution-card,
    .service-card,
    .news-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {

    .header,
    .hero-navigation,
    .scroll-indicator,
    .back-to-top,
    .mobile-nav,
    .mobile-nav-overlay,
    #preloader {
        display: none !important;
    }

    .hero-section {
        height: auto;
        min-height: auto;
        padding: 2cm 0;
    }

    .section {
        padding: 1cm 0;
        page-break-inside: avoid;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .btn {
        border: 1px solid #000;
        background: none;
        color: #000;
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .animated {
        animation: none !important;
    }

    .marquee-track {
        animation: none !important;
    }

    .hero-image {
        transform: none !important;
        transition: none !important;
    }

    * {
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   DARK MODE SUPPORT (Optional)
   ======================================== */

@media (prefers-color-scheme: dark) {
    /* Uncomment to enable dark mode
    :root {
        --color-white: #1a1a2e;
        --color-gray-50: #16213e;
        --color-gray-100: #1a1a2e;
        --color-gray-200: #2a2a4e;
        --color-gray-600: #a0a0b0;
        --color-gray-800: #e0e0e0;
    }
    */
}