/* Genel Stiller */
:root {
    /* Ana Renkler - Siyah-Beyaz Teması */
    --primary-black: #000000;
    /* Tam siyah */
    --primary-white: #FFFFFF;
    /* Tam beyaz */
    --off-white: #F5F5F7;
    /* Geçiş rengi (arka planlar için) */
    --dark-gray: #1D1D1F;
    /* Geçiş rengi (koyu tonlar için) */
    --primary-dark-gray: #333333;
    /* Koyu gri */
    --primary-medium-gray: #666666;
    /* Orta gri */
    --primary-light-gray: #F1F1F1;
    /* Açık gri */

    /* 3. Renk: Koyu Petrol (Gece Mavisi Yakın) */
    --accent-petrol: #2C3E50;
    /* Ana petrol rengi */
    --accent-petrol-hover: #1A252F;
    /* Hover için daha koyu ton */
    --accent-petrol-light: rgba(44, 62, 80, 0.1);
    --accent-petrol-medium: rgba(44, 62, 80, 0.2);
    --accent-petrol-dark: rgba(44, 62, 80, 0.3);

    /* Eski değişkenler için uyumluluk */
    --primary-dark-green: var(--accent-petrol);
    --primary-medium-green: var(--accent-petrol-hover);
    --accent-dark-turquoise: var(--accent-petrol);
    --accent-emerald: var(--accent-petrol-hover);
    --accent-dark-navy: var(--accent-petrol);
    --accent-anthracite: var(--dark-gray);

    /* Fonksiyonel Renkler */
    --text-primary: var(--primary-dark-gray);
    --text-secondary: var(--primary-medium-gray);
    --text-light: var(--primary-white);

    --background-primary: var(--primary-white);
    --background-secondary: var(--off-white);
    --background-dark: var(--dark-gray);

    --border-light: #EEEEEE;
    --border-medium: #DDDDDD;

    /* Buton Renkleri */
    --button-primary: var(--accent-petrol);
    --button-secondary: var(--accent-petrol-hover);
    --button-accent: var(--accent-petrol);
    --button-neutral: var(--dark-gray);

    /* Gölge Efektleri */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-dark: 0 8px 24px rgba(0, 0, 0, 0.15);

    /* Gradyan Renkler */
    --gradient-primary: linear-gradient(135deg, var(--accent-petrol), var(--accent-petrol-hover));
    --gradient-secondary: linear-gradient(135deg, var(--accent-petrol-hover), var(--accent-petrol));
    --gradient-dark: linear-gradient(135deg, var(--dark-gray), var(--primary-black));

    /* Uyumluluk Değişkenleri */
    --primary-color: var(--accent-petrol);
    --secondary-color: var(--accent-petrol-hover);
    --text-color: var(--text-primary);
    --bg-color: var(--background-primary);
    --card-bg: var(--background-primary);
    --section-bg: var(--off-white);
    --border-color: var(--border-light);
    --shadow-color: rgba(0, 0, 0, 0.08);
    --gradient-start: var(--accent-petrol);
    --gradient-end: var(--accent-petrol-hover);
    --accent-color: var(--accent-petrol);
    --dark-bg: var(--dark-gray);
}

/* Dark Mode için özel temalar */
[data-theme="dark"] {
    --primary-color: var(--accent-petrol);
    --secondary-color: var(--accent-petrol-hover);
    --text-color: var(--primary-white);
    --bg-color: #1A1A1A;
    --card-bg: rgba(26, 37, 47, 0.8);
    --section-bg: var(--dark-gray);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --gradient-start: var(--accent-petrol);
    --gradient-end: var(--accent-petrol-hover);
    --accent-color: var(--accent-petrol);
    --dark-bg: var(--dark-gray);
}

/* Light Mode için özel temalar */
[data-theme="light"] {
    --primary-color: var(--accent-petrol);
    --secondary-color: var(--accent-petrol-hover);
    --text-color: var(--text-primary);
    --bg-color: var(--background-primary);
    --card-bg: var(--background-primary);
    --section-bg: var(--off-white);
    --border-color: var(--border-light);
    --shadow-color: rgba(0, 0, 0, 0.08);
    --gradient-start: var(--accent-petrol);
    --gradient-end: var(--accent-petrol-hover);
    --accent-color: var(--accent-petrol);
    --dark-bg: var(--dark-gray);
}

/* Modern Stil Override'ları */

/* Buton Stilleri */
.btn,
.cta-button,
.submit-btn,
.services-more-btn,
.modern-view-button {
    background-color: var(--button-primary);
    color: var(--primary-white);
    border: none;
    transition: all 0.3s ease;
}

.btn:hover,
.cta-button:hover,
.submit-btn:hover,
.services-more-btn:hover,
.modern-view-button:hover {
    background-color: var(--accent-petrol-hover);
    box-shadow: var(--shadow-medium);
}

.btn-secondary,
.cta-button.secondary {
    background-color: transparent;
    border: 1.5px solid var(--accent-petrol);
    color: var(--accent-petrol);
}

.btn-secondary:hover,
.cta-button.secondary:hover {
    background-color: var(--accent-petrol-light);
    border-color: var(--accent-petrol-hover);
}

/* Vurgu Elementleri */
.highlight,
.text-accent,
.about-vision,
.brand-card span,
.stat-number,
.section-badge,
.blog-subtitle {
    color: var(--accent-petrol);
}

/* Kart Stilleri */
.card,
.brand-card,
.service-card,
.info-card,
.story-card,
.blog-card,
.trend-card,
.mv-card,
.philosophy-card {
    background-color: var(--background-primary);
    border-radius: 6px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.card:hover,
.brand-card:hover,
.service-card:hover,
.info-card:hover,
.story-card:hover,
.blog-card:hover,
.trend-card:hover,
.mv-card:hover,
.philosophy-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

/* Başlık Stilleri */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-dark-gray);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Sub Başlık Stilleri - SF Pro Display */
.subtitle,
.sub-title,
.section-subtitle,
.hero-subtitle,
.about-subtitle,
.ecosystem-subtitle,
.blog-subtitle,
.card-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.hero-shape-1,
.hero-shape-2,
.hero-shape-3 {
    opacity: 0.1;
}

.hero-shape-1 {
    background-color: rgba(44, 62, 80, 0.5);
}

.hero-shape-2 {
    background-color: rgba(44, 62, 80, 0.3);
}

.hero-shape-3 {
    background-color: rgba(44, 62, 80, 0.2);
}

/* Bölüm Arka Planları */
.section-alternate,
.about-us-section,
.stats-showcase,
.services-hub,
.mission-vision {
    background-color: var(--background-secondary);
}

/* Sayfa Bağlantıları */
a,
.more-link,
.read-more,
.brand-link,
.service-link {
    color: var(--primary-medium-green);
}

a:hover,
.more-link:hover,
.read-more:hover,
.brand-link:hover,
.service-link:hover {
    color: var(--primary-dark-green);
}

/* İkonlar */
.service-icon,
.brand-icon,
.info-icon,
.card-icon,
.feature-icon {
    color: var(--primary-dark-green);
}

/* Alt Bilgi */
.footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--primary-color) 0%, rgba(0, 39, 65, 1) 100%);
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.1);
}

.footer-main {
    position: relative;
    padding: 5rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.footer-branding {
    flex: 0 0 300px;
    margin-right: 5rem;
}

.footer-branding img {
    max-width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.footer-branding img:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 8px 15px rgba(0, 255, 157, 0.5));
}

.footer-branding h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.footer-branding h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-branding p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-cta {
    margin-top: 1.5rem;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-cta-button:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 157, 0.3);
}

.footer-cta-button i {
    margin-left: 0.7rem;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.footer-cta-button:hover i {
    transform: translateX(4px);
}

.footer-groups {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-between;
}

.footer-group {
    flex: 0 1 auto;
    margin-bottom: 2rem;
    min-width: 160px;
}

.footer-group h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.footer-group h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-group li {
    margin-bottom: 0.7rem;
}

.footer-group a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-group a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-group a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    opacity: 0;
}

.footer-group a:hover::before {
    width: 0;
    opacity: 1;
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .footer-container:last-child {
    margin-top: 1.5rem;
    justify-content: space-between;
}

.region-selector {
    display: flex;
    align-items: center;
}

.region-button {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
}

.footer-bottom .social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
}

.footer-bottom .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-bottom .social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
}

.copyright img {
    height: 24px;
    margin-right: 10px;
    opacity: 0.8;
}

.footer-bottom .logos-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    transition: all 0.3s ease;
    height: 30px;
    width: auto;
}

.footer-logo:hover {
    transform: scale(1.1);
}

.footer-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 255, 157, 0.03);
    border: 1px solid rgba(0, 255, 157, 0.1);
}

.footer-circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.footer-circle-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    right: 100px;
}

.footer-circle-3 {
    width: 150px;
    height: 150px;
    top: 120px;
    left: 10%;
    background: rgba(0, 255, 157, 0.05);
}

.footer-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.1), transparent);
    height: 1px;
}

.footer-line-1 {
    width: 40%;
    top: 30%;
    right: 0;
    transform: rotate(-15deg);
}

.footer-line-2 {
    width: 30%;
    bottom: 20%;
    left: 10%;
    transform: rotate(20deg);
}

@media (max-width: 1100px) {
    .footer-branding {
        flex: 0 0 100%;
        margin-bottom: 2.5rem;
        margin-right: 0;
    }

    .footer-groups {
        width: 100%;
        justify-content: space-between;
    }

    .footer-group {
        flex: 0 1 calc(20% - 1rem);
    }
}

