/* ===========================
   GREY AI MEDIA AGENCY
   Main Stylesheet — v2
   =========================== */

/* --- Custom Properties --- */
:root {
    /* Backgrounds — deep slate/charcoal */
    --bg-primary: #04080f;
    --bg-secondary: #070d18;
    --bg-tertiary: #0b1220;
    --bg-elevated: #0f172a;

    /* Accent — electric cyan-white with purple hint */
    --accent-primary: #e2f5ff;
    /* near-white blue — main CTA */
    --accent-secondary: #7dd3fc;
    /* sky blue */
    --accent-glow: #38bdf8;
    /* electric blue glow */
    --accent-green: #4ade80;
    /* success / stat green */

    /* Gradients */
    --gradient-accent: linear-gradient(135deg, #e2f5ff 0%, #7dd3fc 50%, #38bdf8 100%);
    --gradient-cta: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 100%);
    --gradient-hero: radial-gradient(ellipse at 20% 60%, rgba(56, 189, 248, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(125, 211, 252, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(14, 165, 233, 0.04) 0%, transparent 60%);
    --gradient-glow: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);

    /* Text */
    --text-primary: #f0f6ff;
    --text-secondary: #8ba3c1;
    --text-tertiary: #4d6480;
    --text-accent: #7dd3fc;

    /* Borders / Surfaces */
    --border-subtle: rgba(125, 211, 252, 0.08);
    --border-hover: rgba(125, 211, 252, 0.25);
    --border-active: rgba(56, 189, 248, 0.5);
    --surface-glass: rgba(255, 255, 255, 0.025);
    --surface-glass-hover: rgba(255, 255, 255, 0.05);

    /* Shadows */
    --shadow-glow: 0 0 40px rgba(56, 189, 248, 0.12);
    --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.4);
    --shadow-btn: 0 0 24px rgba(56, 189, 248, 0.25);

    /* Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* --- Reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(125, 211, 252, 0.15);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(125, 211, 252, 0.3);
}

/* --- Utilities --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.hidden {
    display: none !important;
}

.gradient-text {
    background: var(--gradient-accent);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

.dot-grid-bg {
    position: relative;
}

.dot-grid-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(125, 211, 252, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.section {
    position: relative;
    padding: 128px 0;
    z-index: 1;
}

.section__header {
    text-align: center;
    margin-bottom: 72px;
}

.section__badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 100px;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.18);
    color: var(--accent-secondary);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 18px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-cta);
    color: #04080f;
    box-shadow: var(--shadow-btn);
    font-weight: 700;
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--primary:hover {
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.45);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn--ghost:hover {
    border-color: var(--border-hover);
    background: var(--surface-glass);
    color: var(--accent-secondary);
}

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

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    min-height: 72px;
    padding: 18px 0;
    overflow: visible;
    transition: all 0.35s ease;
}

.navbar--scrolled {
    background: rgba(7, 13, 24, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 0;
    min-height: 64px;
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    overflow: visible;
}

.navbar__logo-img {
    height: 96px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: invert(1) brightness(1.1);
    transition: opacity 0.3s;
    /* Logo navbar dışına taşar, bar yüksekliği sabit kalır */
}

.navbar__logo-img:hover {
    opacity: 0.8;
}

/* Legacy icon (unused but keep for footer) */
.navbar__logo-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--gradient-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--bg-primary);
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar__link {
    padding: 8px 14px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: color 0.3s ease;
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--text-primary);
}

.navbar__cta {
    background: var(--gradient-cta);
    color: #04080f !important;
    font-weight: 800;
    letter-spacing: 0.02em;
    border-radius: var(--radius-md);
    padding: 10px 22px;
    font-size: 0.9375rem;
    margin-left: 8px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.2);
    transition: box-shadow 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.navbar__cta:hover {
    box-shadow: 0 0 28px rgba(56, 189, 248, 0.45), 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}

