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

:root {
    /* Kırmızı - Ana Renk */
    --primary-color: #dc2626;
    --primary-red: #dc2626;
    --primary-red-light: #ef4444;
    
    /* Instagram Gradient */
    --instagram-gradient: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --instagram-start: #f09433;
    --instagram-mid1: #e6683c;
    --instagram-mid2: #dc2743;
    --instagram-mid3: #cc2366;
    --instagram-end: #bc1888;
    
    /* Facebook Mavi */
    --facebook-blue: #1877f2;
    --facebook-blue-dark: #166fe5;
    
    /* Kırmızı + Instagram Geçişli */
    --primary-gradient: linear-gradient(135deg, #dc2626 0%, #dc2743 50%, #cc2366 100%);
    --primary-gradient-reverse: linear-gradient(135deg, #cc2366 0%, #dc2743 50%, #dc2626 100%);
    --red-instagram-gradient: linear-gradient(135deg, #dc2626 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    
    /* Antasit Renkler */
    --secondary-color: #2c2c2c;
    --anthracite-dark: #1a1a1a;
    --anthracite-medium: #2c2c2c;
    --anthracite-light: #3d3d3d;
    
    /* Metin Renkleri */
    --text-dark: #1a1a1a;
    --text-light: #666;
    
    /* Arka Plan */
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    
    /* Diğer */
    --success-color: #28a745;
    --shadow: 0 2px 10px rgba(220, 38, 67, 0.15);
    --shadow-lg: 0 10px 30px rgba(220, 38, 67, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px;
}

/* Navigation */
.navbar {
    padding: 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 16px 40px;
    border-radius: 60px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative; /* Mega menü için */
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Nav menu ve actions normal düzende */
.logo-icon {
    width: auto;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.logo-image {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: static; /* Mega menü için tam genişlikte açılması için */
}

/* --- MEGA MENÜ STİLLERİ --- */

/* Mega Menü Kutusu (Gizli Başlangıç) */
.mega-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 90vw;
    max-width: 980px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
    margin-top: 15px;
    backdrop-filter: blur(10px);
}

/* Hover Yapınca Göster */
.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    transform: translateX(-50%) translateY(0);
}

/* İçerik Düzeni */
.mega-content {
    display: flex;
    justify-content: space-between;
}

/* Sol Taraf (Linkler) */
.menu-columns {
    display: flex;
    padding: 40px;
    gap: 0;
    flex: 2;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
    align-items: flex-start;
}

.menu-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
}

.menu-col h3 {
    font-size: 12px;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.menu-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #f0f0f0;
}

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

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

.menu-item:hover {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-color: rgba(220, 38, 38, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.12);
}

.menu-item-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.menu-item-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    color: #1a1a1a;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: -0.2px;
}

.menu-item:hover .menu-item-title {
    color: #dc2626;
}

.icon-box {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Her icon için özel renk */
.menu-item:nth-child(1) .icon-box i {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-item:nth-child(2) .icon-box i {
    color: var(--facebook-blue); /* Facebook Mavi - Reklam */
}

.menu-item:nth-child(3) .icon-box i {
    color: var(--primary-color); /* Kırmızı - Web */
}

.menu-item:nth-child(4) .icon-box i {
    color: var(--instagram-mid2); /* Instagram Pembe - Grafik */
}

.menu-item:nth-child(5) .icon-box i {
    color: var(--primary-color); /* Kırmızı - Film */
}

.menu-item:nth-child(6) .icon-box i {
    color: var(--instagram-mid3); /* Instagram Mor - Destek */
}

.icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: currentColor;
    opacity: 0;
    border-radius: 12px;
    transition: opacity 0.4s ease;
}

/* Hover efektleri */
.menu-item:hover .icon-box {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.menu-item:nth-child(1):hover .icon-box {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.menu-item:nth-child(1):hover .icon-box i {
    -webkit-text-fill-color: white;
    color: white;
}

.menu-item:nth-child(2):hover .icon-box {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-color: #2563eb;
}

.menu-item:nth-child(2):hover .icon-box i {
    color: white;
}

.menu-item:nth-child(3):hover .icon-box {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-color: #7c3aed;
}

.menu-item:nth-child(3):hover .icon-box i {
    color: white;
}

.menu-item:nth-child(4):hover .icon-box {
    background: linear-gradient(135deg, #ec4899, #db2777);
    border-color: #db2777;
}

.menu-item:nth-child(4):hover .icon-box i {
    color: white;
}

.menu-item:nth-child(5):hover .icon-box {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-color: #dc2626;
}

.menu-item:nth-child(5):hover .icon-box i {
    color: white;
}

.menu-item:nth-child(6):hover .icon-box {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #059669;
}

.menu-item:nth-child(6):hover .icon-box i {
    color: white;
}

/* Sağ Taraf (Instagram Gradient Kutu) */
.menu-promo {
    flex: 1;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.menu-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg);
        opacity: 0.6;
    }
}

.menu-promo .promo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.instagram-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.menu-promo:hover .instagram-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.menu-promo .promo-header h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 32px;
    margin: 0;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.menu-promo p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.8);
    padding: 12px 24px;
    border-radius: 50px;
    color: white !important;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: none;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.promo-btn:hover {
    background: white;
    color: #bc1888 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: white;
}

.promo-btn i {
    font-size: 16px;
}

/* --- ALT FOOTER (Renkli Alan) --- */
.mega-footer {
    background: var(--red-instagram-gradient);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-text {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.footer-link {
    color: white !important;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-live-meeting {
    background: var(--red-instagram-gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

.btn-live-meeting::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.btn-live-meeting:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-live-meeting i {
    font-size: 14px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 0, 0, 0.7), 0 0 30px rgba(255, 0, 0, 0.3);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

.language-btn {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s;
}

.language-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.language-btn i {
    font-size: 12px;
}

.btn-meeting {
    background: var(--primary-gradient);
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.btn-meeting:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.btn-add {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--text-dark);
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add:hover {
    background: var(--bg-light);
    transform: rotate(90deg);
}

.btn-add i {
    color: var(--text-dark);
    font-size: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Slider Section - Modern Design */
.hero-slider {
    margin-top: 20px;
    margin-left: 80px;
    margin-right: 80px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 400px;
    background: var(--red-instagram-gradient);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.slide-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(220, 38, 67, 0.85) 0%, rgba(204, 35, 102, 0.80) 50%, rgba(220, 38, 67, 0.85) 100%),
        url('sosyalslider.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        background-position: center;
        transform: scale(1);
    }
    50% {
        background-position: center right;
        transform: scale(1.05);
    }
}

.slide-bg-gradient.gradient-2 {
    background: 
        linear-gradient(135deg, rgba(220, 38, 67, 0.45) 0%, rgba(204, 35, 102, 0.40) 25%, rgba(188, 24, 136, 0.35) 50%, rgba(204, 35, 102, 0.40) 75%, rgba(220, 38, 67, 0.45) 100%),
        url('sosyalslider.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-bg-gradient.gradient-3 {
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.50) 0%, rgba(44, 44, 44, 0.45) 30%, rgba(220, 38, 67, 0.40) 60%, rgba(44, 44, 44, 0.45) 90%, rgba(26, 26, 26, 0.50) 100%),
        url('sosyalslider.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
        repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(255, 255, 255, 0.03) 4px, rgba(255, 255, 255, 0.03) 8px);
    opacity: 0.4;
    z-index: 2;
    animation: patternMove 15s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-10px, -10px) rotate(2deg);
    }
}

.hero-slide.gradient-2 .slide-pattern {
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 149, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 70% 40%, rgba(255, 99, 71, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 65%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 35% 75%, rgba(255, 69, 0, 0.08) 0%, transparent 40%),
        repeating-linear-gradient(135deg, transparent, transparent 4px, rgba(255, 0, 149, 0.04) 4px, rgba(255, 0, 149, 0.04) 8px);
}

.hero-slide.gradient-3 .slide-pattern {
    background-image: 
        radial-gradient(ellipse at 25% 25%, rgba(29, 161, 242, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 75% 55%, rgba(25, 130, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 45% 75%, rgba(66, 103, 178, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 60% 30%, rgba(29, 161, 242, 0.06) 0%, transparent 40%),
        repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(29, 161, 242, 0.03) 3px, rgba(29, 161, 242, 0.03) 6px);
}

.hero-slide .container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge i {
    font-size: 16px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2) rotate(180deg);
    }
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -1px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.title-line .highlight {
    background: var(--red-instagram-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline;
    font-weight: 800;
}

@keyframes highlightGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

@keyframes highlightPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleX(1.05);
    }
}

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

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 650px;
}

.hero-features {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 14px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(20px);
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.feature-badge i {
    background: var(--red-instagram-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.hero-cta {
    display: none;
}

.btn-primary {
    background: var(--red-instagram-gradient);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(220, 38, 67, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 38, 67, 0.4);
    background: var(--primary-gradient-reverse);
    border-color: var(--instagram-end);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-secondary i {
    transition: transform 0.3s ease;
}

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

/* Hero Visual Elements */
.hero-visual {
    display: none;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: floatAdvanced 8s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.float-element:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.float-element.element-1 {
    top: 5%;
    right: 5%;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
}

.float-element.element-2 {
    top: 35%;
    right: 15%;
    animation-delay: 1.5s;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
}

.float-element.element-3 {
    bottom: 20%;
    right: 8%;
    animation-delay: 3s;
    background: linear-gradient(135deg, rgba(255, 99, 71, 0.2), rgba(255, 20, 147, 0.2));
}

.float-element.element-4 {
    top: 20%;
    right: 25%;
    animation-delay: 4.5s;
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.2), rgba(66, 103, 178, 0.2));
}

.float-element.element-5 {
    bottom: 5%;
    right: 20%;
    animation-delay: 6s;
    background: linear-gradient(135deg, rgba(43, 233, 123, 0.2), rgba(56, 249, 215, 0.2));
}

@keyframes floatAdvanced {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) translateX(10px) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translateY(-15px) translateX(-10px) rotate(-5deg) scale(0.95);
    }
    75% {
        transform: translateY(-25px) translateX(5px) rotate(3deg) scale(1.02);
    }
}

/* Slider Controls - Hidden for single slide */
.slider-controls {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    padding: 0 20px;
}

.slider-nav {
    position: absolute;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    z-index: 11;
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

.slider-nav:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.4);
    transform: scale(1.1);
}

/* Slider Dots - Hidden for single slide */
.slider-dots {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.3);
}

.dot:hover {
    background: rgba(255, 0, 0, 0.6);
}

/* Progress Bar - Hidden for single slide */
.slider-progress {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: var(--red-instagram-gradient);
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* --- YENİ BÖLÜM: BÜYÜME EKİBİ (Growth Section) --- */
/* Services & Growth Section - New Design */
.services-growth-section {
    padding: 80px 40px;
    background: #fafafa;
}

.services-growth-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.services-column {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    background: #f9f9f9;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    background: white;
    border-color: #e0e0e0;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--red-instagram-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.service-item:nth-child(2) .service-icon {
    background: linear-gradient(135deg, var(--instagram-start) 0%, var(--instagram-mid1) 100%);
}

.service-item:nth-child(3) .service-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--instagram-mid2) 100%);
}

.service-item:nth-child(4) .service-icon {
    background: linear-gradient(135deg, var(--instagram-mid2) 0%, var(--instagram-end) 100%);
}

.service-item:nth-child(5) .service-icon {
    background: linear-gradient(135deg, var(--instagram-mid1) 0%, var(--instagram-mid3) 100%);
}

.service-item:nth-child(6) .service-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--instagram-end) 100%);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px 0;
}

