* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}

:root {
    --primary-color: #0071e3;
    --primary-hover: #0077ed;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f7;
    --border-color: #d2d2d7;
    --gradient-start: #0071e3;
    --gradient-end: #00d4ff;
}

/* Apple Style Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes liquidGlass {
    0%, 100% {
        filter: blur(20px) saturate(180%);
        opacity: 0.85;
    }
    50% {
        filter: blur(30px) saturate(200%);
        opacity: 0.95;
    }
}

@keyframes perspective3D {
    0%, 100% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1);
    }
    50% {
        transform: perspective(1000px) rotateX(2deg) rotateY(2deg) scale(1.01);
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    position: relative;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    will-change: background, backdrop-filter, box-shadow;
    overflow: visible;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(200%) blur(35px);
    -webkit-backdrop-filter: saturate(200%) blur(35px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), 
                0 0 0 1px rgba(255, 255, 255, 0.5),
                0 1px 0 rgba(0, 0, 0, 0.08);
}

.nav-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 44px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 68px;
    overflow: visible;
    gap: 32px;
}

.logo {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start;
    height: 68px;
    overflow: visible;
    position: relative;
    min-width: 200px;
    width: auto;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
    order: 1;
}

.logo a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 68px !important;
    width: auto;
    visibility: visible !important;
    opacity: 1 !important;
}

.logo-img {
    height: 65px !important;
    width: auto !important;
    max-width: 260px;
    object-fit: contain;
    object-position: center center;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    margin: 0 !important;
    z-index: 10;
    vertical-align: middle;
}

.logo-img:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center !important;
    height: 68px;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    flex: 1;
    order: 2;
}

.nav-actions {
    display: flex;
    align-items: center !important;
    justify-content: flex-end;
    gap: 16px;
    height: 68px;
    margin: 0;
    margin-left: 16px;
    flex-shrink: 0;
    order: 3;
}

/* Mobil dil seçiciyi desktop'ta gizle */
.mobile-language-selector {
    display: none !important;
    visibility: hidden !important;
}

.nav-menu > li.mobile-language-selector {
    display: none !important;
    visibility: hidden !important;
}

.nav-cta-btn {
    padding: 8px 20px;
    background: #0071e3;
    color: white;
    border: none;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin: 0 8px;
    height: 36px;
    line-height: 1;
}

.nav-cta-btn:hover {
    background: #0051a2;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center !important;
    justify-content: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: saturate(180%) blur(20px);
    height: 36px;
    line-height: 1;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #1d1d1f;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    margin: 0;
    white-space: nowrap;
    overflow: visible;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: saturate(200%) blur(25px);
    -webkit-backdrop-filter: saturate(200%) blur(25px);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.language-flag {
    font-size: 18px;
    line-height: 1;
}

.language-code {
    font-weight: 600;
}

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

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.language-arrow {
    font-size: 10px;
    opacity: 0.6;
    transition: transform 0.2s ease;
}

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

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(30px);
    -webkit-backdrop-filter: saturate(180%) blur(30px);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 0.5px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

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

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #1d1d1f;
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: 14px;
}

.language-option:hover {
    background: rgba(0, 113, 227, 0.08);
}

.language-option.active {
    background: rgba(0, 113, 227, 0.1);
    color: #0071e3;
    font-weight: 600;
}

.language-option .language-flag {
    font-size: 20px;
}

.nav-menu > li {
    position: relative;
    display: flex;
    align-items: center !important;
    height: 68px;
    margin: 0;
}

.nav-menu > li > a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 400;
    padding: 8px 16px;
    margin: 0 2px;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    align-items: center !important;
    justify-content: center;
    height: 44px;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #0071e3;
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu > li > a:hover {
    background: rgba(0, 113, 227, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-menu > li > a:hover::after {
    width: calc(100% - 24px);
}

/* Vurgulu menü linki (Paketler vb.) */
.nav-menu > li > a.nav-highlight,
.nav-menu > li > a[style*="color: #0071e3"] {
    color: #0071e3 !important;
    font-weight: 600 !important;
    background: rgba(0, 113, 227, 0.08);
    border-radius: 8px;
}

.nav-dropdown {
    position: relative;
}

.mobile-hizmetler-menu {
    display: none;
}

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

.dropdown-arrow {
    font-size: 9px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    opacity: 0.6;
    margin-left: 2px;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    transform: translateY(8px);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(30px);
    -webkit-backdrop-filter: saturate(180%) blur(30px);
    border-radius: 14px;
    padding: 8px 0;
    min-width: 220px;
    list-style: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 0.5px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 0;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

/* Submenu Panel - Yan tarafta görünecek */
.submenu-panel {
    position: absolute;
    top: 0;
    left: calc(100% + 8px);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: saturate(180%) blur(30px);
    -webkit-backdrop-filter: saturate(180%) blur(30px);
    border-radius: 14px;
    padding: 24px 32px;
    min-width: 280px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15), 0 0 0 0.5px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    pointer-events: none;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-dropdown:hover .submenu-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.submenu-panel h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    letter-spacing: -0.3px;
}

.submenu-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.submenu-panel ul li {
    margin: 0;
}

.submenu-panel ul li a {
    display: block;
    padding: 10px 12px;
    color: #515154;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
    position: relative;
}

.submenu-panel ul li a:hover {
    background: rgba(0, 113, 227, 0.08);
    color: #0071e3;
    padding-left: 20px;
}

.submenu-panel ul li a::before {
    content: '→';
    position: absolute;
    left: 8px;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
    color: #0071e3;
}

.submenu-panel ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Mega Menu */
.mega-menu-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 16px;
    padding: 40px 32px;
    min-width: 1200px;
    max-width: 1600px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12), 0 0 0 0.5px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 32px;
}

.mega-menu:hover .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-main-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.2s ease;
    letter-spacing: -0.3px;
}

.mega-menu-main-link:hover {
    color: var(--primary-color);
}

.mega-menu-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-menu-sub li {
    margin: 0;
}

.mega-menu-sub a {
    display: block;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 16px;
}

.mega-menu-sub a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
    color: var(--primary-color);
}

.mega-menu-sub a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.mega-menu-sub a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border-radius: 6px;
    margin: 2px 6px;
    letter-spacing: -0.01em;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(0, 113, 227, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-color);
}

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