.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 15, 0.97);
    backdrop-filter: blur(24px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.mobile-menu__list {
    text-align: center;
}

.mobile-menu__list li {
    margin-bottom: 28px;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.active .mobile-menu__link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu__link:hover {
    color: var(--accent-secondary);
}

.mobile-menu__cta {
    background: var(--gradient-cta);
    color: #04080f !important;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
}

/* ===========================
   HERO
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-secondary);
}

.hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 2;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 3;
    padding: 130px 32px 90px;
    max-width: 860px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border-radius: 100px;
    background: rgba(56, 189, 248, 0.07);
    border: 1px solid rgba(56, 189, 248, 0.18);
    color: var(--accent-secondary);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.04em;
}

.hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-glow);
    animation: pulseGlow 2s ease-in-out infinite;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero__title-line {
    display: block;
    color: var(--text-primary);
    clip-path: inset(0 100% 0 0);
}

.hero__title-line--accent {
    background: var(--gradient-accent);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 620px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.hero__cta {
    background: var(--gradient-cta);
    color: #04080f;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 16px 32px;
    font-size: 1.0625rem;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 24px rgba(56, 189, 248, 0.3);
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.hero__cta:hover {
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.5), 0 4px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.hero__platforms {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero__platforms>span {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    letter-spacing: 0.04em;
}

.hero__platform-icons {
    display: flex;
    gap: 10px;
}

.platform-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(125, 211, 252, 0.05);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.platform-icon:hover {
    border-color: var(--border-hover);
    color: var(--accent-secondary);
    transform: translateY(-3px);
    background: rgba(125, 211, 252, 0.1);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero__scroll-indicator span {
    font-size: 0.6875rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-glow), transparent);
    animation: scrollBounce 1.8s ease-in-out infinite;
}

/* ===========================
   SERVICES
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 44px 32px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card__glow {
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.6), transparent);
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.service-card:hover .service-card__glow {
    opacity: 1;
}

.service-card__icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card__icon {
    transform: rotate(6deg) scale(1.07);
}

.service-card__icon--teal {
    background: rgba(56, 189, 248, 0.1);
    color: #7dd3fc;
}

.service-card__icon--green {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
}

.service-card__icon--cyan {
    background: rgba(125, 211, 252, 0.1);
    color: #38bdf8;
}

.service-card__icon--purple {
    background: rgba(167, 139, 250, 0.1);
    color: #a78bfa;
}

.service-card__icon--orange {
    background: rgba(251, 146, 60, 0.1);
    color: #fb923c;
}

.service-card__icon--rose {
    background: rgba(251, 113, 133, 0.1);
    color: #fb7185;
}

.service-card__icon--amber {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.service-card__icon--emerald {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
}

.service-card__icon--pink {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-card__desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.service-card__features {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.service-card__features li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-glow);
    flex-shrink: 0;
}

/* ===========================
   TIMELINE
   =========================== */
.timeline {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
}

.timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent-glow), rgba(56, 189, 248, 0.2), transparent);
    transform: translateX(-50%);
    transform-origin: top;
    z-index: 0;
}

.timeline__step {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    z-index: 1;
}

.timeline__step:last-child {
    margin-bottom: 0;
}

.timeline__step--left {
    flex-direction: row;
    padding-right: calc(50% + 44px);
}

.timeline__step--right {
    flex-direction: row-reverse;
    padding-left: calc(50% + 44px);
}

.timeline__number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--accent-secondary);
    z-index: 2;
}

