/* Frontend CSS - Professional IT Service Theme */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066FF;
    --secondary-color: #00D4FF;
    --accent-color: #FF6B35;
    --text-dark: #1a1a2e;
    --text-light: #666;
    --text-lighter: #999;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
    opacity: 1;
    visibility: visible;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header - Beyaz arka plan, lacivert yazılar */
.header {
    background: #ffffff;
    border-bottom: 1px solid rgba(26, 26, 46, 0.12);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(26, 26, 46, 0.08);
    border-bottom-color: rgba(26, 26, 46, 0.1);
}

.header .navbar {
    padding: 16px 0;
}

.header .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand img {
    max-height: 78px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Logo fallback (BİLİŞİM SERVİS) - beyaz header, lacivert tonları */
.header .navbar-brand [style*="color: #1a1a2e"] {
    color: #1a1a2e !important;
}

.header .navbar-brand [style*="color: #666"] {
    color: rgba(26, 26, 46, 0.6) !important;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 36px;
    align-items: center;
}

.navbar-nav li {
    list-style: none;
}

.nav-link {
    color: #1a1a2e;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1a1a2e, #2d2d44);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: #1a1a2e;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Navbar İletişim butonu - lacivert ton */
.navbar-nav .btn-primary {
    background: #1a1a2e;
    color: #ffffff !important;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 12px rgba(26, 26, 46, 0.2);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-nav .btn-primary:hover {
    background: #2d2d44;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.25);
    color: #ffffff !important;
}

.navbar-nav .btn-primary::after {
    display: none;
}

/* Container & Grid System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

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

.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
.col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    padding: 0 15px;
}

/* Service detail page alignment */
.service-detail-section .row.align-items-start .col-lg-8 {
    padding-left: 15px;
    padding-right: 15px;
}

.service-detail-section .row.align-items-start .col-lg-4 {
    padding-left: 15px;
    padding-right: 15px;
}

.service-detail-section .col-lg-4 .quick-contact-card {
    margin-top: 0;
}

.col-lg-12 { flex: 0 0 100%; max-width: 100%; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }

/* Service contact card container fix */
.col-lg-4 {
    overflow: visible;
}

.col-lg-4 .service-contact-card-horizontal {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    margin: 0;
    margin-top: 0;
}
.col-lg-3 { flex: 0 0 25%; max-width: 25%; }

.col-md-12 { flex: 0 0 100%; max-width: 100%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* ========================================
   HERO SECTION - CORPORATE PROFESSIONAL
   ======================================== */

.hero-section-pro {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: #0a0a0f;
}

/* Service detail pages: same hero design, 70vh */
.hero-section-pro.hero-section-service {
    min-height: 70vh;
    padding: 140px 0 60px;
}

.hero-title-pro.hero-title-service .title-main {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-pro.hero-title-service .title-main:only-child {
    display: block;
}

/* Background Layers */
.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-bg-layer-1 {
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: bgPulse1 8s ease-in-out infinite;
}

.hero-bg-layer-2 {
    background: 
        radial-gradient(ellipse 50% 80% at 70% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    animation: bgPulse2 12s ease-in-out infinite;
}

.hero-bg-layer-3 {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

/* Animated Grid */
.hero-grid-pro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
    animation: gridShift 30s linear infinite;
    pointer-events: none;
}

/* 3D Cubes */
.cube-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    pointer-events: none;
    z-index: 1;
}

.cube {
    position: absolute;
    transform-style: preserve-3d;
    animation: cubeFloat 20s ease-in-out infinite;
}

.cube-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.cube-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 10%;
    animation-delay: 3s;
}

.cube-3 {
    width: 30px;
    height: 30px;
    bottom: 25%;
    right: 35%;
    animation-delay: 6s;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(5px);
}

.cube-front { transform: translateZ(30px); }
.cube-back { transform: rotateY(180deg) translateZ(30px); }
.cube-right { transform: rotateY(90deg) translateZ(30px); }
.cube-left { transform: rotateY(-90deg) translateZ(30px); }
.cube-top { transform: rotateX(90deg) translateZ(30px); }
.cube-bottom { transform: rotateX(-90deg) translateZ(30px); }

.cube-1 .cube-front, .cube-1 .cube-back { transform: translateZ(30px); }
.cube-1 .cube-right, .cube-1 .cube-left { transform: rotateY(90deg) translateZ(30px); }
.cube-2 .cube-front, .cube-2 .cube-back { transform: translateZ(20px); }
.cube-2 .cube-right, .cube-2 .cube-left { transform: rotateY(90deg) translateZ(20px); }
.cube-3 .cube-front, .cube-3 .cube-back { transform: translateZ(15px); }
.cube-3 .cube-right, .cube-3 .cube-left { transform: rotateY(90deg) translateZ(15px); }

/* Glowing Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 102, 255, 0.15);
    top: -10%;
    right: -5%;
    animation: orbFloat1 15s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 212, 255, 0.1);
    bottom: 10%;
    left: -5%;
    animation: orbFloat2 18s ease-in-out infinite;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(99, 102, 241, 0.1);
    top: 50%;
    left: 40%;
    animation: orbFloat3 12s ease-in-out infinite;
}

/* Light Beams */
.light-beam {
    position: absolute;
    width: 2px;
    height: 300px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.3) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.light-beam-1 {
    top: 0;
    left: 25%;
    transform: rotate(15deg);
    animation: beamMove1 8s ease-in-out infinite;
}

.light-beam-2 {
    top: 0;
    right: 30%;
    transform: rotate(-10deg);
    animation: beamMove2 10s ease-in-out infinite;
}

/* Hero Content */
.hero-content-pro {
    position: relative;
    z-index: 10;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-bottom: 32px;
    animation: fadeSlideUp 0.8s ease-out;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00D4FF;
    border-radius: 50%;
    position: relative;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #00D4FF;
    border-radius: 50%;
    animation: statusRing 2s ease-in-out infinite;
}

.status-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero Title */
.hero-title-pro {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
}

.title-main {
    display: block;
    animation: fadeSlideUp 0.8s ease-out;
    animation-fill-mode: both;
}

.title-main:nth-child(1) { animation-delay: 0.1s; }
.title-main:nth-child(3) { animation-delay: 0.3s; }

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 50%, #0066FF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 4s linear infinite, fadeSlideUp 0.8s ease-out 0.2s both;
    min-height: 1.2em;
}

/* Hero Description */
.hero-desc-pro {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 540px;
    animation: fadeSlideUp 0.8s ease-out 0.4s both;
}

/* CTA Buttons */
.hero-cta-pro {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeSlideUp 0.8s ease-out 0.5s both;
}

.cta-primary-pro {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.cta-primary-pro::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 ease;
}

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

.cta-primary-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
    color: white;
    text-decoration: none;
}

.cta-arrow-pro {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.cta-arrow-pro::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 14px;
    height: 2px;
    background: currentColor;
    transform: translateY(-50%);
}

.cta-arrow-pro::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 2px;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.cta-primary-pro:hover .cta-arrow-pro {
    transform: translateX(4px);
}

.cta-secondary-pro {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-secondary-pro:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
}

/* Hero Stats */
.hero-stats-pro {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeSlideUp 0.8s ease-out 0.6s both;
}

.stat-item-pro {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number-pro {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.stat-label-pro {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.stat-divider-pro {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Visual - 3D Tech Element */
.hero-visual-pro {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.tech-visual-container {
    position: relative;
    width: 400px;
    height: 400px;
    animation: visualFloat 8s ease-in-out infinite;
}

/* Tech Rings */
.tech-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.tech-ring-1 {
    width: 100%;
    height: 100%;
    animation: ringRotate1 20s linear infinite;
}

.tech-ring-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(0, 102, 255, 0.3);
    animation: ringRotate2 15s linear infinite reverse;
}

.tech-ring-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(99, 102, 241, 0.2);
    animation: ringRotate1 10s linear infinite;
}

/* Tech Core */
.tech-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.core-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3) 0%, rgba(0, 212, 255, 0.2) 100%);
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.3),
        inset 0 0 30px rgba(0, 102, 255, 0.2);
    animation: corePulse 3s ease-in-out infinite;
}