@media (max-width: 992px) {
    .footer-group {
        flex: 0 1 calc(33.333% - 1rem);
        margin-bottom: 2rem;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .footer-bottom .social-links {
        margin: 0;
    }

    .copyright {
        text-align: center;
    }

    .footer-bottom .logos-container {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-groups {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-group {
        flex: 0 1 100%;
        margin-bottom: 1.5rem;
    }

    .footer-group h3 {
        width: 100%;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .footer-group h3::after {
        display: none;
    }

    .footer-group h3 i {
        font-size: 0.875rem;
        transition: transform 0.3s ease;
    }

    .footer-group.active h3 i {
        transform: rotate(180deg);
    }

    .footer-group ul {
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .footer-group.active ul {
        max-height: 500px;
    }

    .footer-bottom .footer-container:last-child {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-logo {
        height: 25px;
    }
}

/* Form Elementleri */
input,
textarea,
select {
    border: 1px solid var(--border-medium);
    background-color: var(--background-primary);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-medium-green);
}

/* Tablolar */
table {
    border-collapse: collapse;
}

th {
    background-color: var(--accent-petrol);
    color: var(--primary-white);
}

td {
    border: 1px solid var(--border-medium);
}

tr:nth-child(even) {
    background-color: var(--background-secondary);
}

/* Sayfa Yapısı ve Diğer Temel Stiller */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Header Stili */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 14px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    /* Normal padding ile aynı kalmalı */
}

[data-theme="light"] .header {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .header.scrolled {
    background-color: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    /* Koyu metin rengi */
    font-size: 1.8rem;
    font-weight: 700;
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.logo svg {
    width: 28px;
    height: 28px;
    margin-right: 8px;
    fill: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #333;
    /* Koyu metin rengi */
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 80%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--text-color);
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links a {
        padding: 0.5rem 1.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    padding: 120px 0 80px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, #002639 0%, #004d40 100%);
    color: #fff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-shape-1,
.hero-shape-2,
.hero-shape-3 {
    position: absolute;
    width: 50%;
    height: auto;
}

.hero-shape-1 {
    top: -15%;
    right: -10%;
    opacity: 0.5;
    animation: float 15s ease-in-out infinite;
}

.hero-shape-2 {
    bottom: -10%;
    left: -10%;
    opacity: 0.5;
    animation: float 18s ease-in-out infinite;
}

.hero-shape-3 {
    top: 20%;
    left: 10%;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    margin-top: 40px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

.text-accent {
    color: #00FF9D;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button.primary {
    background: #00FF9D;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 255, 157, 0.3);
}

.cta-button.primary:hover {
    background: #00E88D;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 157, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.cta-button i {
    margin-left: 8px;
}

/* Developer Frame Styles */
.developer-frame {
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.developer-frame:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-10px);
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.2);
}

.frame-header {
    background: #e9ecef;
    padding: 12px 20px;
    border-bottom: 1px solid #dee2e6;
}

.frame-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.pink {
    background-color: #ff5f91;
}

.control.orange {
    background-color: #ff9f5a;
}

.control.purple {
    background-color: #b39ddb;
}

.frame-content {
    padding: 20px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #f1f3f5);
}

.developer-character {
    width: 100%;
    height: 100%;
}

.dev-illustration {
    width: 100%;
    height: 100%;
}

/* Hero Bottom Section */
.hero-bottom {
    position: relative;
    z-index: 3;
    margin-top: 30px;
}

.needs-text {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

.needs-text h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
}

/* Company highlight düzeltme - Beyaz renk */
.company-highlight {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .company-highlight {
    color: #fff;
}

.wave-decoration {
    position: relative;
    height: 100px;
    width: 100%;
    overflow: hidden;
    margin-top: -1px;
}

.wave-decoration svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* SVG path rengini düzeltme */
.hero-wave path {
    fill: #f0f0f0;
    fill-opacity: 1;
}

/* Light tema için hero wave */
[data-theme="light"] .hero-wave path {
    fill: #f0f0f0;
}

/* Light tema için hero bg */
[data-theme="light"] .hero-bg {
    opacity: 0.85;
}

/* Wave decoration düzeltmesi */
.wave-decoration svg path {
    fill-opacity: 1;
}

/* Animation */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .developer-frame {
        max-width: 400px;
        margin: 0 auto;
        transform: none;
    }

    .hero-bottom {
        margin-top: 30px;
    }

    .needs-text h3 {
        font-size: 1.2rem;
    }

    .company-highlight {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        display: block !important;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .frame-content {
        height: 300px;
    }

    .needs-text h3 {
        font-size: 1rem;
    }

    .company-highlight {
        font-size: 1.5rem;
    }
}

/* ... existing code ... */

/* Alt Markalar */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.brand-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 255, 157, 0.1), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.1);
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.15) 0%, rgba(0, 204, 125, 0.15) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.brand-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--secondary-color);
    transition: var(--transition);
}

.brand-card:hover .brand-icon {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.25) 0%, rgba(0, 204, 125, 0.25) 100%);
    transform: scale(1.1) rotate(5deg);
}

.brand-header h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
}

.brand-content {
    flex: 1;
}

.brand-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.brand-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.brand-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: var(--transition);
}

.brand-features li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.brand-features svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary-color);
}

.brand-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.brand-link span {
    transition: var(--transition);
}

.brand-link:hover {
    color: var(--accent-color);
}

.brand-link:hover span {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .brand-card {
        padding: 2rem;
    }

    .brand-header h3 {
        font-size: 1.6rem;
    }
}

/* Footer */

.footer-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    transform: translateY(-99%);
    z-index: 1;
}

.footer-curve svg {
    width: 100%;
    height: 100px;
    fill: var(--primary-color);
    color: var(--primary-color);
    display: block;
}

.footer-main {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-branding {
    flex: 0 0 280px;
    margin-right: 2rem;
}

.footer-branding h2 {
    color: var(--secondary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1rem;
    letter-spacing: -0.5px;
}

.footer-branding p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-cta {
    margin-top: 2rem;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-cta-button:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.3);
}

.footer-groups {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    flex: 1;
    justify-content: space-between;
}

.footer-group h3 {
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-group li {
    margin-bottom: 0.75rem;
}

.footer-group a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}

.footer-group a:hover {
    color: var(--secondary-color);
}

.footer-group a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: width 0.2s ease;
}

.footer-group a:hover::after {
    width: 100%;
}

.footer-bottom {
    padding: 2rem 0;
    flex-direction: column;
    margin-top: 0;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-bottom .footer-container:last-child {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.region-selector {
    display: flex;
    align-items: center;
}

.region-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.region-button:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.footer-bottom .social-links {
    margin-top: 0;
    margin-left: auto;
    display: flex;
    gap: 1rem;
}

.footer-bottom .social-links a {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer-bottom .social-links a:hover {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 255, 157, 0.25);
    color: var(--primary-color);
}

.footer-bottom .social-links a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.footer-bottom .social-links a:hover::before {
    top: 0;
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.theme-toggle {
    display: flex;
    align-items: center;
}

.theme-switch {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-switch:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.theme-switch .moon-icon,
.theme-switch .sun-icon {
    position: absolute;
    transition: var(--transition);
}

[data-theme="light"] .moon-icon {
    opacity: 0;
    transform: rotate(90deg);
}

[data-theme="light"] .sun-icon {
    opacity: 1;
    transform: rotate(0);
}

[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: rotate(0);
}

@media (max-width: 1100px) {
    .footer-branding {
        flex: 0 0 100%;
        margin-bottom: 2rem;
        margin-right: 0;
    }

    .footer-groups {
        width: 100%;
        justify-content: space-between;
    }

    .footer-group {
        flex: 0 1 calc(20% - 1rem);
    }
}

@media (max-width: 992px) {
    .footer-group {
        flex: 0 1 calc(33.333% - 1rem);
        margin-bottom: 2rem;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .footer-bottom .social-links {
        margin: 0;
    }
}

@media (max-width: 640px) {

    .footer-main {
        padding: 3rem 0;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-groups {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-group {
        flex: 0 1 100%;
        margin-bottom: 0;
    }

    .footer-group h3 {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .footer-group h3::after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 0.875rem;
    }

    .footer-group ul {
        margin-top: 1rem;
    }

    .footer-bottom .footer-container:last-child {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in.visible {
    opacity: 1;
}

/* Sayfa Hero */
.page-hero {
    color: var(--text-color);
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--dark-bg));
    z-index: 2;
    pointer-events: none;
}

.page-hero .hero-content {
    padding-bottom: 0;
    position: relative;
    z-index: 3;
}

.page-hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(to right, var(--text-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero .hero-shape-1,
.page-hero .hero-shape-2,
.page-hero .hero-shape-3 {
    position: absolute;
    width: 800px;
    height: 800px;
    animation: float 30s infinite ease-in-out;
    opacity: 0.15;
    filter: blur(100px);
    border-radius: 50%;
}

.page-hero .hero-shape-1 {
    top: -20%;
    right: -20%;
    background-color: rgba(0, 255, 157, 0.4);
    animation-delay: 0s;
}

.page-hero .hero-shape-2 {
    bottom: -20%;
    left: -20%;
    background-color: rgba(0, 204, 125, 0.4);
    animation-delay: -10s;
}

.page-hero .hero-shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 255, 157, 0.4);
    animation-delay: -20s;
}

/* Hakkımızda Sayfası */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 255, 157, 0.1), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.mv-card:hover::before {
    opacity: 1;
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.15) 0%, rgba(0, 204, 125, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
}

.mv-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.25) 0%, rgba(0, 204, 125, 0.25) 100%);
    transform: scale(1.1) rotate(5deg);
}

.card-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--secondary-color);
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 255, 157, 0.2));
}