.timeline__card {
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 28px;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline__card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.timeline__card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(56, 189, 248, 0.08);
    color: var(--accent-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.timeline__card h3 {
    font-family: var(--font-heading);
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline__card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ===========================
   STATS
   =========================== */
.stats {
    background: var(--bg-tertiary);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.stat-item {
    padding: 40px 24px;
    position: relative;
}

.stat-item+.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--border-subtle);
}

.stat-item__number {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item__label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    letter-spacing: 0.02em;
}

/* ===========================
   PORTFOLIO
   =========================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 40px;
}

.portfolio-card {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-tertiary);
    cursor: pointer;
    border: 1px solid var(--border-subtle);
}

.portfolio-card__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 8, 15, 0.7) 0%, transparent 55%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.portfolio-card:hover .portfolio-card__overlay {
    opacity: 1;
}

.portfolio-card:hover .portfolio-card__video {
    transform: scale(1.04);
}

.portfolio-card__skeleton {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, var(--bg-tertiary) 30%, rgba(125, 211, 252, 0.04) 50%, var(--bg-tertiary) 70%);
    background-size: 200% 100%;
    animation: skeletonPulse 1.5s ease-in-out infinite;
    z-index: 0;
}

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

    100% {
        background-position: -200% 0;
    }
}

/* Video layer above skeleton */
.portfolio-card__video {
    position: relative;
    z-index: 1;
}

/* Hide skeleton once video has loaded (JS adds .portfolio-card--loaded) */
.portfolio-card--loaded .portfolio-card__skeleton {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.portfolio-card__play {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-card__play {
    transform: scale(1.12);
}

.portfolio-more {
    text-align: center;
}

/* ===========================
   MARQUEE
   =========================== */
.musteriler {
    overflow: hidden;
    position: relative;
    background: #eef2f6;
}

/* Soft transition from previous (dark) section into this light section */
.musteriler::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-secondary) 0%, transparent 100%);
    pointer-events: none;
}

.musteriler .section__badge,
.musteriler .section__title,
.musteriler .section__subtitle {
    color: #1a1a1a;
}

.musteriler .section__title .gradient-text {
    color: var(--accent-primary);
}

.musteriler .section__subtitle {
    color: #374151;
}

/* Clients grid — #musteriler: uniform slot, same size, contrast background */
#musteriler .clients-grid,
.musteriler .clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 32px 0;
    justify-items: center;
}

#musteriler .clients-grid__item,
.musteriler .clients-grid__item {
    display: block;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#musteriler .clients-grid__item:hover,
.musteriler .clients-grid__item:hover {
    transform: translateY(-4px);
}

/* Slot: hafif gri zemin (silik logolar için kontrast), profesyonel gölge */
#musteriler .clients-grid__slot,
.musteriler .clients-grid__slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 120px;
    flex-shrink: 0;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

#musteriler .clients-grid__item:hover .clients-grid__slot,
.musteriler .clients-grid__item:hover .clients-grid__slot {
    border-color: #94a3b8;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

#musteriler .clients-grid__logo,
.musteriler .clients-grid__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    /* Silik (açık renkli) logoları okunaklı yap: hafif gölge + kontrast */
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18)) drop-shadow(0 0 1px rgba(0, 0, 0, 0.12)) contrast(1.12);
}

#musteriler .clients-grid__item:hover .clients-grid__logo,
.musteriler .clients-grid__item:hover .clients-grid__logo {
    transform: scale(1.05);
}

#musteriler .clients-grid__fallback,
.musteriler .clients-grid__fallback {
    display: none;
    font-size: 0.875rem;
    color: #475569;
    text-align: center;
    line-height: 1.3;
    padding: 0 8px;
    word-break: break-word;
    font-weight: 600;
}

#musteriler .clients-grid__fallback--show,
.musteriler .clients-grid__fallback--show {
    display: block;
}

/* ===========================
   EKİP — Department Cards
   =========================== */
.ekip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.ekip-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-subtle);
    background: var(--bg-tertiary);
}

.ekip-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            rgba(var(--avatar-color-rgb, 56, 189, 248), 0.05) 0%,
            transparent 100%);
    transition: transform 0.45s ease;
}

.ekip-avatar svg {
    width: 70%;
    height: auto;
}

.ekip-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 8, 15, 0.85) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ekip-card:hover .ekip-card__overlay {
    opacity: 1;
}

.ekip-card:hover .ekip-avatar {
    transform: scale(1.06);
}

.ekip-card__role {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.8125rem;
}

/* Department Cards */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.department-card {
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dept-color, #38bdf8), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.department-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.department-card:hover::before {
    opacity: 1;
}