.service-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.service-arrow {
    color: #999;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-item:hover .service-arrow {
    color: var(--primary-color);
    transform: translateX(4px);
}

.growth-column {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.growth-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--red-instagram-gradient);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.growth-column h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.growth-column h2 strong {
    font-weight: 700;
}

.growth-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.growth-description strong {
    color: #1a1a1a;
    font-weight: 600;
}

.growth-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 32px 0;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 16px;
}

.growth-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #333;
}

.growth-feature i {
    color: #43e97b;
    font-size: 1.1rem;
}

.growth-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--red-instagram-gradient);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.growth-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.growth-cta i {
    transition: transform 0.3s ease;
}

.growth-cta:hover i {
    transform: translateX(4px);
}

.growth-subsection {
    margin: 32px 0;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.growth-subsection h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.growth-subsection h3 strong {
    font-weight: 700;
    color: var(--primary-color);
}

.growth-highlight {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    margin-top: 16px;
    border: 2px solid #e0e0e0;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--red-instagram-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.highlight-content {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

.highlight-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Old growth-section styles - keeping for compatibility */
.growth-section {
    background: white;
    border-radius: 30px;
    padding: 60px;
    margin-top: 30px;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Sol Taraf: Özellik Kutuları */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.2s;
}

.feature-box:hover {
    transform: translateX(10px);
    background: #f0f0f0;
}

.feature-emoji {
    font-size: 2.5rem;
    min-width: 50px;
    text-align: center;
}

.feature-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #000;
}

.feature-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Sağ Taraf: İçerik */
.growth-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 400;
}

.growth-content h2 strong {
    font-weight: 800;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.description strong {
    color: #000;
}

/* Pembe Buton Tasarımı */
.growth-section .cta-button {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--red-instagram-gradient);
    padding: 10px 10px 10px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.3s;
    box-shadow: 0 10px 20px rgba(220, 60, 100, 0.3);
}

.growth-section .cta-button:hover {
    opacity: 0.9;
}

.growth-section .cta-button .icon-circle {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 1200px) {
    .services-growth-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-column,
    .growth-column {
        padding: 32px;
    }
}