.core-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.5);
    animation: coreRing 3s ease-out infinite;
}

/* Orbiting Elements */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.orbit-1 {
    width: 280px;
    height: 280px;
    margin-top: -140px;
    margin-left: -140px;
    animation: orbitSpin 12s linear infinite;
}

.orbit-2 {
    width: 340px;
    height: 340px;
    margin-top: -170px;
    margin-left: -170px;
    animation: orbitSpin 18s linear infinite reverse;
}

.orbit-3 {
    width: 380px;
    height: 380px;
    margin-top: -190px;
    margin-left: -190px;
    animation: orbitSpin 25s linear infinite;
}

.orbit-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.orbit-2 .orbit-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #00D4FF, #0066FF);
}

.orbit-3 .orbit-dot {
    width: 6px;
    height: 6px;
    background: rgba(99, 102, 241, 0.8);
}

/* Bottom Fade */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, transparent 0%, #0a0a0f 100%);
    pointer-events: none;
    z-index: 5;
}

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

@keyframes bgPulse1 {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes bgPulse2 {
    0%, 100% { opacity: 0.8; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(20px); }
}

@keyframes gridShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

@keyframes cubeFloat {
    0%, 100% { 
        transform: rotateX(0deg) rotateY(0deg) translateY(0); 
    }
    25% { 
        transform: rotateX(90deg) rotateY(90deg) translateY(-20px); 
    }
    50% { 
        transform: rotateX(180deg) rotateY(180deg) translateY(0); 
    }
    75% { 
        transform: rotateX(270deg) rotateY(270deg) translateY(20px); 
    }
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(0.9); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); opacity: 0.1; }
    50% { transform: translate(-20px, 20px); opacity: 0.2; }
}

