/*
Theme Name: DijitalBasak
Theme URI: https://dijitalbasak.com
Author: DijitalBasak
Author URI: https://dijitalbasak.com
Description: Bireysel dijital pazarlama uzmanı için modern, premium ve şık WordPress teması.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dijitalbasak
Tags: one-page, custom-logo, custom-background, featured-images
*/

/* ===== CSS VARIABLES & RESET ===== */
:root {
    --bg-primary: #F8FAFC;
    --bg-secondary: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F1F5F9;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --accent-1: #8b5cf6;
    --accent-2: #06b6d4;
    --accent-3: #f43f5e;
    --accent-gradient: linear-gradient(135deg, #8b5cf6, #06b6d4);
    --accent-gradient-hover: linear-gradient(135deg, #a78bfa, #22d3ee);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(139, 92, 246, 0.15);
    --shadow-glow: 0 10px 30px rgba(139, 92, 246, 0.1);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.06);
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;
    --max-width: 1200px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-animation .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08; /* Açık temada göz yormaması için düşürüldü */
    animation: orbFloat 20s infinite ease-in-out;
}

.bg-animation .orb:nth-child(1) {
    width: 500px;
    height: 500px;
    background: var(--accent-1);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.bg-animation .orb:nth-child(2) {
    width: 400px;
    height: 400px;
    background: var(--accent-2);
    bottom: -50px;
    left: -100px;
    animation-delay: -7s;
}

.bg-animation .orb:nth-child(3) {
    width: 300px;
    height: 300px;
    background: var(--accent-3);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -80px) scale(1.1); }
    50% { transform: translate(-30px, 60px) scale(0.9); }
    75% { transform: translate(80px, 30px) scale(1.05); }
}

/* ===== NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85); /* Açık renk güncellendi */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-logo span {
    -webkit-text-fill-color: var(--text-primary);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--text-primary);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.5rem !important;
    background: var(--accent-gradient) !important;
    border-radius: 50px !important;
    color: white !important;
    font-weight: 600 !important;
    -webkit-text-fill-color: white !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO / PROFILE SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 120px 2rem 80px;
}

.hero-content {
    text-align: center;
    max-width: 700px;
}

/* Profile Photo - Düz ve Sabit Görünüm */
.profile-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    width: 180px;
    height: 180px;
}

.profile-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
}

.profile-ring::before {
    display: none;
}

.profile-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Düz fotoğrafa çok hafif, şık bir derinlik */
    display: block;
}

.profile-status {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #22c55e;
    border: 4px solid var(--bg-primary);
    border-radius: 50%;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-2);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-title .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    font-family: var(--font-main);
}

.btn-secondary:hover {
    border-color: var(--accent-1);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-3px);
}

.hero-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 100px 2rem;
    position: relative;
    z-index: 1;
}

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--accent-1);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--accent-1);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== PORTFOLIO / PROJELER ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.portfolio-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(139, 92, 246, 0.3);
}

.portfolio-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-image-wrapper {
    overflow: hidden;
    position: relative;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.2)); /* Açık Tema Overlay */
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 1.5rem 2rem;
}

.portfolio-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--accent-1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.portfolio-info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.portfolio-stats {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.portfolio-stat {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.portfolio-stat strong {
    color: var(--accent-2);
    font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-glow);
}

.testimonial-quote {
    font-size: 3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.testimonial-author-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.testimonial-author-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* ===== CONTACT SECTION ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.2);
    font-size: 1.2rem;
    flex-shrink: 0;
    color: var(--accent-1);
}

.contact-detail h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.contact-detail p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--bg-card); /* Açık temaya uyumlu yapıldı */
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    background: #FFFFFF;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

/* ===== FOOTER ===== */
.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-text a {
    color: var(--accent-1);
    font-weight: 600;
}

.footer-text a:hover {
    color: var(--accent-2);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== TYPING CURSOR ===== */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--accent-1);
    margin-left: 4px;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
}

/* ===== PARTICLE CANVAS ===== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== RESPONSIVE ===== */

/* --- Tablet Landscape & Small Desktop --- */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-stats {
        gap: 2rem;
    }
}