@media (max-width: 900px) {
    .hero-slider {
        margin-left: 40px;
        margin-right: 40px;
        height: 350px;
        border-radius: 20px;
    }
    
    .hero-slide .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .services-growth-section {
        padding: 60px 20px;
    }
    
    .services-growth-grid {
        gap: 32px;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .growth-column h2 {
        font-size: 2rem;
    }
    
    .growth-subsection h3 {
        font-size: 1.1rem;
    }
    
    .growth-highlight {
        flex-direction: column;
        gap: 12px;
    }
    
    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .service-item {
        padding: 16px;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .growth-section {
        grid-template-columns: 1fr;
        padding: 30px;
        text-align: center;
    }

    .features-list {
        order: 2;
    }
    
    .growth-content {
        order: 1;
        margin-bottom: 30px;
    }

    .feature-box {
        text-align: left;
    }
    
    .growth-content h2 {
        font-size: 2rem;
    }
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    text-align: center;
    background: var(--bg-light);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

/* Social Media Icons */
.social-media-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
    padding: 30px 0;
}

.social-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-icon i {
    font-size: 48px;
    transition: all 0.3s;
    display: block;
}

/* Instagram - Gradient Pink/Purple */
.social-icon.instagram i {
    color: #E4405F;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram:hover i {
    -webkit-text-fill-color: white;
    color: white;
}

/* Facebook - Blue */
.social-icon.facebook i {
    color: #1877f2;
}

.social-icon.facebook:hover {
    background: #1877f2;
}

.social-icon.facebook:hover i {
    color: white;
}

/* LinkedIn - Blue */
.social-icon.linkedin i {
    color: #0077b5;
}

.social-icon.linkedin:hover {
    background: #0077b5;
}

.social-icon.linkedin:hover i {
    color: white;
}

/* TikTok - Black with Pink accent */
.social-icon.tiktok i {
    color: #000000;
}

.social-icon.tiktok:hover {
    background: linear-gradient(135deg, #000000 0%, #ff0050 100%);
}

.social-icon.tiktok:hover i {
    color: white;
}

/* X (Twitter) - Black */
.social-icon.twitter svg {
    width: 48px;
    height: 48px;
    color: #000000;
    transition: all 0.3s;
}

.social-icon.twitter:hover {
    background: #000000;
}

.social-icon.twitter:hover svg {
    color: white;
}

/* Pinterest - Red */
.social-icon.pinterest i {
    color: #E60023;
}

.social-icon.pinterest:hover {
    background: #E60023;
}

.social-icon.pinterest:hover i {
    color: white;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 80px;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.logo-text {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* OPLOG */
.logo-text.oplog {
    color: #999;
    background: linear-gradient(135deg, #ccc 0%, #999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Figo para */
.logo-text.figopara {
    color: #333;
}

.logo-text.figopara .arrow {
    color: #e74c3c;
    font-size: 24px;
    margin: 0 3px;
    display: inline-block;
}

/* CallCenter STUDIO */
.logo-text.callcenter {
    color: #333;
    font-size: 26px;
    white-space: normal;
}

.logo-text.callcenter .studio {
    color: #ff6b35;
    font-size: 18px;
    font-weight: 600;
}

/* ALOTECH */
.logo-text.alotech {
    color: #333;
    font-size: 26px;
    white-space: normal;
}

.logo-text.alotech .square-o {
    color: #e74c3c;
    font-size: 20px;
}

.logo-text.alotech .subtitle {
    color: #999;
    font-size: 12px;
    font-weight: 500;
    display: block;
    margin-top: 4px;
}

/* clemta */
.logo-text.clemta {
    color: #000;
}

.logo-text.clemta .triangle {
    color: #3498db;
    font-size: 14px;
    margin-left: 2px;
}

/* bizimhesap */
.logo-text.bizimhesap {
    color: #2c5f41;
}

.logo-text.bizimhesap .check {
    color: #4caf50;
    font-size: 18px;
    margin: 0 2px;
}

/* YAN */
.logo-text.yan {
    color: #ffb3ba;
    opacity: 0.7;
}

/* References Section */
.references-section {
    padding: 60px 0;
    text-align: center;
    background: var(--bg-white);
    overflow: hidden;
}

.references-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.references-slider {
    display: flex;
    gap: 40px;
    animation: slide 30s linear infinite;
    will-change: transform;
}

.references-slider:hover {
    animation-play-state: paused;
}

.reference-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 80px;
    flex-shrink: 0;
}

.reference-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

/* Bento Grid Banner Section */
.bento-section {
    padding: 40px 0;
    background: #0a0a0a;
}

.bento-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 180px);
    gap: 15px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Ortak Kart Stilleri */
.card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(88, 101, 242, 0.3);
}

.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.card:hover .card-bg-image {
    opacity: 0.25;
}

.instagram-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(225, 48, 108, 0.1) 0%,
        rgba(131, 58, 180, 0.1) 25%,
        rgba(253, 29, 29, 0.1) 50%,
        rgba(255, 193, 7, 0.1) 75%,
        rgba(225, 48, 108, 0.1) 100%);
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

.card-title-main {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
    z-index: 2;
    position: relative;
}

/* Kart 1: Web Tasarım & E-ticaret (Sol Üst - Geniş) */
.card-web {
    grid-column: span 2;
    grid-row: span 1;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    justify-content: space-between;
}

.web-devices {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 12px;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.device {
    position: relative;
    transition: transform 0.3s ease;
}

.device-desktop {
    width: 50px;
    height: 38px;
}

.device-laptop {
    width: 45px;
    height: 32px;
}

.device-mobile {
    width: 22px;
    height: 38px;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 1.5px solid rgba(88, 101, 242, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.device-screen.active {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.6);
    color: #5865f2;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
}

.glow-line {
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.5), transparent);
    animation: pulse 2s ease-in-out infinite;
}

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

.card-ai h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.card-ai .icons-wrapper {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.ai-badge {
    width: 50px;
    height: 50px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Kart 2: Sosyal Medya & Etkileşim (Merkez - Büyük) */
.card-social {
    grid-column: span 3;
    grid-row: span 2;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.social-network {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.heart-pulse i {
    font-size: 2.5rem;
    color: #5865f2;
    filter: drop-shadow(0 0 15px rgba(88, 101, 242, 0.8));
    animation: heartbeat 1.5s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

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

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 1.5px solid rgba(88, 101, 242, 0.5);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

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

.social-icons-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.social-icon-glow {
    position: absolute;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
}

.social-icon-glow:hover {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.8);
}

.social-icon-glow i {
    filter: drop-shadow(0 0 5px rgba(88, 101, 242, 0.6));
}

.glass-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

/* Kart 3: Grafik Tasarım (Sol Alt) */
.card-graphic {
    grid-column: span 1;
    grid-row: span 1;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.graphic-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stylus-pen {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    color: #5865f2;
    filter: drop-shadow(0 0 12px rgba(88, 101, 242, 0.6));
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

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

.creative-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.wave {
    flex: 1;
    background: linear-gradient(to top, 
        rgba(88, 101, 242, 0.8) 0%,
        rgba(139, 69, 199, 0.6) 50%,
        rgba(255, 105, 180, 0.4) 100%);
    border-radius: 10px 10px 0 0;
    animation: waveAnimation 2s ease-in-out infinite;
}

.wave-1 {
    height: 80%;
    animation-delay: 0s;
}

.wave-2 {
    height: 100%;
    animation-delay: 0.2s;
}

.wave-3 {
    height: 70%;
    animation-delay: 0.4s;
}

.wave-4 {
    height: 90%;
    animation-delay: 0.6s;
}

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

.card-brands h2 {
    font-size: 2.5rem;
    margin: 0;
    line-height: 1;
    color: #000;
}

.card-brands h2 span {
    color: #ff00cc;
}

.card-brands p {
    color: #666;
    margin-top: 15px;
    font-size: 1rem;
}

.image-placeholder {
    margin-top: auto;
    width: 100%;
    height: 250px;
    background: #e0e0e0;
    border-radius: 20px;
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

/* Kart 4: Tanıtım Filmi Çekimi (Orta Alt) */
.card-video {
    grid-column: span 1;
    grid-row: span 1;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 100%);
    position: relative;
    overflow: hidden;
}

.video-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.camera-lens {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 2;
}

.lens-ring {
    width: 100%;
    height: 100%;
    border: 8px solid rgba(88, 101, 242, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.6);
    animation: lensPulse 2s ease-in-out infinite;
}

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

.lens-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: inset 0 0 15px rgba(88, 101, 242, 0.5);
}

.cityscape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 20px;
}

.building {
    background: linear-gradient(to top, 
        rgba(88, 101, 242, 0.3) 0%,
        rgba(139, 69, 199, 0.2) 100%);
    border-radius: 4px 4px 0 0;
    position: relative;
}

.building-1 {
    width: 30px;
    height: 60%;
}

.building-2 {
    width: 25px;
    height: 80%;
}

.building-3 {
    width: 35px;
    height: 50%;
}

.light-trail {
    position: absolute;
    bottom: 20px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(88, 101, 242, 0.8) 50%,
        transparent 100%);
    border-radius: 2px;
    animation: lightMove 3s linear infinite;
}

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

.card-efficiency .min-text {
    font-size: 1.2rem;
    opacity: 0.8;
}

.card-efficiency .gradient-text {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(to right, #ff9966, #ff5e62);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.card-efficiency .bottom-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Kart 5: Reklam Yönetimi (Sağ Alt) */
.card-ads {
    grid-column: span 1;
    grid-row: span 1;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ads-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.chart-glow {
    position: absolute;
    top: 30%;
    left: 20%;
    font-size: 1.8rem;
    color: #5865f2;
    filter: drop-shadow(0 0 12px rgba(88, 101, 242, 0.6));
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.target-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #ff6b6b;
    filter: drop-shadow(0 0 12px rgba(255, 107, 107, 0.6));
    z-index: 2;
}

.trending-arrow {
    position: absolute;
    bottom: 25%;
    right: 20%;
    font-size: 1.5rem;
    color: #4ecdc4;
    filter: drop-shadow(0 0 12px rgba(78, 205, 196, 0.6));
    animation: trendUp 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes trendUp {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-10px) rotate(45deg); }
}

.card-task h3 {
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.card-task p {
    color: #666;
    margin: 0 0 20px 0;
}

.task-ui-mockup {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #eee;
}

.task-ui-mockup .avatar {
    width: 40px;
    height: 40px;
    background: #ddd;
    border-radius: 50%;
    background-image: url('https://i.pravatar.cc/150?img=32');
    background-size: cover;
}

.task-ui-mockup .progress-bar {
    flex-grow: 1;
    height: 30px;
    background: linear-gradient(90deg, #d53369 0%, #daae51 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: bold;
}

.banner-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.banner-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.banner-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.banner-title.gray {
    color: rgba(255, 255, 255, 0.9);
}

.banner-title.gradient-text {
    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;
    font-size: 56px;
    line-height: 1;
}

.banner-description {
    font-size: 14px;
    color: #666;
    margin-top: 12px;
    line-height: 1.6;
}

/* AI Banner - 1. Banner */
.ai-banner {
    grid-column: 1;
    grid-row: 1;
    background: #ffffff;
    flex-direction: column;
    justify-content: space-between;
}

.ai-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: auto;
}

.ai-icon-row {
    display: flex;
    gap: 15px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle.yellow {
    background: #ffd93d;
}

.icon-circle.black-arrow {
    background: #000;
    color: white;
}

.icon-circle.black-arrow::after {
    content: '↗';
    font-size: 20px;
}

.icon-circle.green-chat {
    background: #00d4aa;
}

.icon-circle.green-chat::after {
    content: '💬';
    font-size: 20px;
}

.icon-circle.gray {
    background: #e0e0e0;
}

.icon-circle.orange-star {
    background: #ff6b35;
}

.icon-circle.orange-star::after {
    content: '✦';
    color: white;
    font-size: 20px;
}

.icon-circle.blue-diamond {
    background: #4a90e2;
}

.icon-circle.blue-diamond::after {
    content: '◆';
    color: white;
    font-size: 20px;
}

.icon-circle.pink {
    background: #ff69b4;
}

.icon-circle.green-dot {
    background: #4caf50;
}

.icon-circle.orange-dot {
    background: #ff9800;
}

.icon-circle.pink-dot {
    background: #ffc0cb;
}

.ai-banner .banner-text {
    margin-top: auto;
}

.ai-banner .banner-label {
    color: #999;
    font-size: 14px;
}

.ai-banner .banner-title {
    color: #000;
    font-size: 28px;
    font-weight: 700;
}


/* Rocket Banner - 2. Banner */
.rocket-banner {
    grid-column: 2;
    grid-row: 1;
    background: var(--red-instagram-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    width: 160px;
    height: 320px;
    background: #1a1a1a;
    border-radius: 25px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: #333;
    border-radius: 10px;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: var(--red-instagram-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.app-icon i {
    font-size: 40px;
    color: white;
}

/* Efficiency Banner - 4. Banner */
.efficiency-banner {
    grid-column: 4;
    grid-row: 1;
    background: #1a1a1a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.efficiency-banner .banner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.efficiency-banner .banner-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 5px;
}

.efficiency-banner .banner-label.bottom {
    margin-top: 5px;
    margin-bottom: 0;
}

.efficiency-banner .banner-title {
    color: white;
}

.efficiency-banner .banner-title.gradient-text {
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
}


/* Brands Banner - 3. Banner */
.brands-banner {
    grid-column: 3;
    grid-row: 1;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brands-banner .banner-text {
    flex: 1;
}

.brands-banner .banner-title {
    color: #000;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 5px;
}

.brands-banner .pink-plus {
    color: #ff1493;
}

.brands-banner .banner-subtitle {
    color: #999;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.brands-banner .banner-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.team-visual {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 20px;
}

.team-avatars {
    display: flex;
    gap: -10px;
}

.team-avatars .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
}

.team-avatars .avatar:last-child {
    margin-left: -15px;
}

.brands-banner .rocket-icon {
    width: 60px;
    height: 60px;
    background: var(--red-instagram-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-10deg);
}

.brands-banner .rocket-icon i {
    font-size: 30px;
    color: white;
}

.brand-visual {
    position: relative;
    margin-top: 20px;
    height: 120px;
}

.rocket-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transform: rotate(-15deg);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.team-avatars {
    position: absolute;
    bottom: 10px;
    left: 0;
    display: flex;
    gap: 8px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-1 {
    background: var(--primary-gradient);
}

.avatar-2 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--anthracite-medium) 100%);
}

/* Team Banner */
.team-banner {
    background: var(--primary-gradient);
    color: white;
}

.team-banner .banner-label {
    color: rgba(255, 255, 255, 0.8);
}

.team-banner .banner-title {
    color: white;
}

.team-banner .banner-description {
    color: rgba(255, 255, 255, 0.9);
}

.team-visual {
    margin-top: 20px;
    text-align: center;
}

.team-icon {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.3);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-content {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-highlight {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 30px;
}

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

.benefit-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated background pattern */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 60%);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 1;
}

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

/* Grid pattern overlay */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(220, 38, 38, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #dc2626, #ef4444, #dc2626, transparent);
    border-radius: 2px;
    animation: expandLine 2s ease-in-out infinite;
}

@keyframes expandLine {
    0%, 100% {
        width: 80px;
        opacity: 1;
    }
    50% {
        width: 120px;
        opacity: 0.8;
    }
}

.cta-title strong {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.cta-title strong::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--red-instagram-gradient);
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.cta-description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.cta-description strong {
    color: #fbbf24;
    font-weight: 700;
    position: relative;
    padding: 0 4px;
    background: linear-gradient(135deg, var(--instagram-start), var(--instagram-mid2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description strong::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red-instagram-gradient);
    border-radius: 2px;
    opacity: 0.6;
}

/* CTA Button - Modern Design */
.cta-section .btn-primary {
    background: var(--red-instagram-gradient);
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(220, 38, 67, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    z-index: 1;
}

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

.cta-section .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.cta-section .btn-primary::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-section .btn-primary:hover::after {
    transform: translateX(5px);
}

/* --- HİZMETLERİMİZ BÖLÜMÜ --- */
/* Modern Services Section */
.services-section {
    padding: 100px 40px;
    background: #fafafa;
}

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

.section-title-modern {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle-modern {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-modern {
    background: white;
    border-radius: 24px;
    padding: 40px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--instagram-start), var(--primary-color), var(--instagram-mid2), var(--instagram-mid3), var(--instagram-end));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    animation: gradientShift 3s ease infinite;
}

.service-card-modern:hover::before {
    animation: gradientShift 1s ease infinite;
}

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

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(220, 38, 67, 0.2);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    position: relative;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-1 {
    background: var(--instagram-gradient);
    box-shadow: 0 8px 24px rgba(220, 38, 67, 0.4);
}

.service-icon-2 {
    background: linear-gradient(135deg, var(--facebook-blue) 0%, var(--facebook-blue-dark) 100%);
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4);
}

.service-icon-3 {
    background: var(--red-instagram-gradient);
    box-shadow: 0 8px 24px rgba(220, 38, 67, 0.4);
}

.service-icon-4 {
    background: linear-gradient(135deg, var(--instagram-mid2) 0%, var(--instagram-mid3) 100%);
    box-shadow: 0 8px 24px rgba(220, 38, 67, 0.4);
}

.service-icon-5 {
    background: var(--red-instagram-gradient);
    box-shadow: 0 8px 24px rgba(220, 38, 67, 0.4);
}

.service-icon-6 {
    background: linear-gradient(135deg, var(--instagram-start) 0%, var(--instagram-mid3) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(220, 38, 67, 0.4);
}

.service-content-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    transition: color 0.3s ease;
}

.service-card-modern:hover .service-content-modern h3 {
    color: var(--primary-color);
}

.service-content-modern p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 20px 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-link {
    gap: 12px;
    color: var(--instagram-end);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card-modern:hover .service-link i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }
    
    .section-title-modern {
        font-size: 2.2rem;
    }
    
    .section-subtitle-modern {
        font-size: 1rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-modern {
        padding: 30px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .service-content-modern h3 {
        font-size: 1.3rem;
    }
}

/* Old services-section styles - keeping for compatibility */
.services-section-old {
    width: 100%;
    margin-top: 50px;
    padding-bottom: 50px;
}

/* Başlık ve Butonlar */
.services-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.nav-buttons {
    background: white;
    padding: 5px;
    border-radius: 50px;
    display: flex;
    gap: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #666;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #f0f0f0;
    color: #000;
}

.services-section .section-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 600;
}

/* Grid Yapısı */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Sütun */
    gap: 25px;
}

/* Kart Tasarımı */
.service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden; /* Resmin köşeleri taşmasın */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Kartın Resim Alanı (Gradyan + İkon) */
.card-image {
    height: 180px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Her kart için özel arka plan renkleri (Görsele uygun mor/mavi tonlar) */
.img-marketing { background: linear-gradient(135deg, #4b1a8f, #8e44ad); }
.img-social { background: linear-gradient(135deg, #3a1c71, #d76d77); }
.img-web { background: linear-gradient(135deg, #141e30, #243b55); }
.img-landing { background: linear-gradient(135deg, #2b0c5e, #6a0572); }

/* Uçan İkon Efekti (3D görsel temsili) */
.floating-icon {
    font-size: 4rem;
    color: rgba(255,255,255,0.9);
    z-index: 2;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.3));
}

/* Arka plandaki dekoratif halkalar */
.decoration-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 20px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    right: -30px;
    top: -30px;
}

/* Kart İçeriği */
.card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-body h3 {
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.card-body p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

/* Detay Butonu */
.detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between; /* Yazı sola, ok sağa */
    padding: 12px 20px;
    background-color: #f5f7fa;
    color: #333;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

/* Services CTA Section */
.services-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
    padding: 40px 20px;
    text-align: center;
}

.services-cta-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    max-width: 700px;
    margin: 0;
    font-weight: 500;
}

.services-cta .btn-live-meeting {
    padding: 14px 32px;
    font-size: 15px;
}

.detail-btn:hover {
    background-color: #e2e6ea;
}

.detail-btn i {
    font-size: 0.8rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 50px;
}

/* --- MOBİL UYUM (RESPONSIVE) --- */
@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 sütun */
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr; /* Mobilde 1 sütun */
    }
    .services-header {
        flex-direction: row; /* Mobilde de yan yana kalsın */
    }
    .services-cta {
        margin-top: 40px;
        padding: 30px 15px;
        gap: 20px;
    }
    .services-cta-text {
        font-size: 16px;
    }
    .services-cta .btn-live-meeting {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    width: 100%;
}

.testimonials-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(220, 38, 38, 0.1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.15);
}

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

.quote-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    opacity: 0.1;
    transition: opacity 0.3s, transform 0.3s;
}

.testimonial-card:hover .quote-icon {
    opacity: 0.2;
    transform: scale(1.1) rotate(5deg);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    color: #ffc107;
    font-size: 16px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    transition: transform 0.3s;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1) rotate(5deg);
}

.testimonial-card:nth-child(2) .author-avatar {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

.testimonial-card:nth-child(3) .author-avatar {
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.author-info {
    flex: 1;
}

.testimonial-author strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
}

.testimonial-author span {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.testimonials-cta {
    text-align: center;
    margin-top: 40px;
}

.testimonials-cta .btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.testimonials-cta .btn-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

/* Social Icons Responsive */
@media (max-width: 768px) {
    .social-media-icons {
        gap: 20px;
        padding: 20px 0;
    }
    
    .social-icon {
        width: 80px;
        height: 80px;
    }
    
    .social-icon i {
        font-size: 36px;
    }
    
    .social-x .x-logo {
        font-size: 36px;
    }
}

/* Testimonials Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .quote-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
        top: 20px;
        right: 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
}

.faq-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    position: relative;
}

.faq-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #dc2626, #ef4444);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.12);
    border-color: rgba(220, 38, 38, 0.2);
}

.faq-item.active {
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
}

.faq-item.active::before {
    transform: scaleY(1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    position: relative;
}

.faq-question:hover {
    background: rgba(220, 38, 38, 0.02);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(239, 68, 68, 0.03));
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    padding-right: 20px;
    line-height: 1.5;
    transition: color 0.3s;
}

.faq-item.active .faq-question h3 {
    color: #dc2626;
}

.faq-question i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.3);
}

.faq-question:hover i {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg) scale(1.1);
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 30px;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
    padding-top: 10px;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta .btn-link {
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 35px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.faq-cta .btn-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

/* FAQ Responsive */
@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
    }
    
    .faq-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-item {
        margin-bottom: 0;
        border-radius: 16px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq-question i {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .faq-cta {
        margin-top: 30px;
    }
    
    .faq-cta .btn-link {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background: var(--anthracite-dark);
    color: white;
    padding: 60px 0 0;
    overflow-x: hidden;
}

.footer-light {
    background: #ffffff;
    color: #333;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Simple Grid System for Footer */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.gx-5 {
    margin: 0 -20px;
}

.gx-5 > * {
    padding: 0 20px;
}

.col-lg-4,
.col-lg-6,
.col-lg-8,
.col-sm-6,
.col-sm-12,
.col-md-12 {
    flex: 0 0 auto;
    width: 100%;
    padding: 0 15px;
}

@media (min-width: 576px) {
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-12 {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        width: 33.333333%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-8 {
        width: 66.666667%;
    }
    .order-lg-1 {
        order: 1;
    }
    .order-lg-2 {
        order: 2;
    }
}

@media (min-width: 576px) {
    .order-sm-1 {
        order: 1;
    }
    .order-sm-2 {
        order: 2;
    }
}

.footer-content {
    margin-bottom: 40px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.spacer-20 {
    height: 20px;
}

.footer-brand p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 14px;
}

.footer-light .footer-brand p {
    color: #666;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.footer-light .social-links a {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

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

.mb-sm-30 {
    margin-bottom: 30px;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-column h5 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.footer-light .footer-column h5 {
    color: #1a1a1a;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-light .footer-column a {
    color: #666;
}

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.footer-contact-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 3px;
    min-width: 24px;
}

.footer-contact-item .fw-bold {
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    font-size: 14px;
}

.footer-light .footer-contact-item .fw-bold {
    color: #1a1a1a;
}

.footer-contact-item div {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.footer-light .footer-contact-item div {
    color: #666;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 40px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: rgba(0, 0, 0, 0.1);
}

.footer-light .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #ccc;
    font-size: 14px;
}

.footer-light .footer-copyright {
    color: #666;
}

.footer-copyright strong {
    color: white;
    font-weight: 600;
}

.footer-light .footer-copyright strong {
    color: #1a1a1a;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal li {
    margin: 0;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-light .footer-legal a {
    color: #666;
}

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

.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
}

.footer-light .payment-methods {
    color: #666;
}

.payment-methods i {
    font-size: 24px;
    color: #ccc;
}

.footer-light .payment-methods i {
    color: #999;
}

.payment-methods span {
    font-weight: 600;
}

/* Mobile Menu Styles */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 20px);
    left: 20px;
    right: 20px;
    width: auto;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    gap: 0;
    z-index: 1000;
    border-radius: 20px;
}

.nav-menu.active li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.nav-menu.active li:last-child {
    border-bottom: none;
}

/* Mobilde mega menü yerine basit liste */
@media (max-width: 968px) {
    /* Mobilde dropdown'u düzenle - altta açılması için */
    .nav-menu.active .dropdown {
        position: relative;
        display: flex;
        flex-direction: column;
    }
    
    .nav-menu.active .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    /* Mobilde mega menüyü başlangıçta gizle */
.nav-menu.active .mega-menu {
        display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
        margin-top: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    left: 0;
        background: transparent;
        border-radius: 0;
        top: auto;
        order: 2;
    }
    
    /* Dropdown tıklandığında mega menüyü altta göster */
    .nav-menu.active .dropdown.active .mega-menu {
        display: block !important;
        position: static;
        margin-top: 10px;
        margin-left: 0;
        transform: none;
        padding: 15px 0;
        background: transparent;
}

.nav-menu.active .mega-content {
    flex-direction: column;
        padding: 0;
        display: block !important;
}

.nav-menu.active .menu-columns {
        padding: 0;
        background: transparent;
        display: block !important;
}

    /* Hizmetlerimiz altındaki linkleri basit liste olarak göster */
.nav-menu.active .menu-services-grid {
        display: flex !important;
        flex-direction: column;
        gap: 0;
    grid-template-columns: 1fr;
    width: 100%;
}

    .nav-menu.active .menu-item {
        display: flex !important;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        padding-left: 15px;
        border-bottom: 1px solid var(--border-color);
        text-decoration: none;
        background: transparent;
        border-radius: 0;
        transition: background 0.2s;
        width: 100%;
    }
    
    .nav-menu.active .menu-item:hover {
        background: var(--bg-light);
    }
    
    .nav-menu.active .menu-item:last-child {
        border-bottom: none;
    }
    
    .nav-menu.active .icon-box {
        width: 32px;
        height: 32px;
        min-width: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-light);
        border-radius: 8px;
        font-size: 14px;
    }
    
    .nav-menu.active .menu-item-text {
        flex: 1;
    }
    
    .nav-menu.active .menu-item-title {
        font-size: 15px;
        color: var(--text-dark);
        font-weight: 500;
        display: block;
    }
    
    /* Mega content ve columns için ek stiller */
    .nav-menu.active .dropdown.active .mega-content {
        display: block !important;
        padding: 0;
    }
    
    .nav-menu.active .dropdown.active .menu-columns {
        display: block !important;
        padding: 0;
    }
    
    /* Promo ve footer'ı gizle */
.nav-menu.active .menu-promo {
        display: none;
    }
    
    .nav-menu.active .mega-footer {
        display: none;
    }
}


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

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

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

/* Responsive Design */
@media (max-width: 900px) {
    .mega-menu {
        width: 95%;
        left: 50%;
    }
    
    .mega-content {
        flex-direction: column;
    }
    
    .menu-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .menu-services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .menu-promo {
        margin-top: 0;
    }
    
    .mega-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-text {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 968px) {
    .header {
        padding: 15px;
    }

    .nav-content {
        padding: 12px 20px;
        border-radius: 30px;
        gap: 20px;
        justify-content: space-between;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
        order: 3;
        z-index: 11;
    }
    
    /* Logo responsive'de ortada */
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .logo a {
        font-size: 20px;
    }

    .logo-icon {
        height: 45px;
    }

    .logo-image {
        max-width: 160px;
    }
    
    /* Nav actions'ı sağa al */
    .nav-actions {
        order: 2;
        margin-left: auto;
    }

    .nav-actions {
        gap: 8px;
    }

    /* Responsive'de canlı toplantı butonunu gizle */
    .btn-live-meeting {
        display: none !important;
    }

    .btn-meeting {
        padding: 8px 16px;
        font-size: 13px;
    }

    .language-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .btn-add {
        width: 36px;
        height: 36px;
    }

    .hero-slider {
        margin-top: 15px;
        margin-left: 15px;
        margin-right: 15px;
        border-radius: 28px;
        height: 420px;
    }

    .hero-slide .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .title-line {
        display: inline-block;
        margin-right: 8px;
    }

    .hero-description {
        font-size: 16px;
        margin: 0 auto 28px;
    }

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

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

    .hero-visual {
        display: none;
    }

    .slider-nav {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .slider-nav.prev {
        left: 15px;
    }

    .slider-nav.next {
        right: 15px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Bento Grid Responsive */
@media (max-width: 1200px) {
    .bento-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }
    
    .card-social {
        grid-column: span 3;
        grid-row: span 1;
        min-height: 300px;
    }
    
    .card-web {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .bento-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        min-height: 200px;
    }
    
    .card-title-main {
        font-size: 1rem;
    }
    
    .web-devices {
        flex-direction: column;
        gap: 10px;
    }
    
    .heart-pulse i {
        font-size: 2rem;
    }
    
    .stylus-pen {
        font-size: 1.5rem;
    }
    
    .camera-lens {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .about-content-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .page-header-section {
        padding: 100px 0 50px !important;
    }
    
    .hero-slider {
        margin-top: 10px;
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 24px;
        height: 400px;
    }

    .hero-slide .container {
        padding: 0 20px;
        gap: 30px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .hero-slide .container {
        padding: 0 20px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 16px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

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

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 14px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }

    .rocket {
        font-size: 60px;
    }

    .rocket-flame {
        width: 35px;
        height: 45px;
        bottom: -25px;
    }

    @keyframes rocketFly {
        0% {
            bottom: -60px;
            right: -60px;
            transform: rotate(-45deg) scale(0.6);
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        50% {
            bottom: 50%;
            right: 15%;
            transform: rotate(-20deg) scale(0.8);
        }
        90% {
            opacity: 1;
        }
        100% {
            top: -60px;
            right: 70%;
            transform: rotate(45deg) scale(0.6);
            opacity: 0;
        }
    }

    .hero-title {
        font-size: 28px;
    }

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

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

    .cta-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
        height: auto;
    }
    
    .ai-banner,
    .rocket-banner,
    .brands-banner,
    .efficiency-banner,
    .task-banner {
        grid-column: 1 !important;
        grid-row: auto !important;
        min-height: 300px;
    }

    .feature-banner {
        min-height: 240px;
        padding: 25px;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-title.gradient-text {
        font-size: 48px;
    }

    .ai-network {
        height: 120px;
    }

    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .references-slider {
        gap: 25px;
        animation-duration: 25s;
    }

    .reference-logo {
        padding: 15px 20px;
        min-height: 70px;
    }

    .logo-text {
        font-size: 24px;
    }

    .nav-actions {
        display: none;
    }

    .nav-menu.active ~ .nav-actions {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 20px);
        right: 20px;
        left: 20px;
        background: var(--bg-white);
        box-shadow: var(--shadow-lg);
        padding: 15px;
        border-radius: 20px;
        gap: 10px;
        z-index: 1000;
        width: auto;
    }

    .nav-menu.active ~ .nav-actions .btn-live-meeting,
    .nav-menu.active ~ .nav-actions .language-btn,
    .nav-menu.active ~ .nav-actions .btn-meeting,
    .nav-menu.active ~ .nav-actions .btn-add {
        display: flex;
        width: 100%;
        justify-content: center;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .row {
        margin: 0 -10px;
    }
    
    .gx-5 {
        margin: 0 -10px;
    }
    
    .gx-5 > * {
        padding: 0 10px;
    }
    
    .footer-brand {
        margin-bottom: 30px;
    }
    
    .footer-logo {
        max-width: 120px;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
        left: 50%;
        right: 50%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 15px;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .footer-contact-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-contact-item i {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary {
        width: 100%;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-legal li {
        width: 100%;
        text-align: center;
    }
}

/* Pricing Page Styles */
.fiyatlandirma {
    padding: 80px 0;
}

.fiyatlandirma .bg-color,
.fiyatlandirma .bg-color-2,
.fiyatlandirma .bg-color-3 {
    background: var(--primary-gradient);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fiyatlandirma .bg-color-2 {
    background: linear-gradient(135deg, #2c2c2c 0%, #3d3d3d 100%);
}

.fiyatlandirma .bg-color-3 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.fiyatlandirma .bg-color:hover,
.fiyatlandirma .bg-color-2:hover,
.fiyatlandirma .bg-color-3:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.fiyatlandirma .ul-check {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.fiyatlandirma .ul-check.white li {
    color: #fff;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.fiyatlandirma .ul-check.white li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

.fiyatlandirma .p-30 {
    padding: 30px;
}

.fiyatlandirma .w-100px {
    width: 100px;
    height: auto;
}

.fiyatlandirma .fs-24 {
    font-size: 24px;
}

.fiyatlandirma .spacer-single {
    height: 20px;
}

.fiyatlandirma .btn-main {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.fiyatlandirma .btn-main:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* Subheader section */
#subheader {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

#subheader .jarallax-img {
    opacity: 0.3;
}

#subheader h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

#subheader .subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

#subheader .crumb {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

#subheader .crumb li {
    color: var(--text-light);
}

#subheader .crumb li.active {
    color: var(--primary-color);
}

#subheader .crumb li a {
    color: var(--text-light);
    text-decoration: none;
}

#subheader .crumb li a:hover {
    color: var(--primary-color);
}

/* ========================================
   HAKKIMIZDA SAYFASI STİLLERİ
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(220,38,38,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 64px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.page-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hero Story Section */
.story-section {
    padding: 100px 0;
    background: white;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.story-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.story-text h2 strong {
    color: #dc2626;
    font-weight: 800;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-visual {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
}

.story-visual-content {
    text-align: center;
    color: white;
    padding: 40px;
}

.story-visual-icon {
    font-size: 120px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

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

.story-visual-text {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.philosophy-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.2);
}

.philosophy-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: white;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.philosophy-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.philosophy-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* How We Work Section */
.how-we-work-section {
    padding: 100px 0;
    background: white;
}

.work-flow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.work-flow-header {
    text-align: center;
    margin-bottom: 80px;
}

.work-flow-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.work-flow-header p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.work-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.work-step {
    text-align: center;
    position: relative;
}

.work-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    z-index: 1;
}

.work-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Core Values Section */
.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.3);
}

.value-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.value-card p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    color: #666;
    font-weight: 600;
}

/* Hakkımızda Sayfası Responsive */
@media (max-width: 968px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .work-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-step::after {
        display: none;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .page-title {
        font-size: 40px;
    }

    .story-text h2,
    .work-flow-header h2 {
        font-size: 32px;
    }

    .work-steps,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HİZMET SAYFALARI STİLLERİ
   ======================================== */

/* Service Icon Large */
.service-icon-large {
    width: 120px;
    height: 120px;
    background: var(--red-instagram-gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 60px;
    color: white;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    animation: float 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

/* Service Hero Section */
.service-hero-section {
    padding: 100px 0;
    background: white;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.service-hero-content h2 strong {
    background: var(--red-instagram-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.service-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: white;
    color: #FF0000;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.service-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-visual-card {
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.visual-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    z-index: 1;
}

/* SOSYAL MEDYA YÖNETİMİ - Instagram Gradient */
.visual-social-media {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 20px 60px rgba(220, 38, 67, 0.4);
}

.visual-social-media .visual-icon {
    position: relative;
    z-index: 2;
}

.floating-elements-social {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.float-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatUp 4s ease-in-out infinite;
}

.float-dot.dot-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.float-dot.dot-2 {
    top: 40%;
    right: 20%;
    animation-delay: 1s;
    width: 8px;
    height: 8px;
}

.float-dot.dot-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 2s;
    width: 10px;
    height: 10px;
}

.float-dot.dot-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 1.5s;
    width: 6px;
    height: 6px;
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 1;
    }
}

/* GRAFİK TASARIM - Yaratıcı Renk Paleti */
.visual-graphic-design {
    background: var(--red-instagram-gradient);
    box-shadow: 0 20px 60px rgba(220, 38, 67, 0.4);
}

.color-splashes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.splash {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: splashMove 6s ease-in-out infinite;
}

.splash-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--instagram-start), var(--instagram-mid1));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.splash-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--instagram-mid2));
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.splash-3 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--instagram-mid2), var(--instagram-mid3));
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.splash-4 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--instagram-mid1), var(--instagram-end));
    top: 30%;
    right: 25%;
    animation-delay: 2s;
}

@keyframes splashMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -20px) scale(1.1);
    }
    50% {
        transform: translate(-15px, 15px) scale(0.9);
    }
    75% {
        transform: translate(10px, 10px) scale(1.05);
    }
}

/* REKLAM KAMPANYA YÖNETİMİ - Mavi Enerji */
.visual-advertising {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--instagram-mid2) 50%, var(--instagram-end) 100%);
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.4);
}

.ad-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    z-index: 1;
    overflow: hidden;
}

.wave {
    position: absolute;
    width: 200%;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: waveMove 4s ease-in-out infinite;
}

.wave-1 {
    bottom: 0;
    left: -50%;
    animation-delay: 0s;
}

.wave-2 {
    bottom: 20px;
    left: -50%;
    animation-delay: 1s;
    height: 80px;
    opacity: 0.7;
}

.wave-3 {
    bottom: 40px;
    left: -50%;
    animation-delay: 2s;
    height: 60px;
    opacity: 0.5;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(25%);
    }
}

/* WEB SİTESİ YAZILIMI - Kod Teması */
.visual-web-development {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--instagram-mid2) 50%, var(--instagram-end) 100%);
    box-shadow: 0 20px 60px rgba(67, 233, 123, 0.4);
}

.code-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.2;
}

.code-line {
    position: absolute;
    height: 3px;
    background: white;
    border-radius: 2px;
    animation: codeTyping 3s ease-in-out infinite;
}

.code-line.line-1 {
    top: 25%;
    left: 10%;
    width: 60%;
    animation-delay: 0s;
}

.code-line.line-2 {
    top: 35%;
    left: 15%;
    width: 50%;
    animation-delay: 0.5s;
}

.code-line.line-3 {
    top: 45%;
    left: 10%;
    width: 55%;
    animation-delay: 1s;
}

.code-line.line-4 {
    top: 55%;
    left: 20%;
    width: 45%;
    animation-delay: 1.5s;
}

@keyframes codeTyping {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0;
    }
}

/* TANITIM FİLMİ ÇEKİMİ - Sinematik */
.visual-video-production {
    background: var(--red-instagram-gradient);
    box-shadow: 0 20px 60px rgba(220, 38, 67, 0.4);
}

.film-strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 20px 0;
    opacity: 0.15;
}

.strip-frame {
    width: 100%;
    height: 40px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.3) 20px,
        rgba(255, 255, 255, 0.3) 22px
    );
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    animation: filmMove 8s linear infinite;
}