.mv-card h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    background: linear-gradient(to right, var(--text-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mv-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .mission-vision {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .mv-card {
        padding: 2rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon svg {
        width: 30px;
        height: 30px;
    }

    .mv-card h3 {
        font-size: 1.8rem;
    }

    .mv-card p {
        font-size: 1rem;
    }
}

/* Hizmetler Sayfası */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Web Geliştirme ikonu için gradient */
.service-card:nth-child(1) .service-icon svg {
    width: 100%;
    height: 100%;
    stroke: url(#webGradient);
    stroke-width: 2;
    filter: drop-shadow(0 4px 10px rgba(255, 87, 87, 0.3));
}

/* Hosting ve Domain ikonu için gradient */
.service-card:nth-child(2) .service-icon svg {
    width: 100%;
    height: 100%;
    stroke: url(#hostingGradient);
    stroke-width: 2;
    filter: drop-shadow(0 4px 10px rgba(64, 153, 255, 0.3));
}

/* Dijital Pazarlama ikonu için gradient */
.service-card:nth-child(3) .service-icon svg {
    width: 100%;
    height: 100%;
    stroke: url(#marketingGradient);
    stroke-width: 2;
    filter: drop-shadow(0 4px 10px rgba(147, 51, 234, 0.3));
}

/* UI/UX Tasarım ikonu için gradient */
.service-card:nth-child(4) .service-icon svg {
    width: 100%;
    height: 100%;
    stroke: url(#designGradient);
    stroke-width: 2;
    filter: drop-shadow(0 4px 10px rgba(255, 145, 87, 0.3));
}

/* İkon hover efektleri */
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    transition: all 0.3s ease;
}

/* SVG Gradientleri */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, rgba(255, 87, 87, 0.1) 0%, rgba(255, 87, 87, 0.05) 100%);
    border-radius: 15px;
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, rgba(64, 153, 255, 0.1) 0%, rgba(64, 153, 255, 0.05) 100%);
    border-radius: 15px;
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-radius: 15px;
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, rgba(255, 145, 87, 0.1) 0%, rgba(255, 145, 87, 0.05) 100%);
    border-radius: 15px;
}

/* Hover durumunda arka plan rengi değişimi */
.service-card:nth-child(1):hover {
    border-color: rgb(255, 87, 87);
}

.service-card:nth-child(2):hover {
    border-color: rgb(64, 153, 255);
}

.service-card:nth-child(3):hover {
    border-color: rgb(147, 51, 234);
}

.service-card:nth-child(4):hover {
    border-color: rgb(255, 145, 87);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546e7a;
    transition: all 0.3s ease;
}

.services-hub {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.services-hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 255, 157, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 157, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.service-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, rgba(0, 255, 157, 0.03) 25%, transparent 25%) -50px 0,
        linear-gradient(-45deg, rgba(0, 255, 157, 0.03) 25%, transparent 25%) -50px 0,
        linear-gradient(45deg, transparent 75%, rgba(0, 255, 157, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0, 255, 157, 0.03) 75%);
    background-size: 100px 100px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-pattern {
    opacity: 1;
}

.service-card.servers .service-icon {
    background: #ff7849;
}

@media (max-width: 1200px) {
    .performance-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .performance-content {
        max-width: 100%;
    }

    .services-grid {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .performance-container {
        padding: 0 20px;
    }

    .performance-content h2 {
        font-size: 36px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Badi Ajans ve Creative Bölümleri */
.agency-content,
.creative-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.creative-content {
    direction: rtl;
}

.agency-text,
.creative-text {
    direction: ltr;
}

.lead {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    color: var(--text-color);
}

.service-list svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary-color);
}

.image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    border-radius: 20px;
    overflow: hidden;
}

.image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    opacity: 0.1;
    transition: var(--transition);
}

.image-wrapper:hover .image-bg {
    opacity: 0.2;
    transform: scale(1.05);
}

@media (max-width: 1024px) {

    .agency-content,
    .creative-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .creative-content {
        direction: ltr;
    }

    .image-wrapper {
        padding-bottom: 60%;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .lead {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .service-list li {
        font-size: 1.1rem;
    }
}

/* İletişim Sayfası */
.contact-section {
    margin-bottom: 6rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    width: 100%;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.info-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    background-color: rgba(0, 255, 157, 0.08);
}

.info-card:hover .info-icon {
    background-color: rgba(0, 255, 157, 0.15);
}

.info-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-color);
    transition: all 0.3s ease;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--light-text);
}

.info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.modern-form-container {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 650px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0 auto;
}

.map-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

@media (max-width: 992px) {
    .contact-info {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .info-card {
        width: calc(33.333% - 20px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 24px;
    }

    .modern-form-container {
        padding: 30px 20px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        width: 100%;
        max-width: 280px;
    }
}

/* Dark tema için ayarlamalar */
[data-theme="dark"] .modern-form-container {
    background-color: rgba(30, 34, 53, 0.5);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .info-card {
    background-color: rgba(30, 34, 53, 0.5);
}

[data-theme="dark"] .info-card:hover {
    background-color: rgba(39, 44, 66, 0.6);
}

/* Form Mesajları */
.form-message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.form-message.success {
    background-color: rgba(0, 255, 157, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.form-message.error {
    background-color: rgba(255, 69, 58, 0.1);
    color: #ff453a;
    border: 1px solid rgba(255, 69, 58, 0.2);
}

.form-message.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

/* Yükleme Animasyonu */
.spinner {
    animation: rotate 2s linear infinite;
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

.spinner .path {
    stroke: currentColor;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* Alt Markalar Section */
.section-footer {
    text-align: center;
    margin-top: 4rem;
}

.section-footer .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: var(--transition);
}

.section-footer .cta-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: var(--transition);
}

.section-footer .cta-button:hover svg {
    transform: translateX(5px);
}

.section-footer .cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.section-footer .cta-button.secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* İstatistikler Bölümü */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.stat-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Başarı Hikayeleri */
.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 0 auto;
    max-width: 1200px;
}

.story-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.1);
}

.story-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.story-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.read-more svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: var(--transition);
}

.read-more:hover {
    gap: 1rem;
}

/* Blog Bölümü */

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-subtitle {
    display: inline-block;
    background-color: rgba(0, 255, 157, 0.1);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.blog-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.blog-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card.featured {
    grid-column: 1 / span 2;
}

.gradient-1 {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.05) 0%, rgba(0, 204, 125, 0.05) 100%);
    border-color: rgba(0, 255, 157, 0.2);
}

.gradient-2 {
    background: linear-gradient(135deg, rgba(51, 102, 204, 0.05) 0%, rgba(79, 172, 254, 0.05) 100%);
    border-color: rgba(51, 102, 204, 0.2);
}

.gradient-3 {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
    border-color: rgba(255, 87, 34, 0.2);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.1);
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.blog-category {
    display: inline-block;
    background-color: rgba(0, 255, 157, 0.1);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info span {
    font-weight: 600;
    color: var(--text-color);
}

.author-info .author-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: normal;
}

.blog-cta {
    text-align: center;
    margin-top: 60px;
}

.modern-view-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #00B8A9 100%);
    color: white;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.2);
    position: relative;
    overflow: hidden;
}

.modern-view-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 157, 0.3);
}

.modern-view-button span {
    position: relative;
    z-index: 2;
}

.modern-view-button svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.modern-view-button:hover svg {
    transform: translateX(5px);
}

.modern-view-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00B8A9 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 30px;
}

.modern-view-button:hover::after {
    opacity: 1;
}

/* Teknoloji Trendleri */
.trends-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.trend-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trend-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.1);
}

.trend-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1) 0%, rgba(0, 204, 125, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trend-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary-color);
}

.trend-content {
    flex: 1;
}

.trend-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.trend-progress {
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: width 1s ease-in-out;
}

.trend-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Müşteri Yorumları */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 0 auto;
    max-width: 1200px;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.1);
}

.testimonial-content {
    position: relative;
    margin-bottom: 2rem;
}

.quote-icon {
    width: 40px;
    height: 40px;
    fill: var(--secondary-color);
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {

    .success-stories,
    .blog-grid,
    .trends-container,
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image,
    .blog-image {
        height: 200px;
    }

    .trend-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }
}

/* Marka Logo Stilleri */
.brand-logo {
    margin-bottom: 2rem;
    max-width: 200px;
}

.brand-logo .logo-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.brand-logo .logo-image:hover {
    transform: scale(1.05);
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .brand-logo {
        max-width: 150px;
        margin-bottom: 1.5rem;
    }
}

/* Section Logo Stilleri */
.section-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4rem;
    opacity: 0.9;
    transition: var(--transition);
    filter: brightness(1.2) invert(0.95);
}

.image-wrapper:hover .section-logo {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1.3) invert(1);
}

.image-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(0, 255, 157, 0.15) 0%, rgba(0, 204, 125, 0.15) 100%);
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .section-logo {
        padding: 3rem;
    }
}

/* Brands Slider */
.brands-slider {
    padding: 4rem 0;
    overflow: hidden;
}

.brands-swiper {
    padding: 2rem 0;
}

.brand-slide {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    margin: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.brand-slide:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.1);
}

.brand-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.brand-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.brand-text .lead {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.brand-text .service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand-text .service-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    color: var(--text-color);
}

.brand-text .service-list svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary-color);
}

.brand-image {
    position: relative;
}

.brand-image .image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    border-radius: 20px;
    overflow: hidden;
}

.brand-image .image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 157, 0.15) 0%, rgba(0, 204, 125, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-image .section-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4rem;
    opacity: 0.9;
    transition: var(--transition);
    filter: brightness(1.2) invert(0.95);
}

.brand-image .image-wrapper:hover .section-logo {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1.3) invert(1);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary-color) !important;
    background-color: var(--card-bg);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    border-color: var(--secondary-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem !important;
}

