/* =============================================
     TOKENS & RESET
  ============================================= */
  :root {
    --ink:      #09090E;
    --ink-soft: #131320;
    --ink-mid:  #1C1C2E;
    --gold:     #C9A84C;
    --gold-lt:  #E8C96E;
    --gold-dim: rgba(201,168,76,0.15);
    --cream:    #F2EDE4;
    --cream-dim:rgba(242,237,228,0.06);
    --mist:     #A09880;
    --line:     rgba(201,168,76,0.18);
    --white:    #FAFAF8;
    --serif:    'Cormorant Garamond', Georgia, serif;
    --sans:     'Outfit', sans-serif;
  }

  *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

  html { scroll-behavior:smooth; font-size:16px; }

  body {
    font-family: var(--sans);
    background: var(--ink);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* Grain overlay */
  body::before {
    content: '';
    position: fixed; inset: 0; z-index: 10;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.35;
  }

  /* =============================================
     SCROLLBAR
  ============================================= */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--ink); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

  /* =============================================
     NAVIGATION
  ============================================= */
  .nav {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 10000;
    padding: 0 6%; height: 76px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s ease;
  }

  .nav.scrolled {
    background: rgba(9,9,14,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
  }

  /* Scroll Progress Bar */
  .progress-container {
    position: fixed; top: 76px; left: 0;
    width: 100%; height: 2px; z-index: 999;
    background: transparent;
  }
  .progress-bar {
    height: 100%;
    background: var(--gold);
    width: 0%;
    box-shadow: 0 0 10px rgba(201,168,76,0.5);
    transition: width 0.1s linear;
  }

  .nav-logo {
    display: flex; flex-direction: column; gap: 1px;
    text-decoration: none;
  }
  .nav-logo-name {
    font-family: var(--serif);
    font-size: 1.15rem; font-weight: 600;
    color: var(--gold); letter-spacing: 0.08em; line-height: 1;
  }
  .nav-logo-sub {
    font-size: 0.6rem; font-weight: 500;
    color: var(--mist); letter-spacing: 0.25em; text-transform: uppercase;
  }

  .nav-links {
    display: flex; align-items: center; gap: 40px; list-style: none;
  }
  .nav-links a {
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--mist); text-decoration: none;
    transition: color 0.3s; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    padding: 10px 24px;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.18em !important;
    transition: background 0.3s, color 0.3s !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }

  /* =============================================
     HERO
  ============================================= */
  .hero {
    height: 100vh; min-height: 700px;
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
  }

  /* v5: Canvas parçacık katmanı */
  #heroCanvas {
    position: absolute; inset: 0; z-index: 1;
    pointer-events: none;
  }

  .hero-left {
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 0 6% 10vh 6%;
    position: relative; z-index: 3;
  }

  .hero-eyebrow {
    font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold);
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 32px;
    opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
  }
  .hero-eyebrow::before {
    content: ''; width: 40px; height: 1px; background: var(--gold);
  }

  /* v5: Yanıp sönen nokta */
  .pulse-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); position: relative; flex-shrink: 0;
  }
  .pulse-dot::before {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    border: 1px solid var(--gold);
    animation: pulsate 2s ease-in-out infinite;
  }

  .hero-title {
    font-family: var(--serif);
    /* 5.5vw -> 4.9vw: "Hakkınızı Korumanın" satırı tek satıra sığsın diye.
       Ölçüm (20 Ağu): 1440px'de kapsayıcı 632px, metin 5.12vw'de tam doluyor. */
    font-size: clamp(3rem, 4.9vw, 5.2rem);
    font-weight: 300; line-height: 1.05; margin-bottom: 32px;
    opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
  }
  .hero-title strong { display: block; font-weight: 600; color: var(--gold); }
  .hero-title em { font-style: italic; color: var(--cream); opacity: 0.85; }

  .hero-desc {
    font-size: 1rem; font-weight: 300;
    color: var(--mist); max-width: 420px;
    line-height: 1.8; margin-bottom: 44px;
    opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
  }

  .hero-actions {
    display: flex; align-items: center; gap: 28px;
    opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
  }

  .btn-gold {
    padding: 16px 40px; background: var(--gold);
    color: var(--ink); font-family: var(--sans);
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    text-decoration: none; display: inline-block;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  }
  .btn-gold:hover {
    background: var(--gold-lt);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.25);
  }

  .btn-ghost {
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--mist); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: color 0.3s;
  }
  .btn-ghost i { font-size: 0.6rem; transition: transform 0.3s; }
  .btn-ghost:hover { color: var(--cream); }
  .btn-ghost:hover i { transform: translateX(4px); }

  .hero-right { position: relative; overflow: hidden; z-index: 2; }
  .hero-right img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(40%) brightness(0.5);
  }
  .hero-right::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, var(--ink) 0%, transparent 40%),
                linear-gradient(to top,  var(--ink) 0%, transparent 40%);
  }

  .hero-bg-text {
    position: absolute; bottom: 8vh; left: 4%;
    font-family: var(--serif); font-size: clamp(6rem,14vw,13rem);
    font-weight: 700; color: rgba(201,168,76,0.04);
    line-height: 1; pointer-events: none; user-select: none;
    white-space: nowrap; z-index: 2;
  }

  .scroll-indicator {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: fadeUp 0.8s 1.2s forwards; z-index: 4;
  }
  .scroll-indicator span {
    font-size: 0.6rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--mist);
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  /* =============================================
     STATS BAR
  ============================================= */
  .stats-bar {
    background: var(--ink-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0 6%;
    display: grid; grid-template-columns: repeat(4, 1fr);
  }

  .stat-item {
    padding: 55px 0; text-align: center;
    border-right: 1px solid var(--line);
    position: relative; transition: background 0.4s;
  }
  .stat-item:last-child { border-right: none; }

  .stat-item i {
    font-size: 1.8rem; display: block; margin-bottom: 18px;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    opacity: 0.7;
    filter: drop-shadow(0 0 5px rgba(201,168,76,0.3));
    transition: 0.4s;
  }
  .stat-item:hover i {
    opacity: 1;
    -webkit-text-stroke: 1.2px var(--gold-lt);
    filter: drop-shadow(0 0 10px rgba(201,168,76,0.5));
  }
  .stat-item h4 {
    font-family: var(--serif);
    font-size: 0.95rem; font-weight: 500;
    letter-spacing: 0.15em; color: var(--gold);
    margin-bottom: 4px; line-height: 1;
  }
  .stat-item p {
    font-size: 0.58rem; color: var(--mist);
    text-transform: uppercase; letter-spacing: 0.25em; opacity: 0.7;
  }

  /* =============================================
     SECTION GENERIC
  ============================================= */
  .section-tag {
    font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); display: flex; align-items: center; gap: 14px;
    margin-bottom: 20px;
  }
  .section-tag::before {
    content: ''; width: 40px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 300; line-height: 1.1;
  }
  .section-title strong { font-weight: 600; }

  /* =============================================
     ABOUT
  ============================================= */
  .about {
    padding: 130px 6%;
    display: grid; grid-template-columns: 5fr 7fr;
    gap: 100px; align-items: center;
  }

  .about-image-wrap { position: relative; }

  .about-image-frame { position: relative; overflow: hidden; }
  .about-image-frame::before {
    content: ''; position: absolute; top: -20px; left: -20px;
    width: 60%; height: 60%;
    border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); z-index: 1;
  }
  .about-image-frame::after {
    content: ''; position: absolute; bottom: -20px; right: -20px;
    width: 60%; height: 60%;
    border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); z-index: 1;
  }
  .about-image-frame img {
    width: 100%; display: block; filter: grayscale(20%) contrast(1.05);
  }

  .about-image-badge {
    position: absolute; bottom: -20px; right: -20px;
    width: 110px; height: 110px;
    background: var(--ink); color: var(--gold);
    border: 1px solid var(--gold); border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-family: var(--serif); z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    text-align: center;
  }
  .about-image-badge i { font-size: 1.2rem; margin-bottom: 6px; }
  .about-image-badge span {
    font-size: 0.55rem; letter-spacing: 0.15em;
    text-transform: uppercase; font-family: var(--sans);
    font-weight: 600; line-height: 1.4;
  }

  .about-body { padding-left: 20px; }

  .about-text {
    font-size: 1.05rem; font-weight: 300;
    color: var(--mist); line-height: 1.85; margin-top: 32px;
  }
  .about-text + .about-text { margin-top: 20px; }

  .about-quote {
    margin-top: 36px; padding: 24px 28px;
    border-left: 2px solid var(--gold); background: var(--cream-dim);
    font-family: var(--serif); font-size: 1.2rem;
    font-style: italic; color: var(--cream); line-height: 1.6;
  }
  .about-quote strong { font-style: normal; color: var(--gold); }

  /* =============================================
     SERVICES — v3 hover entegre edildi
  ============================================= */
  .services {
    padding: 130px 6%;
    background: var(--ink-soft);
    position: relative; overflow: hidden;
  }
  .services::before {
    content: 'HUKUK';
    position: absolute; top: -20px; right: -2%;
    font-family: var(--serif); font-size: 18vw; font-weight: 700;
    color: rgba(201,168,76,0.03); pointer-events: none; user-select: none; line-height: 1;
  }

  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 80px;
  }

  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--line); border: 1px solid var(--line);
  }

  /* v3: Servis kartı */
  .service-card {
    background: var(--ink-soft);
    padding: 52px 44px 44px;
    position: relative; overflow: hidden;
    transition: background 0.4s; cursor: default;
  }

  /* Alt çizgi */
  .service-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: width 0.5s; z-index: 2;
  }
  /* Altın gradyan dolgu */
  .service-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(201,168,76,0.07) 0%, transparent 100%);
    transition: height 0.5s cubic-bezier(0.4,0,0.2,1);
  }

  .service-card:hover { background: var(--ink-mid); }
  .service-card:hover::before { width: 100%; }
  .service-card:hover::after { height: 100%; }

  /* v3: Büyük arka plan ikonu */
  .service-bg-icon {
    position: absolute; top: 20px; right: 24px;
    font-size: 5rem; color: rgba(201,168,76,0);
    transition: color 0.5s, transform 0.5s;
    pointer-events: none;
    transform: rotate(10deg) scale(0.8); z-index: 0;
  }
  .service-card:hover .service-bg-icon {
    color: rgba(201,168,76,0.07);
    transform: rotate(0deg) scale(1);
  }

  .service-num {
    font-family: var(--serif); font-size: 3.5rem; font-weight: 300;
    color: rgba(201,168,76,0.12); line-height: 1; margin-bottom: 28px;
    transition: color 0.4s; position: relative; z-index: 1;
  }
  .service-card:hover .service-num { color: rgba(201,168,76,0.22); }

  .service-icon {
    width: 44px; height: 44px; background: var(--gold-dim);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: background 0.4s, transform 0.4s;
    position: relative; z-index: 1;
  }
  .service-card:hover .service-icon {
    background: rgba(201,168,76,0.25);
    transform: scale(1.05);
  }
  .service-icon i { font-size: 1.1rem; color: var(--gold); }

  .service-title {
    font-family: var(--serif); font-size: 1.55rem; font-weight: 400;
    margin-bottom: 14px; color: var(--cream);
    transition: color 0.3s; position: relative; z-index: 1;
  }
  .service-card:hover .service-title { color: var(--white); }

  .service-desc {
    font-size: 0.88rem; font-weight: 300;
    color: var(--mist); line-height: 1.75;
    position: relative; z-index: 1;
  }

  /* v3: Ok ikonu */
  .service-arrow {
    position: absolute; bottom: 24px; right: 28px;
    width: 32px; height: 32px; border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translate(6px, 6px);
    transition: opacity 0.4s, transform 0.4s; z-index: 2;
  }
  .service-card:hover .service-arrow { opacity: 1; transform: translate(0, 0); }
  .service-arrow i { font-size: 0.65rem; color: var(--gold); }

  /* =============================================
     PROCESS
  ============================================= */
  .process { padding: 130px 6%; }

  .process-inner {
    margin-top: 80px;
    display: grid; grid-template-columns: repeat(4, 1fr);
    position: relative;
  }
  .process-inner::before {
    content: ''; position: absolute; top: 28px; left: 7%;
    width: 86%; height: 1px; background: var(--line);
  }

  .process-step { padding: 0 28px; position: relative; }

  .process-dot {
    width: 56px; height: 56px; border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 36px; position: relative; z-index: 1;
    background: var(--ink);
  }
  .process-dot::after {
    content: ''; position: absolute; inset: 6px; background: var(--gold-dim);
  }
  .process-dot-num {
    font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
    color: var(--gold); position: relative; z-index: 1;
  }

  .process-title {
    font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
    margin-bottom: 14px; color: var(--cream);
  }
  .process-desc {
    font-size: 0.85rem; font-weight: 300;
    color: var(--mist); line-height: 1.75;
  }

  /* =============================================
     LOCATION & MAP
  ============================================= */
  .location-section {
    position: relative; height: 450px;
    background: var(--ink-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .location-map { width: 100%; height: 100%; background: var(--ink-soft); }
  .location-map iframe {
    width: 100%; height: 100%;
    filter: grayscale(1) invert(1) contrast(1.2) opacity(0.4);
    mix-blend-mode: screen;
    pointer-events: all;
  }

  .location-overlay {
    position: absolute; top: 0; left: 6%; height: 100%;
    display: flex; align-items: center;
    pointer-events: none;
  }
  .location-card {
    background: rgba(9,9,14,0.95);
    backdrop-filter: blur(20px);
    padding: 40px; border: 1px solid var(--line);
    max-width: 360px; pointer-events: all;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8);
  }
  .location-title {
    font-family: var(--serif); font-size: 1.8rem;
    font-weight: 300; margin-bottom: 15px; color: var(--cream);
  }
  .location-text {
    font-size: 0.85rem; color: var(--mist);
    margin-bottom: 25px; line-height: 1.6;
  }

  /* =============================================
     FOOTER
  ============================================= */
  footer { padding: 100px 6% 0; background: #060609; }

  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 80px; padding-bottom: 80px;
    border-bottom: 1px solid var(--line);
  }

  .footer-brand-logo {
    font-family: var(--serif); font-size: 1.8rem; font-weight: 600;
    color: var(--gold); text-decoration: none; display: block; margin-bottom: 6px;
  }
  .footer-brand-sub {
    font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--mist); display: block; margin-bottom: 28px;
  }
  .footer-brand-desc {
    font-size: 0.9rem; font-weight: 300; color: var(--mist);
    line-height: 1.85; max-width: 380px; margin-bottom: 32px;
  }

  .footer-socials { display: flex; gap: 16px; }
  .footer-socials a {
    width: 38px; height: 38px; border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    color: var(--mist); text-decoration: none; font-size: 0.85rem;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
  }
  .footer-socials a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

  .footer-baro {
    margin-top: 28px; font-size: 0.65rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--mist); opacity: 0.4;
    display: flex; align-items: center; gap: 10px;
  }
  .footer-baro::before { content: ''; width: 20px; height: 1px; background: var(--mist); opacity: 0.4; }

  .footer-col h5 {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 32px;
  }

  .footer-info-item {
    display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start;
  }
  .footer-info-item i { color: var(--gold); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; width: 16px; }
  .footer-info-item span { font-size: 0.88rem; font-weight: 300; color: var(--mist); line-height: 1.6; }

  .footer-note {
    font-size: 0.75rem; color: var(--mist); opacity: 0.4;
    line-height: 1.6; margin-top: 16px; padding-left: 30px;
  }

  /* KVKK baglantisi: kunye seridi kaldirildi, bilgiler zaten Iletisim
     sutununda duruyordu. Baglanti o sutunun altinda yasiyor. */
  .footer-col .footer-kvkk {
    display: inline-block; margin-top: 18px;
    font-size: 0.78rem; font-weight: 300; letter-spacing: 0.04em;
    color: var(--mist); text-decoration: none;
    transition: color 0.3s;
  }
  .footer-col .footer-kvkk:hover { color: var(--gold); }

  .footer-bottom {
    padding: 28px 0;
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-bottom p { font-size: 0.72rem; font-weight: 300; color: var(--mist); opacity: 0.3; letter-spacing: 0.05em; }
  .benuka-credit { color: inherit; text-decoration: none; transition: color 0.3s; }
  .benuka-credit:hover { color: var(--gold); }
  .footer-bottom p:has(.benuka-credit:hover) { opacity: 0.85; }
  /* Benuka imzasi: her musteri sitesinde AYNI olcude durur. */
  .benuka-imza { color: inherit; text-decoration: none; transition: color 0.3s; }
  .benuka-imza strong { font-weight: 700; letter-spacing: 0.06em; opacity: 0.9; }
  .benuka-imza:hover, .benuka-imza:hover strong { color: var(--gold); }
  .footer-bottom p:has(.benuka-imza:hover) { opacity: 0.85; }

  /* Harita, ziyaretci "Haritayi goster" diyene kadar yuklenmez (KVKK). */
  #haritaKutu { width: 100%; height: 100%; }
  #haritaKutu iframe {
    width: 100%; height: 100%;
    filter: grayscale(1) invert(1) contrast(1.2) opacity(0.4);
    mix-blend-mode: screen;
  }
  .harita-ac {
    width: 100%; height: 100%; min-height: 450px;
    display: flex; flex-direction: column; gap: 10px;
    align-items: center; justify-content: center; text-align: center;
    padding: 28px; cursor: pointer;
    background: var(--ink-soft); border: 0; font-family: inherit;
    transition: background 0.3s;
  }
  .harita-ac:hover { background: var(--ink); }
  .harita-ac-baslik {
    font-family: var(--serif, inherit); font-size: 1.05rem;
    color: var(--gold); letter-spacing: 0.04em;
  }
  .harita-ac-not {
    font-size: 0.78rem; font-weight: 300; line-height: 1.7;
    max-width: 42ch; color: var(--mist); opacity: 0.55;
  }

  /* =============================================
     WHATSAPP FLOAT — mobilde gizlenir (v2 bar halleder)
  ============================================= */
  .whatsapp-btn {
    position: fixed; bottom: 36px; right: 36px; z-index: 9000;
    width: 58px; height: 58px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.6rem; text-decoration: none;
    box-shadow: 0 8px 28px rgba(37,211,102,0.35);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .whatsapp-btn:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,0.45); }
  .whatsapp-btn::before {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    border: 1px solid rgba(37,211,102,0.3);
    animation: ping 2s ease-in-out infinite;
  }

  /* =============================================
     v2: MOBİL STICKY BOTTOM BAR
  ============================================= */
  .mobile-action-bar { display: none; }

  /* =============================================
     ANIMATIONS
  ============================================= */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes scrollPulse {
    0%,100% { transform: scaleY(1); opacity: 1; }
    50%      { transform: scaleY(0.6); opacity: 0.4; }
  }
  @keyframes ping {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
  }
  @keyframes pulsate {
    0%,100% { transform: scale(1); opacity: 0.6; }
    50%      { transform: scale(1.8); opacity: 0; }
  }

  /* Scroll reveal */
  /* JS kapalıysa içerik GÖRÜNÜR kalmalı: gizleme yalnızca html.js varken uygulanır. */
  .reveal { opacity: 1; transform: none; }
  html.js .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
  html.js .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; }

  /* =============================================
     MOBİL MENU
  ============================================= */
  .mobile-toggle {
    display: none; flex-direction: column; gap: 6px;
    cursor: pointer; z-index: 2001; padding: 10px;
  }
  .mobile-toggle span {
    width: 28px; height: 2px; background: var(--gold);
    transition: 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .mobile-toggle.active span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
  .mobile-toggle.active span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

  .mobile-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100dvh;
    background: #09090E; z-index: 9999;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
  }
  .mobile-overlay.active { opacity: 1; pointer-events: all; }

  .mobile-overlay-bg {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-family: var(--serif); font-size: 40vw; font-weight: 700;
    color: rgba(201,168,76,0.03); z-index: -1; user-select: none;
  }

  .mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 40px; }

  .mobile-link {
    font-family: var(--serif); font-size: 2.2rem;
    color: var(--cream); text-decoration: none;
    opacity: 0; transform: translateY(20px); transition: 0.5s ease;
  }
  .mobile-overlay.active .mobile-link { opacity: 1; transform: translateY(0); }
  .mobile-link.gold-text { color: var(--gold); font-style: italic; }

  .mobile-footer {
    position: absolute; bottom: 60px; text-align: center;
    opacity: 0; transition: 0.5s 0.4s ease;
  }
  .mobile-overlay.active .mobile-footer { opacity: 0.4; }
  .mobile-footer p { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); }
  .mobile-footer span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; }

  /* =============================================
     RESPONSIVE
  ============================================= */
  @media (max-width: 1024px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }

    .nav {
      background: rgba(9,9,14,0.98); height: 64px;
      padding: 0 5%; border-bottom: 1px solid var(--line);
    }
    .progress-container { top: 64px; }
    .nav-logo-name { font-size: 1rem; }
    .nav-logo-sub { font-size: 0.55rem; letter-spacing: 0.15em; }

    /* Hero */
    .hero {
      height: auto; min-height: 100vh;
      display: flex; flex-direction: column; justify-content: center;
      grid-template-columns: 1fr;
    }
    .hero-left {
      padding: 110px 6% 60px;
      text-align: center; align-items: center; z-index: 5;
    }
    .hero-bg-text { display: none; }
    #heroCanvas { display: none; } /* Mobilde canvas gizlenir */
    .hero-title { font-size: 2.6rem; line-height: 1.1; margin-bottom: 24px; }
    .hero-desc { font-size: 1rem; margin: 0 auto 36px; max-width: 100%; }
    .hero-actions { flex-direction: column; width: 100%; gap: 16px; }
    .btn-gold, .btn-ghost { width: 100%; justify-content: center; padding: 16px; }
    .hero-right { display: block; height: 300px; width: 100%; }

    /* Stats */
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-item {
      padding: 35px 15px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .stat-item:nth-child(even) { border-right: none; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

    /* About */
    .about { grid-template-columns: 1fr; padding: 80px 6%; gap: 40px; }
    .about-body { padding-left: 0; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; gap: 0; }
    .service-card { padding: 40px 30px; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }

    /* Process */
    .process-inner { grid-template-columns: 1fr; margin-top: 40px; }
    .process-inner::before { display: none; }
    .process-step { padding: 0 0 40px 0; }

    /* Location */
    .location-section { height: auto; min-height: 400px; }
    .location-map { height: 400px; }
    .location-overlay {
      position: static; height: auto; padding: 0;
      background: var(--ink);
    }
    .location-card {
      max-width: 100%; margin: 0;
      border-top: none; box-shadow: none;
    }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .footer-info-item { justify-content: center; }
    .footer-socials { justify-content: center; }
    .footer-baro { justify-content: center; }
    .footer-note { padding-left: 0; }
    /* Mobilde altbilgi metinleri ortalanir (Karatas olcusu) */
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; justify-content: center; }
    .footer-col .footer-kvkk { margin-top: 14px; }
  }

  @media (max-width: 768px) {
    /* v2: Sticky bar aktif */
    body { padding-bottom: 64px; }

    .mobile-action-bar {
      display: flex;
      position: fixed; bottom: 0; left: 0; right: 0;
      z-index: 8000; height: 64px;
      background: rgba(9,9,14,0.97);
      backdrop-filter: blur(20px);
      border-top: 1px solid var(--line);
      transform: translateY(100%);
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    .mobile-action-bar.visible { transform: translateY(0); }

    .mobile-action-btn {
      flex: 1; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 4px;
      text-decoration: none; border-right: 1px solid var(--line);
      transition: background 0.3s;
      -webkit-tap-highlight-color: transparent;
    }
    .mobile-action-btn:last-child { border-right: none; }
    .mobile-action-btn:active { background: var(--gold-dim); }
    .mobile-action-btn i { font-size: 1.1rem; }
    .mobile-action-btn span { font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }

    .mob-wa i  { color: #25D366; }
    .mob-wa    { color: #25D366; }
    .mob-call  { color: var(--mist); }
    .mob-call i{ color: var(--mist); }
    .mob-apt   { background: var(--gold); color: var(--ink) !important; flex: 1.3; }
    .mob-apt i { color: var(--ink); }
    .mob-apt:active { background: var(--gold-lt); }

    /* WhatsApp float gizle, bar hallediyor */
    .whatsapp-btn { display: none; }
  }

  @media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .location-card { padding: 30px 20px; }
  }

/* =================================================================
   v6 — ÇOK SAYFA YAPISI + ALAN SAYFALARI + MOBİL İYİLEŞTİRMELER
   (Bu blok 20 Ağu 2026'da eklendi. Üstteki temel stiller korunmuştur.)
================================================================= */

/* ---------- Genel düzeltmeler ---------- */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
img { max-width: 100%; }
a { -webkit-tap-highlight-color: transparent; }

/* ---------- NAV: çalışma alanları alt menüsü ---------- */
.nav-links .has-alt { position: relative; }
.alt-ok { font-size: 0.5rem; margin-left: 6px; transition: transform 0.3s; }
.nav-links .has-alt:hover .alt-ok { transform: rotate(180deg); }

.alt-menu {
  position: absolute; top: 100%; left: -22px;
  min-width: 250px; list-style: none;
  background: rgba(9,9,14,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  padding: 10px 0; margin-top: 18px;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}
.nav-links .has-alt:hover .alt-menu,
.nav-links .has-alt:focus-within .alt-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.alt-menu::before {
  content: ''; position: absolute; top: -18px; left: 0; right: 0; height: 18px;
}
.alt-menu li { display: block; }
.alt-menu a {
  display: block; padding: 11px 22px;
  font-size: 0.7rem; letter-spacing: 0.12em;
  border-left: 2px solid transparent;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.alt-menu a::after { display: none; }
.alt-menu a:hover {
  border-left-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold);
}

/* ---------- SERVİS KARTI artık bağlantı ---------- */
a.service-card {
  display: block; text-decoration: none; color: inherit;
  cursor: pointer; padding-bottom: 74px;
}
a.service-card:focus-visible { outline: 2px solid var(--gold); outline-offset: -4px; }

.service-kanun {
  position: absolute; bottom: 30px; left: 44px;
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mist); opacity: 0.45;
  transition: opacity 0.4s, color 0.4s; z-index: 1;
}
.service-card:hover .service-kanun { opacity: 0.9; color: var(--gold); }

/* ---------- FOOTER eklentileri ---------- */
.footer-links { display: flex; flex-direction: column; gap: 13px; }
.footer-links a {
  font-size: 0.85rem; font-weight: 300; color: var(--mist);
  text-decoration: none; transition: color 0.3s, padding-left 0.3s;
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }

a.footer-info-item { text-decoration: none; transition: color 0.3s; }
a.footer-info-item span { transition: color 0.3s; }
a.footer-info-item:hover span { color: var(--gold); }

.footer-yasal { padding: 26px 0 0; border-top: 1px solid var(--line); margin-top: 0; }
.footer-yasal p {
  font-size: 0.7rem; font-weight: 300; line-height: 1.8;
  color: var(--mist); opacity: 0.38; max-width: 900px;
}

/* ---------- İÇ SAYFA: sabit nav payı ---------- */
body.ic-sayfa { padding-top: 76px; }

/* ---------- ALAN SAYFASI: başlık ---------- */
.alan-hero {
  position: relative; overflow: hidden;
  padding: 84px 6% 76px;
  background: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.alan-hero-ic { position: relative; z-index: 2; max-width: 780px; }

.kirinti {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-bottom: 34px;
  font-size: 0.68rem; letter-spacing: 0.1em; color: var(--mist);
}
.kirinti a { color: var(--mist); text-decoration: none; transition: color 0.3s; }
.kirinti a:hover { color: var(--gold); }
.kirinti i { font-size: 0.55rem; opacity: 0.4; }
.kirinti span { color: var(--gold); }

.alan-hero .hero-eyebrow { animation: none; opacity: 1; margin-bottom: 20px; }
.alan-hero .hero-eyebrow::before { display: none; }

.alan-hero-baslik {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300; line-height: 1.08; color: var(--cream);
  margin-bottom: 26px;
}
.alan-hero-ozet {
  font-size: 1.05rem; font-weight: 300; line-height: 1.85;
  color: var(--mist); max-width: 660px;
}
.alan-hero-ikon {
  position: absolute; right: 3%; top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  font-size: 20rem; color: rgba(201,168,76,0.035);
  pointer-events: none; z-index: 1;
}

/* ---------- ALAN SAYFASI: gövde ---------- */
.alan-govde {
  padding: 110px 6%;
  display: grid; grid-template-columns: 7fr 5fr; gap: 90px;
  align-items: start;
}
.alan-metin {
  font-size: 1.02rem; font-weight: 300;
  color: var(--mist); line-height: 1.9; margin-top: 26px;
}

.alan-uyari {
  margin-top: 40px; padding: 24px 28px;
  border-left: 2px solid var(--gold);
  background: var(--cream-dim);
  display: flex; gap: 18px; align-items: flex-start;
}
.alan-uyari i { color: var(--gold); font-size: 1rem; margin-top: 4px; flex-shrink: 0; }
.alan-uyari p { font-size: 0.88rem; font-weight: 300; line-height: 1.8; color: var(--cream); opacity: 0.85; }

.alan-sag {
  border: 1px solid var(--line);
  background: var(--ink-soft);
  padding: 44px 40px;
  position: sticky; top: 108px;
}
.alan-sag-baslik {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 300;
  line-height: 1.2; color: var(--cream); margin-bottom: 30px;
}
.alan-sag-baslik strong { font-weight: 600; color: var(--gold); }

.konu-listesi { list-style: none; display: flex; flex-direction: column; gap: 0; }
.konu-listesi li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.konu-listesi li:last-child { border-bottom: none; padding-bottom: 0; }
.konu-listesi i { color: var(--gold); font-size: 0.6rem; margin-top: 7px; flex-shrink: 0; }
.konu-listesi span { font-size: 0.88rem; font-weight: 300; color: var(--mist); line-height: 1.65; }

/* ---------- ALAN SAYFASI: adımlar ---------- */
.alan-adimlar {
  padding: 110px 6%;
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.adim-izgara {
  margin-top: 66px;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.adim {
  background: var(--ink-soft);
  padding: 40px 38px;
  display: flex; gap: 26px; align-items: flex-start;
  transition: background 0.4s;
}
.adim:hover { background: var(--ink-mid); }
.adim-no {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 300;
  color: rgba(201,168,76,0.22); line-height: 1; flex-shrink: 0;
}
.adim h3 {
  font-family: var(--serif); font-size: 1.28rem; font-weight: 400;
  color: var(--cream); margin-bottom: 12px;
}
.adim p { font-size: 0.88rem; font-weight: 300; color: var(--mist); line-height: 1.8; }

/* ---------- ALAN SAYFASI: SSS ---------- */
.alan-sss {
  padding: 110px 6%;
  display: grid; grid-template-columns: 4fr 7fr; gap: 90px;
  align-items: start;
}
.sss-basliklar { position: sticky; top: 118px; }
.sss-not {
  margin-top: 26px; font-size: 0.88rem; font-weight: 300;
  color: var(--mist); line-height: 1.8; max-width: 300px;
}

.sss-liste { border-top: 1px solid var(--line); }
.sss-oge { border-bottom: 1px solid var(--line); }
.sss-oge summary {
  list-style: none; cursor: pointer;
  padding: 26px 40px 26px 0; position: relative;
  font-family: var(--serif); font-size: 1.18rem; font-weight: 400;
  color: var(--cream); line-height: 1.5;
  transition: color 0.3s;
}
.sss-oge summary::-webkit-details-marker { display: none; }
.sss-oge summary:hover { color: var(--gold); }
.sss-oge summary i {
  position: absolute; right: 0; top: 30px;
  font-size: 0.75rem; color: var(--gold);
  transition: transform 0.35s;
}
.sss-oge[open] summary { color: var(--gold); }
.sss-oge[open] summary i { transform: rotate(45deg); }
.sss-cevap { padding: 0 40px 30px 0; animation: sssAc 0.4s ease; }
.sss-cevap p { font-size: 0.93rem; font-weight: 300; color: var(--mist); line-height: 1.9; }
@keyframes sssAc { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- ALAN SAYFASI: CTA ---------- */
.alan-cta {
  margin: 0 6% 0;
  padding: 66px 6%;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%), var(--ink-soft);
  display: flex; align-items: center; justify-content: space-between;
  gap: 44px; flex-wrap: wrap;
}
.alan-cta h2 {
  font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 300; color: var(--cream); margin-bottom: 12px;
}
.alan-cta p { font-size: 0.92rem; font-weight: 300; color: var(--mist); }
.alan-cta-butonlar { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

/* ---------- ALAN SAYFASI: önceki / sonraki ---------- */
.alan-gezinme {
  margin: 90px 6% 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.alan-gezinme-oge {
  background: var(--ink); padding: 34px 38px;
  text-decoration: none; display: flex; flex-direction: column; gap: 10px;
  transition: background 0.4s;
}
.alan-gezinme-oge:hover { background: var(--ink-soft); }
.alan-gezinme-oge span {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mist); opacity: 0.6;
}
.alan-gezinme-oge strong {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 400;
  color: var(--cream); transition: color 0.3s;
}
.alan-gezinme-oge:hover strong { color: var(--gold); }
.alan-gezinme-oge.sag { text-align: right; align-items: flex-end; }

/* ---------- MOBİL MENÜ: alan listesi ---------- */
.mobile-nav-baslik {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); opacity: 0.6; margin-bottom: 4px;
}
.mobile-link-sm { font-size: 1.45rem !important; }

/* =================================================================
   MOBİL / TABLET
================================================================= */
@media (max-width: 1024px) {
  body.ic-sayfa { padding-top: 64px; }

  .alan-hero { padding: 48px 6% 52px; }
  .kirinti { margin-bottom: 24px; font-size: 0.64rem; }
  .alan-hero-ozet { font-size: 0.98rem; }
  .alan-hero-ikon { font-size: 11rem; right: -3%; opacity: 0.7; }

  .alan-govde { grid-template-columns: 1fr; gap: 48px; padding: 64px 6%; }
  .alan-sag { position: static; padding: 34px 28px; }

  .alan-adimlar { padding: 64px 6%; }
  .adim-izgara { grid-template-columns: 1fr; margin-top: 44px; }
  .adim { padding: 30px 26px; gap: 20px; }

  .alan-sss { grid-template-columns: 1fr; gap: 44px; padding: 64px 6%; }
  .sss-basliklar { position: static; }
  .sss-not { max-width: 100%; }
  .sss-oge summary { font-size: 1.05rem; padding: 22px 34px 22px 0; }
  .sss-oge summary i { top: 26px; }

  .alan-cta { padding: 44px 30px; margin: 0 6%; text-align: center; justify-content: center; }
  .alan-cta > div:first-child { width: 100%; }
  .alan-cta-butonlar { width: 100%; flex-direction: column; gap: 14px; }
  .alan-cta-butonlar .btn-gold,
  .alan-cta-butonlar .btn-ghost { width: 100%; justify-content: center; text-align: center; }

  .alan-gezinme { grid-template-columns: 1fr; margin: 56px 6% 0; }
  .alan-gezinme-oge { padding: 24px 26px; }
  .alan-gezinme-oge.sag { text-align: left; align-items: flex-start; }

  /* Servis kartları: dokunmatikte ok ve alt çizgi hep görünür */
  a.service-card { padding: 34px 26px 68px; }
  .service-kanun { left: 26px; bottom: 26px; }
  .service-num { font-size: 2.8rem; margin-bottom: 18px; }
  .service-title { font-size: 1.35rem; }

  /* Footer alan listesi ortalanır */
  .footer-links { align-items: center; }
  .footer-links a:hover { padding-left: 0; }
  .footer-yasal { text-align: center; }
  .footer-yasal p { margin: 0 auto; }

  /* Mobil menü kaydırılabilir olmalı, 7 bağlantı var */
  .mobile-overlay { justify-content: flex-start; padding: 92px 24px 40px; overflow-y: auto; }
  .mobile-nav { gap: 20px; width: 100%; }
  .mobile-link { font-size: 1.7rem; }
  .mobile-footer { position: static; margin-top: 48px; }
}

/* Dokunmatik cihazlar: hover yok, kart okları sabit görünsün */
@media (hover: none) {
  .service-arrow { opacity: 0.55; transform: translate(0, 0); }
  .service-card::before { width: 34px; }
  .service-kanun { opacity: 0.7; }
  .service-bg-icon { color: rgba(201,168,76,0.045); transform: rotate(0deg) scale(0.95); }
}

@media (max-width: 768px) {
  /* Sabit alt bar için pay — iç sayfalarda da geçerli */
  body { padding-bottom: 64px; }

  .alan-hero-ikon { display: none; }
  .alan-hero-baslik { font-size: 2.25rem; }
  .alan-uyari { padding: 20px 20px; gap: 14px; }

  /* Konum kartı mobilde tam genişlik ve okunaklı */
  .location-section { border-bottom: none; }
  .location-card { padding: 32px 24px; border-left: none; border-right: none; }
  .location-title { font-size: 1.5rem; }
  .location-card .btn-gold { display: block; text-align: center; width: 100%; }

  /* Alt bar butonları en az 44px dokunma alanı */
  .mobile-action-btn { min-height: 44px; }

  /* Bölüm başlıkları mobilde biraz daha sıkı */
  .services, .process { padding: 72px 6%; }
  .services-header { margin-bottom: 44px; }
  .stats-bar { padding: 0; }
}

@media (max-width: 480px) {
  .alan-hero-baslik { font-size: 1.95rem; }
  .alan-hero-ozet { font-size: 0.94rem; }
  .adim { flex-direction: column; gap: 12px; }
  .adim-no { font-size: 2rem; }
  .sss-oge summary { font-size: 0.98rem; }
  .mobile-link { font-size: 1.5rem; }
  .mobile-link-sm { font-size: 1.25rem !important; }
  .alan-sag { padding: 28px 22px; }
  .alan-sag-baslik { font-size: 1.45rem; }
}

/* =================================================================
   BÜRO / VİZYON BÖLÜMÜ — görselsiz düzen (20 Ağu 2026)
   Ömer'in kararı: fotoğraf şimdilik yok. Bölüm boşluk gibi durmasın diye
   editoryal iki sütuna çevrildi: solda başlık rayı, sağda metin, altta
   tam genişlikte alıntı bandı.
   📷 Fotoğraf geldiğinde index.html'deki yorumu açmak YETER; aşağıdaki
   .about-image-* kuralları onu sol sütunda başlığın üstüne oturtur.
================================================================= */
.about {
  padding: 130px 6%;
  display: grid;
  grid-template-columns: 5fr 7fr;
  column-gap: 90px;
  row-gap: 60px;
  align-items: start;
}

.about-baslik { position: relative; }
.about-baslik .section-title { margin-top: 4px; }

/* Başlığın altındaki ince altın çizgi — sol sütunu tamamlar */
.about-cizgi {
  display: block; width: 72px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-top: 34px;
}

.about-body { padding-left: 0; }
.about-text { margin-top: 0; }
.about-text + .about-text { margin-top: 22px; }

/* Alıntı artık iki sütunun altında tam genişlikte bir bant */
.about-quote {
  grid-column: 1 / -1;
  margin-top: 0;
  padding: 46px 8%;
  border-left: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-dim);
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--cream);
}
.about-quote strong { font-style: normal; color: var(--gold); }

/* ---------- Fotoğraf döndüğünde devreye girecek kurallar ---------- */
.about-image-wrap { max-width: 260px; margin-bottom: 38px; }
.about-image-frame { position: relative; overflow: hidden; aspect-ratio: 1 / 1; }
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-image-frame::before {
  content: ''; position: absolute; top: -14px; left: -14px;
  width: 46%; height: 46%;
  border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); z-index: 1;
}
.about-image-frame::after {
  content: ''; position: absolute; bottom: -14px; right: -14px;
  width: 46%; height: 46%;
  border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); z-index: 1;
}

@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; padding: 80px 6%; row-gap: 40px; column-gap: 0; }
  .about-cizgi { margin-top: 26px; }
  .about-quote { padding: 34px 26px; margin-top: 4px; }
  .about-image-wrap { max-width: 200px; margin-bottom: 30px; }
}

@media (max-width: 480px) {
  .about { padding: 64px 6%; }
  .about-quote { padding: 28px 20px; font-size: 1.05rem; }
}
