/* ===================================
   Limon Yazılım - Ana Stil Dosyası
   =================================== */

/* CSS Variables */
:root {
    --color-primary: #000000;
    --color-secondary: #1a1a1a;
    --color-accent: #f5f5f0;
    --color-background: #f8f8f6;
    --color-text: #1a1a1a;
    --color-text-muted: #6b7280;
    --color-text-light: #9ca3af;
    --color-border: #e5e5e5;
    --color-success: #22c55e;

    --font-heading: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'Fragment Mono', monospace;
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px 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);

    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

em {
    font-style: italic;
    font-family: var(--font-heading);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--color-primary);
    color: white;
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-border);
    color: var(--color-text);
}

.btn-outline:hover {
    background: var(--color-accent);
    border-color: var(--color-text);
}

.btn-full {
    width: 100%;
}

.btn-small {
    padding: 10px 18px;
    font-size: 14px;
}

/* Action Button */
.btn-denqid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px 12px 14px;
    background: #000;
    color: white;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow:
        0.5px 0.5px 1.8px -0.4px rgba(0, 0, 0, 0.18),
        1.4px 1.4px 4.5px -0.8px rgba(0, 0, 0, 0.18),
        2.9px 2.9px 9px -1.2px rgba(0, 0, 0, 0.18),
        5.5px 5.5px 17px -1.7px rgba(0, 0, 0, 0.18),
        11px 11px 34px -2px rgba(0, 0, 0, 0.18),
        24px 24px 75px -2.5px rgba(0, 0, 0, 0.18),
        0px -16px 48px 0px rgb(0, 0, 0) inset;
}

.btn-denqid:hover {
    transform: translateY(-2px);
}

.btn-denqid-icon {
    font-size: 14px;
    line-height: 1;
}

.btn-denqid-text {
    font-weight: 600;
}

.btn-denqid-arrow {
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.btn-denqid:hover .btn-denqid-arrow {
    opacity: 1;
    transform: translateX(2px);
}

.btn-icon {
    font-size: 16px;
}

/* Header Section */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
}

.site-header .container {
    max-width: 100%;
    padding: 0 24px;
}

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

/* Header Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.header-logo:hover {
    background: rgba(255, 255, 255, 0.7);
}

.header-logo-icon {
    font-size: 18px;
}

.header-logo-text {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
}

/* Menu Button */
.header-menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-menu-btn:hover {
    transform: scale(1.05);
}