.strip-frame.frame-1 {
    animation-delay: 0s;
}

.strip-frame.frame-2 {
    animation-delay: 2s;
}

.strip-frame.frame-3 {
    animation-delay: 4s;
}

.strip-frame.frame-4 {
    animation-delay: 6s;
}

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

/* EK DESTEK HİZMETLERİ - Güvenilir Destek */
.visual-support {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--instagram-mid2) 50%, var(--instagram-end) 100%);
    box-shadow: 0 20px 60px rgba(48, 207, 208, 0.4);
}

.support-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.ring-2 {
    width: 250px;
    height: 250px;
    animation-delay: 1s;
}

.ring-3 {
    width: 300px;
    height: 300px;
    animation-delay: 2s;
}

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

.service-visual-card .visual-icon {
    font-size: 100px;
    margin-bottom: 40px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.visual-stats {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Service Features Section */
.service-features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red-instagram-gradient);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

.service-feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(220, 38, 67, 0.3);
}

/* Her feature card için farklı renkler */
.service-feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, var(--instagram-start) 0%, var(--instagram-mid1) 100%);
    box-shadow: 0 10px 30px rgba(220, 38, 67, 0.4);
}

.service-feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--instagram-mid2) 100%);
    box-shadow: 0 10px 30px rgba(220, 38, 67, 0.4);
}