.department-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(56, 189, 248, 0.08);
    color: var(--dept-color, var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.department-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.department-card__desc {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.department-card__roles {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.department-card__roles li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

.department-card__roles li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--dept-color, var(--accent-glow));
    flex-shrink: 0;
}

.ekip-stories {
    text-align: center;
}

/* ===========================
   STORY MODAL
   =========================== */
.story-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-modal__container {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 9/16;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-primary);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.story-modal__progress {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 4px;
    z-index: 20;
}

.story-modal__progress .progress-bar {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    overflow: hidden;
}

.story-modal__progress .progress-bar__fill {
    height: 100%;
    background: white;
    border-radius: 2px;
    width: 0%;
}

.story-modal__header {
    position: absolute;
    top: 22px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 20;
}

.story-modal__user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-modal__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: #04080f;
}

.story-modal__user span {
    color: white;
    font-weight: 600;
    font-size: 0.8125rem;
}

.story-modal__close {
    color: white;
    padding: 4px;
}

.story-modal__images {
    position: relative;
    width: 100%;
    height: 100%;
}

.story-modal__images img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-modal__images img.active {
    opacity: 1;
}

.story-modal__nav-prev,
.story-modal__nav-next {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

.story-modal__nav-prev {
    left: 0;
}

.story-modal__nav-next {
    right: 0;
}

/* ===========================
   BOOKING MODAL — Randevu
   Dark theme, green accent
   =========================== */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.booking-modal:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.booking-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 8, 15, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.booking-modal__container {
    position: relative;
    width: 100%;
    max-width: 920px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--bg-elevated);
    border: 1px solid rgba(74, 222, 128, 0.12);
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(74, 222, 128, 0.06);
    transform: scale(0.97);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.booking-modal:not(.hidden) .booking-modal__container {
    transform: scale(1);
}

.booking-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
}

.booking-modal__close:hover {
    color: var(--text-primary);
    background: var(--surface-glass-hover);
}

.booking-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
    min-height: 420px;
    max-height: min(520px, 70vh);
    overflow: hidden;
    flex: 1;
    min-height: 0;
}

.booking-modal__aside {
    padding: 28px 24px;
    border-right: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 0;
    overflow: hidden;
}

.booking-modal__brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.booking-modal__logo {
    width: 100px;
    height: auto;
    object-fit: contain;
    opacity: 0.95;
    filter: brightness(0) invert(1);
}