.swiper-pagination-bullet {
    background-color: var(--secondary-color) !important;
    opacity: 0.5;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .brand-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .brand-text h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .brand-slide {
        padding: 2rem;
    }

    .brand-text h3 {
        font-size: 1.8rem;
    }

    .brand-text .lead {
        font-size: 1.2rem;
    }

    .brand-text .service-list li {
        font-size: 1.1rem;
    }

    .brand-image .section-logo {
        padding: 3rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

/* Hizmetler Hub Bölümü */
.services-hub {
    padding: 60px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.services-hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 255, 157, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 157, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-layout {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem auto;
    min-height: 500px;
    max-width: 1000px;
    padding: 0 20px;
}

.services-center {
    grid-column: 2;
    grid-row: 1 / span 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corporate-illustration {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 255, 157, 0.2));
}

.service-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

.service-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1) sepia(100%) saturate(1000%) hue-rotate(80deg);
}

.service-content h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.services-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    text-align: center;
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 0 20px;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-center {
        grid-column: 1;
        grid-row: 1;
        margin: 2rem 0;
    }

    .corporate-illustration {
        max-width: 250px;
    }

    .services-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }

    .services-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

.performance-section {
    padding: 80px 0;
    background: var(--dark-bg);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.performance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 255, 157, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 157, 0.1) 0%, transparent 30%);
    pointer-events: none;
    z-index: 1;
}

.performance-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.performance-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.performance-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.05);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 6px rgba(0, 255, 157, 0.2));
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--secondary-color);
    stroke-width: 2;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

.services-more {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.more-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: var(--dark-bg);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.more-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 157, 0.2);
}

.more-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .performance-content h2 {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 30px;
    }
}

/* Şirket Felsefemiz */
.company-philosophy {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.company-philosophy h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(to right, var(--text-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.company-philosophy h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.philosophy-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 255, 157, 0.1), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.philosophy-card:hover::before {
    opacity: 1;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.1);
}

.philosophy-card h4 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.philosophy-card h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.philosophy-card:hover h4::after {
    width: 60px;
}

.philosophy-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 1024px) {
    .philosophy-grid {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .company-philosophy {
        padding: 3rem 0;
    }

    .company-philosophy h2 {
        font-size: 2.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .philosophy-card {
        padding: 2rem;
    }

    .philosophy-card h4 {
        font-size: 1.6rem;
    }

    .philosophy-card p {
        font-size: 1rem;
    }
}

/* Tema Geçiş Butonu */
.theme-switch {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.theme-switch:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.2);
    border-color: var(--secondary-color);
}

.theme-switch svg {
    width: 24px;
    height: 24px;
    fill: var(--text-color);
    transition: var(--transition);
}

.theme-switch:hover svg {
    fill: var(--secondary-color);
}

/* Tema Geçiş Animasyonu */
[data-theme="light"] .theme-switch .sun-icon {
    display: none;
}

[data-theme="light"] .theme-switch .moon-icon {
    display: block;
}

.theme-switch .sun-icon {
    display: block;
}

.theme-switch .moon-icon {
    display: none;
}

/* Biz Kimiz Bölümü - Yeni Tasarım */
.about-us-section {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at left top, rgba(0, 255, 157, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-header {
    position: relative;
}

.section-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 157, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 20px;
}

.section-badge span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

.about-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.stats-container {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-circle {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-svg {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.stat-circle-fill {
    transform-origin: center;
    transform: rotate(-90deg);
}

.stat-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.about-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #3d3d3d;
    color: white;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-button:hover {
    background: #2d2d2d;
    transform: translateY(-2px);
}

.about-illustration {
    position: relative;
}

.team-collaboration-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

/* Animasyon */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .about-illustration {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .about-us-section {
        padding: 60px 0;
    }

    .stat-circle {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .about-title {
        font-size: 1.8rem;
    }
}

/* SVG path rengini düzeltme */
.hero-wave path {
    fill: #f0f0f0;
    fill-opacity: 1;
}

/* Light tema için hero wave */
[data-theme="light"] .hero-wave path {
    fill: #f0f0f0;
}

/* Light tema için hero bg */
[data-theme="light"] .hero-bg {
    opacity: 0.85;
}

/* Wave decoration düzeltmesi */
.wave-decoration svg path {
    fill-opacity: 1;
}

/* Kariyer Bölümü Stilleri */

.career-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.career-content {
    max-width: 600px;
}

.career-tag {
    display: inline-block;
    background-color: rgba(0, 255, 157, 0.15);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.career-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-color);
}

.career-title span {
    color: var(--primary-color);
}

.career-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.career-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, rgba(0, 255, 157, 0.1), rgba(0, 0, 0, 0));
    backdrop-filter: blur(10px);
    height: 100%;
}

.office-building-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.career-image:hover .office-building-img {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .career-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .career-content {
        max-width: 100%;
        text-align: center;
    }

    .career-title {
        font-size: 2.2rem;
    }

    .office-building-img {
        height: 400px;
    }
}

@media (max-width: 576px) {

    .career-title {
        font-size: 1.8rem;
    }

    .career-description {
        font-size: 1rem;
    }

    .office-building-img {
        height: 300px;
    }
}

/* Hizmetler Bölümü Stilleri */
.services-showcase {
    background-color: #f9f9f9;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.services-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px 25px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 340px;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(51, 102, 204, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 204, 125, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-box:hover .service-icon {
    background-color: rgba(0, 204, 125, 0.2);
}

.service-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.service-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.more-link {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    margin-top: auto;
    transition: all 0.3s ease;
}

.more-link:hover {
    color: var(--accent-color);
}

.more-arrow {
    display: inline-flex;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.more-link:hover .more-arrow {
    transform: translateX(5px);
}

.services-more-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.services-more-btn {
    display: inline-flex;
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 204, 125, 0.3);
}

.services-more-btn:hover {
    background-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 204, 125, 0.4);
    transform: translateY(-2px);
}

/* Responsive tasarım */
@media (max-width: 1024px) {
    .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-showcase {
        padding: 60px 0;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-box {
        padding: 30px 20px;
        min-height: auto;
    }
}

/* Light/Dark tema uyarlamaları */
[data-theme="light"] .services-showcase {
    background-color: #f9f9f9;
}

[data-theme="light"] .services-header h2 {
    color: var(--secondary-color);
}

[data-theme="light"] .service-box {
    background-color: #fff;
}

[data-theme="dark"] .services-showcase {
    background-color: #1a1a1a;
}

[data-theme="dark"] .services-header h3 {
    color: #e0e0e0;
}

[data-theme="dark"] .services-header h2 {
    color: var(--secondary-color);
}

[data-theme="dark"] .service-box {
    background-color: #222;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .service-box h3 {
    color: #e0e0e0;
}

[data-theme="dark"] .service-box p {
    color: #aaa;
}

[data-theme="dark"] .service-icon {
    background-color: rgba(0, 204, 125, 0.1);
}

[data-theme="dark"] .service-box:hover .service-icon {
    background-color: rgba(0, 204, 125, 0.2);
}

[data-theme="dark"] .more-link {
    color: var(--secondary-color);
}

[data-theme="dark"] .more-link:hover {
    color: var(--accent-color);
}

[data-theme="dark"] .services-more-btn {
    background-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 204, 125, 0.3);
}

[data-theme="dark"] .services-more-btn:hover {
    background-color: var(--accent-color);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.1);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* İletişim Formu Bölümü */
.contact-form-section {
    background: linear-gradient(135deg, #111111 0%, #004d39 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-container {
    display: grid;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form-content {
    display: flex;
    flex-direction: column;
    max-width: 600px;
}

.contact-form-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.contact-form-content h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    bottom: -10px;
    left: 0;
}

.contact-form-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 90%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 204, 125, 0.3);
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: rgba(0, 204, 125, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 8px rgba(0, 204, 125, 0.4);
    background-color: rgba(0, 0, 0, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.recaptcha {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 5px;
}

.submit-btn {
    background-color: var(--secondary-color);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 204, 125, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn:hover {
    background-color: #fff;
    color: #004d39;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 204, 125, 0.4);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(4px);
}

.contact-form-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mailbox-illustration {
    position: relative;
    width: 100%;
    height: 100%;
}

.mail-cloud-1,
.mail-cloud-2 {
    position: absolute;
    fill: rgba(255, 255, 255, 0.1);
    width: 100px;
    height: 100px;
}

.mail-cloud-1 {
    top: 20%;
    right: 10%;
    animation: float 5s ease-in-out infinite;
}

.mail-cloud-2 {
    bottom: 30%;
    left: 5%;
    width: 60px;
    height: 60px;
    animation: float 7s ease-in-out infinite;
}

.mailbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    perspective: 1000px;
}

.mailbox-body {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(145deg, #1a1a1a, #222);
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--secondary-color);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.mailbox-body:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 204, 125, 0.05), transparent);
    opacity: 0.3;
}

.mailbox-flag {
    position: absolute;
    top: 15%;
    right: -20px;
    width: 40px;
    height: 30px;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 25% 50%);
    transform-origin: left center;
    animation: flagWave 4s ease-in-out infinite;
    z-index: 5;
}

.mailbox-door {
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 35px;
    background: linear-gradient(to bottom, #ffffff, #f5f5f5);
    border-radius: 10px 10px 0 0;
    transform-origin: bottom;
    transform: rotateX(0deg);
    transition: transform 0.5s ease;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mailbox:hover .mailbox-door {
    transform: rotateX(-60deg);
}

.mail-letter {
    position: absolute;
    top: 5%;
    left: 25%;
    width: 50%;
    height: 40px;
    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px) rotate(-5deg);
    animation: letterFloat 3s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mail-letter:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 70%;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.mail-letter:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 10px;
    width: 50%;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

@keyframes flagWave {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(15deg);
    }
}

@keyframes letterFloat {

    0%,
    100% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-40px);
    }
}