.menu-toggle:hover,
.menu-toggle:focus {
    outline: none;
    box-shadow: none;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #1d1d1f;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 0;
    background: #000000;
    z-index: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-video[src] {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Video yoksa beyaz arka plan */
.hero:not(:has(.hero-video[src])) {
    background: #ffffff;
}

.hero:not(:has(.hero-video[src])) .hero-overlay {
    background: rgba(255, 255, 255, 0);
}

.hero-content-centered {
    max-width: 1280px;
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 32px;
    overflow: visible;
    transform: translateY(0);
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
    box-sizing: border-box;
}

.hero-title {
    margin-bottom: 20px;
    color: #1d1d1f;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-title-label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #1d1d1f;
    margin-bottom: 12px;
    text-transform: none;
}

.hero:has(.hero-video[src]) .hero-title-label {
    color: rgba(255, 255, 255, 0.9);
}

.hero-title-main {
    display: block;
    font-size: clamp(56px, 9vw, 150px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
}

.hero:has(.hero-video[src]) .hero-title {
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #0071e3 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero:has(.hero-video[src]) .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: #1d1d1f;
    margin-bottom: 20px;
    line-height: 1.42859;
    font-weight: 400;
    letter-spacing: 0.011em;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    max-width: 680px;
    white-space: nowrap;
    margin-left: auto;
    margin-right: auto;
    will-change: transform, opacity;
    width: 100%;
    box-sizing: border-box;
}

.hero:has(.hero-video[src]) .hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.hero-tagline {
    font-size: 19px;
    color: #515154;
    margin-bottom: 48px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.011em;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    will-change: transform, opacity;
    font-style: italic;
}

.hero:has(.hero-video[src]) .hero-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
    will-change: transform, opacity;
}

.hero-buttons .btn {
    animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    min-width: 140px;
    text-align: center;
    flex: 0 0 auto;
}

.hero-platforms {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Sabit alt bar: logolar açılışta ekranın altında */
.hero-platforms-bar {
    flex-shrink: 0;
    width: 100%;
    margin: 0;
    padding: 16px 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    position: relative;
    z-index: 2;
    min-height: 72px;
    box-sizing: border-box;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

.hero:has(.hero-video[src]) .hero-platforms-bar {
    border-top-color: rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: saturate(120%) blur(12px);
    -webkit-backdrop-filter: saturate(120%) blur(12px);
}

.hero:has(.hero-video[src]) .hero-platforms {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.hero-platform {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.25s ease;
}

.hero-platform:hover {
    opacity: 1;
}

.hero-platform img {
    height: 28px;
    width: auto;
    max-width: 88px;
    min-width: 48px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.hero-platform-bing img {
    height: 52px;
    max-width: 160px;
}

.hero-platform-tiktok img {
    height: 36px;
    max-width: 100px;
}

.btn {
    padding: 12px 22px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: -0.022em;
    will-change: transform, background;
}

.btn-primary {
    background: #0071e3;
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0071e3 0%, #00d4ff 100%);
    transform: scale(1.02);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0);
    color: #0071e3;
    border: 1px solid rgba(0, 113, 227, 0.4);
    position: relative;
    overflow: hidden;
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    background: rgba(0, 113, 227, 0.1);
    border-color: #0071e3;
    color: #0071e3;
}

.hero:has(.hero-video[src]) .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.hero:has(.hero-video[src]) .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 14px 32px;
    font-size: 18px;
}


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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Sections */
section {
    padding: 100px 22px;
}

.section-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 44px;
}

.section-title {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    position: relative;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0071e3, transparent);
    opacity: 0.3;
}

.section-subtitle {
    font-size: 28px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 64px;
    font-weight: 400;
    line-height: 1.4;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* References Slider Section */
.references-slider {
    background: #f5f5f7;
    overflow: hidden;
    padding: 100px 22px;
}

.references-slider .section-title {
    color: #1d1d1f;
}

.references-slider .section-subtitle {
    color: #86868b;
}

.view-all-link {
    color: #0071e3;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 400;
    position: relative;
}

.view-all-link::after {
    content: ' →';
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.view-all-link:hover {
    color: #0077ed;
}

.view-all-link:hover::after {
    transform: translateX(4px);
}

/* Main product strip (hero sonrası, ana ürün konumlandırma) */
.main-product-strip {
    background: #f5f5f7;
    padding: 56px 22px 64px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.main-product-strip-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.main-product-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0071e3;
    margin-bottom: 12px;
}
.main-product-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.main-product-sub {
    font-size: 18px;
    font-weight: 400;
    color: #515154;
    letter-spacing: 0.01em;
    margin-bottom: 28px;
}
.main-product-extras {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 24px;
}
.main-product-extras .extras-label {
    font-weight: 600;
    color: #1d1d1f;
}
.main-product-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #0071e3;
    text-decoration: none;
    transition: color 0.2s ease;
}
.main-product-link:hover {
    color: #0077ed;
}

@media (max-width: 768px) {
    .main-product-strip {
        padding: 40px 20px 48px;
    }
    .main-product-title {
        font-size: 20px;
    }
    .main-product-sub {
        font-size: 15px;
    }
}

/* Color Surprise Section (Apple Creator Studio tarzı) */
.color-surprise {
    background: #000;
    padding: 80px 22px 120px;
    position: relative;
    overflow: hidden;
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Kaydırınca Apple tarzı giriş animasyonu (JS ile .color-surprise--in-view eklenir) */
.color-surprise .color-surprise-content,
.color-surprise .color-surprise-orbs {
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 968px) {
    .color-surprise:not(.color-surprise--in-view) {
        opacity: 0;
        transform: translateY(32px);
    }
    .color-surprise:not(.color-surprise--in-view) .color-surprise-content,
    .color-surprise:not(.color-surprise--in-view) .color-surprise-orbs {
        opacity: 0;
        transform: translateY(20px);
    }
    .color-surprise.color-surprise--in-view {
        opacity: 1;
        transform: translateY(0);
    }
    .color-surprise.color-surprise--in-view .color-surprise-content,
    .color-surprise.color-surprise--in-view .color-surprise-orbs {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (min-width: 969px) {
    .color-surprise:not(.color-surprise--in-view) {
        opacity: 0;
        transform: translateY(28px);
    }
    .color-surprise.color-surprise--in-view {
        opacity: 1;
        transform: translateY(0);
    }
}

.color-surprise-content {
    text-align: center;
    margin-bottom: 64px;
    z-index: 2;
    position: relative;
}

.color-surprise-tagline {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.color-surprise-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.color-surprise-orbs {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    perspective: 800px;
}

.color-orb {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    position: absolute;
    box-shadow: 0 0 30px currentColor, 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    animation: colorOrbPulse 4s ease-in-out infinite;
}

.color-orb-1 { background: linear-gradient(135deg, #5ac8fa, #0071e3); color: rgba(90, 200, 250, 0.6); left: 50%; top: 50%; transform: translate(-50%, -50%); animation-delay: 0s; }
.color-orb-2 { background: linear-gradient(135deg, #af52de, #5856d6); color: rgba(175, 82, 222, 0.6); left: 28%; top: 35%; transform: translate(-50%, -50%); animation-delay: 0.4s; }
.color-orb-3 { background: linear-gradient(135deg, #ff3b30, #ff6b6b); color: rgba(255, 59, 48, 0.6); left: 72%; top: 30%; transform: translate(-50%, -50%); animation-delay: 0.8s; }
.color-orb-4 { background: linear-gradient(135deg, #34c759, #30d158); color: rgba(52, 199, 89, 0.6); left: 18%; top: 55%; transform: translate(-50%, -50%); animation-delay: 1.2s; }
.color-orb-5 { background: linear-gradient(135deg, #ff9500, #ffb340); color: rgba(255, 149, 0, 0.6); left: 82%; top: 52%; transform: translate(-50%, -50%); animation-delay: 1.6s; }
.color-orb-6 { background: linear-gradient(135deg, #00c7be, #64d2ff); color: rgba(0, 199, 190, 0.6); left: 38%; top: 18%; transform: translate(-50%, -50%); animation-delay: 2s; }
.color-orb-7 { background: linear-gradient(135deg, #ff2d55, #ff6482); color: rgba(255, 45, 85, 0.6); left: 62%; top: 65%; transform: translate(-50%, -50%); animation-delay: 2.4s; }
.color-orb-8 { background: linear-gradient(135deg, #bf5af2, #e879f9); color: rgba(191, 90, 242, 0.6); left: 12%; top: 42%; transform: translate(-50%, -50%); animation-delay: 2.8s; }
.color-orb-9 { background: linear-gradient(135deg, #32ade6, #7dd3fc); color: rgba(50, 173, 230, 0.6); left: 88%; top: 42%; transform: translate(-50%, -50%); animation-delay: 3.2s; }

@keyframes colorOrbPulse {
    0%, 100% { opacity: 1; filter: brightness(1); }
    50% { opacity: 0.9; filter: brightness(1.15); }
}

.color-orb:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 45px currentColor, 0 12px 32px rgba(0, 0, 0, 0.5);
}

.color-surprise-reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .color-surprise {
        padding: 56px 16px 80px;
    }
    .color-surprise-orbs {
        height: 280px;
        max-width: 100%;
    }
    .color-orb {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }
    .color-orb-1 { left: 50%; top: 50%; }
    .color-orb-2 { left: 22%; top: 32%; }
    .color-orb-3 { left: 70%; top: 28%; }
    .color-orb-4 { left: 14%; top: 58%; }
    .color-orb-5 { left: 78%; top: 55%; }
    .color-orb-6 { left: 34%; top: 16%; }
    .color-orb-7 { left: 66%; top: 68%; }
    .color-orb-8 { left: 8%; top: 45%; }
    .color-orb-9 { left: 86%; top: 45%; }
}

/* Why Choose Section – iPad Air paleti (açık mavi gradient, nane / lavanta / starlight / space grey) */
.why-choose {
    background: linear-gradient(180deg, #f5faff 0%, #eef6fc 35%, #e5f0fa 70%, #dcebfa 100%);
    padding: 100px 22px;
}

.why-choose .section-title {
    color: #1d1d1f;
}

.why-choose .section-subtitle {
    color: #5c5c6d;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 80px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

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

.why-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 64px 48px;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 113, 227, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    position: relative;
    overflow: hidden;
}

.why-item:nth-child(1) { animation-delay: 0.1s; }
.why-item:nth-child(2) { animation-delay: 0.2s; }
.why-item:nth-child(3) { animation-delay: 0.3s; }
.why-item:nth-child(4) { animation-delay: 0.4s; }

/* iPad Air renk vurguları: mint, lavanta, starlight (krem/mavi), space grey */
.why-item-mint {
    --why-accent: #2db8a0;
    --why-tint: rgba(45, 184, 160, 0.08);
}
.why-item-lavender {
    --why-accent: #af52de;
    --why-tint: rgba(175, 82, 222, 0.08);
}
.why-item-starlight {
    --why-accent: #0071e3;
    --why-tint: rgba(255, 248, 240, 0.6);
}
.why-item-spacegrey {
    --why-accent: #4a4a4a;
    --why-tint: rgba(74, 74, 74, 0.06);
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--why-tint);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.why-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 48px rgba(0, 113, 227, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.why-item:hover::before {
    opacity: 1;
}

.why-item-mint:hover { box-shadow: 0 16px 48px rgba(45, 184, 160, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.9); }
.why-item-lavender:hover { box-shadow: 0 16px 48px rgba(175, 82, 222, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.9); }
.why-item-starlight:hover { box-shadow: 0 16px 48px rgba(0, 113, 227, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.9); }
.why-item-spacegrey:hover { box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.9); }

/* Köşe tınısı – iPad Air tonları */
.why-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: 0 0 0 24px;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}
.why-item-mint::after { background: radial-gradient(ellipse at top right, rgba(45, 184, 160, 0.12), transparent 65%); }
.why-item-lavender::after { background: radial-gradient(ellipse at top right, rgba(175, 82, 222, 0.1), transparent 65%); }
.why-item-starlight::after { background: radial-gradient(ellipse at top right, rgba(0, 113, 227, 0.1), transparent 65%); }
.why-item-spacegrey::after { background: radial-gradient(ellipse at top right, rgba(74, 74, 74, 0.08), transparent 65%); }
.why-item:hover::after {
    opacity: 0.85;
}

.why-icon {
    animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    color: var(--why-accent);
}

.why-item:nth-child(1) .why-icon { animation-delay: 0.2s; }
.why-item:nth-child(2) .why-icon { animation-delay: 0.3s; }
.why-item:nth-child(3) .why-icon { animation-delay: 0.4s; }
.why-item:nth-child(4) .why-icon { animation-delay: 0.5s; }

.why-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.why-item:hover .why-icon {
    transform: scale(1.08);
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-item h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d1d1f;
    letter-spacing: -0.6px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.why-item:hover h3 {
    color: var(--why-accent);
}

.why-item p {
    font-size: 19px;
    color: #5c5c6d;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.011em;
}

.references-slider-wrapper {
    margin-top: 80px;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 40px 0;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

.references-slider-track {
    display: flex;
    gap: 100px;
    animation: slideReferences 50s linear infinite;
    width: fit-content;
    align-items: center;
}

.reference-slide-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    filter: grayscale(100%) opacity(0.6);
    padding: 0 20px;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.reference-slide-item:nth-child(1) { animation-delay: 0.1s; }
.reference-slide-item:nth-child(2) { animation-delay: 0.2s; }
.reference-slide-item:nth-child(3) { animation-delay: 0.3s; }
.reference-slide-item:nth-child(4) { animation-delay: 0.4s; }
.reference-slide-item:nth-child(5) { animation-delay: 0.5s; }
.reference-slide-item:nth-child(6) { animation-delay: 0.6s; }

.reference-slide-item:hover {
    opacity: 1;
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1) translateY(-2px);
    background: transparent !important;
}

.reference-slide-item img {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    background: transparent !important;
    background-color: transparent !important;
    mix-blend-mode: multiply;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    /* Remove white backgrounds from images */
    image-rendering: -webkit-optimize-contrast;
    -webkit-mask-image: none;
    mask-image: none;
}

/* Force remove any background from reference slide items and their children */
.reference-slide-item * {
    background: transparent !important;
    background-color: transparent !important;
}

.reference-slide-item::before,
.reference-slide-item::after {
    display: none !important;
    background: transparent !important;
}

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

/* Problem Solution Section – tablo */
.problem-solution {
    background: #fbfbfd;
    padding: 64px 0 40px;
}

.problem-solution .section-container {
    max-width: 100%;
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
    box-sizing: border-box;
}

.problem-solution .section-subtitle {
    margin-bottom: 0;
}

.problem-solution-table {
    width: 100%;
    margin: 48px 0 0;
    border-collapse: collapse;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.problem-solution-table thead {
    background: #f5f5f7;
}

.problem-solution-table th {
    padding: 20px 40px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.problem-solution-table th:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.problem-solution-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.problem-solution-table tbody tr:last-child {
    border-bottom: none;
}

.problem-solution-table .problem-cell,
.problem-solution-table .solution-cell {
    padding: 36px 40px;
    vertical-align: top;
    text-align: left;
}

.problem-solution-table .problem-cell {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    background: #f5f5f7;
}

.problem-solution-table .solution-cell {
    background: rgba(0, 113, 227, 0.05);
}

.problem-solution-table .problem-icon,
.problem-solution-table .solution-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.problem-solution-table .problem-icon svg,
.problem-solution-table .solution-icon svg {
    width: 100%;
    height: 100%;
}

.problem-solution-table .problem-cell h3,
.problem-solution-table .solution-cell h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.problem-solution-table .problem-cell h3 {
    color: #424245;
}

.problem-solution-table .solution-cell h3 {
    color: #0071e3;
}

.problem-solution-table .problem-cell p,
.problem-solution-table .solution-cell p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.problem-solution-table .problem-cell p {
    color: #424245;
}

.problem-solution-table .solution-cell p {
    color: #1d1d1f;
}

@media (max-width: 768px) {
    .problem-solution .section-container {
        overflow: visible;
    }
    .problem-solution-table {
        display: block;
        margin-top: 24px;
        margin-left: -22px;
        margin-right: -22px;
        padding-left: 22px;
        padding-right: 22px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    .problem-solution-table thead {
        display: none;
    }
    .problem-solution-table tbody {
        display: flex;
        flex-direction: row;
        gap: 0;
        padding-bottom: 8px;
    }
    .problem-solution-table tbody tr {
        display: block;
        flex: 0 0 88%;
        min-width: 300px;
        max-width: 380px;
        margin-right: 20px;
        margin-bottom: 0;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 14px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        scroll-snap-align: start;
    }
    .problem-solution-table tbody tr:last-child {
        margin-right: 22px;
    }
    .problem-solution-table .problem-cell,
    .problem-solution-table .solution-cell {
        display: block;
        border-right: none;
        border-bottom: none;
        padding: 24px 22px;
    }
    .problem-solution-table .problem-cell {
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .problem-solution-table .solution-cell {
        padding-top: 18px;
        background: rgba(0, 113, 227, 0.04);
    }
    .problem-solution-table .problem-cell h3,
    .problem-solution-table .solution-cell h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .problem-solution-table .problem-cell p,
    .problem-solution-table .solution-cell p {
        font-size: 16px;
        line-height: 1.55;
    }
    .problem-solution-table .problem-icon,
    .problem-solution-table .solution-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    .problem-solution-table .problem-cell::before,
    .problem-solution-table .solution-cell::before {
        display: none;
    }
}

/* Process Section */
.process {
    background: #ffffff;
    padding: 100px 22px;
}

.process .section-title {
    color: #1d1d1f;
}

.process .section-subtitle {
    color: #86868b;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 80px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 48px 32px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    will-change: transform, box-shadow, filter;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.process-step:hover {
    transform: translateY(-8px) scale(1.02) perspective(1000px) rotateX(1deg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(200%) blur(35px);
    -webkit-backdrop-filter: saturate(200%) blur(35px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 
                0 0 0 1px rgba(255, 255, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 113, 227, 0.3);
    filter: brightness(1.02);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.process-step:hover::before {
    opacity: 1;
}

.step-number {
    animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.process-step:nth-child(1) .step-number { animation-delay: 0.2s; }
.process-step:nth-child(2) .step-number { animation-delay: 0.3s; }
.process-step:nth-child(3) .step-number { animation-delay: 0.4s; }
.process-step:nth-child(4) .step-number { animation-delay: 0.5s; }

.step-number {
    font-size: 64px;
    font-weight: 700;
    color: #0071e3;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.step-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
    letter-spacing: -0.6px;
    line-height: 1.2;
}

.step-content p {
    font-size: 19px;
    color: #86868b;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.011em;
}

.process-step:hover .step-number {
    opacity: 0.25;
    color: #00d4ff;
}

.process-step:hover .step-content h3 {
    color: #0071e3;
}

/* References Page Section */
.references-page-hero,
.contact-page-hero {
    padding: 140px 22px 80px;
    background: #ffffff;
    text-align: center;
}

.page-title {
    font-size: 80px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 20px;
    color: #1d1d1f;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-subtitle {
    font-size: 28px;
    color: #86868b;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 0.011em;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    max-width: 680px;
    margin: 0 auto;
}

/* Yaptığımız internet siteleri – hero blokları */
.website-refs-hero-section {
    display: none;
    padding: 64px 22px 80px;
    background: #f5f5f7;
}
.website-refs-hero-section:not(:empty) {
    display: block;
}
.website-refs-hero-title {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -1px;
    color: #1d1d1f;
    margin-bottom: 12px;
    text-align: center;
}
.website-refs-hero-subtitle {
    font-size: 20px;
    color: #86868b;
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.4;
}
.website-refs-hero-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}
.website-ref-hero-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    min-height: 320px;
}
.website-ref-hero-block--reverse .website-ref-hero-content { order: 2; }
.website-ref-hero-block--reverse .website-ref-hero-image { order: 1; }
.website-ref-hero-content {
    padding: 48px 40px;
}
.website-ref-hero-client {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0071e3;
    margin-bottom: 12px;
}
.website-ref-hero-heading {
    font-size: 28px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.website-ref-hero-desc {
    font-size: 17px;
    color: #515154;
    line-height: 1.5;
    margin-bottom: 24px;
}
.website-ref-hero-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.website-ref-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.35);
}
.website-ref-hero-image {
    height: 100%;
    min-height: 280px;
    background: #f5f5f7;
}
.website-ref-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.references {
    background: var(--bg-secondary);
}

.references-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 64px;
    padding: 0 22px;
}

.category-btn {
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    color: #1d1d1f;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.category-btn:nth-child(1) { animation-delay: 0.05s; }
.category-btn:nth-child(2) { animation-delay: 0.1s; }
.category-btn:nth-child(3) { animation-delay: 0.15s; }
.category-btn:nth-child(4) { animation-delay: 0.2s; }
.category-btn:nth-child(5) { animation-delay: 0.25s; }
.category-btn:nth-child(6) { animation-delay: 0.3s; }

.category-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 113, 227, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.category-btn:active::before {
    width: 200px;
    height: 200px;
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(200%) blur(25px);
    -webkit-backdrop-filter: saturate(200%) blur(25px);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.category-btn.active {
    background: #0071e3;
    color: white;
    border-color: #0071e3;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
    animation: scaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-btn.active:hover {
    background: #0077ed;
    border-color: #0077ed;
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 113, 227, 0.4);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 0;
}

.reference-logo-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 40px 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 1;
    transform: translateY(0) scale(1);
    will-change: transform, opacity;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.reference-logo-item:hover {
    transform: translateY(-6px) scale(1.03);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(200%) blur(30px);
    -webkit-backdrop-filter: saturate(200%) blur(30px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 113, 227, 0.3);
}

.reference-logo-item img {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reference-logo-item.hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.reference-logo-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

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

/* Text-based reference items */
.reference-text-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-text {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.6;
    filter: grayscale(100%);
    max-width: 100%;
    word-wrap: break-word;
    padding: 0 8px;
}

.reference-text-item:hover .reference-text {
    color: #1d1d1f;
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.reference-text-item:hover {
    filter: brightness(1.02);
}

/* Services Section – Apple-inspired premium */
.services {
    background: #fbfbfd;
    padding: 32px 22px 110px;
}

.services .section-title {
    color: #1d1d1f;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.services .section-subtitle {
    color: #86868b;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.011em;
    line-height: 1.5;
    margin-bottom: 72px;
}

.service-main-product {
    margin-top: 0;
    margin-bottom: 56px;
}
.service-item-main {
    grid-column: 1 / -1;
    background: #ffffff;
    border: 1px solid #e5e5e7;
    padding: 40px 48px;
    border-radius: 14px;
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-item-main:hover {
    border-color: rgba(0, 113, 227, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.service-item-main .service-icon svg {
    stroke: #0071e3;
}
.service-item-main h3 {
    font-size: 1.35em;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.service-main-platforms {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #86868b;
    letter-spacing: 0.02em;
    margin-top: 8px;
    margin-bottom: 12px;
}
.service-main-platforms .platforms-more {
    color: #a1a1a6;
    font-weight: 400;
}
.service-item-main p {
    font-size: 17px;
    color: #515154;
    letter-spacing: 0.011em;
}
.services-extras-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    color: #86868b;
    margin-bottom: 24px;
    margin-top: 48px;
    text-align: center;
}

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

.service-item {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 14px;
    text-align: left;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid #e5e5e7;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: none;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    position: relative;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }
.service-item:nth-child(7) { animation-delay: 0.7s; }

.service-item:hover {
    border-color: rgba(0, 113, 227, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.service-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.service-item:hover h3 {
    color: #1d1d1f;
}

.service-item p {
    font-size: 15px;
    color: #515154;
    line-height: 1.55;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.service-item:hover p {
    color: #424245;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: translateY(-1px);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    opacity: 0.85;
    transition: opacity 0.25s ease;
}

.service-icon svg path {
    stroke: #0071e3;
}

.service-item:hover .service-icon svg {
    opacity: 1;
}

/* Partners Section */
.partners {
    background: var(--bg-secondary);
    overflow: hidden;
}

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

.partners-title-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.partners-title {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.partners .gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #0071e3 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials .gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #0071e3 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-subtitle {
    color: var(--text-secondary);
    font-size: 19px;
    line-height: 1.5;
}

.partners-slider-wrapper {
    margin-top: 64px;
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.partners-slider {
    display: flex;
    gap: 80px;
    animation: slideInfinite 30s linear infinite;
    width: fit-content;
    align-items: center;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    filter: grayscale(100%);
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.partner-logo:nth-child(1) { animation-delay: 0.1s; }
.partner-logo:nth-child(2) { animation-delay: 0.2s; }
.partner-logo:nth-child(3) { animation-delay: 0.3s; }
.partner-logo:nth-child(4) { animation-delay: 0.4s; }
.partner-logo:nth-child(5) { animation-delay: 0.5s; }
.partner-logo:nth-child(6) { animation-delay: 0.6s; }

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1) translateY(-2px);
}

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

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

/* Testimonials Section */
.testimonials {
    background: #ffffff;
    padding: 100px 22px;
}

.testimonials .section-title {
    color: #1d1d1f;
}

.testimonials .section-subtitle {
    color: #86868b;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 48px 40px;
    border-radius: 20px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    will-change: transform, box-shadow, filter;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.testimonial-item:nth-child(1) { animation-delay: 0.1s; }
.testimonial-item:nth-child(2) { animation-delay: 0.2s; }
.testimonial-item:nth-child(3) { animation-delay: 0.3s; }

.testimonial-item:hover {
    transform: translateY(-8px) scale(1.02) perspective(1000px) rotateX(1deg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(200%) blur(35px);
    -webkit-backdrop-filter: saturate(200%) blur(35px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 
                0 0 0 1px rgba(255, 255, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 113, 227, 0.25);
    filter: brightness(1.02);
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.testimonial-item:hover::before {
    opacity: 1;
}

.testimonial-quote {
    font-size: 64px;
    font-weight: 700;
    color: #0071e3;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 24px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 19px;
    color: #515154;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 32px;
    letter-spacing: 0.011em;
}

.testimonial-author {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 24px;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.author-title {
    font-size: 15px;
    color: #86868b;
    font-weight: 400;
}

/* FAQ Section */
.faq {
    background: #ffffff;
    padding: 100px 22px;
}

.faq-list {
    max-width: 1200px;
    margin: 80px auto 0;
    width: 100%;
}

.faq-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-item:nth-child(4) { animation-delay: 0.2s; }
.faq-item:nth-child(5) { animation-delay: 0.25s; }
.faq-item:nth-child(6) { animation-delay: 0.3s; }

.faq-item:hover {
    border-color: rgba(0, 113, 227, 0.25);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(200%) blur(25px);
    -webkit-backdrop-filter: saturate(200%) blur(25px);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.faq-question {
    padding: 32px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f7;
}

.faq-question h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.5px;
    line-height: 1.3;
    margin: 0;
}

.faq-toggle {
    font-size: 32px;
    font-weight: 300;
    color: #0071e3;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    margin-left: 24px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 48px;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 48px 32px;
}

.faq-answer p {
    font-size: 17px;
    color: #515154;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.011em;
}

/* Sector Solution Pages */
.sector-solution-page { background: #fbfbfd; }
.sector-hero {
    padding: 120px 22px 80px;
    text-align: center;
    background: #fbfbfd;
}
.sector-hero .page-title { font-size: 48px; font-weight: 700; color: #1d1d1f; margin-bottom: 16px; letter-spacing: -0.02em; }
.sector-hero .page-subtitle { font-size: 22px; color: #515154; max-width: 640px; margin: 0 auto 32px; line-height: 1.5; }
.sector-hero .btn { margin-top: 8px; }
.sector-section {
    padding: 80px 22px;
    max-width: 1000px;
    margin: 0 auto;
}
.sector-section.alt { background: #fff; }
.sector-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.sector-section p, .sector-section li { font-size: 17px; color: #515154; line-height: 1.6; margin-bottom: 16px; }
.sector-section ul { margin: 0 0 24px 0; padding-left: 24px; }
.sector-section ul li { margin-bottom: 8px; }
.sector-solution-list { list-style: none; padding-left: 0; }
.sector-solution-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
}
.sector-solution-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0071e3;
}
.sector-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}
@media (max-width: 768px) {
    .sector-steps { grid-template-columns: 1fr; }
}
.sector-step {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.sector-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0071e3;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}
.sector-step h3 { font-size: 18px; font-weight: 600; color: #1d1d1f; margin-bottom: 8px; }
.sector-step p { font-size: 15px; color: #515154; margin: 0; line-height: 1.5; }
.sector-cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
@media (max-width: 768px) {
    .sector-cases { grid-template-columns: 1fr; }
}
.sector-case-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.sector-case-card h3 { font-size: 18px; font-weight: 600; color: #1d1d1f; margin-bottom: 8px; }
.sector-case-card .metric { font-size: 24px; font-weight: 700; color: #0071e3; margin: 12px 0 8px; }
.sector-case-card p { font-size: 15px; color: #515154; margin: 0; line-height: 1.5; }
.sector-faq { padding: 80px 22px; background: #fff; }
.sector-faq .section-container { max-width: 800px; margin: 0 auto; }
.sector-faq .section-title { font-size: 36px; margin-bottom: 40px; }
.sector-form-section {
    padding: 80px 22px;
    background: #f5f5f7;
}
.sector-form-section .section-container { max-width: 600px; margin: 0 auto; }
.sector-form-section h2 { font-size: 28px; margin-bottom: 24px; }
.sector-form-section .form-group { margin-bottom: 20px; }
.sector-form-section input,
.sector-form-section textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
}
.sector-form-section textarea { min-height: 100px; resize: vertical; }
.sector-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}
.sector-form-actions .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
    border-radius: 980px;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #0071e3 0%, #00d4ff 100%);
    padding: 120px 22px;
    text-align: center;
}

.cta-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #ffffff;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-subtitle {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 0.011em;
    margin-bottom: 48px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .btn-primary {
    background: #ffffff;
    color: #0071e3;
    font-size: 19px;
    padding: 16px 40px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.final-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
}

.contact-form {
    max-width: 100%;
    margin: 0 auto;
    margin-top: 48px;
    width: 100%;
}

.contact-form-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:active {
    transform: translateY(0);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 17px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(200%) blur(15px);
    -webkit-backdrop-filter: saturate(200%) blur(15px);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.form-group input:required:invalid:not(:placeholder-shown),
.form-group textarea:required:invalid:not(:placeholder-shown) {
    border-color: #ff3b30;
    box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.1);
}

.form-group input:required:valid,
.form-group textarea:required:valid {
    border-color: #34c759;
}


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

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23515154' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
    cursor: pointer;
}

.form-group select:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.form-group select option {
    padding: 12px;
    font-size: 17px;
    color: var(--text-primary);
}

.form-group select optgroup {
    font-weight: 600;
    color: #1d1d1f;
    padding: 8px 0;
}

/* Contact Page Styles */
.contact-page-content {
    background: var(--bg-secondary);
    padding: 80px 22px;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 44px;
    align-items: start;
}

.contact-info-section,
.contact-form-section {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideInFromRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    text-align: center;
}

.contact-section-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: #1d1d1f;
    text-align: center;
}

.contact-section-text {
    font-size: 19px;
    color: #86868b;
    line-height: 1.5;
    margin-bottom: 40px;
    text-align: center;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
    align-items: center;
    max-width: 100%;
}

.contact-info-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px;
    background: rgba(245, 245, 247, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(200%) blur(30px);
    -webkit-backdrop-filter: saturate(200%) blur(30px);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 113, 227, 0.1);
    border-radius: 12px;
    color: #0071e3;
}

.contact-info-content {
    text-align: center;
    flex: 1;
}

.contact-info-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
    text-align: center;
}

.contact-info-content p {
    font-size: 17px;
    color: #515154;
    margin: 0;
    text-align: center;
}

.contact-info-content a {
    color: #0071e3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-content a:hover {
    color: #0077ed;
    text-decoration: underline;
}

.contact-hours {
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 113, 227, 0.1);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.contact-hours h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
    text-align: center;
}

.contact-hours p {
    font-size: 17px;
    color: #515154;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.contact-form-section .contact-form {
    max-width: 100%;
    margin-top: 0;
}

/* Form Message Styles */
.form-message {
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease;
    transition: all 0.3s ease;
}

.form-message-success {
    background: rgba(52, 199, 89, 0.1);
    color: #34c759;
    border: 1px solid rgba(52, 199, 89, 0.3);
}

.form-message-error {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 22px;
    background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
}

.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 44px;
}

.thank-you-content {
    text-align: center;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.thank-you-icon {
    margin-bottom: 40px;
    animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.thank-you-icon svg {
    animation: float 3s ease-in-out infinite;
}

.thank-you-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.thank-you-message {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
    font-weight: 400;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.thank-you-submessage {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.8;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.thank-you-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.thank-you-actions .btn {
    min-width: 200px;
}

@media (max-width: 968px) {
    .thank-you-section {
        padding: 60px 22px;
        justify-content: center;
    }
    
    .thank-you-container {
        padding: 0 22px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .thank-you-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .thank-you-title {
        font-size: 48px;
    }
    
    .thank-you-message {
        font-size: 20px;
    }
    
    .thank-you-submessage {
        font-size: 16px;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 320px;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .thank-you-icon {
        margin-bottom: 32px;
    }
    
    .thank-you-icon svg {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 640px) {
    .thank-you-section {
        padding: 60px 16px;
    }
    
    .thank-you-container {
        padding: 0 16px;
    }
    
    .thank-you-title {
        font-size: 36px;
    }
    
    .thank-you-message {
        font-size: 18px;
    }
    
    .thank-you-submessage {
        font-size: 15px;
    }
    
    .thank-you-actions {
        max-width: 100%;
    }
}

@media (max-width: 968px) {
    .contact-page-hero {
        padding-left: 12px;
        padding-right: 12px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .contact-page-hero .section-container {
        width: 100%;
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }

    .contact-page-content {
        padding-left: 12px;
        padding-right: 12px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .contact-page-content .section-container {
        width: 100%;
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 32px 24px;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-section-title {
        font-size: 28px;
    }
    
    .contact-section-text {
        font-size: 17px;
    }

    .contact-info-cards,
    .contact-info-card,
    .contact-hours {
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-info-content p,
    .contact-info-content a {
        font-size: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }
}

@media (max-width: 640px) {
    .contact-page-hero {
        padding: 100px 12px 60px;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-page-content {
        padding: 60px 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 24px 16px;
        min-width: 0;
        max-width: 100%;
    }
    
    .contact-section-title {
        font-size: 24px;
    }
    
    .contact-form-actions {
        flex-direction: column;
    }
    
    .contact-form-actions .btn {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .contact-info-icon {
        margin: 0 auto;
    }

    .contact-info-content p,
    .contact-info-content a {
        font-size: 14px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .contact-page-content .contact-form input,
    .contact-page-content .contact-form textarea,
    .contact-page-content .contact-form .form-group {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 22px 32px;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 44px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column-main {
    max-width: 100%;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    max-width: 200px;
    filter: brightness(0) invert(1);
    object-fit: contain;
    object-position: left center;
    display: block;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 0.8;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.footer-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 24px;
}

.footer-heading {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
    width: 100%;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.footer-contact li {
    margin: 0;
}

.footer-contact li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #ffffff;
}

.footer-contact svg {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-contact li a:hover svg {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer ödeme logoları */
.footer-payment-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 24px 0;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-payment-logos span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 4px;
}

.footer-payment-logos .footer-payment-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-payment-logos .footer-payment-item img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-payment-logos .footer-iyzico {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 0 4px;
}

.footer-legal-links a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

/* Legal Content Pages */
.legal-content {
    background: #ffffff;
    padding: 80px 22px;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    color: #1d1d1f;
}

.legal-text h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1d1d1f;
    margin-top: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    font-size: 17px;
    color: #515154;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 400;
}

.legal-text ul {
    margin: 24px 0;
    padding-left: 24px;
}

.legal-text li {
    font-size: 17px;
    color: #515154;
    line-height: 1.6;
    margin-bottom: 12px;
}

.legal-text a {
    color: #0071e3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-text a:hover {
    color: #0077ed;
    text-decoration: underline;
}

.legal-update {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 15px;
    color: #86868b;
    font-style: italic;
}

/* Service Pages */
.service-hero {
    padding: 180px 44px 120px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Hero Icons - Her hizmet için farklı renk */
.hizmetler-dijital-reklam .service-hero-icon {
    background: rgba(0, 113, 227, 0.2);
}

.hizmetler-dijital-reklam .service-hero-icon svg path {
    stroke: #0071e3;
    fill: rgba(0, 113, 227, 0.1);
}

.hizmetler-sosyal-medya .service-hero-icon {
    background: rgba(255, 59, 48, 0.2);
}

.hizmetler-sosyal-medya .service-hero-icon svg path {
    stroke: #FF3B30;
    fill: rgba(255, 59, 48, 0.1);
}

/* Medya Planlama - Dark Accent */
.hizmetler-medya-planlama .service-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f7 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hizmetler-medya-planlama .service-hero-title {
    color: #1d1d1f !important;
}

.hizmetler-medya-planlama .service-hero-subtitle {
    color: #515154 !important;
}

/* SEO - Minimal with Accent */
.hizmetler-seo .service-hero {
    background: #ffffff;
}

.hizmetler-seo .service-hero-title {
    background: linear-gradient(135deg, #0071e3 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hizmetler-seo .service-hero-subtitle {
    color: #515154 !important;
}

.hizmetler-seo .service-intro-text {
    color: #1d1d1f !important;
}

.hizmetler-seo .subservice-item-content h3 {
    color: #1d1d1f !important;
}

.hizmetler-seo .subservice-item-content p {
    color: #515154 !important;
}

.hizmetler-seo .section-title {
    color: #1d1d1f !important;
}

.hizmetler-seo .cta-title {
    color: #1d1d1f !important;
}

.hizmetler-seo .cta-subtitle {
    color: #515154 !important;
}

/* Prodüksiyon - Creative Background */
.hizmetler-produksiyon .service-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 113, 227, 0.03) 100%);
}

.hizmetler-produksiyon .service-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hizmetler-produksiyon .service-hero-title {
    color: #1d1d1f !important;
}

.hizmetler-produksiyon .service-hero-subtitle {
    color: #515154 !important;
}

.hizmetler-produksiyon .service-intro-text {
    color: #1d1d1f !important;
}

.hizmetler-produksiyon .subservice-item-content h3 {
    color: #1d1d1f !important;
}

.hizmetler-produksiyon .subservice-item-content p {
    color: #515154 !important;
}

.hizmetler-produksiyon .section-title {
    color: #1d1d1f !important;
}

.hizmetler-produksiyon .cta-title {
    color: #1d1d1f !important;
}

.hizmetler-produksiyon .cta-subtitle {
    color: #515154 !important;
}

.hizmetler-produksiyon .subservice-link {
    color: #0071e3 !important;
}

/* Kreatif - Text Color Fixes */
.hizmetler-kreatif .service-hero-title {
    color: #1d1d1f !important;
}

.hizmetler-kreatif .service-hero-subtitle {
    color: #515154 !important;
}

.hizmetler-kreatif .service-intro-text {
    color: #1d1d1f !important;
}

.hizmetler-kreatif .subservice-item-content h3 {
    color: #1d1d1f !important;
}

.hizmetler-kreatif .subservice-item-content p {
    color: #515154 !important;
}

.hizmetler-kreatif .section-title {
    color: #1d1d1f !important;
}

.hizmetler-kreatif .cta-title {
    color: #1d1d1f !important;
}

.hizmetler-kreatif .cta-subtitle {
    color: #515154 !important;
}

.hizmetler-kreatif .subservice-link {
    color: #0071e3 !important;
}

/* Yazılım - Text Color Fixes */
.hizmetler-yazilim .service-hero-title {
    color: #1d1d1f !important;
}

.hizmetler-yazilim .service-hero-subtitle {
    color: #515154 !important;
}

.hizmetler-yazilim .service-intro-text {
    color: #1d1d1f !important;
}

.hizmetler-yazilim .subservice-item-content h3 {
    color: #1d1d1f !important;
}

.hizmetler-yazilim .subservice-item-content p {
    color: #515154 !important;
}

.hizmetler-yazilim .section-title {
    color: #1d1d1f !important;
}

.hizmetler-yazilim .cta-title {
    color: #1d1d1f !important;
}

.hizmetler-yazilim .cta-subtitle {
    color: #515154 !important;
}

.hizmetler-yazilim .subservice-link {
    color: #0071e3 !important;
}

/* Kreatif - Colorful Gradient */
.hizmetler-kreatif .service-hero {
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.04) 0%, rgba(0, 212, 255, 0.06) 50%, rgba(255, 59, 48, 0.03) 100%);
}

/* Yazılım - Tech Pattern */
.hizmetler-yazilim .service-hero {
    background: #f5f5f7;
}

.hizmetler-yazilim .service-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(0, 113, 227, 0.03) 49%, rgba(0, 113, 227, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 212, 255, 0.03) 49%, rgba(0, 212, 255, 0.03) 51%, transparent 52%);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.service-hero-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-hero-icon svg {
    width: 64px;
    height: 64px;
}

.service-hero-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -3px;
    margin-bottom: 24px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.service-hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.011em;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-content {
    padding: 100px 44px;
}

.service-content .section-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 44px;
    box-sizing: border-box;
}

.service-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.service-intro-text {
    font-size: 21px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.011em;
}

.service-subservices {
    margin-top: 80px;
}

.subservice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    grid-auto-rows: auto;
    align-items: start;
}

.subservice-item {
    background: var(--bg-primary);
    padding: 40px 32px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-sizing: border-box;
    min-width: 0;
    width: 100%;
    flex-direction: row;
}

.subservice-item-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: rgba(0, 113, 227, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.subservice-item-icon svg {
    width: 40px;
    height: 40px;
}

.subservice-item-content {
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    width: 100%;
    word-wrap: break-word;
    display: block;
    width: 100%;
}

.subservice-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
}

.subservice-item p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
}

.subservice-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.subservice-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 113, 227, 0.08);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #0071e3;
    transition: all 0.3s ease;
}

.subservice-feature-pill svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Dijital Reklam - Gradient Border on Hover */
.hizmetler-dijital-reklam .subservice-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 113, 227, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #0071e3, #00d4ff) border-box;
    border: 2px solid transparent;
}

/* Sosyal Medya - Soft Shadow */
.hizmetler-sosyal-medya .subservice-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.hizmetler-sosyal-medya .subservice-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 113, 227, 0.12);
    border-color: rgba(0, 113, 227, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

/* Medya Planlama - Minimal with Accent */
.hizmetler-medya-planlama .subservice-item {
    border-left: 3px solid transparent;
}

.hizmetler-medya-planlama .subservice-item:hover {
    transform: translateY(-4px);
    border-left-color: #0071e3;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

/* SEO - Icon Style */
.hizmetler-seo .subservice-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, #0071e3, #00d4ff);
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hizmetler-seo .subservice-item:hover::before {
    height: 100%;
}

.hizmetler-seo .subservice-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 113, 227, 0.12);
    border-color: var(--primary-color);
}

/* Prodüksiyon - Creative Border */
.hizmetler-produksiyon .subservice-item {
    border: 2px solid transparent;
    background-clip: padding-box;
}

.hizmetler-produksiyon .subservice-item::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #0071e3, #00d4ff, #0071e3);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hizmetler-produksiyon .subservice-item:hover::after {
    opacity: 1;
}

.hizmetler-produksiyon .subservice-item:hover {
    transform: translateY(-4px) rotate(0.5deg);
    box-shadow: 0 16px 48px rgba(0, 113, 227, 0.15);
}

/* Kreatif - Colorful Gradient */
.hizmetler-kreatif .subservice-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.hizmetler-kreatif .subservice-item:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    box-shadow: 0 12px 40px rgba(0, 113, 227, 0.12);
    border-color: rgba(0, 113, 227, 0.3);
}

.hizmetler-kreatif .subservice-item-content {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

.hizmetler-kreatif .subservice-item-content h3 {
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    width: 100% !important;
    display: block !important;
}

.hizmetler-kreatif .subservice-item-content p {
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    width: 100% !important;
    display: block !important;
}

/* Yazılım - Tech Style */
.hizmetler-yazilim .subservice-item {
    background: #fafafa;
    border: 1px solid #e5e5e7;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.hizmetler-yazilim .subservice-item:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: #0071e3;
    box-shadow: 0 12px 40px rgba(0, 113, 227, 0.1), inset 0 0 0 1px rgba(0, 113, 227, 0.1);
}

.hizmetler-yazilim .subservice-item-content {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

.hizmetler-yazilim .subservice-item-content h3 {
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    width: 100% !important;
    display: block !important;
}

.hizmetler-yazilim .subservice-item-content p {
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    width: 100% !important;
    display: block !important;
}

.subservice-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.subservice-item p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 400;
}

.subservice-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
}

.subservice-link:hover {
    color: var(--primary-hover);
    transform: translateX(4px);
}

.service-cta {
    background: linear-gradient(135deg, #0071e3 0%, #00d4ff 100%);
    padding: 100px 22px;
    text-align: center;
}

/* Service Detail Pages */
.service-detail-page {
    background: #ffffff;
}

.service-detail-hero {
    padding: 160px 44px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.05) 0%, rgba(0, 212, 255, 0.03) 100%);
}

.service-detail-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 113, 227, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.service-detail-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.service-detail-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.service-detail-breadcrumb a:hover {
    opacity: 0.7;
}

.service-detail-breadcrumb span {
    color: var(--text-secondary);
    opacity: 0.5;
}

.service-detail-title {
    font-size: 80px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -3px;
    margin-bottom: 24px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.service-detail-subtitle {
    font-size: 28px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.011em;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.service-detail-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.badge {
    padding: 8px 20px;
    background: rgba(0, 113, 227, 0.1);
    border: 1px solid rgba(0, 113, 227, 0.2);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #0071e3;
    backdrop-filter: blur(10px);
}

.service-detail-content {
    padding: 100px 44px;
}

.service-detail-main {
    max-width: 900px;
    margin-right: 60px;
}

.service-detail-section {
    margin-bottom: 60px;
}

.service-detail-section h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.service-detail-section p {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.011em;
}

.service-detail-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 60px 0;
}

.feature-card {
    background: var(--bg-primary);
    padding: 40px 32px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 113, 227, 0.12);
    border-color: var(--primary-color);
}

.feature-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-list-item {
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.service-list-item h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.service-list-item p {
    font-size: 17px;
    color: #515154;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.service-detail-sidebar {
    width: 360px;
    flex-shrink: 0;
}

.sidebar-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 24px;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.sidebar-card.cta-card {
    background: linear-gradient(135deg, #0071e3 0%, #00d4ff 100%);
    color: white;
    border: none;
}

.sidebar-card.cta-card h3 {
    color: white;
}

.sidebar-card.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 24px;
}

.service-detail-content .section-container {
    display: flex;
    align-items: flex-start;
}

.service-detail-cta {
    background: linear-gradient(135deg, #0071e3 0%, #00d4ff 100%);
    padding: 120px 44px;
    text-align: center;
}

.service-detail-cta h2 {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #ffffff;
}

.service-detail-cta p {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Service Detail Page Visual Enhancements */
.service-detail-hero {
    position: relative;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 113, 227, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.service-detail-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
    z-index: 0;
}

.service-detail-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0071e3, #00d4ff);
    border-radius: 2px;
    margin-top: 16px;
}

.service-list-item {
    position: relative;
    overflow: hidden;
}

.service-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #0071e3, #00d4ff);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-list-item:hover::before {
    transform: scaleY(1);
}

.service-list-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.1);
}

/* Enhanced Visual Elements for Detail Pages */
.service-detail-features {
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

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

.sidebar-card {
    position: relative;
    overflow: hidden;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0071e3, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sidebar-card:hover::before {
    transform: scaleX(1);
}

.service-detail-badges .badge {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.service-detail-badges .badge:nth-child(1) {
    animation-delay: 0.1s;
}

.service-detail-badges .badge:nth-child(2) {
    animation-delay: 0.2s;
}

.service-detail-badges .badge:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsive Design - Mobil genişlik, yatay kaydırma kapalı */
@media (max-width: 968px) {
    /* Mobilde yatay kaydırma tamamen kapalı - site %100 sığar */
    .navbar,
    main,
    .footer,
    .presentation-section,
    .final-cta,
    section {
        overflow-x: hidden;
        max-width: 100%;
    }

    .nav-container {
        max-width: 100%;
    }

    .references-slider-wrapper,
    .partners-slider-wrapper {
        overflow-x: clip;
    }

    .partners {
        overflow-x: clip;
    }

    .service-hero,
    .service-content {
        overflow-x: hidden;
    }

    .hizmetler-produksiyon .service-hero::before {
        width: 200px;
        height: 200px;
        right: -10%;
        top: -20%;
    }

    .mega-menu-content {
        min-width: 0;
        max-width: 100%;
    }

    /* Mobilde tam genişlik - yanlardan çok az boşluk (12px) */
    .section-container {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }

    main {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    section {
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }

    .presentation-section,
    .final-cta {
        padding-left: 0;
        padding-right: 0;
    }

    .nav-container {
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }

    body {
        font-size: 17px;
        line-height: 1.6;
    }

    .hero {
        min-height: 100vh;
        align-items: center;
        justify-content: center;
        padding-top: 88px;
        padding-bottom: 0;
    }

    .hero-content-centered {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }

    .hero-title-label {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .hero-title-main {
        font-size: clamp(44px, 11vw, 80px);
        letter-spacing: -0.03em;
    }

    .hero-subtitle {
        font-size: 21px;
        letter-spacing: 0.009em;
    }
    
    .hero-tagline {
        font-size: 17px;
        margin-bottom: 28px;
    }

    .references-categories {
        gap: 8px;
        padding-left: 0;
        padding-right: 0;
    }

    .category-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .reference-logo-item {
        padding: 32px 24px;
        min-height: 100px;
    }

    .website-refs-hero-section {
        padding: 40px 12px 56px;
    }
    .website-refs-hero-title {
        font-size: 28px;
    }
    .website-refs-hero-subtitle {
        font-size: 17px;
        margin-bottom: 32px;
    }
    .website-ref-hero-block {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: 0;
    }
    .website-ref-hero-block--reverse .website-ref-hero-content,
    .website-ref-hero-block--reverse .website-ref-hero-image {
        order: unset;
    }
    .website-ref-hero-image {
        min-height: 220px;
    }
    .website-ref-hero-content {
        padding: 28px 20px;
    }
    .website-ref-hero-heading {
        font-size: 22px;
    }
    .website-ref-hero-desc {
        font-size: 15px;
    }

    .problem-solution {
        padding: 60px 0;
    }

    .problem-solution .section-title {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .problem-solution .section-subtitle {
        font-size: 17px;
        line-height: 1.5;
    }

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

    .why-item {
        padding: 48px 32px;
    }

    .why-item h3 {
        font-size: 24px;
    }

    .why-item p {
        font-size: 18px;
    }

    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonial-item {
        padding: 40px 32px;
    }

    .faq-question {
        padding: 24px 32px;
    }

    .faq-question h3 {
        font-size: 20px;
    }

    .faq-answer {
        padding: 0 32px;
    }

    .faq-answer p {
        font-size: 17px;
        line-height: 1.6;
    }

    .faq-item.active .faq-answer {
        padding: 0 32px 24px;
    }

    .cta-title {
        font-size: 48px;
        letter-spacing: -1.5px;
    }

    .cta-subtitle {
        font-size: 22px;
    }

    .references-slider {
        padding: 80px 0;
        overflow-x: hidden;
    }

    .references-slider-wrapper {
        overflow-x: hidden;
        margin-top: 48px;
        padding: 30px 0;
    }

    .references-slider-track {
        gap: 60px;
    }

    .reference-slide-item {
        height: 50px;
        padding: 0 15px;
    }

    .reference-slide-item img {
        max-width: 140px;
    }

    .page-title {
        font-size: 56px;
        letter-spacing: -2px;
    }

    .page-subtitle {
        font-size: 18px;
        line-height: 1.5;
    }

    .footer {
        padding: 48px 0 24px;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-container {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: start;
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .footer-column {
        align-items: flex-start;
        width: 100%;
        min-width: 0;
    }

    .footer-column-main {
        grid-column: 1;
        max-width: 100%;
    }

    .footer-heading {
        margin-bottom: 12px;
        font-size: 16px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .footer-contact {
        gap: 12px;
    }

    .footer-contact li a span {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-column-main .footer-social {
        margin-top: 0;
    }
    
    .footer-logo-img {
        height: 80px;
        max-width: 150px;
    }

    .footer-bottom {
        padding-top: 24px;
        padding-left: 0;
        padding-right: 0;
    }

    .footer-legal-links {
        justify-content: flex-start;
        text-align: left;
    }

    .subservice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-hero {
        padding: 140px 0 80px;
        min-height: 60vh;
    }

    .service-hero-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 32px;
    }

    .service-hero-icon svg {
        width: 56px;
        height: 56px;
    }

    .service-hero-title {
        font-size: 56px;
        letter-spacing: -2px;
    }

    .service-hero-subtitle {
        font-size: 18px;
        line-height: 1.5;
    }

    .subservice-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .subservice-item-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }

    .subservice-item-icon svg {
        width: 32px;
        height: 32px;
    }

    .service-content {
        padding: 80px 0;
    }

    .service-content .section-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .mega-menu-content {
        min-width: 90%;
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 32px 24px;
    }

    .service-detail-hero {
        padding-left: 0;
        padding-right: 0;
    }

    .service-detail-content {
        padding: 80px 0;
    }

    .service-detail-content .section-container {
        flex-direction: column;
        padding-left: 12px;
        padding-right: 12px;
    }

    .service-detail-main {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .service-detail-sidebar {
        width: 100%;
    }

    .service-detail-features {
        grid-template-columns: 1fr;
    }

    .service-detail-title {
        font-size: 56px;
        letter-spacing: -2px;
    }

    .service-detail-subtitle {
        font-size: 18px;
        line-height: 1.5;
    }

    .services {
        padding: 60px 0;
    }

    .services .section-title {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .services .section-subtitle {
        font-size: 17px;
        line-height: 1.5;
    }

    .service-item-main {
        padding: 32px 24px;
    }

    .service-item-main h3 {
        font-size: 1.1em;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, auto);
        gap: 12px;
        margin-top: 40px;
    }

    .service-item {
        padding: 28px 18px;
        border-radius: 12px;
        border: 1px solid #e5e5e7;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        min-height: 0;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }

    .service-item h3 {
        font-size: 18px;
        line-height: 1.35;
        margin-bottom: 10px;
    }

    .service-item p {
        font-size: 15px;
        line-height: 1.55;
        flex: 1;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    .service-icon svg {
        width: 100%;
        height: 100%;
    }

    .process {
        padding: 80px 0;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-step {
        padding: 40px 28px;
    }

    .step-number {
        font-size: 56px;
    }

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

    .step-content p {
        font-size: 17px;
    }

    .section-title {
        font-size: 42px;
    }

    .section-subtitle {
        font-size: 22px;
    }

    
    .nav-menu {
        position: fixed !important;
        top: 68px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: saturate(180%) blur(20px) !important;
        -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
        flex-direction: column !important;
        padding: 32px 22px !important;
        gap: 0 !important;
        border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
        transform: translateY(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease !important;
        pointer-events: none !important;
        height: calc(100vh - 68px) !important;
        max-height: calc(100vh - 68px) !important;
        min-height: calc(100vh - 68px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        z-index: 1004 !important;
        -webkit-overflow-scrolling: touch !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
    }

    .nav-menu.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        z-index: 1004 !important;
    }

    /* Menü açıkken logo ve kapat butonu her zaman üstte */
    body.menu-open .nav-container .logo,
    body.menu-open .nav-container .menu-toggle {
        z-index: 1005 !important;
        position: relative !important;
    }

    /* Menü açıkken navbar overflow ile menüyü kesmesin */
    body.menu-open .navbar {
        overflow: visible !important;
    }

    /* Mobil menü içeriğinin mutlaka görünmesi */
    .nav-menu.active > li {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: 44px !important;
    }
    .nav-menu.active > li > a {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #1d1d1f !important;
    }

    .nav-menu > li {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        min-height: 44px !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        display: block !important;
        flex-shrink: 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
        box-sizing: border-box !important;
    }

    .nav-menu > li:last-child {
        border-bottom: none !important;
    }

    .nav-menu > li.mobile-language-selector {
        display: block !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
        margin-top: 16px !important;
        padding-top: 16px !important;
    }
    
    /* Mobilde mobil dil seçiciyi göster */
    .mobile-language-selector {
        display: block !important;
    }

    .nav-menu.active > li {
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
        display: block !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .nav-menu > li > a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        padding: 18px 22px !important;
        font-size: 18px !important;
        font-weight: 500 !important;
        color: #1d1d1f !important;
        border-radius: 12px !important;
        transition: all 0.2s ease !important;
        background: transparent !important;
        text-decoration: none !important;
        margin: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        box-sizing: border-box !important;
        text-align: center !important;
        position: relative !important;
    }

    /* Dropdown: solda metin, sağda ok; sağ yarıya tıklayınca alt menü açılır */
    .nav-menu > li > a.dropdown-toggle {
        justify-content: space-between !important;
        text-align: left !important;
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    .nav-menu > li > a.dropdown-toggle .dropdown-arrow {
        position: static !important;
        margin-left: auto !important;
        padding: 8px 12px !important;
        margin-right: -12px !important;
    }

    .nav-menu > li > a:hover,
    .nav-menu > li > a:active {
        background: rgba(0, 113, 227, 0.08) !important;
        color: #0071e3 !important;
    }

    .nav-menu > li > a::after {
        display: none !important;
    }
    
    /* Mobil menü açıkken tüm sayfa içeriğini gizle */
    body.menu-open main,
    body.menu-open .hero,
    body.menu-open section {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: -1;
    }
    
    body.menu-open .hero-background,
    body.menu-open .hero-content-centered,
    body.menu-open .hero-title,
    body.menu-open .hero-subtitle,
    body.menu-open .hero-tagline {
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    /* Mobil menü açıkken body scroll'u engelle */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    /* Navbar'ı her zaman üstte tut */
    .navbar {
        z-index: 1002 !important;
        position: relative;
    }

    .nav-container {
        position: relative;
        z-index: 1003;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 22px !important;
        justify-content: space-between !important;
    }

    /* Menü açıkken nav-container'ı tam genişlik yap */
    body.menu-open .nav-container {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Menü açıkken navbar arka planı */
    body.menu-open .navbar {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        overflow: hidden !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin-top: 0 !important;
        min-width: auto !important;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, visibility 0.3s ease !important;
        display: block !important;
    }

    .nav-dropdown.active .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 70vh !important;
        padding: 12px 0 12px 20px !important;
        margin-top: 8px !important;
        display: block !important;
        overflow-y: auto !important;
        overflow-x: visible !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .dropdown-menu li {
        margin: 8px 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .dropdown-menu a {
        padding: 8px 0 !important;
        font-size: 14px !important;
        color: #515154 !important;
        text-decoration: none !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .dropdown-menu a:hover {
        color: #0071e3 !important;
    }

    /* Mobil Hizmetler: orijinal 7 link gizle, genişletilebilir alt menü göster */
    .nav-dropdown .dropdown-menu > .mobile-hizmetler-menu {
        display: block !important;
        margin-top: 0;
        padding: 0;
    }
    /* Sadece Hizmetler dropdown'ında (içinde .mobile-hizmetler-menu olan) li gizle; Paketler vb. görünsün */
    .nav-dropdown .dropdown-menu > li {
        display: block !important;
    }
    .nav-dropdown:has(.mobile-hizmetler-menu) .dropdown-menu > li {
        display: none !important;
    }
    .mobile-hizmetler-tum-link {
        display: block;
        padding: 14px 22px;
        font-size: 16px;
        font-weight: 600;
        color: #0071e3;
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    .mobile-hizmetler-tum-link:hover {
        background: rgba(0, 113, 227, 0.06);
    }
    .mobile-nav-category {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    .mobile-nav-category-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 22px;
        font-size: 16px;
        font-weight: 500;
        color: #1d1d1f;
        background: none;
        border: none;
        cursor: pointer;
        text-align: left;
        font-family: inherit;
    }
    .mobile-nav-category-btn:hover {
        background: rgba(0, 113, 227, 0.06);
    }
    .mobile-nav-category-arrow {
        font-size: 10px;
        opacity: 0.7;
        transition: transform 0.2s ease;
    }
    .mobile-nav-category.open .mobile-nav-category-arrow {
        transform: rotate(180deg);
    }
    .mobile-nav-category-items {
        list-style: none;
        margin: 0;
        padding: 0 0 8px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .mobile-nav-category.open .mobile-nav-category-items {
        max-height: 500px;
    }
    .mobile-nav-category-items li {
        margin: 0;
    }
    .mobile-nav-category-items a {
        display: block;
        padding: 10px 22px 10px 32px;
        font-size: 15px;
        color: #515154;
        text-decoration: none;
    }
    .mobile-nav-category-items a:hover {
        color: #0071e3;
        background: rgba(0, 113, 227, 0.05);
    }
    
    .submenu-panel {
        display: none !important;
    }
    
    .nav-actions {
        display: none;
    }

    /* Mobil menüde dil seçici */
    .mobile-language-selector {
        width: 100% !important;
        margin-top: 8px !important;
        padding-top: 16px !important;
        border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    }

    .mobile-language-selector .language-selector {
        width: 100% !important;
    }

    .mobile-language-selector .language-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 16px 20px !important;
        font-size: 18px !important;
        background: rgba(0, 113, 227, 0.08) !important;
        border: 1px solid rgba(0, 113, 227, 0.2) !important;
        border-radius: 12px !important;
    }

    .mobile-language-selector .language-dropdown {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin-top: 8px !important;
        background: white !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        z-index: 1001 !important;
    }

    .mobile-language-selector .language-option {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 16px 20px !important;
        font-size: 16px !important;
        color: #1d1d1f !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    .mobile-language-selector .language-option:last-child {
        border-bottom: none !important;
    }

    .mobile-language-selector .language-option:hover {
        background: rgba(0, 113, 227, 0.05) !important;
    }

    .mobile-language-selector .language-option.active {
        background: rgba(0, 113, 227, 0.1) !important;
        color: #0071e3 !important;
    }
    
    .nav-cta-btn {
        display: none;
    }
    
    .logo-img {
        height: 130px;
        max-width: 195px;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .logo {
        height: 68px;
    }
    
    .nav-container {
        height: 68px;
    }

    .menu-toggle {
        display: flex;
        z-index: 1003;
        position: relative;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .menu-toggle:focus,
    .menu-toggle:active,
    body.menu-open .menu-toggle {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    /* Dropdown arrow için mobil stil */
    .dropdown-arrow {
        margin-left: auto;
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Service Detail Pages - Mobile Fixes */
    .service-detail-content {
        padding: 60px 12px;
    }

    .service-detail-content .section-container {
        flex-direction: column;
    }

    .service-detail-main {
        width: 100%;
        max-width: 100%;
    }

    .service-detail-sidebar {
        width: 100%;
        margin-top: 40px;
    }

    .service-detail-features {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 40px 0;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .feature-icon {
        margin-bottom: 16px;
    }

    .feature-icon svg {
        width: 40px;
        height: 40px;
    }

    /* Subservice Grid - Mobile Fixes */
    .subservice-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .subservice-item {
        flex-direction: column;
        padding: 24px 20px;
        gap: 16px;
    }

    .subservice-item-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .subservice-item-content h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .subservice-item-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .service-list-item {
        padding: 24px 20px;
    }

    .service-list-item h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .service-list-item p {
        font-size: 14px;
        line-height: 1.5;
    }

    .sidebar-card {
        padding: 24px 20px;
        margin-bottom: 20px;
    }

    .sidebar-card h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .sidebar-list li {
        font-size: 14px;
        padding: 10px 0;
        padding-left: 20px;
    }

    .service-detail-hero {
        padding: 100px 12px 60px;
    }

    .service-detail-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .service-detail-subtitle {
        font-size: 18px;
        line-height: 1.4;
    }

    .service-detail-badges {
        flex-wrap: wrap;
        gap: 8px;
    }

    .badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .service-detail-cta {
        padding: 60px 12px;
    }

    .service-detail-cta h2 {
        font-size: 32px;
    }

    .service-detail-cta p {
        font-size: 18px;
    }
}

/* Presentation Section */
.presentation-section {
    background: #f5f5f7;
    padding: 100px 22px;
    text-align: center;
}

.presentation-section .section-title {
    color: #1d1d1f;
}

.presentation-section .section-subtitle {
    color: #86868b;
}

.presentation-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.presentation-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.presentation-actions .btn svg {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .presentation-section {
        padding: 80px 0;
    }
    
    .presentation-actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    .presentation-actions .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Side Form */
.side-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.side-form-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-form {
    position: fixed;
    top: 0;
    right: -100%;
    width: 20vw;
    max-width: 20vw;
    min-width: 300px;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid #e8e8ed;
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    box-shadow: -4px 0 40px rgba(0, 0, 0, 0.15);
}

.side-form.active {
    right: 0;
}

.side-form-close {
    position: absolute;
    top: 20px;
    right: 20px;
    left: auto;
    width: 44px;
    height: 44px;
    background: #f5f5f7;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1d1d1f;
    transition: all 0.3s ease;
    z-index: 10000;
}

.side-form-close:hover {
    background: #e8e8ed;
    transform: scale(1.05);
}

.side-form-content {
    padding: 80px 32px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.side-form-title {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.side-form-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.side-form-form .form-group {
    margin-bottom: 20px;
}

.side-form-form .form-group input,
.side-form-form .form-group textarea,
.side-form-form .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d2d2d7;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    background: #f5f5f7;
    color: #1d1d1f;
    transition: all 0.2s ease;
}

.side-form-form .form-group input:focus,
.side-form-form .form-group textarea:focus,
.side-form-form .form-group select:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
}

.side-form-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.side-form-form .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23515154' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.side-form-submit {
    width: 100%;
    padding: 16px;
    background: #0071e3;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    font-family: inherit;
}

.side-form-submit:hover {
    background: #0077ed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.4);
}

.side-form-trigger {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #0071e3;
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9997;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 113, 227, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 4px;
}

.side-form-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 113, 227, 0.5);
}

.side-form-trigger span {
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}

.side-form-trigger svg {
    width: 20px;
    height: 20px;
}

/* ========== Landing Page – Apple tasarım, sabit form (psikolog gibi) ========== */
.landing-page {
    min-height: 100vh;
    padding-right: 28%;
    background: #fbfbfd;
}

.landing-header {
    padding: 20px 44px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.landing-header-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-logo {
    display: block;
}

.landing-logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.landing-back {
    font-size: 17px;
    font-weight: 400;
    color: #1d1d1f;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 980px;
    transition: background 0.25s ease, color 0.25s ease;
}

.landing-back:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #0071e3;
}

.landing-main {
    min-height: calc(100vh - 88px);
    padding: 0;
}

/* Hero: stok video arka plan */
.landing-hero {
    position: relative;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    padding: 80px 44px 120px;
    overflow: hidden;
}

.landing-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.landing-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.landing-hero .landing-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto 0 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.landing-hero .landing-title {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.landing-hero .landing-lead {
    color: rgba(255, 255, 255, 0.9);
}

.landing-hero .landing-trust li {
    color: #fff;
}

.landing-hero .landing-trust li::before {
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 5L7 14L4 11' stroke='%2300d4ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

/* Hero CTA */
.landing-cta-hero {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0071e3 0%, #00d4ff 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 980px;
    box-shadow: 0 4px 20px rgba(0, 113, 227, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.landing-cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 113, 227, 0.5);
    color: #fff;
}

.landing-content {
    max-width: 680px;
    margin: 0 auto 0 0;
}

.landing-title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.07;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.landing-lead {
    font-size: 21px;
    line-height: 1.38;
    letter-spacing: -0.01em;
    color: #86868b;
    margin-bottom: 40px;
    font-weight: 400;
}

.landing-trust {
    list-style: none;
    margin: 0;
    padding: 0;
}

.landing-trust li {
    font-size: 17px;
    color: #1d1d1f;
    padding: 12px 0 12px 32px;
    position: relative;
    font-weight: 400;
}

.landing-trust li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 5L7 14L4 11' stroke='%230071e3' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

/* Stok görsel bölümleri – renk vurguları */
.landing-visual {
    padding: 80px 44px;
    background: #fbfbfd;
}

.landing-visual-alt {
    background: #fff;
}

.landing-visual-blue {
    background: linear-gradient(180deg, #f0f7ff 0%, #e8f4fc 100%);
    border-top: 1px solid rgba(0, 113, 227, 0.1);
}

.landing-visual-green {
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
    border-top: 1px solid rgba(34, 197, 94, 0.1);
}

.landing-visual-inner {
    max-width: 980px;
    margin: 0 auto;
}

.landing-stock-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.landing-visual-blue .landing-stock-img {
    box-shadow: 0 8px 32px rgba(0, 113, 227, 0.12);
}

.landing-visual-green .landing-stock-img {
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
}

.landing-visual-caption {
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #1d1d1f;
    margin-top: 20px;
    text-align: center;
}

.landing-visual-blue .landing-visual-caption {
    color: #0c5cad;
}

.landing-visual-green .landing-visual-caption {
    color: #15803d;
}

/* Bölüm CTA butonları */
.landing-cta-section {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 28px;
    background: #0071e3;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 980px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    margin-left: 50%;
    transform: translateX(-50%);
}

.landing-cta-section:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 113, 227, 0.35);
    color: #fff;
}

.landing-cta-outline {
    background: transparent;
    color: #15803d;
    border: 2px solid #22c55e;
}

.landing-cta-outline:hover {
    background: rgba(34, 197, 94, 0.08);
    color: #15803d;
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.2);
}

/* Sabit form panel – sağda (psikolog landing gibi) */
.landing-fixed-form {
    position: fixed;
    top: 0;
    right: 0;
    width: 28%;
    min-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.06);
    border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.landing-fixed-form-content {
    padding: 80px 40px 40px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.landing-form-title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #0071e3;
    margin-bottom: 8px;
}

.landing-form-sub {
    font-size: 15px;
    color: #86868b;
    margin-bottom: 28px;
}

.landing-fixed-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0071e3, #00d4ff);
    z-index: 1;
}

.landing-form .form-group {
    margin-bottom: 16px;
}

.landing-form .form-group input,
.landing-form .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    font-size: 17px;
    font-family: inherit;
    background: #fff;
    color: #1d1d1f;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.landing-form .form-group input:focus,
.landing-form .form-group select:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15);
}

.landing-form .form-group input::placeholder {
    color: #86868b;
}

.landing-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2386868b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 48px;
}

.landing-submit {
    width: 100%;
    padding: 16px 24px;
    margin-top: 8px;
    background: linear-gradient(135deg, #0071e3 0%, #0077ed 100%);
    color: #fff;
    border: none;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 113, 227, 0.35);
}

.landing-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 113, 227, 0.45);
}

.landing-submit:active {
    transform: scale(0.98);
}

.landing-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.landing-footer {
    padding: 20px 44px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fbfbfd;
}

.landing-footer a {
    font-size: 14px;
    color: #86868b;
    text-decoration: none;
}

.landing-footer a:hover {
    color: #0071e3;
}

@media (max-width: 968px) {
    .landing-page {
        padding-right: 0;
    }

    .landing-header {
        padding: 16px 22px;
    }

    .landing-main {
        min-height: auto;
    }

    .landing-hero {
        min-height: 70vh;
        padding: 48px 22px 56px;
    }

    .landing-hero .landing-content,
    .landing-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .landing-title {
        margin-bottom: 20px;
    }

    .landing-lead {
        font-size: 19px;
        margin-bottom: 32px;
    }

    .landing-trust {
        display: inline-block;
        text-align: left;
    }

    .landing-visual {
        padding: 56px 22px;
    }

    .landing-stock-img {
        border-radius: 16px;
    }

    .landing-visual-caption {
        font-size: 17px;
        margin-top: 16px;
    }

    .landing-cta-hero {
        display: block;
        text-align: center;
        margin-top: 28px;
    }

    .landing-cta-section {
        margin-top: 20px;
    }

    .landing-fixed-form {
        position: relative;
        width: 100%;
        min-width: 0;
        height: auto;
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .landing-fixed-form-content {
        padding: 40px 22px 32px;
        max-width: 480px;
        margin: 0 auto;
    }

    .landing-form-title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 24px;
    }

    .landing-footer {
        padding: 16px 22px;
    }
}

/* Float CTA: Hemen Ara + WhatsApp Randevu (dikey butonlar) */
.float-cta-wrapper {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9996;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

/* Hero görünürken gizle; kaydırınca göster (JS ile toggle) */
.float-cta-wrapper.float-cta--hero-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
}

.float-call-btn,
.float-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.float-call-btn {
    background: #0071e3;
    box-shadow: 0 4px 20px rgba(0, 113, 227, 0.4);
}

.float-call-btn:hover {
    background: #0077ed;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 113, 227, 0.5);
}

.float-call-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.float-whatsapp-btn {
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.float-whatsapp-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.float-whatsapp-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

/* Eski yuvarlak butonlar – gizli (geriye dönük uyumluluk için class’lar kalacak) */
@media (max-width: 640px) {
    .side-form {
        max-width: 100%;
    }
    
    .side-form-content {
        padding: 70px 24px 24px;
    }
    
    .side-form-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .float-cta-wrapper {
        right: 14px;
        bottom: 20px;
        gap: 8px;
    }
    
    .float-call-btn,
    .float-whatsapp-btn {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 12px;
    }
    
    .float-call-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .float-whatsapp-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* Page Hero */
.page-hero {
    padding: 140px 22px 80px;
    background: #ffffff;
    text-align: center;
}

.page-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 20px;
    color: #1d1d1f;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-subtitle {
    font-size: 24px;
    color: #86868b;
    line-height: 1.5;
    font-weight: 400;
    max-width: 680px;
    margin: 0 auto;
}

/* About Page */
.about-content {
    padding: 100px 22px;
    background: #ffffff;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.about-intro h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: #1d1d1f;
}

.about-intro p {
    font-size: 21px;
    color: #515154;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-feature-item {
    text-align: center;
    padding: 40px 32px;
}

.feature-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.about-feature-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
    letter-spacing: -0.5px;
}

.about-feature-item p {
    font-size: 17px;
    color: #515154;
    line-height: 1.6;
}

.about-mission {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.about-mission h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: #1d1d1f;
}

.about-mission p {
    font-size: 21px;
    color: #515154;
    line-height: 1.6;
}

.about-values {
    max-width: 1200px;
    margin: 0 auto;
}

.about-values h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 48px;
    text-align: center;
    color: #1d1d1f;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.value-item {
    padding: 32px;
    background: #f5f5f7;
    border-radius: 16px;
    text-align: center;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.value-item p {
    font-size: 17px;
    color: #515154;
    line-height: 1.6;
}

/* Partners Page – Apple tonları (Boosmart benzeri) */
.partners-page {
    background: #fbfbfd;
}

.partners-hero {
    background: #fbfbfd;
    padding: 120px 22px 64px;
}

.partners-hero .page-title {
    color: #1d1d1f;
}

.partners-hero .page-subtitle {
    color: #86868b;
}

.partners-content {
    padding: 0 22px 100px;
    background: #fbfbfd;
}

.partners-intro {
    max-width: 680px;
    margin: 0 auto 64px;
    text-align: center;
}

.partners-lead {
    font-size: 21px;
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: #515154;
}

.partner-cards {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.partner-card {
    display: flex;
    align-items: stretch;
    gap: 40px;
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.partner-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.partner-card-logo {
    flex-shrink: 0;
    width: 260px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 28px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    box-sizing: border-box;
}

.partner-card-logo img {
    width: 100%;
    max-width: 220px;
    height: auto;
    max-height: 160px;
    object-fit: contain;
    display: block;
}

.partner-card-logo--google img {
    max-width: 260px;
    max-height: 200px;
}

.partner-card-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-card-title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #1d1d1f;
    margin: 0 0 16px 0;
}

.partner-card-desc {
    font-size: 17px;
    line-height: 1.55;
    color: #515154;
    margin: 0;
}

.partners-cta {
    text-align: center;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.partners-cta-text {
    font-size: 21px;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.partners-cta .btn {
    border-radius: 980px;
}

@media (max-width: 768px) {
    .partners-hero {
        padding: 100px 22px 48px;
    }
    .partner-card {
        flex-direction: column;
        padding: 32px 24px;
        gap: 28px;
    }
    .partner-card-logo {
        width: 100%;
        min-height: 180px;
        padding: 32px 24px;
    }
    .partner-card-logo img {
        max-width: 200px;
        max-height: 140px;
    }
    .partner-card-logo--google img {
        max-width: 240px;
        max-height: 180px;
    }
    .partner-card-title {
        font-size: 24px;
    }
    .partner-card-desc {
        font-size: 16px;
    }
}

/* Blog Page */
.blog-content {
    padding: 100px 22px;
    background: #f5f5f7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1600px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-card:nth-child(6) { animation-delay: 0.6s; }

.blog-card:hover {
    transform: translateY(-8px) scale(1.02) perspective(1000px) rotateX(1deg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(200%) blur(35px);
    -webkit-backdrop-filter: saturate(200%) blur(35px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 
                0 0 0 1px rgba(255, 255, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 113, 227, 0.3);
    filter: brightness(1.02);
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1;
}

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

.blog-card-image {
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-card-image img,
.blog-placeholder-image {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-image img,
.blog-card:hover .blog-placeholder-image {
    transform: scale(1.1);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f7;
}

.blog-placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.blog-card-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #86868b;
}

.blog-date {
    font-weight: 500;
}

.blog-category {
    color: #0071e3;
    font-weight: 600;
}

.blog-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.blog-excerpt {
    font-size: 17px;
    color: #515154;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    color: #0071e3;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s ease;
    margin-top: auto;
}

.blog-read-more:hover {
    color: #0077ed;
}

/* Blog Detail Page */
.blog-detail {
    background: #ffffff;
}

.blog-detail-header {
    padding: 140px 22px 60px;
    background: #ffffff;
    text-align: center;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 15px;
    color: #86868b;
}

.blog-breadcrumb a {
    color: #0071e3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-breadcrumb a:hover {
    color: #0077ed;
}

.blog-breadcrumb span {
    color: #86868b;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    font-size: 15px;
    color: #86868b;
}

.blog-detail-date,
.blog-detail-category,
.blog-detail-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-category {
    color: #0071e3;
    font-weight: 600;
}

.blog-detail-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #1d1d1f;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-detail-subtitle {
    font-size: 24px;
    color: #515154;
    line-height: 1.5;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.blog-detail-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #f5f5f7;
    position: relative;
}
.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-placeholder-image-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
}

.blog-detail-content {
    background: #ffffff;
    padding: 80px 22px;
}

.blog-detail-body {
    max-width: 800px;
    margin: 0 auto;
    color: #1d1d1f;
}

.blog-intro {
    font-size: 22px;
    line-height: 1.6;
    color: #515154;
    font-weight: 400;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-detail-body h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-top: 64px;
    margin-bottom: 24px;
    color: #1d1d1f;
}

.blog-detail-body h2:first-of-type {
    margin-top: 0;
}

.blog-detail-body h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1d1d1f;
}

.blog-detail-body p {
    font-size: 19px;
    line-height: 1.7;
    color: #515154;
    margin-bottom: 24px;
    font-weight: 400;
}

.blog-detail-body ul,
.blog-detail-body ol {
    margin: 32px 0;
    padding-left: 32px;
}

.blog-detail-body li {
    font-size: 19px;
    line-height: 1.7;
    color: #515154;
    margin-bottom: 16px;
}

.blog-detail-body strong {
    font-weight: 600;
    color: #1d1d1f;
}

.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 113, 227, 0.1);
    color: #0071e3;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(0, 113, 227, 0.15);
    transform: translateY(-2px);
}

.blog-detail-share {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-detail-share h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1d1d1f;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 113, 227, 0.1);
    color: #0071e3;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.share-btn:hover {
    background: #0071e3;
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

.blog-related {
    background: #f5f5f7;
    padding: 100px 22px;
}

.blog-related .section-title {
    margin-bottom: 64px;
}

@media (max-width: 968px) {
    .page-title {
        font-size: 56px;
        letter-spacing: -2px;
    }
    
    .page-subtitle {
        font-size: 21px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blog-detail-title {
        font-size: 48px;
        letter-spacing: -1.5px;
    }

    .blog-detail-subtitle {
        font-size: 20px;
    }

    .blog-detail-image {
        height: 400px;
    }

    .blog-detail-body h2 {
        font-size: 32px;
        margin-top: 48px;
    }

    .blog-detail-body h3 {
        font-size: 24px;
        margin-top: 40px;
    }

    .blog-detail-body p,
    .blog-detail-body li {
        font-size: 18px;
    }

    .blog-intro {
        font-size: 20px;
    }
    
    .about-intro h2,
    .about-mission h2,
    .about-values h2 {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 120px 22px 60px;
    }
    
    .page-title {
        font-size: 40px;
        letter-spacing: -1.5px;
    }
    
    .page-subtitle {
        font-size: 19px;
    }
    
    .about-content,
    .blog-content {
        padding: 60px 22px;
    }
    
    .about-intro,
    .about-mission {
        margin-bottom: 60px;
    }
    
    .about-intro h2,
    .about-mission h2,
    .about-values h2 {
        font-size: 32px;
    }
    
    .about-intro p,
    .about-mission p {
        font-size: 19px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .blog-card-content {
        padding: 24px;
    }

    .blog-detail-header {
        padding: 100px 22px 40px;
    }

    .blog-detail-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .blog-detail-subtitle {
        font-size: 18px;
    }

    .blog-detail-meta {
        flex-direction: column;
        gap: 12px;
        font-size: 14px;
    }

    .blog-detail-image {
        height: 300px;
    }

    .blog-detail-content {
        padding: 60px 22px;
    }

    .blog-detail-body h2 {
        font-size: 28px;
        margin-top: 40px;
    }

    .blog-detail-body h3 {
        font-size: 22px;
        margin-top: 32px;
    }

    .blog-detail-body p,
    .blog-detail-body li {
        font-size: 17px;
    }

    .blog-intro {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .blog-detail-tags {
        margin-top: 48px;
    }

    .blog-detail-share {
        margin-top: 48px;
    }
    
    .blog-title {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 48px;
        padding-bottom: 76px;
        min-height: 100vh;
        align-items: center;
        justify-content: center;
    }

    .hero-content-centered {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 24px;
        padding-bottom: 24px;
        min-height: 0;
        justify-content: center;
        align-items: center;
    }

    .hero-title {
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .hero-title-label {
        font-size: 17px;
        margin-bottom: 14px;
        text-align: center;
    }

    .hero-title-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: clamp(56px, 22vw, 88px);
        letter-spacing: -0.04em;
        line-height: 0.92;
        max-width: 100%;
    }

    .hero-title-main-line {
        display: block;
    }

    .hero-subtitle {
        font-size: 21px;
        letter-spacing: 0.011em;
        margin-bottom: 20px;
        white-space: normal;
        text-align: center;
        max-width: 100%;
        padding: 0 4px;
        line-height: 1.35;
    }
    
    .hero-tagline {
        font-size: 17px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 16px;
        min-width: 130px;
        width: auto;
    }

    .hero-platforms {
        margin-top: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        gap: 20px;
    }

    .hero-platforms-bar {
        display: flex !important;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        padding: 14px 16px;
        min-height: 60px;
        gap: 18px;
        flex-shrink: 0;
        width: 100%;
        z-index: 100;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: saturate(180%) blur(12px);
        -webkit-backdrop-filter: saturate(180%) blur(12px);
        border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero-platform-hide-mobile {
        display: none !important;
    }

    .hero-platform img {
        height: 26px;
        max-width: 76px;
    }

    .hero-platform-bing img {
        height: 44px;
        max-width: 130px;
    }

    .hero-platform-tiktok img {
        height: 32px;
        max-width: 88px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .hero-buttons .btn {
        width: auto;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .floating-card {
        padding: 24px;
    }

    .card-icon {
        font-size: 36px;
    }

    .process {
        padding: 60px 22px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-step {
        padding: 36px 24px;
    }

    .step-number {
        font-size: 48px;
    }

    .step-content h3 {
        font-size: 22px;
    }

    .step-content p {
        font-size: 16px;
    }

    .why-item {
        padding: 40px 24px;
    }

    .why-icon {
        width: 48px;
        height: 48px;
    }

    .why-item h3 {
        font-size: 22px;
    }

    .why-item p {
        font-size: 17px;
    }

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


    .testimonials {
        padding: 60px 22px;
    }
    
    .testimonial-item {
        padding: 36px 24px;
    }

    .testimonial-text {
        font-size: 17px;
    }

    .faq-question {
        padding: 20px 24px;
    }

    .faq-question h3 {
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 24px;
    }

    .faq-answer p {
        font-size: 17px;
    }

    .faq-item.active .faq-answer {
        padding: 0 24px 20px;
    }

    .faq-answer p {
        font-size: 17px;
    }

    .cta-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .legal-content {
        padding: 60px 22px;
    }

    .legal-text h2 {
        font-size: 24px;
        margin-top: 40px;
    }

    .legal-text p,
    .legal-text li {
        font-size: 16px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

@media (max-width: 640px) {
    .mega-menu-content {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-top: 0;
        min-width: auto;
        max-width: none;
        display: block;
        grid-template-columns: 1fr;
    }

    .mega-menu-column {
        border-bottom: 1px solid var(--border-color);
        padding: 16px 0;
        margin: 0;
    }

    .mega-menu-column:last-child {
        border-bottom: none;
    }

    .mega-menu-main-link {
        font-size: 18px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .mega-menu-sub {
        gap: 6px;
    }

    .mega-menu-sub a {
        font-size: 15px;
        padding: 6px 0;
    }
}

/* Service Selection Styles */
.form-label {
    display: block;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-align: left;
}

/* Multi-Select Dropdown Styles */
.multi-select-wrapper {
    position: relative;
    width: 100%;
}

.multi-select-trigger {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 17px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.multi-select-trigger:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.multi-select-trigger.active {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(200%) blur(15px);
    -webkit-backdrop-filter: saturate(200%) blur(15px);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: var(--primary-color);
}

.multi-select-placeholder {
    color: var(--text-secondary);
    flex: 1;
    text-align: left;
}

.multi-select-placeholder.has-selection {
    color: var(--text-primary);
}

.multi-select-arrow {
    color: var(--text-secondary);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 12px;
    margin-left: 12px;
}

.multi-select-trigger.active .multi-select-arrow {
    transform: rotate(180deg);
}

.multi-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: saturate(200%) blur(20px);
    -webkit-backdrop-filter: saturate(200%) blur(20px);
    z-index: 1000;
    max-height: 400px;
    overflow: hidden;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.multi-select-dropdown.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.multi-select-search {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
}

.multi-select-search input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.multi-select-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.multi-select-options {
    max-height: 320px;
    overflow-y: auto;
    padding: 8px;
    text-align: left;
}

.service-selection-container {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    max-height: 500px;
    overflow-y: auto;
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
}

.service-category {
    margin-bottom: 24px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 113, 227, 0.1);
    letter-spacing: -0.2px;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 10;
    padding-top: 8px;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    background: transparent;
    text-align: left;
}

.service-option span {
    text-align: left;
}

.service-option:hover {
    background: rgba(0, 113, 227, 0.05);
}

.service-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.service-option input[type="checkbox"]:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.service-option input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

.service-option input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.service-option span {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.5;
    flex: 1;
}

.service-option input[type="checkbox"]:checked + span {
    color: var(--primary-color);
    font-weight: 500;
}

.service-option.hidden {
    display: none;
}

/* Scrollbar styling for service selection */
.service-selection-container::-webkit-scrollbar,
.multi-select-options::-webkit-scrollbar {
    width: 8px;
}

.service-selection-container::-webkit-scrollbar-track,
.multi-select-options::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.service-selection-container::-webkit-scrollbar-thumb,
.multi-select-options::-webkit-scrollbar-thumb {
    background: rgba(0, 113, 227, 0.3);
    border-radius: 4px;
}

.service-selection-container::-webkit-scrollbar-thumb:hover,
.multi-select-options::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 113, 227, 0.5);
}

@media (max-width: 768px) {
    .service-selection-container {
        padding: 16px;
        max-height: 400px;
    }
    
    .multi-select-dropdown {
        max-height: 350px;
    }
    
    .multi-select-options {
        max-height: 280px;
    }
    
    .service-category-title {
        font-size: 15px;
    }
    
    .service-option {
        padding: 8px 10px;
    }
    
    .service-option span {
        font-size: 14px;
    }
}