.menu-line {
    width: 18px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Menu Open State */
.header-menu-btn.active .menu-line-top {
    transform: rotate(45deg) translate(3px, 3px);
}

.header-menu-btn.active .menu-line-bottom {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Menu wrapper for positioning */
.header-menu-wrapper {
    position: relative;
}

/* Mobile Menu Panel - Dropdown style */
.header-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 285px !important;
    background: rgb(255, 255, 255);
    border-radius: 24px 8px 24px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: none;
    transform-origin: 100% 0 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.header-menu.active {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.header-menu-content {
    padding: 24px 44px !important;
}

/* Header Nav */
.header-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.header-nav a {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 10px 0;
    transition: all 0.2s ease;
}

.header-nav a:hover {
    opacity: 0.5;
}

/* Header Social Icons */
.header-social {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.header-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.header-social-icon svg {
    width: 16px;
    height: 16px;
}

.header-social-icon:hover {
    border-color: var(--color-text);
    color: var(--color-text);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo span {
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, #e8e8e6 0%, #f0f0ee 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Hero Heading */
.hero-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
}

.heading-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.heading-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 8vw, 100px);
    font-weight: 600;
    line-height: 1.1em;
    letter-spacing: -0.05em;
    margin: 0;
    font-feature-settings: 'ss01' on, 'dlig' on;
}

.heading-bold {
    color: var(--color-text);
    font-weight: 700;
}

.heading-light {
    color: rgba(0, 0, 0, 0.45);
    font-weight: 400;
}

/* Slideshow Box */
.heading-slideshow {
    width: 140px;
    height: 100px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.slideshow-inner {
    display: flex;
    flex-direction: column;
    animation: slideY 6s ease-in-out infinite;
}

.slideshow-inner img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes slideY {

    0%,
    45% {
        transform: translateY(0);
    }

    50%,
    95% {
        transform: translateY(-100px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Ticker Box */
.heading-ticker {
    width: 180px;
    height: 70px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    gap: 36px;
    animation: tickerScroll 15s linear infinite;
    padding: 0 18px;
}

.ticker-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-item svg {
    opacity: 0.6;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hero Subheading */
.hero-subheading {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
    text-align: center;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    justify-content: center;
}

/* Booking Button */
.btn-booking {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px 16px 16px;
    background: var(--color-primary);
    color: white;
    border-radius: 154px;
    font-size: 15px;
    font-weight: 600;
    box-shadow:
        rgba(0, 0, 0, 0.18) 0.565px 0.565px 1.76px -0.42px,
        rgba(0, 0, 0, 0.18) 1.45px 1.45px 4.5px -0.83px,
        rgba(0, 0, 0, 0.18) 2.9px 2.9px 9px -1.25px,
        rgba(0, 0, 0, 0.18) 5.49px 5.49px 17.09px -1.67px,
        rgba(0, 0, 0, 0.18) 10.92px 10.92px 33.97px -2.08px,
        rgba(0, 0, 0, 0.18) 24px 24px 74.67px -2.5px,
        rgb(0, 0, 0) 0px -16px 48px 0px inset;
    transition: all 0.3s ease;
}

.btn-booking:hover {
    transform: translateY(-2px);
}

.btn-booking-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.btn-booking-icon svg {
    width: 16px;
    height: 16px;
    stroke: white;
}

.btn-booking-text {
    font-weight: 600;
}

.btn-booking-arrows {
    display: flex;
    align-items: center;
    opacity: 0.5;
}

.btn-booking-arrows svg {
    width: 16px;
    height: 16px;
}

/* Back To Top Button */
.back-to-top {
    position: fixed;
    right: 32px;
    bottom: 32px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.25),
        0 0 0 6px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 1200;
}

.back-to-top-icon svg {
    display: block;
}

.back-to-top:hover {
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.35),
        0 0 0 8px rgba(0, 0, 0, 0.08);
    transform: translateY(16px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 46px;
        height: 46px;
        box-shadow:
            0 3px 12px rgba(0, 0, 0, 0.25),
            0 0 0 4px rgba(0, 0, 0, 0.06);
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 60px 0;
    background: var(--color-background);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
    margin-bottom: 60px;
}

.bento-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 2;
}

.bento-small {
    grid-column: span 1;
}

.bento-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--color-text-muted);
}

.bento-placeholder.dark {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #888;
}

/* Bento Project Styles */
.bento-project {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    /* Show top of image */
    transition: transform 0.3s ease;
}

.bento-project:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.project-info {
    flex: 1;
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 4px 0;
}

.project-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.project-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.project-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

/* Trust Badge */
.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px;
    background: var(--color-accent);
    border-radius: var(--radius-xl);
    max-width: 600px;
    margin: 0 auto;
}

.trust-icon {
    flex-shrink: 0;
}

.trust-badge p {
    font-size: 14px;
    color: var(--color-text-muted);
    text-align: left;
    line-height: 1.5;
}

/* Client Avatars (Company Logos) */
.client-avatars {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.client-avatars .company-avatar {
    width: 36px;
    height: 36px;
    border: 2px solid white;
}

.client-avatars .company-avatar img {
    width: 20px;
    height: 20px;
}

/* Additional Tech Logo Colors */
.company-avatar.php {
    background: transparent;
}

.company-avatar.python {
    background: linear-gradient(135deg, #366994 0%, #FFD43B 100%);
}

.company-avatar.javascript {
    background: #F7DF1E;
}

.company-avatar.php img {
    filter: none;
    /* PHP logo has its own colors */
}

.company-avatar.python img {
    filter: none;
    /* Python logo already has colors */
}

.company-avatar.javascript img {
    filter: none;
    /* JS logo keeps its colors */
}

/* Tech Logos */
.tech-logos {
    display: flex;
    gap: 16px;
    align-items: center;
}

.tech-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.tech-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Company Avatars */
.avatar-group {
    display: flex;
    gap: -8px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
}

.company-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.company-avatar:hover {
    transform: translateY(-4px);
    z-index: 10;
}

.company-avatar img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Brand Colors */
.company-avatar.google {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
}

.company-avatar.wordpress {
    background: #21759b;
}

.company-avatar.apple {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.company-avatar.google img,
.company-avatar.apple img {
    filter: brightness(0) invert(1);
    /* White logos */
}

.company-avatar.wordpress img {
    filter: brightness(0) invert(1);
    /* White logo */
}

/* Section Styles */
section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

/* How It Works */
.how-it-works {
    background: var(--color-background);
}

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

.step-card {
    background: var(--color-accent);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: left;
}

.step-card.highlighted {
    background: #fef3c7;
}

.step-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 16px;
    opacity: 0.3;
}

.step-card h3 {
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    background: var(--color-accent);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.info-card.dark {
    background: var(--color-primary);
    color: white;
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.info-card-footer {
    display: flex;
    align-items: center;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #fbbf24;
}

.rating-text {
    font-family: var(--font-mono);
    font-size: 14px;
}

.avatar-group {
    display: flex;
}

/* Case Studies */
.case-studies {
    background: var(--color-accent);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.case-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.case-image {
    height: 280px;
    overflow: hidden;
}

.case-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--color-text-muted);
}

.case-image.dark .case-placeholder,
.case-placeholder.dark {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #666;
}

.case-info {
    padding: 20px 24px;
}

.case-tag {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-info h3 {
    margin-top: 8px;
}

/* About Section */
.about {
    background: white;
}

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

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

.about-image {
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--color-text-muted);
}

.image-placeholder.dark {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #666;
}

.founder-card {
    background: var(--color-accent);
    padding: 40px;
    border-radius: var(--radius-xl);
}

.founder-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.founder-title {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.founder-desc {
    margin-bottom: 24px;
    color: var(--color-text-muted);
}

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

.social-link {
    font-size: 14px;
    color: var(--color-text);
    padding: 8px 16px;
    background: white;
    border-radius: var(--radius-full);
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
}

/* About Stats */
.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* Pricing Section */
.pricing {
    background: var(--color-accent);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
}

.pricing-card.main {
    background: var(--color-accent);
    border: 1px solid var(--color-border);
}

.pricing-tag {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    margin: 24px 0 32px;
}

.currency {
    font-size: 24px;
    margin-right: 4px;
}

.price {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-left: 8px;
}

.pricing-card.features h3 {
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--color-success);
    flex-shrink: 0;
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* FAQ Card */
.faq-card {
    background: #f5f5f3;
    padding: 32px;
    border-radius: 24px;
    transform: rotate(-2deg);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.05);
}

.faq-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.faq-card-avatar {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-card-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-card-title span {
    font-size: 14px;
    color: var(--color-text-muted);
}

.faq-card-title strong {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}

/* FAQ Card Button */
.faq-card-button-wrapper {
    padding: 5px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    margin-bottom: 20px;
}

.faq-card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: #000;
    color: white;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow:
        0.5px 0.5px 1.8px -0.4px rgba(0, 0, 0, 0.18),
        1.4px 1.4px 4.5px -0.8px rgba(0, 0, 0, 0.18),
        2.9px 2.9px 9px -1.2px rgba(0, 0, 0, 0.18),
        5.5px 5.5px 17px -1.7px rgba(0, 0, 0, 0.18),
        11px 11px 34px -2px rgba(0, 0, 0, 0.18),
        24px 24px 75px -2.5px rgba(0, 0, 0, 0.18),
        0px -16px 48px 0px rgb(0, 0, 0) inset;
}

.faq-card-button:hover {
    transform: translateY(-2px);
}

.faq-card-btn-icon {
    font-size: 16px;
    line-height: 1;
}

.faq-card-btn-arrow {
    display: flex;
    align-items: center;
    opacity: 0.5;
    margin-left: auto;
}

.faq-card-button:hover .faq-card-btn-arrow {
    opacity: 1;
}

/* FAQ Card Email */
.faq-card-email {
    font-size: 14px;
    color: var(--color-text-muted);
    text-align: center;
}

.faq-card-email a {
    color: var(--color-text);
    font-weight: 500;
}

.faq-card-email a:hover {
    text-decoration: underline;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--color-accent);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--color-text-muted);
    font-size: 15px;
}

/* Footer Dark */
.footer-dark {
    position: relative;
    background: #0a0a0a;
    color: white;
    padding: 100px 0 40px;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-dark-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Keskin ışık huzmeleri - birinci şerit (ana ışık) */
.footer-dark-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 80%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.03) 20%,
            rgba(255, 255, 255, 0.1) 45%,
            rgba(255, 255, 255, 0.14) 50%,
            rgba(255, 255, 255, 0.1) 55%,
            rgba(255, 255, 255, 0.03) 80%,
            transparent 100%);
    transform: rotate(130deg);
    transform-origin: top left;
    filter: blur(1px);
}

/* Keskin ışık huzmeleri - ikinci şerit */
.footer-dark-bg::after {
    content: '';
    position: absolute;
    top: -40%;
    left: -5%;
    width: 70%;
    height: 180%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.02) 30%,
            rgba(255, 255, 255, 0.07) 48%,
            rgba(255, 255, 255, 0.09) 50%,
            rgba(255, 255, 255, 0.07) 52%,
            rgba(255, 255, 255, 0.02) 70%,
            transparent 100%);
    transform: rotate(135deg);
    transform-origin: top left;
    filter: blur(2px);
}