.service-feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--instagram-mid2) 0%, var(--instagram-end) 100%);
    box-shadow: 0 10px 30px rgba(220, 38, 67, 0.4);
}

.service-feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, var(--instagram-mid1) 0%, var(--instagram-mid3) 100%);
    box-shadow: 0 10px 30px rgba(220, 38, 67, 0.4);
}

.service-feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--instagram-end) 100%);
    box-shadow: 0 10px 30px rgba(220, 38, 67, 0.4);
}

.service-feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, var(--instagram-start) 0%, var(--instagram-mid3) 100%);
    box-shadow: 0 10px 30px rgba(220, 38, 67, 0.4);
    color: #333;
}

.service-feature-card .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.service-feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Service Process Section */
.service-process-section {
    padding: 100px 0;
    background: white;
}

.service-process-section .section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.service-process-section .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-process-section .process-step {
    text-align: center;
    position: relative;
}

.service-process-section .process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--instagram-start), var(--primary-color), var(--instagram-mid2), var(--instagram-mid3), var(--instagram-end));
    background-size: 200% 100%;
    animation: gradientFlow 3s ease infinite;
    border-radius: 2px;
    z-index: 1;
}

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

.service-process-section .process-step:last-child::after {
    display: none;
}

.service-process-section .step-number {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

/* Her step için farklı renkler */
.service-process-section .process-step:nth-child(1) .step-number {
    background: linear-gradient(135deg, var(--instagram-start) 0%, var(--instagram-mid1) 100%);
    box-shadow: 0 10px 30px rgba(220, 38, 67, 0.4);
}

.service-process-section .process-step:nth-child(2) .step-number {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--instagram-mid2) 100%);
    box-shadow: 0 10px 30px rgba(220, 38, 67, 0.4);
}