@keyframes beamMove1 {
    0%, 100% { opacity: 0.3; transform: rotate(15deg) translateY(0); }
    50% { opacity: 0.6; transform: rotate(15deg) translateY(50px); }
}

@keyframes beamMove2 {
    0%, 100% { opacity: 0.2; transform: rotate(-10deg) translateY(0); }
    50% { opacity: 0.5; transform: rotate(-10deg) translateY(-30px); }
}

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

@keyframes gradientText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes statusRing {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

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

@keyframes ringRotate1 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ringRotate2 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes corePulse {
    0%, 100% { 
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.3), inset 0 0 30px rgba(0, 102, 255, 0.2);
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        box-shadow: 0 0 60px rgba(0, 212, 255, 0.5), inset 0 0 40px rgba(0, 102, 255, 0.3);
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes coreRing {
    0% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% { 
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@media (max-width: 1200px) {
    .hero-title-pro {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }
    
    .tech-visual-container {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 991px) {
    .hero-section-pro {
        padding: 140px 0 60px;
    }
    
    .hero-content-pro {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .status-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-desc-pro {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-pro {
        justify-content: center;
    }
    
    .hero-stats-pro {
        justify-content: center;
    }
    
    .hero-visual-pro {
        min-height: 400px;
    }
    
    .tech-visual-container {
        width: 300px;
        height: 300px;
    }
    
    .cube-1, .cube-2, .cube-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section-pro {
        padding: 120px 0 40px;
    }
    
    .hero-title-pro {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .hero-desc-pro {
        font-size: 1rem;
    }
    
    .hero-stats-pro {
        gap: 20px;
    }
    
    .stat-number-pro {
        font-size: 1.5rem;
    }
    
    .stat-divider-pro {
        height: 30px;
    }
    
    .hero-visual-pro {
        min-height: 300px;
    }
    
    .tech-visual-container {
        width: 250px;
        height: 250px;
    }
    
    .cta-primary-pro,
    .cta-secondary-pro {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-cta-pro {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-primary-pro,
    .cta-secondary-pro {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats-pro {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat-divider-pro {
        display: none;
    }
    
    .stat-item-pro {
        flex: 1;
        min-width: 80px;
        align-items: center;
    }
}

/* CSS Arrow Icon */
.btn-arrow {
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 2px;
    background: currentColor;
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.btn-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-btn-primary:hover .btn-arrow::before {
    width: 8px;
}

.hero-btn-primary:hover .btn-arrow::after {
    transform: translateY(-50%) translateX(2px) rotate(45deg);
}

.hero-btn-outline {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* CSS Phone Icon */
.btn-phone {
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-phone::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 2px;
    background: currentColor;
    border-radius: 0 0 2px 2px;
    transition: all 0.3s ease;
}

.hero-btn-outline:hover .btn-phone {
    transform: translateX(5px) rotate(15deg);
}

.hero-btn-outline:hover .btn-phone::before {
    border-color: currentColor;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

/* CSS Checkmark Icon */
.trust-icon-css {
    width: 24px;
    height: 24px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    position: relative;
    border: 2px solid rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.trust-icon-css::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 10px;
    border-right: 2px solid #00D4FF;
    border-bottom: 2px solid #00D4FF;
    transform: translate(-50%, -60%) rotate(45deg);
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon-css {
    background: rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.6);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.trust-item:hover .trust-icon-css::before {
    transform: translate(-50%, -60%) rotate(45deg) scale(1.2);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.4));
    animation: floatImage 8s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 1;
}

.image-decoration {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.decoration-1 {
    width: 200px;
    height: 200px;
    top: -20px;
    right: -20px;
    animation: rotateDecoration 20s linear infinite;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    bottom: -10px;
    left: -10px;
    animation: rotateDecoration 15s linear infinite reverse;
}

.decoration-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: -30px;
    animation: rotateDecoration 10s linear infinite;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    z-index: 3;
    animation: fadeInUp 1s ease-out 1s both;
}

/* CSS Mouse Icon */
.scroll-mouse-css {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    transition: all 0.3s ease;
}

.scroll-mouse-css::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scrollWheelCss 2s ease-in-out infinite;
}

.scroll-mouse-css::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: scrollWheelCss 2s ease-in-out infinite 0.3s;
}

.hero-scroll-indicator:hover .scroll-mouse-css {
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(5px);
}

.scroll-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInOut 2s ease-in-out infinite;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 1;
    }
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: rotate(90deg);
    }
    50% {
        border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;
        transform: rotate(180deg);
    }
    75% {
        border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%;
        transform: rotate(270deg);
    }
}

@keyframes rotateShape {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes pulseShape {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes rotateDecoration {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes scrollWheelCss {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes pulseBadge {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

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

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

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

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

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Services Section */
/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-section {
    background: var(--bg-light);
    position: relative;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    width: 100%;
    min-height: 200px;
    opacity: 1 !important;
    visibility: visible !important;
    align-items: stretch;
    align-content: start;
}

.services-grid .service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.services-grid .service-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.services-grid .service-card {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    flex-direction: column;
    height: 100%;
    transform: none !important;
    cursor: pointer;
}

.services-grid:empty::before {
    content: 'Hizmetler yükleniyor...';
    display: block;
    text-align: center;
    color: #999;
    padding: 40px;
}

/* About Section */
.about-section {
    background: var(--white);
}

/* Service Detail Section Styles */
.service-detail-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.service-detail-content {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 0;
}

.section-header-inline {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.section-label-small {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0066FF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title-inline {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.service-description-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 50px;
    text-align: justify;
}

.service-features-section {
    margin-top: 50px;
    margin-bottom: 60px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.features-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
}

.features-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.feature-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 212, 255, 0.05));
    border-radius: 14px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item-modern:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-color: rgba(0, 102, 255, 0.2);
    transform: translateX(5px);
}

.feature-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item-modern span {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    font-weight: 500;
}

/* Service Contact Card */
.service-contact-card {
    position: sticky;
    top: 120px;
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.contact-card-header {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    padding: 28px 24px;
    color: white;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 18px;
}

.contact-icon-wrapper {
    width: 56px;
    height: 56px;
    min-width: 56px;
    max-width: 56px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-header-text {
    flex: 1;
    min-width: 0;
}

.contact-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.contact-card-subtitle {
    font-size: 0.875rem;
    opacity: 0.95;
    margin: 0;
    color: white;
    line-height: 1.4;
    font-weight: 400;
}

.contact-info-list {
    padding: 25px 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 14px;
    margin-bottom: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-info-item:hover {
    background: white;
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.phone-icon {
    background: linear-gradient(135deg, #0066FF, #00D4FF);
}

.email-icon {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
}

.contact-info-content {
    flex: 1;
    min-width: 0;
}

.contact-info-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    word-break: break-all;
}

.contact-info-arrow {
    color: #0066FF;
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-info-item:hover .contact-info-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.contact-cta-btn {
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 14px;
}

.contact-cta-btn svg {
    transition: transform 0.3s ease;
}

.contact-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Quick Contact Card - Modern Design - Horizontal Layout */
.quick-contact-card {
    position: sticky;
    top: 120px;
    background: white;
    border-radius: 28px;
    padding: 0;
    box-shadow: 0 15px 60px rgba(0, 102, 255, 0.15);
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.08);
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: stretch;
}

.quick-contact-card:hover {
    box-shadow: 0 20px 80px rgba(0, 102, 255, 0.2);
    transform: translateY(-4px);
}

.quick-contact-header {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    padding: 24px 20px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    width: 160px;
    min-width: 160px;
    max-width: 160px;
    flex-shrink: 0;
    text-align: center;
}

.quick-contact-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.quick-contact-icon-wrapper {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

.quick-contact-title-wrapper {
    width: 100%;
    min-width: 0;
}

.quick-contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.quick-contact-subtitle {
    font-size: 0.85rem;
    opacity: 0.95;
    margin: 0;
    color: white;
    line-height: 1.4;
    font-weight: 400;
}

.quick-contact-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.04), rgba(0, 212, 255, 0.04));
    border-radius: 14px;
    border: 2px solid rgba(0, 102, 255, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 0;
}

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

.quick-contact-item:hover::before {
    left: 100%;
}

.quick-contact-item:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 212, 255, 0.08));
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.15);
    transform: translateX(6px);
    text-decoration: none;
    color: inherit;
}

.quick-contact-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.quick-contact-item:hover .quick-contact-item-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.phone-gradient {
    background: linear-gradient(135deg, #0066FF, #00D4FF);
}

.email-gradient {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
}

.quick-contact-item-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.quick-contact-item-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.quick-contact-item-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    word-break: break-word;
    line-height: 1.4;
}

.quick-contact-item-arrow {
    color: #0066FF;
    opacity: 0.5;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.quick-contact-item:hover .quick-contact-item-arrow {
    opacity: 1;
    transform: translateX(4px);
    color: #0066FF;
}

.quick-contact-footer {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    flex-shrink: 0;
    border-left: 1px solid rgba(0, 102, 255, 0.1);
}

.quick-contact-cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.quick-contact-cta:hover {
    background: linear-gradient(135deg, #0052CC, #00B8E6);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.quick-contact-cta:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.quick-contact-cta svg {
    transition: transform 0.3s ease;
}

.quick-contact-cta:hover svg {
    transform: translateX(5px);
}

.contact-card-header-horizontal {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    padding: 18px 14px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 130px;
    min-width: 130px;
    max-width: 130px;
    flex-shrink: 0;
    text-align: center;
    box-sizing: border-box;
}

.contact-icon-wrapper-horizontal {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-header-text-horizontal {
    width: 100%;
}

.contact-card-title-horizontal {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 3px 0;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.contact-card-subtitle-horizontal {
    font-size: 0.8rem;
    opacity: 0.95;
    margin: 0;
    color: white;
    line-height: 1.4;
    font-weight: 400;
}

.contact-info-list-horizontal {
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    justify-content: center;
    min-width: 0;
    box-sizing: border-box;
}

.contact-info-item-horizontal {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-info-item-horizontal:hover {
    background: white;
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1);
    transform: translateX(4px);
    text-decoration: none;
    color: inherit;
}

.contact-info-icon-horizontal {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.phone-icon-horizontal {
    background: linear-gradient(135deg, #0066FF, #00D4FF);
}

.email-icon-horizontal {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
}

.contact-info-content-horizontal {
    flex: 1;
    min-width: 0;
}

.contact-info-label-horizontal {
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-value-horizontal {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a2e;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    line-height: 1.4;
}

.contact-cta-wrapper-horizontal {
    padding: 18px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 110px;
    min-width: 110px;
    max-width: 110px;
    border-left: 1px solid rgba(0, 102, 255, 0.1);
    box-sizing: border-box;
}

.contact-cta-btn-horizontal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    box-sizing: border-box;
}

.contact-cta-btn-horizontal svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.contact-cta-btn-horizontal:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .service-contact-card {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
    
    .service-detail-content {
        padding: 35px 25px;
    }
    
    .section-title-inline {
        font-size: 1.75rem;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .contact-card-header {
        flex-direction: column !important;
        text-align: center;
        padding: 28px 24px;
        gap: 16px;
    }
    
    .contact-icon-wrapper {
        margin: 0 auto;
    }
    
    .contact-header-text {
        width: 100%;
        text-align: center;
    }
    
    .quick-contact-card {
        position: relative;
        top: 0;
        margin-top: 40px;
        flex-direction: column;
    }
    
    .quick-contact-header {
        padding: 28px 24px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .quick-contact-icon-wrapper {
        margin: 0 auto;
    }
    
    .quick-contact-title-wrapper {
        width: 100%;
        text-align: center;
    }
    
    .quick-contact-body {
        padding: 24px;
        width: 100%;
    }
    
    .quick-contact-footer {
        padding: 0 24px 24px 24px;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        border-left: none;
        border-top: 1px solid rgba(0, 102, 255, 0.1);
    }
}

@media (max-width: 768px) {
    .service-detail-section {
        padding: 60px 0;
    }
    
    .service-detail-content {
        padding: 30px 20px;
    }
    
    .section-title-inline {
        font-size: 1.5rem;
    }
    
    .service-description-text {
        font-size: 1rem;
    }
    
    .features-title {
        font-size: 1.5rem;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.about-features li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
}

/* Why Choose Us Section */
.why-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Statistics Section - Hero-style dark theme, 3D cards */
.stats-section.stats-section-slider {
    padding: 80px 0;
    background: #0a0a0f;
    overflow: hidden;
    position: relative;
}

.stats-section-slider::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.stats-section-slider::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.stats-section-slider .section-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.stats-section-slider .section-label {
    color: rgba(255, 255, 255, 0.6);
}

.stats-section-slider .section-title {
    color: #ffffff;
}

.stats-carousel {
    margin-top: 0;
    display: flex;
    gap: 24px;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
    z-index: 2;
}

.stats-carousel-wrapper {
    display: flex;
    gap: 24px;
    animation: scroll-left 40s linear infinite;
    will-change: transform;
    width: fit-content;
}

.stats-carousel:hover .stats-carousel-wrapper {
    animation-play-state: paused;
}

.stats-carousel::before,
.stats-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.stats-carousel::before {
    left: 0;
    background: linear-gradient(to right, #0a0a0f, transparent);
}

.stats-carousel::after {
    right: 0;
    background: linear-gradient(to left, #0a0a0f, transparent);
}

/* 3D Stat card - hero color palette */
.stat-card {
    flex-shrink: 0;
    width: 200px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 16px;
    padding: 28px 24px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
    transform-style: preserve-3d;
    perspective: 800px;
    /* Dark glass base - hero style */
    background: linear-gradient(145deg, rgba(20, 22, 35, 0.95) 0%, rgba(10, 12, 22, 0.98) 50%, rgba(15, 18, 32, 0.95) 100%);
    border: 1px solid rgba(0, 212, 255, 0.25);
    box-shadow:
        0 4px 0 rgba(0, 0, 0, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.15) 0%, transparent 100%);
    border-radius: 16px 16px 0 0;
    pointer-events: none;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
    opacity: 0.8;
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow:
        0 8px 0 rgba(0, 0, 0, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 102, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.stat-card .stat-number {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    display: block;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #00D4FF 0%, #0066FF 50%, #00D4FF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.35));
    animation: statGradientShift 5s ease infinite;
}

.stat-card .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-align: center;
    position: relative;
    z-index: 1;
}

@keyframes statGradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

/* Process Section - Card slider style (like partners) */
.process-section.process-section-cards {
    padding: 80px 0;
    background: var(--bg-light);
}

.process-section-cards .section-header {
    margin-bottom: 40px;
}

.process-carousel {
    margin-top: 0;
    display: flex;
    gap: 24px;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.process-carousel-wrapper {
    display: flex;
    gap: 24px;
    animation: scroll-left 50s linear infinite;
    will-change: transform;
    width: fit-content;
}

.process-carousel:hover .process-carousel-wrapper {
    animation-play-state: paused;
}

.process-carousel::before,
.process-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.process-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.process-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.process-card {
    flex-shrink: 0;
    width: 280px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 32px 24px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.process-card .process-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.process-card .process-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.process-card .process-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Legacy stat-item / process-step base (used by counter JS) */
.stat-item {
    text-align: center;
}

.process-step {
    position: relative;
}

@media (max-width: 768px) {
    .stats-section-slider,
    .process-section-cards {
        padding: 50px 0;
    }
    .stats-section-slider .section-header,
    .process-section-cards .section-header {
        margin-bottom: 28px;
    }
    .stat-card {
        width: 180px;
        min-height: 120px;
        padding: 22px 20px;
    }
    .stat-card .stat-number {
        font-size: 2.25rem;
    }
    .stat-card .stat-label {
        font-size: 0.9rem;
    }
    .process-card {
        width: 260px;
        min-height: 200px;
        padding: 28px 20px;
    }
    .process-card .process-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 16px;
    }
    .process-card .process-title {
        font-size: 1.05rem;
    }
    .process-card .process-description {
        font-size: 0.9rem;
    }
    .stats-carousel::before,
    .stats-carousel::after,
    .process-carousel::before,
    .process-carousel::after {
        width: 40px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-light);
}

.testimonials-slider {
    margin-top: 60px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--text-dark) 0%, #2d2d44 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.partners-carousel {
    margin-top: 40px;
    display: flex;
    gap: 40px;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.partners-carousel-wrapper {
    display: flex;
    gap: 40px;
    animation: scroll-left 30s linear infinite;
    will-change: transform;
    width: fit-content;
}

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

/* Ensure smooth animation */
.partners-carousel {
    position: relative;
}

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

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

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

.partners-carousel::-webkit-scrollbar {
    display: none;
}

.partner-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

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

/* Scroll left animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,102,255,0.1);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,102,255,0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1a2e;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    color: #0066FF;
    background: rgba(0,102,255,0.02);
}

.faq-icon {
    font-size: 1.5rem;
    color: #0066FF;
    transition: transform 0.3s ease;
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,102,255,0.1);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(0,102,255,0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-top: 0;
}

.faq-answer > div {
    padding: 0 24px 24px 24px;
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid #e0e0e0;
    background: rgba(0,102,255,0.03);
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-container {
        margin-top: 40px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer > div {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--text-dark) 0%, #2d2d44 100%);
    color: var(--white);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-info-content h4 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-info-content p,
.contact-info-content a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.contact-info-content a:hover {
    color: var(--secondary-color);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

.contact-form .form-label {
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 40px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Mobile Menu - beyaz header, lacivert ikon */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    color: #1a1a2e;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-btn svg {
    display: block;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
    opacity: 0.85;
}

.mobile-menu-btn.active svg line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    transform-origin: center;
}

.mobile-menu-btn.active svg line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active svg line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    transform-origin: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
    .navbar-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid rgba(26, 26, 46, 0.12);
        flex-direction: column;
        padding: 24px 20px;
        box-shadow: 0 8px 32px rgba(26, 26, 46, 0.12);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        gap: 0;
        align-items: stretch;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .navbar-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(26, 26, 46, 0.08);
    }
    
    .navbar-nav li:last-child {
        border-bottom: none;
        margin-top: 12px;
    }
    
    .navbar-nav .nav-link {
        display: block;
        padding: 16px 0;
        width: 100%;
        color: #1a1a2e;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .btn-primary {
        width: 100%;
        text-align: center;
        margin-top: 8px;
        padding: 14px 24px;
        background: #1a1a2e;
    }
    
    .navbar-nav .btn-primary:hover {
        background: #2d2d44;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .col-lg-3, .col-lg-4, .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
        color: white !important;
    }
    
    .stat-label {
        color: white !important;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr !important;
        display: grid !important;
        align-items: stretch !important;
    }
    
    .services-grid .service-card-link {
        text-decoration: none;
        color: inherit;
        display: block;
        height: 100%;
    }
    
    .services-grid .service-card {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        flex-direction: column;
        transform: none !important;
        height: auto !important;
        min-height: 300px;
        cursor: pointer;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .card,
    .service-card {
        padding: 30px 20px;
    }
}

/* Utility Classes */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.text-white { color: var(--white); }
.text-dark { color: var(--text-dark); }
.text-light { color: var(--text-light); }

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.bg-white { background-color: var(--white); }

/* Loading States */
.loading {
    opacity: 0;
    pointer-events: none;
}

.loaded {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Lazy Loading Images */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[data-src].loaded {
    opacity: 1;
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