@media (max-width: 992px) {
    .contact-form-container {
        grid-template-columns: 1fr;
    }

    .contact-form-illustration {
        display: none;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-content h2 {
        font-size: 2.2rem;
    }

    .contact-form-content p {
        font-size: 1rem;
    }

    .form-footer {
        flex-direction: column;
        gap: 15px;
    }

    .submit-btn {
        width: 100%;
    }
}

/* Hakkımızda - Yaklaşım Bölümü */
.about-main {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 20px;
}

.approach-section {
    padding: 80px 0;
    margin: 0 auto;
}

.approach-container {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.approach-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.approach-item.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.approach-item.reverse .approach-content {
    direction: ltr;
}

.approach-item.reverse .approach-illustration {
    direction: ltr;
}

.approach-content {
    display: flex;
    flex-direction: column;
    max-width: 600px;
}

.approach-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #004d39, #00cc7d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.approach-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.approach-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.approach-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 992px) {

    .approach-item,
    .approach-item.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .approach-content {
        max-width: 100%;
    }

    .approach-title {
        font-size: 2.5rem;
    }

    .approach-img {
        max-width: 400px;
    }

    .approach-container {
        gap: 80px;
    }
}

@media (max-width: 576px) {
    .approach-section {
        padding: 60px 0;
    }

    .approach-title {
        font-size: 2rem;
    }

    .approach-description {
        font-size: 1rem;
    }

    .approach-img {
        max-width: 300px;
    }

    .approach-container {
        gap: 60px;
    }
}

/* Hakkımızda - İstatistik Bölümü */
.stats-showcase {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #303030);
    overflow: hidden;
    color: #fff;
    padding: 40px 0;
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2) inset;
}

.stats-wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.05;
    pointer-events: none;
}

.stats-wave-bg svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    color: #fff;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.stat-item {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 10px;
    position: relative;
    padding: 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.stat-item:hover:after {
    opacity: 1;
    transform: scale(1);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.stat-icon:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #00ff9d;
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.stat-item:hover .stat-icon:before {
    opacity: 1;
    transform: scale(1.1);
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    fill: #00cc7d;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon svg {
    transform: scale(1.1);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #00ff9d;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover h3 {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
}

.stat-item p {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 992px) {
    .stats-container {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 40%;
    }
}

@media (max-width: 576px) {
    .stats-showcase {
        padding: 30px 0;
    }

    .stat-item {
        flex: 0 0 40%;
        margin: 5px;
        padding: 5px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .stat-icon svg {
        width: 25px;
        height: 25px;
    }

    .stat-item h3 {
        font-size: 1.8rem;
        margin-bottom: 2px;
    }
}

/* Hizmetler Sayfası Stilleri */

/* İzometrik Hizmet Haritası */
.services-map {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.services-map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-header {
    text-align: center;
    margin-bottom: 60px;
}

.map-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--primary-color), #00cc7d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.map-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.6;
}

.isometric-map {
    position: relative;
    height: 650px;
    perspective: 1200px;
    margin: 0 auto;
    max-width: 1000px;
}

.map-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotateX(55deg) rotateZ(-45deg);
    transform-style: preserve-3d;
    transform-origin: center center;
}

.map-island {
    position: absolute;
    width: 160px;
    height: 160px;
    background-color: rgba(0, 204, 125, 0.1);
    border: 2px solid rgba(0, 255, 157, 0.3);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    transform: translateZ(20px);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.map-island:hover {
    transform: translateZ(40px);
    background-color: rgba(0, 255, 157, 0.2);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.3);
    border-color: rgba(0, 255, 157, 0.6);
}

.map-island::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 18px;
    pointer-events: none;
}

.map-island::after {
    content: "";
    position: absolute;
    height: 40px;
    width: 100%;
    bottom: -40px;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 255, 157, 0.2), transparent);
    transform: rotateX(90deg);
    transform-origin: top;
    filter: blur(10px);
    opacity: 0.5;
    border-radius: 50%;
}

.island-content {
    transform: rotateX(-55deg) rotateZ(45deg);
    text-align: center;
    width: 100%;
}

.island-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.island-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
    stroke: var(--secondary-color);
    stroke-width: 1;
    filter: drop-shadow(0 2px 5px rgba(0, 255, 157, 0.4));
    transition: all 0.3s ease;
}

.island-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
}

/* İzometrik harita adalarda konumlandırma düzeltmeleri */
.web-island {
    top: 25%;
    left: 15%;
}

.mobile-island {
    top: 25%;
    right: 15%;
}

.marketing-island {
    bottom: 25%;
    left: 15%;
}

.design-island {
    top: 50%;
    left: 40%;
}

.ecommerce-island {
    bottom: 25%;
    right: 15%;
}

.map-connection {
    position: absolute;
    background: linear-gradient(90deg, rgba(0, 255, 157, 0.2), rgba(0, 255, 157, 0.5), rgba(0, 255, 157, 0.2));
    height: 4px;
    transform-origin: 0 0;
    transform-style: preserve-3d;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
    animation: connectionPulse 3s infinite;
}

@keyframes connectionPulse {
    0% {
        opacity: 0.5;
        box-shadow: 0 0 5px rgba(0, 255, 157, 0.2);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(0, 255, 157, 0.4);
    }

    100% {
        opacity: 0.5;
        box-shadow: 0 0 5px rgba(0, 255, 157, 0.2);
    }
}

/* Bağlantı çizgileri düzenlemeleri */
.connection-1 {
    top: 33%;
    left: 28%;
    width: 25%;
    transform: rotateZ(-15deg);
}

.connection-2 {
    top: 33%;
    right: 28%;
    width: 25%;
    transform: rotateZ(15deg);
}

.connection-3 {
    bottom: 33%;
    left: 28%;
    width: 25%;
    transform: rotateZ(15deg);
}

.connection-4 {
    bottom: 33%;
    right: 28%;
    width: 25%;
    transform: rotateZ(-15deg);
}

.map-cloud {
    position: absolute;
    width: 100px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transform: rotateX(-55deg) rotateZ(45deg) translateZ(100px);
    filter: blur(15px);
}

.cloud-1 {
    top: 15%;
    left: 15%;
}

.cloud-2 {
    top: 25%;
    right: 10%;
}

.cloud-3 {
    bottom: 20%;
    left: 40%;
}

.island-buildings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.building {
    position: absolute;
    background-color: rgba(0, 255, 157, 0.2);
    border: 1px solid rgba(0, 255, 157, 0.3);
    transform-style: preserve-3d;
}

/* Detaylı Hizmet Kartları */
.service-cards {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.service-cards-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.service-cards-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-cards-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    position: relative;
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.service-card.alt-layout {
    direction: rtl;
}

.service-card.alt-layout .card-content {
    direction: ltr;
}

.card-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.05) 0%, rgba(0, 255, 157, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.alt-layout .card-blob {
    right: auto;
    left: -200px;
}

.card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

.card-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.card-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 450px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tech-item {
    padding: 8px 16px;
    background-color: rgba(0, 255, 157, 0.1);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 157, 0.1);
    margin-bottom: 10px;
}

.feature-item:hover {
    background: rgba(0, 255, 157, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #CCCCCC;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    fill: #000000;
    stroke: #000000;
    stroke-width: 0.8px;
}

.feature-item span {
    font-weight: 600;
    color: var(--text-color);
}

.card-action {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: auto;
}

.card-action span {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.card-action:hover span {
    transform: translateX(5px);
}

.card-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.browser-mockup {
    width: 100%;
    height: 300px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.browser-top {
    height: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
}

.browser-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.browser-top span:first-child {
    background-color: rgba(255, 100, 100, 0.5);
}

.browser-top span:nth-child(2) {
    background-color: rgba(255, 200, 100, 0.5);
}

.browser-top span:nth-child(3) {
    background-color: rgba(100, 255, 100, 0.5);
}

.browser-content {
    height: calc(100% - 30px);
    padding: 20px;
    position: relative;
}

.code-animation {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    overflow: hidden;
}

.code-animation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(transparent 0px,
            rgba(0, 255, 157, 0.05) 1px,
            rgba(0, 255, 157, 0.05) 2px,
            transparent 3px);
    background-size: 100% 15px;
    animation: scrollCode 10s linear infinite;
}

@keyframes scrollCode {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(100%);
    }
}

.phone-mockup {
    width: 200px;
    height: 400px;
    position: relative;
}

.phone-outline {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 30px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.phone-notch {
    width: 60px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-radius: 20px;
    overflow: hidden;
}

.app-interface {
    padding: 30px 20px;
}

.analytics-mockup {
    width: 100%;
    height: 300px;
    position: relative;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    padding: 30px;
}

.graph-lines {
    position: relative;
    height: 100%;
}

.graph-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.05);
}

.line-1 {
    top: 25%;
}

.line-2 {
    top: 50%;
}

.line-3 {
    top: 75%;
}

.graph-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.graph-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transform-origin: center;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.dot-1 {
    top: 60%;
    left: 20%;
    animation-delay: 0s;
}

.dot-2 {
    top: 40%;
    left: 40%;
    animation-delay: 0.5s;
}

.dot-3 {
    top: 20%;
    left: 60%;
    animation-delay: 1s;
}

.dot-4 {
    top: 30%;
    left: 80%;
    animation-delay: 1.5s;
}

/* İnovasyon Tüneli */
.innovation-tunnel {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.tunnel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tunnel-header {
    text-align: center;
    margin-bottom: 80px;
}

.tunnel-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.tunnel-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.6;
}

.tunnel-journey {
    position: relative;
    padding: 60px 0;
}