/* --- Tablet Portrait & Large Mobile --- */
@media (max-width: 768px) {
    /* Hamburger Menu Toggle */
    .menu-toggle {
        display: flex;
    }

    /* Mobile Menu Overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: rgba(255, 255, 255, 0.98); /* Açık Menü Arka Planı */
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--glass-border);
        z-index: 1000;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        gap: 0.5rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .nav-cta {
        margin-top: 1rem;
        width: auto !important;
    }

    /* Mobile Menu Backdrop */
    .menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0.4);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    /* Header */
    .nav-container {
        height: 64px;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    /* Hero Section */
    .hero-section {
        min-height: auto;
        padding: 100px 1.5rem 60px;
    }

    .profile-wrapper {
        width: 140px;
        height: 140px;
    }

    .profile-ring {
        width: 140px;
        height: 140px;
    }

    .profile-status {
        width: 20px;
        height: 20px;
        bottom: 8px;
        right: 8px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Buttons */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Social */
    .hero-social {
        gap: 0.8rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    /* Sections */
    .section {
        padding: 70px 1.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .portfolio-info {
        padding: 1.2rem 1.5rem;
    }

    .portfolio-stats {
        padding: 0.8rem 1.5rem 1.2rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h3 {
        font-size: 1.4rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.85rem 1rem;
        font-size: 16px;
    }

    .btn-submit {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Footer */
    .site-footer {
        padding: 2rem 1.5rem;
    }

    .footer-social .social-link {
        width: 42px;
        height: 42px;
    }

    .footer-text {
        font-size: 0.8rem;
    }

    /* Scroll Top */
    .scroll-top {
        width: 44px;
        height: 44px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1rem;
    }
}

/* --- Small Mobile --- */
@media (max-width: 480px) {
    .hero-section {
        padding: 90px 1rem 50px;
    }

    .section {
        padding: 50px 1rem;
    }

    .nav-container {
        padding: 0 1rem;
        height: 60px;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .profile-wrapper {
        width: 120px;
        height: 120px;
    }

    .profile-ring {
        width: 120px;
        height: 120px;
    }

    .profile-status {
        width: 18px;
        height: 18px;
        bottom: 5px;
        right: 5px;
        border-width: 3px;
    }

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: -0.5px;
    }

    .hero-description {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.8rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .service-card {
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
    }

    .service-card h3 {
        font-size: 1.05rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .portfolio-info h3 {
        font-size: 1.05rem;
    }

    .portfolio-tag {
        font-size: 0.7rem;
    }

    .portfolio-stat {
        font-size: 0.8rem;
    }

    .testimonial-card {
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
    }

    .testimonial-quote {
        font-size: 2rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .testimonial-author-info h4 {
        font-size: 0.85rem;
    }

    .testimonial-author-info p {
        font-size: 0.75rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        font-size: 1rem;
    }

    .contact-detail h4 {
        font-size: 0.85rem;
    }

    .contact-detail p {
        font-size: 0.8rem;
    }

    .btn-primary, .btn-secondary {
        max-width: 100%;
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
    }

    .hero-social {
        gap: 0.6rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-social {
        gap: 0.6rem;
    }
}

/* --- Extra Small Mobile (iPhone SE, small devices) --- */
@media (max-width: 360px) {
    .hero-section {
        padding: 85px 0.8rem 40px;
    }

    .section {
        padding: 40px 0.8rem;
    }

    .nav-container {
        padding: 0 0.8rem;
    }

    .profile-wrapper {
        width: 100px;
        height: 100px;
    }

    .profile-ring {
        width: 100px;
        height: 100px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 0.82rem;
    }

    .hero-stats {
        gap: 0.8rem;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .service-card {
        padding: 1.2rem 1rem;
    }

    .contact-form {
        padding: 1.2rem 1rem;
    }

    .form-group label {
        font-size: 0.75rem;
    }
}

/* --- Touch-friendly improvements --- */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .portfolio-card:hover,
    .testimonial-card:hover {
        transform: none;
    }

    .social-link:hover {
        transform: none;
    }

    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }

    /* Ensure minimum tap target size of 44px */
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* --- Landscape mobile --- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 80px 2rem 40px;
    }

    .profile-wrapper {
        width: 100px;
        height: 100px;
    }

    .profile-ring {
        width: 100px;
        height: 100px;
    }

    .hero-stats {
        margin-bottom: 1.5rem;
    }

    .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        max-width: 100%;
        padding: 80px 2rem 2rem;
    }

    .nav-menu a {
        border-bottom: none;
        padding: 0.5rem 1rem;
    }
}

/* ===== BLOG SECTION ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-glow);
}

.blog-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-card-hover), #e2e8f0); /* Blog resmi yoksa açık gri yer tutucu */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-muted);
}

.blog-date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9); /* Tarih etiketi beyazlatıldı */
    backdrop-filter: blur(8px);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.blog-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-info h3 a:hover {
    color: var(--accent-1);
}

.blog-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-2);
    transition: var(--transition);
}

.btn-read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-read-more:hover {
    color: var(--accent-1);
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* ===== FLOATING WIDGETS ===== */
.floating-widgets {
    position: fixed;
    right: 2rem;
    bottom: 6.5rem; /* Above scroll-to-top button */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-widget {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Gölgeler yumuşatıldı */
    transition: var(--transition);
    text-decoration: none;
}

.floating-widget.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.floating-widget.whatsapp {
    background: #25d366;
}

.floating-widget:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

@media (max-width: 768px) {
    .floating-widgets {
        right: 1.5rem;
        bottom: 6rem;
        gap: 0.8rem;
    }
    
    .floating-widget {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* ===== SINGLE POST & ARCHIVE PAGES ===== */
.post-header {
    text-align: center;
    margin-bottom: 4rem;
}

.post-featured-image {
    margin: 2rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08); /* Blog resmi gölgesi hafifletildi */
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    max-width: 840px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.post-content p {
    margin-bottom: 1.8rem;
}

.post-content h2, .post-content h3 {
    font-family: var(--font-display);
    margin: 3rem 0 1.5rem;
    color: var(--accent-2);
    font-weight: 700;
}

.post-content blockquote {
    padding: 2rem;
    background: var(--glass-bg);
    border-left: 4px solid var(--accent-1);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    font-style: italic;
    margin: 2.5rem 0;
    backdrop-filter: blur(10px);
}

.post-footer {
    max-width: 840px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.post-tags {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-tags a {
    padding: 0.4rem 1.2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.post-tags a:hover {
    border-color: var(--accent-1);
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.1);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.post-navigation a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--accent-1);
    font-size: 1rem;
}

.post-navigation a:hover {
    color: var(--accent-2);
    transform: translateX(-5px);
}

.post-navigation .nav-next a:hover {
    transform: translateX(5px);
}

.pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.pagination .page-numbers {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    transition: var(--transition);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.pagination .page-numbers.current {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.pagination .page-numbers:hover:not(.current) {
    border-color: var(--accent-1);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-3px);
}