/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0071bc;
    --primary-dark: #005a94;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #0071bc 0%, #005a94 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

/* Hero arka plan görseli varsa */
.hero[style*="background-image"] {
    background: linear-gradient(135deg, rgba(0, 113, 188, 0.8) 0%, rgba(16, 185, 129, 0.8) 100%), var(--bg-image) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Hero arka plan görseli için özel stil */
.hero[style*="background-image"] .hero-title,
.hero[style*="background-image"] .hero-description {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero[style*="background-image"] .hero-title .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero[style*="background-image"] .stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero[style*="background-image"] .hero-content {
    position: relative;
    z-index: 2;
}

.hero[style*="background-image"] .hero-visual {
    position: relative;
    z-index: 2;
}

.hero[style*="background-image"] .hero-title,
.hero[style*="background-image"] .hero-description {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero[style*="background-image"] .hero-title .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-container {
	max-width: 1400px;
    margin: 28px auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.floating-card span {
    font-weight: 600;
    color: var(--text-primary);
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.hero-wave .shape-fill {
    fill: var(--bg-primary);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    margin-bottom: 2rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.wave-circle {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: wave 3s ease-in-out infinite;
}

.wave-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.wave-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.wave-circle:nth-child(3) {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

@keyframes wave {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Services Preview */
.services-preview {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Hero Glassmorphism */
.glassmorph {
    background: rgba(255,255,255,0.7);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.18);
    transition: box-shadow 0.3s;
}
.glassmorph:hover {
    box-shadow: 0 12px 40px 0 rgba(0,113,188,0.18);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.stat-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(0,113,188,0.08);
    padding: 0.8rem 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    transition: box-shadow 0.3s;
}
.stat-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}
.stat-card:hover {
    box-shadow: 0 4px 24px 0 rgba(0,113,188,0.15);
}

/* Hero Illustration */
.hero-illustration {
    width: 320px;
    max-width: 100%;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s cubic-bezier(.39,.575,.56,1) both;
}

/* Büyük Butonlar */
.btn-lg {
    font-size: 1.15rem;
    padding: 16px 36px;
    border-radius: 12px;
}

/* Hero Animasyonları */
.animate-in {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(.39,.575,.56,1) forwards;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .hero-illustration { width: 220px; }
    .hero-stats { flex-direction: column; gap: 0.7rem; align-items: center; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        width: 300px;
        height: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card,
    .service-card {
        padding: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
} 

/* Modern Hero Visual */
.modern-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 340px;
    min-height: 340px;
}
.hero-svg-illustration {
    position: relative;
    z-index: 1;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Cards Overlap & Animate */
.hero-float-anim {
    position: absolute;
    z-index: 2;
    min-width: 110px;
    min-height: 48px;
    opacity: 0;
    animation: heroFloatFade 1.2s cubic-bezier(.39,.575,.56,1) forwards;
}
.card-1.hero-float-anim { animation-delay: 0.3s; }
.card-2.hero-float-anim { animation-delay: 0.6s; }
.card-3.hero-float-anim { animation-delay: 0.9s; }

@keyframes heroFloatFade {
    0% { opacity: 0; transform: translateY(40px) scale(0.95); }
    80% { opacity: 1; transform: translateY(-8px) scale(1.04); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Kutulara ekstra glassmorphism ve gölge */
.glassmorph {
    background: rgba(255,255,255,0.82);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.13);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.22);
    transition: box-shadow 0.3s, transform 0.3s;
}
.glassmorph:hover {
    box-shadow: 0 16px 48px 0 rgba(0,113,188,0.22);
    transform: scale(1.06);
}

/* Responsive for hero visual */
@media (max-width: 900px) {
    .modern-hero-visual, .hero-svg-illustration {
        width: 220px;
        height: 220px;
        min-width: 180px;
        min-height: 180px;
    }
    .hero-svg-illustration svg {
        width: 220px;
        height: 220px;
    }
}
@media (max-width: 600px) {
    .modern-hero-visual {
        width: 100vw;
        min-width: 0;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 2.5rem auto;
    }
    .hero-svg-illustration {
        width: 140px;
        height: 140px;
        z-index: 1;
    }
    .floating-card.hero-float-anim {
        position: absolute !important;
        min-width: 90px;
        min-height: 36px;
        font-size: 0.9rem;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        margin: 0;
        z-index: 2;
    }
    .card-1.hero-float-anim {
        top: 0 !important;
        left: 5% !important;
    }
    .card-2.hero-float-anim {
        top: 0 !important;
        right: 5% !important;
    }
    .card-3.hero-float-anim {
        bottom: 0 !important;
        left: 5% !important;
    }
    .card-4.hero-float-anim {
        bottom: 0 !important;
        right: 5% !important;
    }
} 

/* Blog Preview Section */
.blog-preview {
    padding: 5rem 0 4rem;
    background: var(--bg-secondary);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}
.blog-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(0,113,188,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
    min-height: 420px;
}
.blog-card:hover {
    box-shadow: 0 8px 32px 0 rgba(0,113,188,0.13);
    transform: translateY(-8px) scale(1.02);
}
.blog-media {
    width: 100%;
    aspect-ratio: 16/9;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.blog-media img, .blog-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 1px solid #f1f5f9;
}
.blog-content {
    padding: 1.5rem 1.3rem 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--primary-dark);
}
.blog-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    flex: 1;
}
.blog-meta {
    gap: 1.2rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    align-items: center;
}
.blog-meta i {
    color: #ffffff;
    margin-right: 0.3rem;
}
.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 0.2rem;
    transition: gap 0.3s, color 0.3s;
}
.blog-link:hover {
    gap: 1rem;
    color: var(--secondary-color, #10b981);
}
.blog-preview-footer {
    text-align: center;
    margin-top: 2.5rem;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .blog-card {
        min-height: 340px;
    }
} 

/* Blog Detail Section - Geniş ve Tam Ekran */
.blog-detail-section {
    padding: 3rem 0 2.5rem;
    background: var(--bg-secondary);
}
.blog-detail-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(0,113,188,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}
.blog-detail-media {
    width: 100%;
    aspect-ratio: 16/9;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.blog-detail-media img, .blog-detail-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 1px solid #f1f5f9;
}
.blog-detail-content {
    padding: 2.2rem 3vw 2rem 3vw;
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.7;
}
.blog-detail-content h2 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    color: var(--primary-color);
}
.blog-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    background: #f1f5f9;
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 10px;
}
.blog-detail-video {
    margin: 2rem 0;
    text-align: center;
}
.blog-detail-video video {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 2px 12px 0 rgba(0,113,188,0.10);
}
.blog-detail-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 2.5rem auto 0 auto;
    max-width: 900px;
}
.blog-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    background: #fff;
    border-radius: 10px;
    padding: 0.7rem 1.2rem;
    box-shadow: 0 1px 6px 0 rgba(0,113,188,0.06);
    transition: box-shadow 0.3s, color 0.3s;
}
.blog-nav-link:hover {
    color: var(--secondary-color, #10b981);
    box-shadow: 0 4px 16px 0 rgba(0,113,188,0.13);
}
@media (max-width: 900px) {
    .blog-detail-card {
        max-width: 100%;
    }
    .blog-detail-content {
        padding: 1.2rem 1vw 1.2rem 1vw;
    }
    .blog-detail-nav {
        flex-direction: column;
        gap: 0.7rem;
        max-width: 100%;
    }
} 

/* Sabit WhatsApp ve Telefon Butonları - Düzeltme */
.fixed-contact-buttons {
    position: fixed;
    left: 32px;
    bottom: 32px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
@media (max-width: 600px) {
    .fixed-contact-buttons {
        left: 12px;
        bottom: 12px;
        gap: 12px;
    }
}

/* Sabit WhatsApp ve Telefon Butonları - İkon Düzeltme */
.contact-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0071bc 60%, #10b981 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 24px 0 rgba(0,113,188,0.18);
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    pointer-events: auto;
    border: none;
    outline: none;
    cursor: pointer;
    opacity: 0.96;
    overflow: hidden;
    padding: 0;
}
.contact-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
    line-height: 1;
    vertical-align: middle;
    margin: 0;
    padding: 0;
}
.contact-btn:hover, .contact-btn:focus {
    box-shadow: 0 8px 32px 0 rgba(16,185,129,0.22);
    transform: scale(1.08);
    background: linear-gradient(135deg, #10b981 60%, #0071bc 100%);
    opacity: 1;
}
.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 60%, #0071bc 100%);
}
.whatsapp-btn:hover, .whatsapp-btn:focus {
    background: linear-gradient(135deg, #0071bc 60%, #25d366 100%);
}
.phone-btn {
    background: linear-gradient(135deg, #0071bc 60%, #10b981 100%);
}
@media (max-width: 600px) {
    .contact-btn {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }
    .contact-btn i {
        font-size: 1.3em;
    }
} 

/* Sabit WhatsApp ve Telefon Kapsül Butonları (Daha Ferah ve Ortalanmış) */
.fixed-contact-capsule {
    position: fixed;
    left: 32px;
    bottom: 32px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: rgba(255,255,255,0.55);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.13);
    backdrop-filter: blur(16px);
    border-radius: 32px;
    padding: 24px 14px;
    align-items: center;
    border: 1.5px solid rgba(255,255,255,0.22);
    min-width: 72px;
    transition: box-shadow 0.3s, background 0.3s;
}
.contact-btn {
    width: 44px;
    height: 44px;
    margin: 4px 0;
    font-size: 1.5rem;
    text-decoration: none;
}
.contact-btn i {
    font-size: 1.3em;
}
@media (max-width: 600px) {
    .fixed-contact-capsule {
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        width: 100vw;
        max-width: 100vw;
        border-radius: 0;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 10px 0 10px 0;
        min-width: 0;
        box-shadow: 0 -4px 24px 0 rgba(0,113,188,0.10);
        background: rgba(255,255,255,0.92);
        border-top: 1.5px solid rgba(0,113,188,0.08);
    }
    .contact-btn {
        width: 38px;
        height: 38px;
        margin: 0 10px;
        font-size: 1.1rem;
    }
    .contact-btn i {
        font-size: 1.1em;
    }
} 

/* Tüm .page-header alanları için ortak stil (hizmetler gibi) */
.page-header {
    background: var(--gradient-primary);
    color: #fff;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}
.page-header-content {
    position: relative;
    z-index: 2;
}
.page-header h1, .page-header-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}
.page-header p, .page-header-content p {
    font-size: 1.25rem;
    color: #fff;
    opacity: 0.95;
    margin-bottom: 2rem;
}
.page-header .breadcrumb, .page-header-content .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #fff;
    opacity: 0.95;
}
.page-header .breadcrumb a, .page-header-content .breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}
.page-header .breadcrumb a:hover, .page-header-content .breadcrumb a:hover {
    opacity: 1;
}
.page-header .breadcrumb span, .page-header-content .breadcrumb span {
    opacity: 0.7;
}
@media (max-width: 600px) {
    .page-header {
        padding: 6rem 0 3rem 0;
    }
    .page-header h1, .page-header-content h1 {
        font-size: 19px;
    }
    .page-header p, .page-header-content p {
        font-size: 1.05rem;
    }
} 

/* Koyu arka planlı alanlarda metin rengi beyaz */
.cta, .page-header {
    color: #fff;
}
.cta h2, .page-header h1, .page-header-content h1 {
    color: #fff;
}
.cta p, .page-header p, .page-header-content p {
    color: #fff;
    opacity: 0.92;
}
.page-header .breadcrumb, .page-header-content .breadcrumb {
    color: #f3f4f6;
    opacity: 0.85;
} 

@media (max-width: 600px) {
    .page-header,
    .page-header-content,
    .page-header h1,
    .page-header-content h1,
    .page-header p,
    .page-header-content p,
    .page-header .breadcrumb,
    .page-header-content .breadcrumb,
    .page-header .breadcrumb a,
    .page-header-content .breadcrumb a,
    .page-header .breadcrumb span,
    .page-header-content .breadcrumb span {
        color: #fff !important;
        opacity: 1 !important;
        text-shadow: 0 1px 4px rgba(0,0,0,0.18);
    }
    .page-header .breadcrumb a,
    .page-header-content .breadcrumb a {
        text-decoration: none;
        color: #fff !important;
        font-weight: 500;
    }
} 

@media (max-width: 600px) {
    .hero-content, .hero-title, .hero-description {
        text-align: center !important;
    }
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    margin-left: 1.5rem;
}

.language-dropdown {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(0, 113, 188, 0.05) 0%, rgba(0, 113, 188, 0.1) 100%);
    border: 1px solid rgba(0, 113, 188, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 113, 188, 0.1);
}

.language-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 113, 188, 0.25);
    border-color: var(--primary-color);
}