.tunnel-path {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 100%;
    background-color: rgba(0, 255, 157, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.path-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 0 20px var(--primary-color);
    animation: pathGrow 5s ease-out forwards;
}

@keyframes pathGrow {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

.journey-stages {
    position: relative;
    z-index: 2;
}

.journey-stage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 100px;
}

.journey-stage:last-child {
    margin-bottom: 0;
}

.journey-stage:nth-child(even) {
    direction: rtl;
}

.journey-stage:nth-child(even) .stage-content {
    direction: ltr;
}

.stage-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: rgba(0, 255, 157, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.dot-inner {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: dotPulse 3s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
}

.stage-content {
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 157, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stage-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 2px solid #CCCCCC;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stage-icon svg {
    width: 25px;
    height: 25px;
    fill: #000000;
    stroke: #000000;
    stroke-width: 0.7px;
}

.stage-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.stage-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Marka Dünyamız */
.brand-universe {
    padding: 100px 0;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.universe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.universe-header {
    text-align: center;
    margin-bottom: 80px;
}

.universe-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.universe-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.6;
}

.universe-orbital {
    position: relative;
    width: 100%;
    height: 600px;
}

.orbital-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 0 50px rgba(0, 255, 157, 0.3);
}

.center-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
}

.center-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.center-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: rotate 60s linear infinite;
}

.center-rays::before,
.center-rays::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 200%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
}

.center-rays::after {
    transform: translateX(-50%) rotate(90deg);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.orbital-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border: 1px dashed rgba(0, 255, 157, 0.3);
    border-radius: 50%;
}

.brand-planet {
    position: absolute;
    width: 60px;
    height: 60px;
}

.planet-orbit {
    position: relative;
    width: 100%;
    height: 100%;
}

.planet-body {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
    transition: all 0.3s ease;
}

.planet-body img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-planet:hover .planet-body {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.4);
}

.planet-info {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    text-align: center;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.brand-planet:hover .planet-info {
    opacity: 1;
    visibility: visible;
}

.planet-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.planet-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.brand-planet[data-brand="tech"] {
    top: 30%;
    left: 20%;
}

.brand-planet[data-brand="akademi"] {
    top: 15%;
    left: 50%;
}

.brand-planet[data-brand="ajans"] {
    top: 30%;
    right: 20%;
}

.brand-planet[data-brand="creative"] {
    top: 70%;
    left: 20%;
}

.brand-planet[data-brand="etkinlik"] {
    top: 85%;
    left: 50%;
}

.brand-planet[data-brand="talent"] {
    top: 70%;
    right: 20%;
}

/* İletişim Çağrısı */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #002b20 0%, #004d36 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.cta-content {
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.cta-content h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 157, 0.4);
    background-color: #fff;
    color: #004d39;
    border-color: var(--secondary-color);
}

.button-text {
    margin-right: 10px;
}

.button-icon {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-icon svg {
    width: 100%;
    height: 100%;
    fill: #000;
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.8;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(0, 255, 157, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 255, 157, 0.05);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -100px;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
}

.deco-line {
    position: absolute;
    background-color: rgba(0, 255, 157, 0.1);
}

.line-1 {
    width: 100%;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
}

.line-2 {
    width: 1px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive Ayarlamalar */
@media (max-width: 1200px) {
    .service-card {
        padding: 40px;
        gap: 40px;
    }

    .orbital-ring {
        width: 400px;
        height: 400px;
    }

    .isometric-map {
        height: 600px;
    }
}

@media (max-width: 992px) {

    .map-header h2,
    .service-cards-header h2,
    .tunnel-header h2,
    .universe-header h2,
    .cta-content h2 {
        font-size: 2.4rem;
    }

    .service-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .web-island {
        top: 20%;
        left: 20%;
    }

    .mobile-island {
        top: 20%;
        right: 20%;
    }

    .marketing-island {
        bottom: 20%;
        left: 20%;
    }

    .ecommerce-island {
        bottom: 20%;
        right: 20%;
    }

    .design-island {
        top: 45%;
        left: 40%;
    }

    .isometric-map {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .isometric-map {
        height: 500px;
    }

    .map-island {
        width: 120px;
        height: 120px;
    }

    .web-island,
    .mobile-island,
    .marketing-island,
    .ecommerce-island,
    .design-island {
        transform: translate(-60px, -60px);
    }

    .web-island {
        top: 25%;
        left: 25%;
    }

    .mobile-island {
        top: 25%;
        right: 25%;
    }

    .marketing-island {
        bottom: 25%;
        left: 25%;
    }

    .ecommerce-island {
        bottom: 25%;
        right: 25%;
    }

    .design-island {
        top: 50%;
        left: 50%;
    }

    .island-content h3 {
        font-size: 1rem;
    }

    .map-island:hover {
        transform: translate(-60px, -65px);
    }

    /* CTA Responsive Düzenlemeler */
    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .primary-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {

    .map-header h2,
    .service-cards-header h2,
    .tunnel-header h2,
    .universe-header h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .isometric-map {
        height: 400px;
    }

    .map-island {
        width: 100px;
        height: 100px;
        transform: translate(-50px, -50px);
    }

    .island-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .island-icon svg {
        width: 20px;
        height: 20px;
    }

    .island-content h3 {
        font-size: 0.9rem;
    }

    .web-island {
        top: 25%;
        left: 25%;
    }

    .mobile-island {
        top: 25%;
        right: 25%;
    }

    .marketing-island {
        bottom: 25%;
        left: 25%;
    }

    .ecommerce-island {
        bottom: 25%;
        right: 25%;
    }

    .design-island {
        top: 50%;
        left: 50%;
    }

    /* CTA Küçük Mobil Ekran Düzenlemeleri */
    .contact-cta {
        padding: 70px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .primary-button {
        width: 100%;
        justify-content: center;
    }
}

/* Light/Dark Tema Uyarlamaları */
[data-theme="light"] .services-map,
[data-theme="light"] .innovation-tunnel {
    background-color: #f8f9fa;
}

[data-theme="light"] .service-card {
    background-color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .tech-item {
    background-color: rgba(0, 204, 125, 0.1);
    color: #008f58;
}

[data-theme="light"] .stage-content {
    background-color: #fff;
    border: 1px solid rgba(0, 204, 125, 0.1);
}

[data-theme="light"] .contact-cta {
    background: linear-gradient(135deg, #f5f5f5 0%, rgba(0, 204, 125, 0.3) 100%);
}

[data-theme="light"] .cta-content h2 {
    color: #333;
}

[data-theme="light"] .cta-content p {
    color: #555;
}

[data-theme="light"] .primary-button {
    background-color: #00cc7d;
    color: #fff;
}

[data-theme="light"] .button-icon svg {
    fill: #fff;
}

[data-theme="light"] .deco-circle,
[data-theme="light"] .deco-line {
    background-color: rgba(0, 204, 125, 0.1);
}

[data-theme="dark"] .map-island {
    background-color: rgba(0, 255, 157, 0.05);
}

[data-theme="dark"] .service-card {
    background-color: rgba(30, 30, 30, 0.5);
}

[data-theme="dark"] .browser-mockup,
[data-theme="dark"] .analytics-mockup {
    background-color: rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .phone-outline {
    background-color: rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .stage-content {
    background-color: rgba(30, 30, 30, 0.5);
}

[data-theme="dark"] .orbital-center {
    background-color: rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .planet-body {
    background-color: rgba(0, 0, 0, 0.5);
}

.map-island:hover .island-icon svg {
    fill: var(--light-bg);
    stroke: var(--primary-color);
    stroke-width: 1.5;
    transform: scale(1.1);
    filter: drop-shadow(0 3px 8px rgba(0, 255, 157, 0.6));
}

/* Dijital Ekosistem Görselleştirmesi */
.ecosystem-showcase {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
    min-height: 700px;
}

.ecosystem-showcase::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 255, 157, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 157, 0.08) 0%, transparent 30%);
    z-index: 1;
}

.ecosystem-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 80px;
}

.ecosystem-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--primary-color), #00cc7d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ecosystem-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #ffffff;
    line-height: 1.6;
}

.floating-services {
    position: relative;
    height: 500px;
    perspective: 1200px;
    margin-bottom: 60px;
}

.service-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: orbitRotate 60s linear infinite;
}

@keyframes orbitRotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.service-block {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

.service-block:hover {
    transform: translateZ(30px) scale(1.05);
    border-color: #f94a46;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 30px rgba(249, 74, 70, 0.25);
}

.service-block[data-service="web"] {
    top: 5%;
    left: 25%;
    transform: translateZ(200px);
}

.service-block[data-service="mobile"] {
    top: 5%;
    right: 25%;
    transform: translateZ(100px);
}

.service-block[data-service="marketing"] {
    bottom: 5%;
    left: 25%;
    transform: translateZ(150px);
}

.service-block[data-service="design"] {
    top: 50%;
    left: 15%;
    transform: translateY(-50%) translateZ(180px);
}

.service-block[data-service="ecommerce"] {
    bottom: 5%;
    right: 25%;
    transform: translateZ(120px);
}

.service-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.15) 0%, transparent 70%);
    transform: translateZ(-1px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-block:hover .service-glow {
    opacity: 1;
}

.service-content {
    text-align: center;
    z-index: 2;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.5));
    transition: all 0.3s ease;
}

.service-block:hover .service-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 255, 157, 0.7));
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.service-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.ecosystem-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.core-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 157, 0.4);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.2);
}

.pulse-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(0, 255, 157, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulsate 3s ease-out infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.ring-2 {
    width: 120%;
    height: 120%;
    animation-delay: 1s;
}

.ring-3 {
    width: 140%;
    height: 140%;
    animation-delay: 2s;
}

@keyframes pulsate {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.core-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    animation: float 6s ease-in-out infinite;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 255, 157, 0.1), rgba(0, 255, 157, 0.5), rgba(0, 255, 157, 0.1));
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
    transform-origin: left center;
    z-index: 1;
}

.line-1 {
    top: 20%;
    left: 50%;
    width: 20%;
    transform: rotate(-60deg);
}

.line-2 {
    top: 20%;
    left: 50%;
    width: 20%;
    transform: rotate(60deg);
}

.line-3 {
    top: 50%;
    left: 50%;
    width: 15%;
    transform: rotate(-150deg);
}