.service-process-section .process-step:nth-child(3) .step-number {
    background: linear-gradient(135deg, var(--instagram-mid2) 0%, var(--instagram-end) 100%);
    box-shadow: 0 10px 30px rgba(220, 38, 67, 0.4);
}

.service-process-section .process-step:nth-child(4) .step-number {
    background: linear-gradient(135deg, var(--instagram-mid1) 0%, var(--instagram-mid3) 100%);
    box-shadow: 0 10px 30px rgba(220, 38, 67, 0.4);
}

.service-process-section .process-step:nth-child(5) .step-number {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--instagram-end) 100%);
    box-shadow: 0 10px 30px rgba(220, 38, 67, 0.4);
}

.service-process-section .process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.service-process-section .step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-process-section .step-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Hizmet Sayfaları Responsive */
@media (max-width: 1200px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-process-section .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-process-section .process-step::after {
        display: none;
    }
}

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

    .service-process-section .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-hero-content h2,
    .service-process-section .section-title {
        font-size: 32px;
    }

    .service-features-grid,
    .service-process-section .process-steps {
        grid-template-columns: 1fr;
    }

    .service-cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   FİYATLANDIRMA SAYFASI STİLLERİ
   ======================================== */

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-header .section-title {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.pricing-header .section-subtitle {
    font-size: 18px;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 67, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(220, 38, 67, 0.15);
    border-color: rgba(220, 38, 67, 0.2);
}

.pricing-card:hover::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--instagram-start), var(--primary-color), var(--instagram-mid2), var(--instagram-mid3), var(--instagram-end));
    background-size: 200% 100%;
    animation: gradientShift 2s ease infinite;
}