/* Ekstra ışık şeritleri */
.light-beam {
    position: absolute;
    pointer-events: none;
}

.light-beam-1 {
    top: -30%;
    left: 0%;
    width: 60%;
    height: 160%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.02) 40%,
            rgba(255, 255, 255, 0.06) 50%,
            rgba(255, 255, 255, 0.02) 60%,
            transparent 100%);
    transform: rotate(125deg);
    transform-origin: top left;
}

.light-beam-2 {
    top: -60%;
    left: 10%;
    width: 50%;
    height: 180%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.015) 40%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.015) 60%,
            transparent 100%);
    transform: rotate(140deg);
    transform-origin: top left;
    filter: blur(3px);
}

.light-beam-3 {
    top: -20%;
    left: 5%;
    width: 75%;
    height: 150%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.01) 45%,
            rgba(255, 255, 255, 0.03) 50%,
            rgba(255, 255, 255, 0.01) 55%,
            transparent 100%);
    transform: rotate(132deg);
    transform-origin: top left;
    filter: blur(6px);
}

.footer-dark .container {
    position: relative;
    z-index: 1;
}

/* Footer Contact */
.footer-contact {
    text-align: center;
    padding-bottom: 100px;
}

.available-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.tag-line {
    width: 40px;
    height: 1px;
    background: #444;
}