.line-4 {
    top: 50%;
    left: 50%;
    width: 15%;
    transform: rotate(150deg);
}

.line-5 {
    top: 55%;
    left: 60%;
    width: 15%;
    transform: rotate(30deg);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgba(0, 255, 157, 0.6);
    border-radius: 50%;
    filter: blur(1px);
    animation: particleFloat 8s linear infinite;
}

.particle-1 {
    top: 15%;
    left: 30%;
    animation-delay: 0s;
}

.particle-2 {
    top: 25%;
    right: 20%;
    animation-delay: 1s;
}

.particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.particle-4 {
    bottom: 20%;
    right: 25%;
    animation-delay: 3s;
}

.particle-5 {
    top: 40%;
    left: 15%;
    animation-delay: 4s;
}

.particle-6 {
    top: 35%;
    right: 15%;
    animation-delay: 5s;
}

.particle-7 {
    bottom: 40%;
    left: 35%;
    animation-delay: 6s;
}

.particle-8 {
    bottom: 35%;
    right: 35%;
    animation-delay: 7s;
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(20px, -15px) scale(1.5);
        opacity: 0.9;
    }

    50% {
        transform: translate(40px, 0) scale(1);
        opacity: 0.6;
    }

    75% {
        transform: translate(20px, 15px) scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
}

.ecosystem-description {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.eco-feature {
    display: flex;
    align-items: center;
    width: 30%;
    min-width: 250px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 157, 0.1);
}

.eco-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.eco-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.eco-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

.eco-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.eco-feature-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive Ayarlamalar */
@media (max-width: 1200px) {
    .service-block {
        width: 180px;
        height: 180px;
    }

    .ecosystem-core {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 992px) {
    .ecosystem-header h2 {
        font-size: 2.5rem;
    }

    .floating-services {
        height: 400px;
    }

    .service-block {
        width: 160px;
        height: 160px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }

    .ecosystem-description {
        justify-content: center;
    }

    .eco-feature {
        width: 45%;
        margin: 0 10px 20px;
    }
}

@media (max-width: 768px) {
    .ecosystem-showcase {
        padding: 80px 0;
        min-height: 600px;
    }

    .ecosystem-header h2 {
        font-size: 2.2rem;
    }

    .ecosystem-header p {
        font-size: 1rem;
    }

    .floating-services {
        height: 350px;
    }

    .service-block {
        width: 140px;
        height: 140px;
        padding: 15px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .service-content h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .service-content p {
        font-size: 0.8rem;
    }

    .eco-feature {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .ecosystem-showcase {
        padding: 60px 0;
        min-height: 500px;
    }

    .ecosystem-header h2 {
        font-size: 1.8rem;
    }

    .ecosystem-header p {
        font-size: 0.9rem;
    }

    .floating-services {
        height: 300px;
    }

    .service-block {
        width: 120px;
        height: 120px;
        padding: 10px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }

    .ecosystem-core {
        width: 80px;
        height: 80px;
    }

    .eco-feature {
        padding: 15px;
    }

    .eco-feature-icon {
        width: 40px;
        height: 40px;
    }
}

/* Dijital Ekosistem Bölümü - Kurumsal Stil */
.ecosystem-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.ecosystem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 10%, rgba(0, 255, 157, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(0, 255, 157, 0.03) 0%, transparent 30%);
    pointer-events: none;
    z-index: 1;
}

.ecosystem-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.ecosystem-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ecosystem-image {
    flex: 1;
    max-width: 650px;
}

.ecosystem-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 255, 157, 0.1));
}

/* SVG elemanları stilleri */
.center-node {
    fill: rgba(0, 255, 157, 0.2);
    stroke: rgba(0, 255, 157, 0.8);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.center-text {
    fill: var(--text-color);
    font-size: 16px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.connection-line {
    stroke: rgba(0, 255, 157, 0.3);
    stroke-width: 2;
    stroke-dasharray: 1, 3;
    animation: dashOffset 30s linear infinite;
}

@keyframes dashOffset {
    to {
        stroke-dashoffset: 1000;
    }
}

.service-node {
    fill: rgba(255, 255, 255, 0.05);
    stroke: rgba(0, 255, 157, 0.5);
    stroke-width: 1.5;
    transition: all 0.4s ease;
}

.service-node:hover {
    fill: rgba(0, 255, 157, 0.15);
    stroke: rgba(0, 255, 157, 0.8);
    stroke-width: 2;
    transform: scale(1.05);
}

.node-text {
    fill: var(--text-color);
    font-size: 12px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    pointer-events: none;
}

.sub-node {
    fill: rgba(255, 255, 255, 0.05);
    stroke: rgba(0, 255, 157, 0.4);
    stroke-width: 1;
    transition: all 0.3s ease;
}

.sub-node:hover {
    fill: rgba(0, 255, 157, 0.1);
    stroke: rgba(0, 255, 157, 0.6);
    transform: scale(1.1);
}

.sub-connection {
    stroke: rgba(0, 255, 157, 0.2);
    stroke-width: 1;
    stroke-dasharray: 2, 2;
}

.sub-text {
    fill: var(--text-secondary);
    font-size: 9px;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    pointer-events: none;
}

/* İçerik tarafı stilleri */
.ecosystem-content {
    flex: 1;
    max-width: 600px;
}

.ecosystem-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.ecosystem-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 500;
}

.ecosystem-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.ecosystem-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 255, 157, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.ecosystem-cta {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background-color: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.3);
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ecosystem-cta:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 157, 0.2);
}

/* Keşfet Button for Ecosystem Hero Cards */
.ecosystem-discover-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px 8px 8px;
    background-color: #a1002a;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(161, 0, 42, 0.3);
    transition: all 0.3s ease;
}

.ecosystem-discover-btn:hover {
    background-color: #8a0024;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(161, 0, 42, 0.4);
    color: #fff;
    text-decoration: none;
}

.ecosystem-discover-btn .btn-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: #fff;
    border-radius: 50%;
    color: #a1002a;
    transition: all 0.3s ease;
}

.ecosystem-discover-btn:hover .btn-icon-wrapper {
    transform: rotate(45deg);
}

.ecosystem-discover-btn svg {
    width: 14px;
    height: 14px;
    display: block;
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .ecosystem-row {
        gap: 40px;
    }

    .ecosystem-content h2 {
        font-size: 2.4rem;
    }

    .ecosystem-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .ecosystem-row {
        flex-direction: column;
        gap: 50px;
    }

    .ecosystem-image,
    .ecosystem-content {
        max-width: 100%;
    }

    .ecosystem-image {
        order: 1;
        margin-top: 30px;
    }

    .ecosystem-content {
        order: 0;
        text-align: center;
    }

    .ecosystem-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .ecosystem-section {
        padding: 80px 0;
    }

    .ecosystem-content h2 {
        font-size: 2.2rem;
    }

    .ecosystem-subtitle {
        font-size: 1rem;
    }

    .ecosystem-description p {
        font-size: 1rem;
    }

    .ecosystem-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .ecosystem-section {
        padding: 60px 0;
    }

    .ecosystem-content h2 {
        font-size: 1.9rem;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon {
        margin-bottom: 10px;
    }
}

/* Hero İllüstrasyonları */
.hero-illustrations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Grid Desenleri */
.hero-grid-pattern {
    position: absolute;
    opacity: 0.3;
}

.hero-grid-pattern.left-top {
    top: -100px;
    left: -100px;
}

/* Kod Blokları */
.hero-code-blocks {
    position: absolute;
}

.hero-code-blocks.right-bottom {
    bottom: 30px;
    right: 50px;
}

.code-block {
    background-color: rgba(0, 255, 157, 0.05);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    width: 120px;
}

.code-line {
    height: 3px;
    background-color: rgba(0, 255, 157, 0.2);
    border-radius: 2px;
    margin-bottom: 6px;
    width: 100%;
}

.code-line.short {
    width: 60%;
}

.code-line.medium {
    width: 80%;
}

/* Teknoloji Simgeleri */
.hero-tech-icons {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
}

.tech-icon {
    position: absolute;
    opacity: 0.7;
    filter: drop-shadow(0 0 8px rgba(0, 255, 157, 0.3));
    animation: float 6s ease-in-out infinite;
}

.tech-icon-1 {
    top: -40px;
    right: 10px;
    animation-delay: 0s;
}

.tech-icon-2 {
    top: 30px;
    right: -20px;
    animation-delay: 2s;
}

.tech-icon-3 {
    top: 70px;
    right: 20px;
    animation-delay: 4s;
}

/* Geometrik Şekiller */
.hero-geometric-shapes {
    position: absolute;
}

.hero-geometric-shapes.left-bottom {
    bottom: -50px;
    left: 40px;
    opacity: 0.6;
}

/* Çizgiler */
.hero-connectors {
    position: absolute;
}

.hero-connectors.right-top {
    top: 30px;
    right: 30px;
}

/* Parçacıklar */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background-color: rgba(0, 255, 157, 0.6);
    border-radius: 50%;
    width: 5px;
    height: 5px;
    opacity: 0.6;
    animation: move 20s linear infinite;
}

.p1 {
    top: 15%;
    left: 25%;
    animation-delay: 0s;
}

.p2 {
    top: 25%;
    left: 40%;
    animation-delay: 2s;
}

.p3 {
    top: 65%;
    left: 20%;
    animation-delay: 4s;
}

.p4 {
    top: 75%;
    left: 70%;
    animation-delay: 6s;
}

.p5 {
    top: 35%;
    left: 80%;
    animation-delay: 8s;
}

.p6 {
    top: 55%;
    left: 55%;
    animation-delay: 10s;
}

.p7 {
    top: 30%;
    left: 60%;
    animation-delay: 12s;
}

.p8 {
    top: 80%;
    left: 35%;
    animation-delay: 14s;
}