.pricing-card.featured {
    border: 2px solid rgba(220, 38, 67, 0.2);
    background: linear-gradient(135deg, rgba(220, 38, 67, 0.02), rgba(204, 35, 102, 0.02), rgba(255, 255, 255, 1));
    box-shadow: 0 4px 16px rgba(220, 38, 67, 0.15);
}

.pricing-card.featured::before {
    background: var(--red-instagram-gradient);
    background-size: 200% 100%;
    opacity: 1;
    height: 4px;
    animation: gradientShift 3s ease infinite;
}

.pricing-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(220, 38, 67, 0.25);
    border-color: rgba(220, 38, 67, 0.4);
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--red-instagram-gradient);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(220, 38, 67, 0.3);
}

.pricing-card-header {
    text-align: left;
    margin-bottom: 28px;
    padding-bottom: 0;
    border-bottom: none;
}

.pricing-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(220, 38, 67, 0.1), rgba(204, 35, 102, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    background: linear-gradient(135deg, rgba(220, 38, 67, 0.15), rgba(204, 35, 102, 0.15));
    transform: scale(1.05) rotate(5deg);
}

.pricing-card.featured .pricing-icon {
    background: var(--red-instagram-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 67, 0.3);
}

.pricing-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 16px;
    margin-bottom: 6px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -1.2px;
}

.price-period {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.pricing-note {
    font-size: 12px;
    color: #aaa;
    margin-top: 6px;
    font-weight: 400;
}

.pricing-features {
    flex: 1;
    margin-bottom: 28px;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    border-bottom: none;
}

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

.feature-list li i {
    color: #FF0000;
    font-size: 12px;
    margin-top: 5px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.06);
    border-radius: 3px;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    letter-spacing: -0.1px;
}

.pricing-btn:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

.pricing-btn.featured-btn {
    background: linear-gradient(135deg, #FF0000, #FF3333);
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.15);
}

.pricing-btn.featured-btn:hover {
    background: linear-gradient(135deg, #FF3333, #FF0000);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.25);
}

.pricing-btn i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.pricing-btn:hover i {
    transform: translateX(2px);
}

/* Pricing Category Styles */
.pricing-category {
    margin-bottom: 100px;
}

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

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: #FF0000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.category-title {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.2;
}

.category-description {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

/* Features Comparison Section - Modern Design */
.features-comparison-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
}

.features-comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.comparison-header {
    text-align: center;
    margin-bottom: 90px;
    position: relative;
    z-index: 1;
}

.comparison-header .section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #FF0000;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    position: relative;
    padding: 8px 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.comparison-header .section-title {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.1;
}

.comparison-header .section-subtitle {
    font-size: 17px;
    color: #b0b0b0;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.7;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.feature-card-modern {
    background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px 36px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 72px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-number {
    color: rgba(255, 0, 0, 0.08);
    transform: scale(1.1);
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FF0000, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 0, 0, 0.1);
}

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

.feature-icon-modern {
    width: 64px;
    height: 64px;
    background: var(--red-instagram-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 28px 0;
    font-size: 26px;
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card-modern:hover .feature-icon-modern {
    transform: translateY(-4px) scale(1.1) rotate(5deg);
    box-shadow: 0 10px 28px rgba(220, 38, 67, 0.4);
    background: var(--red-instagram-gradient);
}

.feature-card-modern h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.3;
}

.feature-card-modern p {
    font-size: 15px;
    color: #b8b8b8;
    line-height: 1.75;
    margin: 0;
    letter-spacing: 0.1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF0000, #FF3333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.25);
}

.feature-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Fiyatlandırma Sayfası Responsive */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-5px);
    }
}