.tag-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    color: #999;
    letter-spacing: 0.03em;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: white;
}

.footer-title .text-gray {
    color: #555;
}

.footer-desc {
    font-size: 16px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Meeting Button */
.btn-meeting-wrapper {
    display: inline-block;
    padding: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
}

.btn-meeting {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px 14px 16px;
    background: #000;
    color: white;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow:
        0.5px 0.5px 1.8px -0.4px rgba(0, 0, 0, 0.18),
        1.4px 1.4px 4.5px -0.8px rgba(0, 0, 0, 0.18),
        2.9px 2.9px 9px -1.2px rgba(0, 0, 0, 0.18),
        5.5px 5.5px 17px -1.7px rgba(0, 0, 0, 0.18),
        11px 11px 34px -2px rgba(0, 0, 0, 0.18),
        24px 24px 75px -2.5px rgba(0, 0, 0, 0.18),
        0px -16px 48px 0px rgb(0, 0, 0) inset;
}

.btn-meeting:hover {
    transform: translateY(-2px);
    box-shadow:
        0.5px 0.5px 1.8px -0.4px rgba(0, 0, 0, 0.22),
        1.4px 1.4px 4.5px -0.8px rgba(0, 0, 0, 0.22),
        2.9px 2.9px 9px -1.2px rgba(0, 0, 0, 0.22),
        5.5px 5.5px 17px -1.7px rgba(0, 0, 0, 0.22),
        11px 11px 34px -2px rgba(0, 0, 0, 0.22),
        28px 28px 80px -2.5px rgba(0, 0, 0, 0.22),
        0px -16px 48px 0px rgb(0, 0, 0) inset;
}

.btn-meeting-emoji {
    font-size: 18px;
    line-height: 1;
}

.btn-meeting-text {
    font-weight: 600;
}

.btn-meeting-arrow {
    display: flex;
    align-items: center;
    opacity: 0.5;
    margin-left: 4px;
    transition: all 0.3s ease;
}

.btn-meeting-arrow svg {
    width: 16px;
    height: 16px;
}

.btn-meeting:hover .btn-meeting-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom-dark {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    margin-top: auto;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-line {
    width: 30px;
    height: 1px;
    background: #444;
}

.footer-left p {
    font-size: 14px;
    color: #666;
}

.footer-left a {
    font-size: 14px;
    color: #555;
    transition: color 0.2s ease;
}

.footer-left a:hover {
    color: #999;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #333;
    border-radius: 50%;
    color: #666;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: #555;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }

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

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

    .faq-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 90px 0 50px;
    }

    .heading-text {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .heading-row {
        gap: 8px;
    }

    .heading-slideshow {
        width: 90px;
        height: 65px;
        border-radius: 14px;
    }

    .slideshow-inner img {
        height: 65px;
    }

    @keyframes slideY {

        0%,
        45% {
            transform: translateY(0);
        }

        50%,
        95% {
            transform: translateY(-65px);
        }

        100% {
            transform: translateY(0);
        }
    }

    .heading-ticker {
        width: 110px;
        height: 50px;
        border-radius: 14px;
    }

    .ticker-item svg {
        width: 50px;
        height: 12px;
    }

    .hero-subheading {
        font-size: 14px;
    }

    .btn-booking {
        padding: 12px 16px 12px 12px;
        font-size: 14px;
    }

    .about-stats {
        gap: 24px;
    }

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

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 200px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        aspect-ratio: 16/9;
    }

    .footer-bottom-dark {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        gap: 12px;
    }

    .footer-line {
        display: none;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-dark {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .footer-contact {
        padding-bottom: 60px;
    }

    .trust-badge {
        flex-direction: column;
        text-align: center;
    }

    .trust-badge p {
        text-align: center;
    }

    .client-avatars {
        display: flex;
        gap: 8px;
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
    }

    .client-avatars .company-avatar {
        width: 36px;
        height: 36px;
        border: 2px solid white;
    }

    .client-avatars .company-avatar img {
        width: 20px;
        height: 20px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

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

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

.hero-content,
.bento-grid,
.trust-badge,
.step-card,
.info-card,
.case-card {
    animation: fadeInUp 0.6s ease-out;
}

.step-card:nth-child(2) {
    animation-delay: 0.1s;
}

.step-card:nth-child(3) {
    animation-delay: 0.2s;
}

.step-card:nth-child(4) {
    animation-delay: 0.3s;
}

.case-card:nth-child(2) {
    animation-delay: 0.1s;
}

.case-card:nth-child(3) {
    animation-delay: 0.2s;
}

.case-card:nth-child(4) {
    animation-delay: 0.3s;
}


/* ========== BLOG PAGES ========== */

/* Blog Header */
.blog-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, #e8e8e6 0%, #f0f0ee 100%);
}

.blog-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.blog-header p {
    font-size: 18px;
    color: var(--color-text-muted);
}

/* Blog Content */
.blog-content {
    padding: 60px 0 100px;
    background: var(--color-background);
}

/* Blog Categories */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
    justify-content: center;
}

.category-tag {
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
}

.category-tag:hover {
    border-color: var(--color-text);
    color: var(--color-text);
}

.category-tag.active {
    background: var(--color-text);
    color: white;
    border-color: var(--color-text);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    display: block;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--color-accent);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--color-text-muted);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.blog-card-content h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-content h2 a {
    color: var(--color-text);
    text-decoration: none;
}

.blog-card-content h2 a:hover {
    color: var(--color-text-muted);
}

.blog-card-content p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-light);
}