.booking-modal__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.booking-modal__subtitle {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.booking-modal__meta {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    flex-shrink: 0;
}

.booking-modal__meta li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.booking-modal__meta-icon {
    color: var(--accent-green);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-modal__calendar-wrap {
    padding: 20px 16px;
    border-right: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    overflow: hidden;
}

.booking-modal__calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.booking-modal__month {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.booking-modal__nav {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
}

.booking-modal__nav:hover {
    color: var(--accent-green);
    background: rgba(74, 222, 128, 0.08);
}

.booking-modal__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.booking-modal__dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.booking-modal__date-cell {
    aspect-ratio: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.booking-modal__date-cell:hover:not(:disabled) {
    border-color: rgba(74, 222, 128, 0.3);
    background: rgba(74, 222, 128, 0.06);
}

.booking-modal__date-cell--selected {
    background: rgba(74, 222, 128, 0.18);
    border-color: var(--accent-green);
    color: var(--text-primary);
    box-shadow: 0 0 0 1px var(--accent-green);
}

.booking-modal__date-cell--past {
    color: var(--text-tertiary);
    opacity: 0.5;
    cursor: not-allowed;
}

.booking-modal__date-cell--past:hover {
    background: var(--surface-glass);
    border-color: var(--border-subtle);
}

.booking-modal__date-cell--empty {
    background: transparent;
    border: none;
    cursor: default;
}

.booking-modal__slots-wrap {
    padding: 20px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    flex: 1;
    min-height: 0;
}

.booking-modal__slots-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.booking-modal__day-label {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.booking-modal__slots {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-height: 0;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
    -webkit-overflow-scrolling: touch;
}

.booking-modal__slot {
    padding: 10px 14px;
    font-size: 0.875rem;
    text-align: left;
    color: var(--text-secondary);
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.booking-modal__slot:hover {
    border-color: rgba(74, 222, 128, 0.25);
    background: rgba(74, 222, 128, 0.06);
    color: var(--text-primary);
}

.booking-modal__slot--selected {
    border-color: var(--accent-green);
    background: rgba(74, 222, 128, 0.12);
    color: var(--accent-green);
    box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.25);
}

.booking-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.booking-form__group {
    position: relative;
    margin-bottom: 14px;
}

.booking-form__group input,
.booking-form__group textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.875rem;
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s ease;
}

.booking-form__group input::placeholder,
.booking-form__group textarea::placeholder {
    color: transparent;
}

.booking-form__group input:focus,
.booking-form__group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.15);
}

.booking-form__group label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    color: var(--text-tertiary);
    pointer-events: none;
    transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

.booking-form__group textarea~label {
    top: 18px;
    transform: none;
}

.booking-form__group input:focus~label,
.booking-form__group input:not(:placeholder-shown)~label,
.booking-form__group textarea:focus~label,
.booking-form__group textarea:not(:placeholder-shown)~label {
    top: -8px;
    left: 10px;
    font-size: 0.6875rem;
    color: var(--accent-green);
    background: var(--bg-elevated);
    padding: 0 4px;
}

.booking-form__submit {
    margin-top: 8px;
}

.booking-form__submit:hover {
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

.booking-form__status {
    margin-top: 12px;
    padding: 10px 12px;
    font-size: 0.8125rem;
    border-radius: var(--radius-sm);
}

.booking-form__status--success {
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.25);
    color: var(--accent-green);
}

.booking-form__status--error {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.25);
    color: #fca5a5;
}

.iletisim-info__cta {
    margin-bottom: 24px;
}

/* ===========================
   HAKKIMIZDA
   =========================== */
.hakkimizda {
    background: var(--bg-tertiary);
}

.hakkimizda-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.hakkimizda-content .section__badge {
    margin-bottom: 16px;
}

.hakkimizda-content .section__title {
    text-align: left;
    margin-bottom: 20px;
}

.hakkimizda-content__text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.hakkimizda-content__text strong {
    color: var(--text-primary);
}

/* Blockquote */
.hakkimizda-quote {
    border-left: 3px solid var(--accent-glow);
    padding: 20px 24px;
    margin: 24px 0;
    background: rgba(56, 189, 248, 0.04);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.hakkimizda-quote p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
    font-style: italic;
}

.hakkimizda-quote strong {
    color: var(--accent-secondary);
    font-style: normal;
}

/* Manifesto */
.hakkimizda-manifesto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
}

.manifesto-item {
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.manifesto-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.manifesto-item__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.manifesto-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.65;
}