@media (max-width: 968px) {
    .category-title {
        font-size: 36px;
        letter-spacing: 1.5px;
    }

    .comparison-header .section-title {
        font-size: 48px;
    }

    .comparison-header .section-label {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 6px 16px;
    }

    .comparison-header .section-subtitle {
        font-size: 15px;
    }

    .features-grid,
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .feature-card-modern {
        padding: 36px 28px;
    }

    .feature-number {
        font-size: 56px;
        top: 20px;
        right: 20px;
    }

    .feature-icon-modern {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

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

    .category-title {
        font-size: 36px;
    }

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

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .features-grid,
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-header .section-title,
    .comparison-header .section-title {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .comparison-header .section-label {
        font-size: 10px;
        letter-spacing: 1.5px;
        padding: 5px 14px;
        margin-bottom: 12px;
    }

    .comparison-header .section-subtitle {
        font-size: 14px;
    }

    .category-title {
        font-size: 32px;
        letter-spacing: 1.5px;
    }

    .feature-card-modern {
        padding: 32px 24px;
        text-align: center;
    }

    .feature-number {
        font-size: 48px;
        top: 16px;
        right: 16px;
    }

    .feature-icon-modern {
        margin: 0 auto 24px;
    }

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

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

    .pricing-category {
        margin-bottom: 60px;
    }

    .category-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
}

/* ========================================
   REFERANSLAR SAYFASI (PROJELERİMİZ)
   ======================================== */
.projects-section {
    padding: 100px 0;
    background: #fafafa;
}

.projects-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 12px 28px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #FF0000, #FF3333);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    height: 240px;
    background: linear-gradient(135deg, #f5f7fa, #e8ecf1);
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: #ddd;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 16px;
}

.project-link {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF0000;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.project-info {
    padding: 24px;
}

.project-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.project-category {
    padding: 4px 12px;
    background: rgba(255, 0, 0, 0.1);
    color: #FF0000;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.project-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    user-select: none;
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 25px;
    font-size: 16px;
    max-width: 80%;
    backdrop-filter: blur(10px);
}

.projects-stats-section {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 51, 51, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: #FF0000;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* ========================================
   ONLİNE CANLI TOPLANTI SAYFASI
   ======================================== */
.meeting-section {
    padding: 100px 0;
    background: #fafafa;
}

.meeting-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.meeting-form-container {
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.meeting-form-header {
    margin-bottom: 36px;
}

.meeting-form-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.meeting-form-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.meeting-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF0000;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.btn-submit {
    padding: 16px 32px;
    background: linear-gradient(135deg, #FF0000, #FF3333);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
}

.form-success {
    text-align: center;
    padding: 60px 40px;
}

.form-success i {
    font-size: 64px;
    color: #28a745;
    margin-bottom: 24px;
}

.form-success h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.form-success p {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
}

.meeting-link-text {
    font-weight: 600;
    color: #FF0000;
}

.meeting-info-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.meeting-info-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.info-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FF0000, #FF3333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.meeting-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.meeting-info-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.meeting-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #666;
}

.feature-item i {
    color: #28a745;
    font-size: 16px;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.hours-item .day {
    font-weight: 600;
    color: #333;
}

.hours-item .time {
    color: #666;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FF0000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #FF3333;
}

.contact-link i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 1200px) {
    .meeting-content-wrapper {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .meeting-form-container {
        padding: 32px 24px;
    }

    .projects-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ========================================
   BLOG SAYFASI STİLLERİ
   ======================================== */
.blog-section {
    padding: 100px 0;
    background: #fafafa;
}

.blog-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 60px;
}

.blog-filter-btn {
    padding: 12px 28px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: linear-gradient(135deg, #FF0000, #FF3333);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #f5f7fa, #e8ecf1);
    overflow: hidden;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: #ddd;
}

.blog-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #FF0000, #FF3333);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #999;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    font-size: 12px;
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #FF0000;
}

.blog-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF0000;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-read-more:hover {
    gap: 12px;
    color: #FF3333;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

.blog-newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF0000, #FF3333);
    color: white;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
}

.newsletter-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form .btn-primary {
    padding: 16px 32px;
    background: white;
    color: #FF0000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Blog Responsive */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-filters {
        gap: 8px;
    }

    .blog-filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .btn-primary {
        width: 100%;
    }

    .newsletter-content h2 {
        font-size: 28px;
    }
}

/* ========================================
   EK MOBİL RESPONSIVE STİLLER
   Masaüstü görünümünü bozmadan mobil uyumluluk
   ======================================== */

/* Nav Actions Mobil */
@media (max-width: 968px) {
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .btn-live-meeting {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Services Growth Section - Detaylı Mobil */
@media (max-width: 768px) {
    .services-growth-section {
        padding: 60px 20px;
    }
    
    .services-growth-grid {
        gap: 30px;
    }
    
    .services-column,
    .growth-column {
        padding: 24px;
    }
    
    .section-heading {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
    
    .service-item {
        padding: 16px;
        gap: 16px;
    }
    
    .service-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        flex-shrink: 0;
    }
    
    .service-content h3 {
        font-size: 1rem;
    }
    
    .service-content p {
        font-size: 0.875rem;
    }
    
    .service-arrow {
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .growth-column h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .growth-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .growth-subsection h3 {
        font-size: 1rem;
    }
    
    .growth-highlight {
        padding: 16px;
        gap: 12px;
    }
    
    .highlight-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .highlight-content {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .services-growth-section {
        padding: 40px 15px;
    }
    
    .services-column,
    .growth-column {
        padding: 20px;
        border-radius: 16px;
    }
    
    .section-heading {
        font-size: 1.25rem;
    }
    
    .service-item {
        padding: 12px;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .service-content {
        flex: 1;
        min-width: 0;
    }
    
    .service-arrow {
        margin-left: auto;
    }
    
    .growth-column h2 {
        font-size: 1.5rem;
    }
}

/* Trust Section - Mobil */
@media (max-width: 768px) {
    .trust-section {
        padding: 50px 20px;
    }
    
    .trust-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .social-media-icons {
        gap: 20px;
        padding: 20px 0;
    }
    
    .social-icon {
        width: 70px;
        height: 70px;
    }
    
    .social-icon i {
        font-size: 32px;
    }
    
    .social-icon svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .trust-section {
        padding: 40px 15px;
    }
    
    .trust-section .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .social-media-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
    }
    
    .social-icon i {
        font-size: 28px;
    }
    
    .social-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* References Section - Mobil */
@media (max-width: 768px) {
    .references-section {
        padding: 50px 20px;
    }
    
    .references-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .reference-logo {
        padding: 15px 20px;
        min-height: 70px;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .references-section {
        padding: 40px 15px;
    }
    
    .references-section .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .reference-logo {
        padding: 12px 16px;
        min-height: 60px;
    }
    
    .logo-text {
        font-size: 0.8rem;
    }
}

/* CTA Section - Mobil */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-title {
        font-size: 32px;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .cta-description {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.6;
    }
    
    .btn-primary {
        padding: 14px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 15px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-description {
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
}

/* Testimonials Section - Detaylı Mobil */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonials-section .section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .testimonials-section .section-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .testimonial-author {
        margin-top: 20px;
        gap: 12px;
    }
    
    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
    
    .author-info strong {
        font-size: 15px;
    }
    
    .author-info span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 15px;
    }
    
    .testimonials-section .section-title {
        font-size: 24px;
    }
    
    .testimonials-section .section-subtitle {
        font-size: 13px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .quote-icon {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .stars {
        margin-bottom: 12px;
    }
    
    .stars i {
        font-size: 14px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
}

/* FAQ Section - Detaylı Mobil */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-section .section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .faq-section .section-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .faq-container {
        gap: 12px;
    }
    
    .faq-item {
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 16px;
    }
    
    .faq-question h3 {
        font-size: 15px;
        line-height: 1.4;
        padding-right: 30px;
    }
    
    .faq-question i {
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 0 16px 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .faq-cta {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 50px 15px;
    }
    
    .faq-section .section-title {
        font-size: 24px;
    }
    
    .faq-section .section-subtitle {
        font-size: 13px;
    }
    
    .faq-question {
        padding: 14px;
    }
    
    .faq-question h3 {
        font-size: 14px;
        padding-right: 28px;
    }
    
    .faq-answer {
        padding: 0 14px 14px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
}

/* Hero Section - İyileştirilmiş Mobil */
@media (max-width: 600px) {
    .hero-slider {
        margin-top: 10px;
        margin-left: 10px;
        margin-right: 10px;
        height: 350px;
        border-radius: 20px;
    }
    
    .hero-slide .container {
        padding: 0 20px;
        gap: 24px;
    }
    
    .hero-title {
        font-size: 24px;
        letter-spacing: -0.5px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .floating-elements {
        display: none;
    }
}

/* Footer - Detaylı Mobil */
@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 30px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        max-width: 150px;
        margin: 0 auto 20px;
    }
    
    .footer-column h5 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .footer-column ul li {
        margin-bottom: 10px;
    }
    
    .footer-column ul li a {
        font-size: 14px;
    }
    
    .footer-contact-item {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .footer-contact-item i {
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .footer-contact-item div {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 24px 20px;
        margin-top: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-legal li a {
        font-size: 12px;
    }
    
    .payment-methods {
        justify-content: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 15px 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo {
        max-width: 120px;
    }
    
    .footer-column h5 {
        font-size: 16px;
    }
    
    .footer-column ul li a {
        font-size: 13px;
    }
    
    .footer-contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .footer-bottom {
        padding: 20px 15px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
}

/* Container - Mobil Padding */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* Nav Menu - Mobil İyileştirmeleri */
@media (max-width: 968px) {
    .nav-menu.active {
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active .dropdown {
        position: relative;
    }
    
    .nav-menu.active .mega-menu {
        position: relative;
        width: 100%;
        max-width: 100%;
        left: 0;
        transform: none;
        margin-top: 10px;
        border-radius: 12px;
    }
    
    .nav-menu.active .menu-promo {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
    }
}

/* Services Section - Mobil İyileştirmeleri */
@media (max-width: 600px) {
    .services-section {
        padding: 60px 20px;
    }
    
    .services-header-modern {
        margin-bottom: 40px;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .section-subtitle-modern {
        font-size: 0.95rem;
    }
    
    .services-grid-modern {
        gap: 16px;
    }
    
    .service-card-modern {
        padding: 24px;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .service-content-modern h3 {
        font-size: 1.1rem;
    }
    
    .service-content-modern p {
        font-size: 0.875rem;
    }
}

/* Bento Grid - Mobil İyileştirmeleri */
@media (max-width: 600px) {
    .bento-section {
        padding: 30px 0;
    }
    
    .bento-container {
        gap: 12px;
        padding: 0 15px;
    }
    
    .card {
        padding: 16px;
        min-height: 180px;
    }
    
    .card-title-main {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
}

/* Genel Mobil İyileştirmeler */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    /* Tüm butonlar için mobil uyum */
    .btn-primary,
    .btn-secondary,
    .btn-link {
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* ========================================
   POLICY MODAL STYLES
   ======================================== */
.policy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.policy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.policy-modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10001;
}

.policy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.policy-modal-header h2 {
    margin: 0;
    font-size: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.policy-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.policy-modal-close:hover {
    color: var(--primary-color);
    background: rgba(220, 38, 38, 0.1);
}

.policy-modal-body {
    padding: 30px;
}

.policy-content h3 {
    color: #1a1a1a;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-content h3:first-child {
    margin-top: 0;
}

.policy-content h4 {
    color: #333;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.policy-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-content ul {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
}

.policy-content ul li {
    margin-bottom: 8px;
}

.policy-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

@media (max-width: 768px) {
    .policy-modal-content {
        max-width: 95%;
        max-height: 95vh;
    }
    
    .policy-modal-header {
        padding: 15px 20px;
    }
    
    .policy-modal-header h2 {
        font-size: 20px;
    }
    
    .policy-modal-body {
        padding: 20px;
    }
}
