/* ═══════════════════════════════════════════════════════════
   PROJE: sametatillaerk.av.tr — Avukat Kişisel Marka Sitesi
   RENK TEMASİ: Koyu + Altın (Dark + Gold)
   FONTlar: Playfair Display (başlıklar) + Inter (metin)
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Değişkenleri (Renk Paleti & Ayarlar) ─── */
:root {
    /* Ana Renkler */
    --bg-primary: #07070d;
    --bg-secondary: #0e0e18;
    --bg-card: #111120;
    --bg-card-hover: #16162a;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-border: rgba(255, 255, 255, 0.06);

    /* Vurgu Renkleri (Altın/Gold) */
    --accent: #c9a84c;
    --accent-light: #e0c068;
    --accent-dim: rgba(201, 168, 76, 0.15);
    --accent-glow: rgba(201, 168, 76, 0.25);
    --accent-border: rgba(201, 168, 76, 0.3);

    /* Metin Renkleri */
    --text-primary: #f0f0f5;
    --text-secondary: #8585a0;
    --text-muted: #55556a;

    /* Fontlar */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    /* Aralıklar */
    --section-padding: 120px;
    --container-width: 1200px;
    --border-radius: 16px;
    --border-radius-sm: 10px;

    /* Geçişler */
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.25s ease;
}


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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--accent);
}


/* ─── Animasyon Temel Sınıfı ─── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════
   NAVIGATION (Üst Menü)
   ═══════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(7, 7, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bg-glass-border);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 3px;
}

.logo-divider {
    width: 1px;
    height: 24px;
    background: var(--accent-border);
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: var(--transition-fast);
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-glass);
}

.nav-link--cta {
    color: var(--bg-primary);
    background: var(--accent);
    font-weight: 600;
}

.nav-link--cta:hover {
    background: var(--accent-light);
    color: var(--bg-primary);
}

/* Hamburger Menü (Mobil) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

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

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ═══════════════════════════════════════════════════════════
   HERO BÖLÜMÜ
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 150px 24px 72px;
    overflow: hidden;
}

/* Arka Plan Dekoratif Çizgiler */
.hero-bg-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(201, 168, 76, 0.06) 50%,
        transparent 100%
    );
}

.hero-line:nth-child(1) { left: 10%; }
.hero-line:nth-child(2) { left: 30%; }
.hero-line:nth-child(3) { left: 50%; }
.hero-line:nth-child(4) { left: 70%; }
.hero-line:nth-child(5) { left: 90%; }

/* Hero Glow Efekti */
.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-greeting {
    margin-bottom: 24px;
}

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

.hero-logo .logo-text {
    font-size: 2rem;
}

.hero-logo .logo-divider {
    height: 28px;
}

.hero-logo .logo-sub {
    font-size: 0.82rem;
    letter-spacing: 1.5px;
}

.hero-name {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
}

.hero-name-line {
    display: block;
    color: var(--text-primary);
}

.hero-name-accent {
    display: block;
    color: var(--accent);
    font-size: 1.2em;
    letter-spacing: 12px;
}

.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    font-size: 1rem;
}

.hero-title--compact {
    margin-bottom: 18px;
}

.hero-badge {
    padding: 6px 20px;
    border: 1px solid var(--accent-border);
    border-radius: 100px;
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--accent);
}

.hero-separator {
    color: var(--text-muted);
}

.hero-location {
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 2px;
}

.hero-quote {
    margin-top: 28px;
    margin-bottom: 0;
    padding: 0 20px;
}

.hero-quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.hero-quote cite {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Butonlar */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--bg-primary);
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--bg-glass-border);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Scroll İndikatörü */
.hero-scroll-indicator {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}


/* ═══════════════════════════════════════════════════════════
   BÖLÜM ORTAK STİLLER
   ═══════════════════════════════════════════════════════════ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subheading {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 56px;
}


/* ═══════════════════════════════════════════════════════════
   HAKKIMDA BÖLÜMÜ
   ═══════════════════════════════════════════════════════════ */
.section-about {
    background: var(--bg-secondary);
}

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

/* Fotoğraf / Baş Harfler Çerçevesi */
.about-frame {
    position: relative;
    width: 280px;
    height: 340px;
    margin: 0 auto;
}