.language-btn:active {
    transform: translateY(0);
}

.language-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.language-btn:hover i:last-child {
    transform: rotate(180deg);
}

.current-lang {
    font-weight: 700;
    min-width: 24px;
    text-align: center;
    letter-spacing: 0.5px;
}

.language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 113, 188, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 113, 188, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.95);
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 113, 188, 0.1);
    border-top: 1px solid rgba(0, 113, 188, 0.1);
}

.language-menu li {
    list-style: none;
}

.language-menu li:first-child .lang-option {
    border-radius: 16px 16px 0 0;
}

.language-menu li:last-child .lang-option {
    border-radius: 0 0 16px 16px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 14px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 113, 188, 0.05);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.lang-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 113, 188, 0.05) 0%, transparent 100%);
    transition: width 0.3s ease;
}

.lang-option:hover::before {
    width: 100%;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(0, 113, 188, 0.03);
    color: var(--primary-color);
    transform: translateX(4px);
}

.lang-option.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 600;
}

.lang-option.active::before {
    display: none;
}

/* Mobile Language Selector */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 0;
        margin-top: 1.5rem;
        width: 100%;
    }
    
    .language-dropdown {
        width: 100%;
    }
    
    .language-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
        background: linear-gradient(135deg, rgba(0, 113, 188, 0.08) 0%, rgba(0, 113, 188, 0.12) 100%);
        border: 1px solid rgba(0, 113, 188, 0.15);
    }
    
    .language-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 1rem;
        background: transparent;
        backdrop-filter: none;
    }
    
    .language-menu::before {
        display: none;
    }
    
    .language-menu li {
        margin-bottom: 0.75rem;
    }
    
    .language-menu li:first-child .lang-option,
    .language-menu li:last-child .lang-option {
        border-radius: 12px;
    }
    
    .lang-option {
        padding: 12px 20px;
        border: 1px solid rgba(0, 113, 188, 0.1);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.9);
        text-align: center;
        font-size: 1rem;
        font-weight: 500;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .lang-option:hover {
        background: rgba(0, 113, 188, 0.05);
        border-color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0, 113, 188, 0.15);
    }
    
    .lang-option.active {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: white;
        border-color: var(--primary-color);
        box-shadow: 0 4px 16px rgba(0, 113, 188, 0.25);
    }
    
    .lang-option::before {
        display: none;
    }
}

/* Mobile Menu Language Integration */
@media (max-width: 768px) {
    .nav-menu {
        padding-bottom: 2rem;
    }
    
    .nav-menu .language-selector {
        order: -1;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
} 