/* Animasyonlar */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes move {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(100px, 50px);
    }

    50% {
        transform: translate(50px, 100px);
    }

    75% {
        transform: translate(-50px, 50px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* Hero stilleri iyileştirme */
.page-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out both;
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 0.9rem !important;
        display: block !important;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.9;
    }

    .hero-tech-icons {
        right: 20px;
    }

    .hero-code-blocks.right-bottom {
        bottom: 10px;
        right: 10px;
    }

    .code-block {
        width: 80px;
        padding: 8px;
    }
}

.more-link {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    margin-top: auto;
    transition: all 0.3s ease;
}

.more-link:hover {
    color: var(--accent-color);
}

.more-link svg {
    margin-left: 8px;
    fill: none;
    stroke: var(--secondary-color);
    stroke-width: 3;
    transition: all 0.3s ease;
}

.more-link:hover svg {
    stroke: var(--accent-color);
    transform: translateX(3px);
}

.services-more-btn {
    display: inline-flex;
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 204, 125, 0.3);
}

.services-more-btn:hover {
    background-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 204, 125, 0.4);
    transform: translateY(-2px);
}

/* Modern İletişim Formu */
.modern-form-container {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.form-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
}

.form-header p {
    font-size: 15px;
    color: #718096;
    line-height: 1.6;
    max-width: 350px;
    margin: 15px auto 0;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.input-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.input-container.full-width {
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    z-index: 2;
}

.textarea-icon {
    top: 26px;
    transform: none;
}

.input-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.input-container input,
.input-container textarea {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    border-radius: 12px;
    font-size: 15px;
    color: #2d3748;
    transition: all 0.3s ease;
}

.input-container textarea {
    min-height: 120px;
    resize: vertical;
}

.input-container input::placeholder,
.input-container textarea::placeholder {
    color: #a0aec0;
}

.input-container input:focus,
.input-container textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 157, 0.15);
    background-color: white;
}

.input-container:focus-within .input-icon svg {
    fill: var(--primary-color);
    opacity: 1;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.modern-submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: #151515;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.3);
}

.modern-submit-button span {
    transition: all 0.3s ease;
}

.modern-submit-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.modern-submit-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 157, 0.4);
}

.modern-submit-button:hover span {
    transform: translateX(-5px);
}

.modern-submit-button:hover svg {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 24px;
    }

    .modern-form-container {
        padding: 30px 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Dark tema için ayarlamalar */
[data-theme="dark"] .modern-form-container {
    background-color: #1e2235;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .form-header h2 {
    color: white;
}

[data-theme="dark"] .form-header p {
    color: #a0aec0;
}

[data-theme="dark"] .input-container input,
[data-theme="dark"] .input-container textarea {
    background-color: #272c42;
    border-color: #2d3352;
    color: white;
}

[data-theme="dark"] .input-container input::placeholder,
[data-theme="dark"] .input-container textarea::placeholder {
    color: #718096;
}

[data-theme="dark"] .input-container input:focus,
[data-theme="dark"] .input-container textarea:focus {
    background-color: #2a3149;
    border-color: var(--primary-color);
}

[data-theme="dark"] .modern-submit-button {
    background-color: var(--primary-color);
    color: #151515;
}

[data-theme="dark"] .modern-submit-button:hover {
    background-color: var(--accent-color);
}

/* İletişim Sayfası Düzeni - Minimal ve Ortalı Tasarım */
.contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    width: 100%;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.modern-form-container {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 650px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0 auto;
}

@media (max-width: 992px) {
    .contact-info {
        justify-content: center;
        gap: 20px;
    }

    .info-card {
        width: calc(33.333% - 20px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 24px;
    }

    .modern-form-container {
        padding: 30px 20px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        width: 100%;
        max-width: 280px;
    }
}

/* Dark tema için ayarlamalar */
[data-theme="dark"] .info-card {
    background-color: rgba(30, 34, 53, 0.5);
}

[data-theme="dark"] .info-card:hover {
    background-color: rgba(39, 44, 66, 0.6);
}

[data-theme="dark"] .modern-form-container {
    background-color: rgba(30, 34, 53, 0.5);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.social-wrapper {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 1.5rem;
}

.social-text {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-bottom .social-links {
    margin-top: 0;
    display: flex;
    gap: 0.8rem;
}

.footer-bottom .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.footer-bottom .social-links a:hover {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 255, 157, 0.25);
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom .social-links a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.footer-bottom .social-links a:hover::before {
    top: 0;
}

@media (max-width: 768px) {
    .social-wrapper {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .social-text {
        font-size: 0.9rem;
    }

    .footer-bottom .social-links {
        margin-top: 0.5rem;
    }
}



/* Blog Styles */
.blog-posts {
    margin-bottom: 40px;
}

.blog-post {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.blog-post:last-child {
    border-bottom: none;
}

.post-thumbnail {
    margin-bottom: 20px;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.post-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #007bff;
}

.post-meta {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.post-meta span {
    margin-right: 15px;
}

.post-meta span:last-child {
    margin-right: 0;
}

.post-excerpt {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Blog Details Styles */
.blog-post-details {
    margin-bottom: 40px;
}

.post-header {
    margin-bottom: 30px;
}

.post-header .post-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.post-content {
    margin: 30px 0;
    line-height: 1.8;
    color: #444;
}

.post-content h3 {
    margin: 25px 0 15px;
    font-size: 22px;
    color: #333;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-share {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.post-share h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.social-share a {
    display: inline-block;
    margin-right: 10px;
    padding: 8px 15px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.social-share a:hover {
    opacity: 0.8;
}

.social-share .facebook {
    background-color: #3b5998;
}

.social-share .twitter {
    background-color: #1da1f2;
}

.social-share .linkedin {
    background-color: #0077b5;
}

/* Blog Detay Sayfası */
.blog-detail-page {
    padding: 60px 0;
}

.blog-detail {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.blog-detail .blog-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.blog-detail .blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.blog-detail .blog-category {
    background: #f0f0f0;
    padding: 5px 15px;
    border-radius: 20px;
    color: #333;
}

.blog-detail .blog-title {
    font-size: 32px;
    margin: 20px 0;
    line-height: 1.3;
    color: #333;
}

.blog-detail .blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.blog-detail .blog-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.blog-detail .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail .blog-content {
    padding: 30px;
    line-height: 1.8;
    color: #444;
}

.blog-detail .blog-content p {
    margin-bottom: 20px;
}

.blog-detail .blog-content h2,
.blog-detail .blog-content h3 {
    margin: 30px 0 20px;
    color: #333;
}

.blog-detail .blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

.blog-detail .blog-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-detail .blog-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.blog-detail .share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-detail .share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.blog-detail .share-btn.facebook {
    background: #3b5998;
}

.blog-detail .share-btn.twitter {
    background: #1da1f2;
}

.blog-detail .share-btn.linkedin {
    background: #0077b5;
}

.blog-detail .share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Benzer Yazılar */
.related-posts {
    margin-top: 60px;
}

.related-posts h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.related-posts .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .related-posts .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-detail .blog-header {
        padding: 20px;
    }

    .blog-detail .blog-title {
        font-size: 24px;
    }

    .blog-detail .blog-image {
        height: 300px;
    }

    .blog-detail .blog-content {
        padding: 20px;
    }

    .blog-detail .blog-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .related-posts .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Banner Slider Styles */

/* Hero Section with Swiper Slider */
.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 25px);
    /* Navbar yüksekliğini çıkar */
    min-height: 600px;
    /* 600px - 100px */
    overflow: hidden;
    margin-top: 61px;
    /* Navbar yüksekliği kadar margin */
    padding: 40px;
    box-sizing: border-box;
    background: #ffffff;
}

.hero-swiper-desktop,
.hero-swiper-mobile {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow:
        0 0 0 2px rgba(44, 62, 80, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(44, 62, 80, 0.1);
    overflow: hidden;
}



/* Swiper Navigation Buttons */
.hero-swiper-desktop .swiper-button-next,
.hero-swiper-desktop .swiper-button-prev,
.hero-swiper-mobile .swiper-button-next,
.hero-swiper-mobile .swiper-button-prev {
    color: var(--primary-white);
    background: rgba(44, 62, 80, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-swiper-desktop .swiper-button-next:hover,
.hero-swiper-desktop .swiper-button-prev:hover,
.hero-swiper-mobile .swiper-button-next:hover,
.hero-swiper-mobile .swiper-button-prev:hover {
    background: rgba(44, 62, 80, 1);
    transform: scale(1.1);
}

.hero-swiper-desktop .swiper-button-next:after,
.hero-swiper-desktop .swiper-button-prev:after,
.hero-swiper-mobile .swiper-button-next:after,
.hero-swiper-mobile .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Swiper Pagination */
.hero-swiper-desktop .swiper-pagination-bullet,
.hero-swiper-mobile .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-swiper-desktop .swiper-pagination-bullet-active,
.hero-swiper-mobile .swiper-pagination-bullet-active {
    background: var(--primary-white);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: calc(80vh - 110px);
        /* Mobil navbar yüksekliği */
        min-height: 600px;
        /* 500px - 80px */
        margin-top: 110px;
        /* Mobil navbar yüksekliği */
        padding: 20px;
    }

    .hero-slide {
        border-width: 6px;
        border-radius: 8px;
    }

    /* Mobile/Desktop Swiper Visibility */
    .hero-swiper-desktop {
        display: none !important;
    }

    .hero-swiper-mobile {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .hero-swiper-desktop {
        display: block !important;
    }

    .hero-swiper-mobile {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: calc(70vh - 110px);
        /* Küçük mobil navbar yüksekliği */
        min-height: 600px;
        /* 400px - 70px */
        margin-top: 110px;
        /* Küçük mobil navbar yüksekliği */
        padding: 15px;
    }

    .hero-slide {
        border-width: 4px;
        border-radius: 6px;
    }
}