/* Motto Card */
.hakkimizda-motto-card {
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    margin-bottom: 24px;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hakkimizda-motto-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.motto-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(56, 189, 248, 0.08);
    color: var(--accent-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.motto-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.motto-card__text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.motto-card__text:last-child {
    margin-bottom: 0;
}

.motto-card__text strong {
    color: var(--accent-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.value-item {
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 22px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.value-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.value-item__icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(56, 189, 248, 0.08);
    color: var(--accent-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.value-item p {
    color: var(--text-tertiary);
    font-size: 0.8125rem;
    line-height: 1.5;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.dashboard-mockup__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

.dashboard-mockup__dots {
    display: flex;
    gap: 6px;
}

.dashboard-mockup__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard-mockup__dots span:nth-child(1) {
    background: #ff5f57;
}

.dashboard-mockup__dots span:nth-child(2) {
    background: #ffbd2e;
}

.dashboard-mockup__dots span:nth-child(3) {
    background: #28c840;
}

.dashboard-mockup__body {
    padding: 24px;
}

.dashboard-mockup__metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.dashboard-mockup__metric-label {
    color: var(--text-tertiary);
    font-size: 0.8125rem;
}

.dashboard-mockup__metric-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.dashboard-mockup__bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 90px;
    margin-bottom: 22px;
}

.dashboard-mockup__bar {
    flex: 1;
    height: var(--height);
    background: linear-gradient(to top, #38bdf8, #7dd3fc);
    border-radius: 4px 4px 0 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.dashboard-mockup:hover .dashboard-mockup__bar {
    opacity: 1;
}

.dashboard-mockup__line {
    height: 56px;
}

.dashboard-mockup__line svg {
    width: 100%;
    height: 100%;
}

/* ===========================
   İLETİŞİM
   =========================== */
.iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.iletisim-info .section__badge {
    margin-bottom: 16px;
}

.iletisim-info .section__title {
    text-align: left;
    margin-bottom: 16px;
    font-size: 2.5rem;
}

.iletisim-info__desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 36px;
}

.iletisim-info__items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.iletisim-info__item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.iletisim-info__icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: rgba(56, 189, 248, 0.08);
    color: var(--accent-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.iletisim-info__item div {
    display: flex;
    flex-direction: column;
}

.iletisim-info__item span {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-bottom: 2px;
}

.iletisim-info__item a {
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s;
}

.iletisim-info__item a:hover {
    color: var(--accent-secondary);
}

/* Contact Form */
.iletisim-form-wrapper {
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.contact-form__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.form-group {
    position: relative;
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-glow);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.08);
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 15px;
    color: var(--text-tertiary);
    font-size: 0.9375rem;
    pointer-events: none;
    transition: all 0.2s ease;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -8px;
    left: 12px;
    font-size: 0.7rem;
    color: var(--accent-glow);
    background: var(--bg-secondary);
    padding: 0 4px;
    letter-spacing: 0.04em;
}

.form-group select {
    width: 100%;
    padding: 15px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.9375rem;
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234d6480' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select:focus {
    border-color: var(--accent-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-status {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
}

.form-status--success {
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: var(--accent-secondary);
}

.form-status--error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--bg-primary);
    padding: 80px 0 32px;
    border-top: 1px solid var(--border-subtle);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.footer__logo-img {
    height: 44px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: invert(1) brightness(1.1);
    opacity: 0.85;
}

.footer__tagline {
    color: var(--accent-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.footer__desc {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    line-height: 1.65;
    max-width: 300px;
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--accent-secondary);
}

.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.footer__contact li i {
    color: var(--accent-secondary);
    width: 16px;
}

.footer__contact a {
    color: var(--text-tertiary);
    transition: color 0.3s;
}

.footer__contact a:hover {
    color: var(--accent-secondary);
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social a {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: var(--surface-glass);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    transition: all 0.3s ease;
}

.footer__social a:hover {
    border-color: var(--border-hover);
    color: var(--accent-secondary);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.footer__bottom p {
    color: var(--text-tertiary);
    font-size: 0.8125rem;
}

.footer__founder {
    font-weight: 500;
}

/* ===========================
   STICKY SOSYAL MEDYA
   =========================== */
.social-sticky {
    position: fixed;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.social-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(125, 211, 252, 0.15);
    color: var(--text-tertiary);
    font-size: 1.1rem;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
    text-decoration: none;
}

.social-sticky a:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.5);
    color: var(--accent-secondary);
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .social-sticky {
        display: none;
    }
}

/* ===========================
   META PARTNER ROZET
   =========================== */
.hero__partner-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(56, 189, 248, 0.35);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #7dd3fc;
    background: rgba(56, 189, 248, 0.07);
    letter-spacing: 0.03em;
    transition: background 0.25s, border-color 0.25s;
}

.partner-badge i {
    font-size: 0.9rem;
}

.partner-badge:hover {
    background: rgba(56, 189, 248, 0.15);
    border-color: rgba(56, 189, 248, 0.55);
}

/* ===========================
   BOOKING FORM ROW (2 sütun)
   =========================== */
.booking-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 500px) {
    .booking-form__row {
        grid-template-columns: 1fr;
    }
}