/* Blog Card Read More Button */
.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 16px;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #000;
}

.blog-card-read-more:hover {
    background: white;
    color: #000;
    border-color: #000;
}

.blog-card-read-more svg {
    transition: transform 0.3s ease;
    width: 14px;
    height: 14px;
}

.blog-card-read-more:hover svg {
    transform: translateX(3px);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.pagination-btn {
    padding: 12px 24px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    background: var(--color-text);
    color: white;
    border-color: var(--color-text);
}

.pagination-info {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Blog Empty State */
.blog-empty {
    text-align: center;
    padding: 80px 20px;
}

.blog-empty p {
    font-size: 18px;
    color: var(--color-text-muted);
}

/* ========== BLOG DETAIL ========== */

.blog-post {
    padding: 120px 0 100px;
    background: var(--color-background);
}

.blog-post .container {
    max-width: 800px;
}

/* Post Meta */
.post-meta-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.post-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-text);
    color: white;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-date {
    font-size: 14px;
    color: var(--color-text-muted);
}

.post-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.post-meta-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

/* Featured Image */
.post-featured-image {
    margin-bottom: 48px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Post Content */
.post-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 48px;
}

.post-content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 40px 0 20px;
}

.post-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 32px 0 16px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 28px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 32px 0;
}

.post-content blockquote {
    margin: 32px 0;
    padding: 20px 24px;
    background: var(--color-accent);
    border-left: 4px solid var(--color-text);
    border-radius: var(--radius-md);
    font-style: italic;
}

.post-content code {
    padding: 2px 8px;
    background: var(--color-accent);
    border-radius: 4px;
    font-family: 'Fragment Mono', monospace;
    font-size: 0.9em;
}

.post-content pre {
    padding: 20px;
    background: var(--color-secondary);
    color: #f0f0f0;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 24px 0;
}

.post-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Share Buttons */
.post-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 60px;
}

.post-share span {
    font-weight: 600;
    font-size: 15px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--color-accent);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.share-btn:hover {
    background: var(--color-text);
    color: white;
}

/* Related Posts */
.related-posts {
    margin-bottom: 60px;
}

.related-posts h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.related-card {
    display: block;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    text-decoration: none;
    transition: all 0.2s ease;
}

.related-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.related-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: var(--color-accent);
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    padding: 16px;
}

.related-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-date {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* Back to Blog */
.back-to-blog {
    text-align: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-back:hover {
    background: var(--color-text);
    color: white;
    border-color: var(--color-text);
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .post-share {
        flex-wrap: wrap;
    }
}