.about-frame-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
    border: 1px solid var(--bg-glass-border);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-frame-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(5, 6, 26, 0.08) 0%, rgba(5, 6, 26, 0.45) 100%),
        linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(12, 16, 43, 0.22) 100%);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.82) contrast(1.03) brightness(0.78);
    transform: scale(1.02);
    border-radius: 0;
}

.about-initials {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.6;
    letter-spacing: 8px;
}

/* Köşe Dekorasyonları */
.about-frame-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--accent);
}

.about-frame-corner--tl { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.about-frame-corner--tr { top: -8px; right: -8px; border-left: none; border-bottom: none; }
.about-frame-corner--bl { bottom: -8px; left: -8px; border-right: none; border-top: none; }
.about-frame-corner--br { bottom: -8px; right: -8px; border-left: none; border-top: none; }

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hakkımda İçerik */
.about-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent);
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-highlights {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

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


/* ═══════════════════════════════════════════════════════════
   UZMANLIK ALANLARI BÖLÜMÜ
   ═══════════════════════════════════════════════════════════ */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.expertise-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--border-radius);
    transition: var(--transition);
    overflow: hidden;
}

.expertise-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-border);
    transform: translateY(-4px);
}

.expertise-card:hover .card-glow {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: var(--transition);
}

.card-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.expertise-card:hover .card-icon-wrapper {
    background: var(--accent-glow);
}

.card-icon {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════
   PROJELER BÖLÜMÜ
   ═══════════════════════════════════════════════════════════ */
.section-projects {
    background: var(--bg-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.project-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-6px);
}

.project-card:hover .project-glow {
    opacity: 1;
}

.project-card-inner {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--border-radius);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    z-index: 1;
}

.project-card:hover .project-card-inner {
    border-color: var(--accent-border);
}

.project-glow {
    position: absolute;
    inset: -1px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--accent-glow), transparent 60%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.project-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--accent-dim);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 100px;
    margin-bottom: 24px;
    align-self: flex-start;
}

.project-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.project-logo-accent {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    background: var(--accent-dim);
    padding: 2px 10px;
    border-radius: 6px;
}

.project-logo-icon {
    color: var(--accent);
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.project-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.project-tag {
    padding: 4px 12px;
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition-fast);
}

.project-link:hover {
    color: var(--accent-light);
    gap: 12px;
}


/* ═══════════════════════════════════════════════════════════
   İLETİŞİM BÖLÜMÜ
   ═══════════════════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-intro {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.contact-item:hover {
    background: var(--bg-glass);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.contact-item-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
}

/* İletişim Formu */
.contact-form-wrapper {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--accent-border);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--bg-glass-border);
}

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

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
}

.footer-logo-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════════
   WHATSAPP BUTONU
   ═══════════════════════════════════════════════════════════ */
.whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: #25d366;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.55); }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSİVE TASARIM (Mobil Uyumluluk)
   ═══════════════════════════════════════════════════════════ */

/* Orta ekranlar */
@media (max-width: 1180px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: calc(100vw - 24px);
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: flex-start;
        padding: 132px 32px 40px;
        gap: 18px;
        border-left: 1px solid var(--bg-glass-border);
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .nav-link--cta {
        text-align: center;
        margin-top: 10px;
    }
}

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    /* Mobil Menü */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: flex-start;
        padding: 132px 32px 40px;
        gap: 18px;
        border-left: 1px solid var(--bg-glass-border);
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .nav-link--cta {
        text-align: center;
        margin-top: 10px;
    }

    /* Hero */
    .hero {
        padding: 108px 20px 52px;
    }

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

    .hero-name-accent {
        letter-spacing: 6px;
    }

    .hero-title {
        flex-direction: column;
        gap: 8px;
    }

    .hero-separator {
        display: none;
    }

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

    .hero-quote {
        margin-top: 24px;
    }

    .hero-scroll-indicator {
        margin-top: 22px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    /* Hakkımda */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-frame {
        width: 220px;
        height: 280px;
    }

    /* Uzmanlık Kartları */
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .expertise-card {
        padding: 28px 24px;
    }

    /* Proje Kartları */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* İletişim */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    /* WhatsApp */
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
}

/* Küçük Tablet (576px-768px) */
@media (min-width: 576px) and (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Büyük Ekranlar (1400px ve üzeri) */
@media (min-width: 1400px) {
    :root {
        --container-width: 1320px;
        --section-padding: 140px;
    }
}
