/*
Theme Name: GezginRehberi
Theme URI: https://gezginrehberi.com
Author: GezginRehberi
Description: Premium gezi rehberi ve destinasyon blog teması
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: gezginrehberi
Tags: blog, travel, portfolio, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ===================================================
   RESET & BASE
   =================================================== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  /* Renk Paleti */
  --cream:#FAF8F4;
  --ink:#141210;
  --ink-soft:#3D3830;
  --ink-muted:#7A7168;
  --gold:#B8924A;
  --gold-light:#E8D5A3;
  --gold-pale:#F5EDD8;
  --white:#FFFFFF;
  --dark:#111009;

  /* Alias — eski değişkenler yeni değerlere bağlı (değer tekrarını önler) */
  --color-primary: var(--gold);
  --color-primary-dk: #8a6c35;
  --color-primary-lt: var(--gold-light);
  --color-dark: var(--dark);
  --color-dark-2: #1c1a16;
  --color-text: var(--ink);
  --color-text-muted: var(--ink-muted);
  --color-border: #E2DDD5;
  --color-bg: var(--cream);
  --color-bg-soft: var(--gold-pale);

  /* Tipografi */
  --font-sans:'DM Sans',-apple-system,BlinkMacSystemFont,sans-serif;
  --font-serif:'Cormorant Garamond',Georgia,'Times New Roman',serif;

  /* Diğer */
  --radius-sm:4px;--radius-md:8px;--radius-lg:16px;
  --transition:0.2s ease;--container:1200px;
  --shadow-card:0 2px 8px rgba(20,18,16,0.06);
}

html{scroll-behavior:smooth}
body{font-family:var(--font-sans);font-size:16px;line-height:1.7;color:var(--ink);background:var(--cream);-webkit-font-smoothing:antialiased}
a{color:var(--gold);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--ink)}
img{max-width:100%;height:auto;display:block}
ul,ol{list-style:none}
h1,h2,h3,h4,h5,h6{font-family:var(--font-serif);font-weight:500;line-height:1.2;color:var(--ink)}
p{margin-bottom:1rem}p:last-child{margin-bottom:0}
.container{max-width:var(--container);margin:0 auto;padding:0 24px}
.site-wrapper{min-height:100vh;display:flex;flex-direction:column}
.site-content{flex:1}
.content-area{display:grid;grid-template-columns:1fr 320px;gap:48px}
.content-area.full-width{grid-template-columns:1fr}
.no-content-msg{color:var(--ink-muted);margin-top:24px;font-size:15px}

/* ===================================================
   HEADER
   =================================================== */
#site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(250,248,244,0.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--color-border);
}
.header-inner{
  display:flex;align-items:center;
  justify-content:space-between;
  height:72px;
}

/* Logo */
.site-logo{
  display:flex;align-items:center;gap:10px;
  font-family:var(--font-serif);
  font-size:1.2rem;font-weight:500;
  color:var(--ink);letter-spacing:0.02em;
}
.site-logo:hover{color:var(--gold)}

.logo-mark{
  width:26px;height:26px;
  border:1.5px solid var(--gold);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;position:relative;
}
.logo-mark::after{
  content:'';
  width:7px;height:7px;
  background:var(--gold);border-radius:50%;
}

/* Navigasyon */
#site-navigation{display:block}
#primary-menu{display:flex;align-items:center;gap:4px}
#primary-menu li a{
  font-family:var(--font-sans);
  font-size:0.75rem;font-weight:400;
  letter-spacing:0.08em;text-transform:uppercase;
  color:var(--ink-muted);
  padding:0.5rem 0.875rem;
  border-radius:6px;
  transition:color var(--transition),background var(--transition);
}
#primary-menu li a:hover,
#primary-menu li.current-menu-item a,
#primary-menu li.current_page_item a{
  color:var(--ink);
  background:rgba(184,146,74,0.08);
}

/* Header Actions */
.header-actions{display:flex;align-items:center;gap:12px}

.btn-search{
  background:none;border:none;
  color:var(--ink-muted);cursor:pointer;
  padding:8px;display:flex;align-items:center;
  transition:color var(--transition);
}
.btn-search:hover{color:var(--ink)}
.btn-search svg{width:18px;height:18px}

.btn-cta{
  display:inline-flex;align-items:center;gap:6px;
  font-family:var(--font-sans);
  font-size:0.75rem;font-weight:500;
  letter-spacing:0.08em;text-transform:uppercase;
  color:var(--white);
  background:var(--ink);
  padding:0.6rem 1.25rem;
  border-radius:100px;
  transition:background var(--transition);
}
.btn-cta:hover{background:var(--gold);color:var(--white)}

.hamburger{
  display:none;flex-direction:column;gap:5px;
  background:none;border:none;cursor:pointer;padding:6px;
}
.hamburger span{
  display:block;width:22px;height:1.5px;
  background:var(--ink-soft);
  transition:var(--transition);
}

/* Mobil Nav */
.mobile-nav{display:none;background:var(--white);border-bottom:1px solid var(--color-border)}
.mobile-nav.open{display:block}
.mobile-nav ul{padding:12px 0}
.mobile-nav ul li a{
  display:block;padding:12px 24px;
  font-size:0.8125rem;letter-spacing:0.06em;text-transform:uppercase;
  color:var(--ink-muted);
}
.mobile-nav ul li a:hover{color:var(--ink)}
.mobile-nav-cta{padding:12px 24px 20px}
.mobile-nav-dest-btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 20px;
  background:var(--ink);color:var(--white);
  border-radius:6px;font-size:0.8125rem;
  font-family:var(--font-sans);font-weight:500;
  letter-spacing:0.06em;text-transform:uppercase;
  text-decoration:none;transition:background var(--transition);
}
.mobile-nav-dest-btn:hover{background:var(--gold);color:var(--white)}

/* Arama Overlay */
.search-overlay{
  display:none;position:fixed;inset:0;
  background:rgba(20,18,16,0.94);
  z-index:200;align-items:center;justify-content:center;
}
.search-overlay.active{display:flex}
.search-overlay form{
  display:flex;align-items:center;
  width:100%;max-width:600px;padding:0 24px;
}
.search-overlay input[type=search]{
  flex:1;background:none;border:none;
  border-bottom:1px solid rgba(255,255,255,0.25);
  color:#fff;font-size:24px;
  font-family:var(--font-serif);
  padding:12px 0;outline:none;
}
.search-overlay input::placeholder{color:rgba(255,255,255,0.3)}
.search-overlay button[type=submit]{
  background:none;border:none;
  color:var(--gold-light);cursor:pointer;padding:12px;
}
.search-close{
  position:absolute;top:24px;right:24px;
  background:none;border:none;
  color:rgba(255,255,255,0.5);font-size:32px;
  cursor:pointer;line-height:1;
}

/* ===================================================
   HERO
   =================================================== */
.hero-section{
  background:var(--cream);
  border-bottom:1px solid var(--color-border);
}
.hero-body{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  padding:5rem 0 4rem;
  align-items:center;
}
.hero-eyebrow{
  font-size:0.7rem;font-weight:400;
  letter-spacing:0.14em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1.5rem;
  display:flex;align-items:center;gap:0.75rem;
}
.hero-eyebrow::before{
  content:'';width:28px;height:1px;
  background:var(--gold);flex-shrink:0;
}
.hero-title{
  font-family:var(--font-serif);
  font-size:clamp(2.4rem,4vw,3.8rem);
  line-height:1.1;font-weight:500;
  color:var(--ink);margin-bottom:1.5rem;
}
.hero-title em{font-style:italic;color:var(--gold)}
.hero-desc{
  font-size:0.9375rem;line-height:1.75;
  color:var(--ink-muted);margin-bottom:2.25rem;
}
.hero-actions{display:flex;align-items:center;gap:1.25rem;flex-wrap:wrap}

.btn-primary{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-sans);
  font-size:0.75rem;font-weight:500;
  letter-spacing:0.08em;text-transform:uppercase;
  color:var(--white);background:var(--ink);
  padding:0.875rem 2rem;border-radius:100px;
  border:none;cursor:pointer;
  transition:background var(--transition);
}
.btn-primary:hover{background:var(--gold);color:var(--white)}

.btn-ghost{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-sans);
  font-size:0.75rem;letter-spacing:0.08em;text-transform:uppercase;
  color:var(--ink-muted);
  transition:color var(--transition);
}
.btn-ghost:hover{color:var(--ink)}

/* Hero – İstatistik Kartları Gridin */
.hero-stats-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2px;
  border:1px solid var(--color-border);
  border-radius:20px;overflow:hidden;
}
.hero-stat-card{
  background:var(--white);
  padding:2rem;
}
.hero-stat-card:nth-child(1){border-radius:18px 0 0 0}
.hero-stat-card:nth-child(2){border-radius:0 18px 0 0}
.hero-stat-card:nth-child(3){border-radius:0 0 0 18px}
.hero-stat-card:nth-child(4){border-radius:0 0 18px 0}

.hero-stat-num{
  font-family:var(--font-serif);
  font-size:2.4rem;font-weight:500;
  line-height:1;color:var(--ink);margin-bottom:0.35rem;
}
.hero-stat-label{
  font-size:0.7rem;letter-spacing:0.1em;
  text-transform:uppercase;color:var(--ink-muted);
}

/* ===================================================
   MARQUEE ŞERİT
   =================================================== */
.marquee-strip{
  background:var(--ink);
  border-top:1px solid rgba(255,255,255,0.05);
  border-bottom:1px solid rgba(255,255,255,0.05);
  overflow:hidden;padding:0.875rem 0;
}
.marquee-inner{
  display:flex;gap:2.5rem;white-space:nowrap;
  animation:marquee 22s linear infinite;
}
.marquee-item{
  font-size:0.7rem;letter-spacing:0.18em;text-transform:uppercase;
  color:rgba(255,255,255,0.4);
  display:inline-flex;align-items:center;gap:1.25rem;
  flex-shrink:0;
}
.marquee-dot{
  display:inline-block;
  width:4px;height:4px;
  background:var(--gold);border-radius:50%;
}
@keyframes marquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

/* ===================================================
   BÖLÜM BAŞLIKLARI
   =================================================== */
.section-pad{padding:5rem 0}
.section-pad-sm{padding:3rem 0}
.section-header{
  display:flex;align-items:flex-end;
  justify-content:space-between;
  margin-bottom:2.5rem;
  padding-bottom:1.5rem;
  border-bottom:1px solid var(--color-border);
}
.section-eyebrow{
  font-size:0.68rem;font-weight:400;
  letter-spacing:0.16em;text-transform:uppercase;
  color:var(--gold);margin-bottom:0.6rem;
}
.section-title{
  font-family:var(--font-serif);
  font-size:2rem;font-weight:500;
  line-height:1.15;color:var(--ink);
}
.section-link{
  font-size:0.72rem;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--ink-muted);text-decoration:none;
  display:inline-flex;align-items:center;gap:0.5rem;
  padding-bottom:2px;
  border-bottom:1px solid transparent;
  transition:color var(--transition),border-color var(--transition);
}
.section-link:hover{color:var(--gold);border-color:var(--gold)}

/* ===================================================
   DESTİNASYON TILE GRID (YENİ PREMIUM YAPI)
   =================================================== */
.dest-tile-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5px;
  background:var(--color-border);
  border:1px solid var(--color-border);
  border-radius:20px;
  overflow:hidden;
}

/* Normal tile */
.dest-tile{
  background:var(--white);
  position:relative;overflow:hidden;
  cursor:pointer;
  transition:background var(--transition);
  display:flex;flex-direction:column;
}
.dest-tile:hover{background:var(--gold-pale)}

/* Fotoğraf wrap */
.dest-tile-img-wrap{overflow:hidden}
.dest-tile-img{
  width:100%;aspect-ratio:4/3;
  object-fit:cover;display:block;
  filter:grayscale(15%);
  transition:filter 0.5s,transform 0.5s;
}
.dest-tile:hover .dest-tile-img{
  filter:grayscale(0%);
  transform:scale(1.04);
}

/* Tile body */
.dest-tile-body{
  padding:1.375rem 1.5rem 1.5rem;
  display:flex;flex-direction:column;
  flex:1;
}

.dest-tile-region{
  font-size:0.68rem;letter-spacing:0.14em;text-transform:uppercase;
  color:var(--gold);margin-bottom:0.5rem;
  display:flex;align-items:center;gap:0.5rem;
}
.dest-tile-region::before{
  content:'';width:14px;height:1px;
  background:var(--gold);flex-shrink:0;
}

.dest-tile-title{
  font-family:var(--font-serif);
  font-size:1.2rem;font-weight:500;
  line-height:1.25;color:var(--ink);
  margin-bottom:0.6rem;flex:1;
}
.dest-tile-title a{color:inherit}
.dest-tile-title a:hover{color:var(--gold)}

.dest-tile-exc{
  font-size:0.84rem;line-height:1.6;
  color:var(--ink-muted);
  display:-webkit-box;-webkit-line-clamp:3;
  -webkit-box-orient:vertical;overflow:hidden;
  margin-bottom:1.125rem;
}

.dest-tile-footer{
  display:flex;align-items:center;
  justify-content:space-between;
  margin-top:auto;
}

.dest-tile-views{
  display:flex;align-items:center;gap:0.35rem;
  font-size:0.75rem;color:var(--ink-muted);
  letter-spacing:0.02em;
}
.dest-tile-views svg{opacity:0.55}

.dest-tile-cta{
  font-size:0.72rem;font-weight:500;
  letter-spacing:0.08em;text-transform:uppercase;
  color:var(--ink);text-decoration:none;
  padding:0.4rem 1rem;
  border:1px solid var(--color-border);
  border-radius:100px;
  transition:border-color var(--transition),color var(--transition),background var(--transition);
}
.dest-tile-cta:hover{
  border-color:var(--gold);color:var(--gold);
  background:rgba(184,146,74,0.06);
}

/* FEATURED TILE — 2 kolon */
.dest-tile--featured{
  grid-column:span 2;
  flex-direction:row;
}
.dest-tile--featured .dest-tile-img-wrap{
  width:55%;flex-shrink:0;
}
.dest-tile--featured .dest-tile-img{
  height:100%;aspect-ratio:unset;
}
.dest-tile--featured .dest-tile-body{
  padding:2.25rem 2rem;
  justify-content:flex-end;
}
.dest-tile--featured .dest-tile-title{
  font-size:1.6rem;
}

/* ===================================================
   BLOG YAZI KARTLARI (eski dest-card — uyumluluk)
   =================================================== */
.dest-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;margin-bottom:32px;
}
.dest-card{
  background:var(--white);
  border:1px solid var(--color-border);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:border-color var(--transition),box-shadow var(--transition);
}
.dest-card:hover{border-color:#c8c1b4;box-shadow:var(--shadow-card)}
.dest-card-thumb{
  position:relative;height:180px;
  overflow:hidden;background:var(--color-dark-2);
}
.dest-card-thumb img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 0.4s ease;
}
.dest-card:hover .dest-card-thumb img{transform:scale(1.04)}
.dest-card-thumb .no-image{
  display:flex;align-items:center;justify-content:center;
  width:100%;height:100%;font-size:48px;
}
.dest-card-region{
  position:absolute;bottom:0;left:0;right:0;
  padding:8px 12px;
  background:linear-gradient(transparent,rgba(20,18,16,0.55));
  font-size:0.68rem;letter-spacing:0.12em;text-transform:uppercase;
  color:rgba(255,255,255,0.85);font-weight:500;
}
.dest-card-body{padding:16px}
.dest-card-title{
  font-family:var(--font-serif);
  font-size:1.05rem;font-weight:500;
  color:var(--ink);margin-bottom:6px;
}
.dest-card-title a{color:inherit}
.dest-card-title a:hover{color:var(--gold)}
.dest-card-exc{
  font-size:0.84rem;color:var(--ink-muted);
  line-height:1.6;margin-bottom:14px;
  display:-webkit-box;-webkit-line-clamp:2;
  -webkit-box-orient:vertical;overflow:hidden;
}
.dest-card-footer{
  display:flex;justify-content:space-between;align-items:center;
  padding-top:12px;border-top:1px solid var(--color-border);
}
.dest-rating{display:flex;align-items:center;gap:4px;font-size:12px;color:var(--ink-muted)}
.dest-rating strong{color:var(--ink)}
.star-icon{color:#d97706;font-size:13px}
.dest-read{
  font-size:0.68rem;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--gold);font-weight:500;
}
.dest-read:hover{color:var(--ink)}

/* Kategori filtresi */
.cat-filter{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:24px}
.cat-btn{
  font-size:0.72rem;font-weight:500;letter-spacing:0.08em;text-transform:uppercase;
  padding:7px 18px;border-radius:100px;
  border:1px solid var(--color-border);
  background:transparent;color:var(--ink-muted);
  cursor:pointer;transition:all var(--transition);
}
.cat-btn:hover{border-color:var(--gold);color:var(--gold)}
.cat-btn.active{
  background:var(--ink);border-color:var(--ink);color:var(--gold-light);
}

/* Daha fazla yükle butonu */
.btn-primary-outline{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-sans);
  font-size:0.75rem;font-weight:500;
  letter-spacing:0.08em;text-transform:uppercase;
  color:var(--ink);background:transparent;
  padding:0.875rem 2rem;border-radius:100px;
  border:1px solid var(--color-border);cursor:pointer;
  transition:border-color var(--transition),color var(--transition),background var(--transition);
}
.btn-primary-outline:hover{
  border-color:var(--gold);color:var(--gold);
  background:rgba(184,146,74,0.06);
}

/* ===================================================
   FOOTER
   =================================================== */
#site-footer{
  background:var(--ink);
  border-top:1px solid rgba(255,255,255,0.06);
  margin-top:0;
}
.footer-top{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:48px;
  padding:56px 0 44px;
  border-bottom:1px solid rgba(255,255,255,0.07);
}
.footer-logo-text{
  display:block;
  font-family:var(--font-serif);
  font-size:1.3rem;font-weight:500;
  color:rgba(255,255,255,0.9);
  margin-bottom:14px;
}
.footer-logo-text:hover{color:var(--gold-light)}
.footer-desc{
  font-size:0.8125rem;color:rgba(255,255,255,0.38);
  line-height:1.7;margin-bottom:20px;max-width:260px;
}
.footer-social{display:flex;gap:10px}
.footer-social a{
  width:36px;height:36px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:6px;
  color:rgba(255,255,255,0.45);
  font-size:0.65rem;font-weight:600;letter-spacing:0.04em;
  transition:all var(--transition);
}
.footer-social a:hover{border-color:var(--gold-light);color:var(--gold-light)}
.footer-col-title{
  font-family:var(--font-sans);
  font-size:0.68rem;font-weight:500;
  letter-spacing:0.12em;text-transform:uppercase;
  color:rgba(255,255,255,0.4);margin-bottom:18px;
}
.footer-col ul li{margin-bottom:10px}
.footer-col ul li a{
  font-size:0.84rem;color:rgba(255,255,255,0.35);
  transition:color var(--transition);
}
.footer-col ul li a:hover{color:rgba(255,255,255,0.8)}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;
  padding:18px 0;
  font-size:0.7rem;color:rgba(255,255,255,0.22);
  letter-spacing:0.04em;
}

/* Back to top */
#back-to-top{
  position:fixed;bottom:28px;right:28px;
  width:42px;height:42px;
  background:var(--ink);border:1px solid rgba(255,255,255,0.12);
  border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,0.55);cursor:pointer;
  opacity:0;pointer-events:none;
  transition:opacity var(--transition),background var(--transition);z-index:90;
}
#back-to-top.visible{opacity:1;pointer-events:auto}
#back-to-top:hover{background:var(--gold);color:#fff;border-color:var(--gold)}

/* ── Okuma Modu Butonu ── */
.sdest-readmode-btn{
  position:fixed!important;
  bottom:28px;right:80px;
  z-index:99990!important;
  display:flex;align-items:center;gap:8px;
  padding:11px 18px;
  background:rgba(15,15,30,.88);
  color:#fff;border:none;border-radius:50px;
  font-family:var(--font-sans);font-size:13px;font-weight:500;letter-spacing:.02em;
  cursor:pointer;
  box-shadow:0 4px 24px rgba(0,0,0,.35);
  transition:background .2s,box-shadow .2s;
}
.sdest-readmode-btn:hover{background:rgba(30,30,70,.95);box-shadow:0 8px 32px rgba(0,0,0,.4)}
.sdest-readmode-btn[aria-pressed="true"]{background:rgba(200,160,60,.92);color:#1a1a1a}
.sdest-readmode-btn[aria-pressed="true"] svg{stroke:#1a1a1a}
@media(max-width:600px){
  .sdest-readmode-btn{
    bottom:82px;right:16px;left:auto;
    transform:none!important;
    height:48px;padding:0 20px;
    background:var(--gold);
    color:#1e0e00;
    font-size:13px;font-weight:600;
    box-shadow:0 4px 20px rgba(184,146,74,.55),0 2px 8px rgba(0,0,0,.18);
  }
  .sdest-readmode-btn svg{stroke:#1e0e00}
  .sdest-readmode-btn:hover{background:var(--color-primary-dk);box-shadow:0 6px 24px rgba(184,146,74,.65)}
  .sdest-readmode-btn[aria-pressed="true"]{background:#1e0e00;color:var(--gold)}
  .sdest-readmode-btn[aria-pressed="true"] svg{stroke:var(--gold)}
}
/* ── Okuma Modu Aktif ── */
.sdest-reading-mode #site-header,
.sdest-reading-mode header{display:none!important}
.sdest-reading-mode .site-footer,
.sdest-reading-mode footer{display:none!important}
.sdest-reading-mode .sdest-hero{display:none!important}
.sdest-reading-mode .sdest-sidebar{display:none!important}
.sdest-reading-mode #sdest-lower{display:none!important}
.sdest-reading-mode body{background:#faf8f4!important}
.sdest-reading-mode .section-pad{padding-top:48px!important;padding-bottom:64px!important}
.sdest-reading-mode .container{max-width:700px!important}
.sdest-reading-mode .sdest-layout{display:block!important}
.sdest-rm-heading{display:none;font-family:var(--font-serif);font-size:clamp(26px,5vw,38px);font-weight:600;line-height:1.25;color:#1a1a1a;margin:0 0 32px}
.sdest-reading-mode .sdest-rm-heading{display:block}
.sdest-reading-mode .entry-content{font-family:Georgia,'Times New Roman',serif;font-size:clamp(17px,2.5vw,19px);line-height:1.85;color:#222}
.sdest-reading-mode .entry-content p{margin-bottom:1.4em}
.sdest-reading-mode .entry-content h2{font-size:1.4em;margin-top:2em}
.sdest-reading-mode .entry-content h3{font-size:1.2em;margin-top:1.6em}
.sdest-reading-mode .entry-content img{border-radius:6px;max-width:100%;height:auto}

/* ===================================================
   TEK DESTİNASYON — HERO (Premium Yeniden Tasarım)
   =================================================== */
.sdest-hero{position:relative;height:88vh;min-height:580px;max-height:900px;display:flex;flex-direction:column;justify-content:flex-end;overflow:hidden;background:#0b1220}
.sdest-hero-img{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1.05);transition:transform 9s ease}
.sdest-hero--has-img:hover .sdest-hero-img{transform:scale(1)}
.sdest-hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,0,0,0.08) 0%,rgba(0,0,0,0.2) 35%,rgba(0,0,0,0.72) 68%,rgba(0,0,0,0.97) 100%)}
.sdest-hero-content{position:relative;z-index:2;padding-bottom:60px}
/* Etiketler */
.sdest-hero-tags{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:24px}
.sdest-tag{display:inline-flex;align-items:center;gap:6px;padding:7px 16px;border:1px solid rgba(255,255,255,0.22);border-radius:2px;font-size:10px;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.72);backdrop-filter:blur(6px);background:rgba(255,255,255,0.07)}
.sdest-tag svg{opacity:0.7}
.sdest-tag--gold{border-color:rgba(212,168,83,0.5);color:#d4a853;background:rgba(212,168,83,0.1)}
/* Başlık */
.sdest-hero-title{font-family:var(--font-serif);font-size:clamp(38px,5.5vw,74px);font-weight:500;color:#fff;line-height:1.07;margin:0 0 30px;max-width:880px;text-shadow:0 2px 28px rgba(0,0,0,0.4)}
.sdest-flag{margin-right:16px;font-style:normal}
/* Breadcrumb (hero içi) */
.sdest-breadcrumb{display:flex;align-items:center;gap:8px;font-size:12px;color:rgba(255,255,255,0.42)}
.sdest-breadcrumb a{color:rgba(255,255,255,0.5);text-decoration:none;transition:color 0.2s}
.sdest-breadcrumb a:hover{color:#fff}
.sdest-bc-sep{opacity:0.32}
/* Scroll çizgisi */
.sdest-scroll-line{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);z-index:2}
.sdest-scroll-line span{display:block;width:1px;height:52px;background:linear-gradient(to bottom,rgba(255,255,255,0),rgba(255,255,255,0.4));animation:sdest-scroll-anim 2.4s ease-in-out infinite}
@keyframes sdest-scroll-anim{0%,100%{opacity:0.25;transform:scaleY(0.3) translateY(-20px)}60%{opacity:1;transform:scaleY(1) translateY(0)}}
/* ===================================================
   TEK DESTİNASYON — LAYOUT (İçerik + Sidebar)
   =================================================== */
.sdest-layout{display:grid;grid-template-columns:1fr 310px;gap:60px;align-items:start}
.sdest-sidebar{position:sticky;top:96px}
.sdest-info-card{background:var(--color-bg-soft);border:1px solid var(--color-border);border-radius:var(--radius-md);overflow:hidden}
.sdest-info-card-head{padding:18px 22px;border-bottom:1px solid var(--color-border)}
.sdest-info-card-label{font-size:10px;letter-spacing:0.16em;text-transform:uppercase;color:var(--color-text-muted);font-family:var(--font-sans);font-weight:500}
.sdest-info-row{display:flex;justify-content:space-between;align-items:center;padding:15px 22px;border-bottom:1px solid var(--color-border);font-size:13px}
.sdest-info-row--block{flex-direction:column;gap:6px;align-items:flex-start}
.sdest-info-key{color:var(--color-text-muted);font-size:10px;text-transform:uppercase;letter-spacing:0.1em}
.sdest-info-val{font-weight:500;color:var(--color-text);text-align:right}
.sdest-rating-inline{display:flex;align-items:center;gap:6px}
.sdest-rating-num{font-family:var(--font-serif);font-size:20px;font-weight:600;color:var(--color-dark);line-height:1}
.sdest-rating-max{font-size:11px;color:var(--color-text-muted)}
.sdest-rating-stars{color:#d4a853;font-size:14px;letter-spacing:-1px}
.sdest-info-maps{padding:16px 22px}
.sdest-maps-btn{display:flex;align-items:center;justify-content:center;gap:8px;padding:13px;background:var(--color-dark);color:#fff;border-radius:var(--radius-sm);text-decoration:none;font-size:13px;font-weight:500;letter-spacing:0.04em;transition:background 0.22s;width:100%;box-sizing:border-box}
.sdest-maps-btn:hover{background:var(--gold)}
/* ===================================================
   TEK DESTİNASYON — BÖLÜM BAŞLIKLARI
   =================================================== */
.sdest-section{margin-bottom:72px}
.sdest-section-header{margin-bottom:32px;padding-bottom:18px;border-bottom:1px solid var(--color-border);display:flex;align-items:flex-end;justify-content:space-between}
.sdest-section-eyebrow{font-size:10px;letter-spacing:0.16em;text-transform:uppercase;color:var(--gold);font-family:var(--font-sans);margin-bottom:6px}
.sdest-section-title{font-family:var(--font-serif);font-size:clamp(22px,2.5vw,30px);font-weight:500;color:var(--color-dark);margin:0;line-height:1.2}
.sdest-count-badge{font-size:12px;color:var(--color-text-muted);padding:4px 12px;border:1px solid var(--color-border);border-radius:20px;flex-shrink:0}
/* ===================================================
   TEK DESTİNASYON — REHBER SAYFA LİSTESİ
   =================================================== */
.sdest-guide-list{display:flex;flex-direction:column;gap:2px}
.sdest-guide-item{display:flex;align-items:center;gap:22px;padding:20px 26px;background:var(--color-bg);border:1px solid var(--color-border);text-decoration:none;transition:all 0.22s;border-radius:var(--radius-sm)}
.sdest-guide-item:hover{border-color:var(--gold);background:var(--gold-pale);transform:translateX(5px)}
.sdest-guide-num{font-family:var(--font-serif);font-size:24px;font-weight:500;color:var(--gold);opacity:0.55;width:38px;flex-shrink:0;line-height:1}
.sdest-guide-text{flex:1;font-size:15px;font-weight:500;color:var(--color-dark)}
.sdest-guide-arrow{color:var(--gold);opacity:0;transition:opacity 0.22s,transform 0.22s;flex-shrink:0}
.sdest-guide-item:hover .sdest-guide-arrow{opacity:1;transform:translateX(3px)}
/* ===================================================
   TEK DESTİNASYON — BLOG YAZISI KARTLARI (Yatay)
   =================================================== */
.sdest-posts-list{display:flex;flex-direction:column;gap:16px}
.sdest-post-item{display:grid;grid-template-columns:230px 1fr;background:var(--color-bg);border:1px solid var(--color-border);border-radius:var(--radius-md);overflow:hidden;transition:box-shadow 0.25s,border-color 0.25s}
.sdest-post-item:hover{box-shadow:0 8px 36px rgba(0,0,0,0.09);border-color:#d4cfc7}
.sdest-post-thumb{overflow:hidden}
.sdest-post-thumb a{display:block;height:100%}
.sdest-post-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.55s ease}
.sdest-post-item:hover .sdest-post-thumb img{transform:scale(1.06)}
.sdest-post-body{padding:28px 32px;display:flex;flex-direction:column;justify-content:center;gap:10px}
.sdest-post-title{font-family:var(--font-serif);font-size:20px;font-weight:500;line-height:1.3;margin:0}
.sdest-post-title a{color:var(--color-dark);text-decoration:none;transition:color 0.2s}
.sdest-post-title a:hover{color:var(--gold)}
.sdest-post-exc{font-size:14px;line-height:1.65;color:var(--color-text-muted);margin:0;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.sdest-post-meta{display:flex;align-items:center;gap:16px;font-size:12px;color:var(--color-text-muted);flex-wrap:wrap;margin-top:4px}
.sdest-post-meta span{display:flex;align-items:center;gap:5px}
.sdest-post-read{display:inline-flex;align-items:center;gap:5px;color:var(--gold);font-size:13px;font-weight:500;text-decoration:none;margin-left:auto;transition:gap 0.2s}
.sdest-post-read:hover{gap:9px}
/* ===================================================
   TEK DESTİNASYON — RESPONSIVE
   =================================================== */
@media(max-width:960px){
  .sdest-hero{height:78vh;min-height:520px}
  .sdest-layout{grid-template-columns:1fr}
  .sdest-sidebar{position:static}
  .sdest-info-card{max-width:480px}
}
@media(max-width:680px){
  .sdest-hero{height:68vh;min-height:460px}
  .sdest-hero-title{font-size:clamp(30px,8vw,50px)}
  .sdest-post-item{grid-template-columns:1fr}
  .sdest-post-thumb{min-height:180px}
  .sdest-post-body{padding:20px}
  .sdest-guide-item{padding:16px 18px;gap:14px}
}
.entry-content{font-size:16px;line-height:1.8;color:#2d2a25}
.entry-content h2{font-family:var(--font-serif);font-size:24px;margin:2rem 0 1rem;color:var(--ink)}
.entry-content h3{font-family:var(--font-serif);font-size:20px;margin:1.75rem 0 0.75rem;color:var(--ink)}
.entry-content p{margin-bottom:1.25rem}
.entry-content img{border-radius:var(--radius-md);margin:2rem 0}
.entry-content blockquote{
  border-left:2px solid var(--gold);
  padding:16px 24px;margin:2rem 0;
  background:var(--gold-pale);border-radius:0 var(--radius-md) var(--radius-md) 0;
  font-style:italic;color:var(--ink-soft);
  font-family:var(--font-serif);font-size:18px;
}
.entry-content ul,.entry-content ol{list-style:disc;padding-left:1.5rem;margin-bottom:1.25rem}
.entry-content ol{list-style:decimal}
.entry-content li{margin-bottom:0.5rem}
.entry-content a{color:var(--gold);text-decoration:underline;text-underline-offset:3px}
.entry-content a:hover{color:var(--ink)}

/* ===================================================
   BREADCRUMB
   =================================================== */
.breadcrumb{
  font-size:12px;color:var(--ink-muted);
  padding:14px 0;display:flex;align-items:center;
  gap:8px;flex-wrap:wrap;
}
.breadcrumb a{color:var(--ink-muted)}
.breadcrumb a:hover{color:var(--gold)}
.breadcrumb .sep{color:var(--color-border)}
.breadcrumb .current{color:var(--ink)}

/* ===================================================
   WIDGET'LAR
   =================================================== */
.widget{margin-bottom:36px}
.widget-title{
  font-family:var(--font-sans);
  font-size:0.68rem;font-weight:500;
  letter-spacing:0.12em;text-transform:uppercase;
  color:var(--ink-muted);
  padding-bottom:10px;border-bottom:1px solid var(--color-border);margin-bottom:16px;
}
.widget_categories ul li{
  display:flex;justify-content:space-between;align-items:center;
  padding:8px 0;border-bottom:1px solid var(--color-border);font-size:13px;
}
.widget_categories ul li a{color:var(--ink)}
.widget_categories ul li a:hover{color:var(--gold)}
.widget_categories ul li .count{
  font-size:11px;color:var(--ink-muted);
  background:var(--gold-pale);padding:2px 8px;border-radius:10px;
}

/* ===================================================
   PAGINATION
   =================================================== */
.pagination{display:flex;align-items:center;justify-content:center;gap:6px;margin:40px 0}
.pagination .page-numbers{
  display:inline-flex;align-items:center;justify-content:center;
  width:38px;height:38px;font-size:13px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-sm);
  color:var(--ink-muted);transition:all var(--transition);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current{
  background:var(--ink);border-color:var(--ink);color:var(--gold-light);
}

/* ===================================================
   YORUMLAR
   =================================================== */
.comments-area{margin-top:56px;padding-top:40px;border-top:1px solid var(--color-border)}
.comment-body{display:flex;gap:14px;padding:18px 0;border-bottom:1px solid var(--color-border)}
.comment-avatar img{width:40px;height:40px;border-radius:50%}
.comment-meta{font-size:12px;color:var(--ink-muted);margin-bottom:6px}
.comment-meta strong{color:var(--ink);font-size:13px}
.comment-content p{font-size:14px;line-height:1.65}
.comment-respond{margin-top:40px}
.comment-respond h3{font-size:18px;margin-bottom:20px}
.comment-form label{
  display:block;font-size:12px;font-weight:500;
  letter-spacing:0.06em;text-transform:uppercase;
  color:var(--ink-muted);margin-bottom:6px;
}
.comment-form input[type=text],
.comment-form input[type=email],
.comment-form textarea{
  width:100%;border:1px solid var(--color-border);
  border-radius:var(--radius-sm);padding:10px 14px;
  font-size:14px;font-family:var(--font-sans);
  color:var(--ink);background:var(--white);
  transition:border-color var(--transition);margin-bottom:16px;
}
.comment-form input:focus,.comment-form textarea:focus{outline:none;border-color:var(--gold)}
.comment-form textarea{min-height:120px;resize:vertical}
.comment-form .submit{
  background:var(--ink);color:var(--gold-light);border:none;
  padding:12px 28px;font-size:0.72rem;font-weight:500;
  letter-spacing:0.1em;text-transform:uppercase;
  border-radius:100px;cursor:pointer;
  transition:background var(--transition);
}
.comment-form .submit:hover{background:var(--gold);color:#fff}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media(max-width:1024px){
  .hero-body{grid-template-columns:1fr;gap:3rem;padding:4rem 0 3rem}
  .hero-stats-grid{max-width:480px}
  .dest-tile-grid{grid-template-columns:repeat(2,1fr)}
  .dest-tile--featured{grid-column:span 2;flex-direction:column}
  .dest-tile--featured .dest-tile-img-wrap{width:100%}
  .dest-tile--featured .dest-tile-img{aspect-ratio:16/7;height:auto}
  .dest-grid{grid-template-columns:repeat(2,1fr)}
  .footer-top{grid-template-columns:1fr 1fr;gap:32px}
}

@media(max-width:768px){
  .content-area{grid-template-columns:1fr}
  .sidebar{display:none}
  #primary-menu,.btn-cta{display:none}
  .hamburger{display:flex}
  .hero-title{font-size:2.2rem}
  .hero-stats-grid{grid-template-columns:repeat(2,1fr)}
  .dest-tile-grid{grid-template-columns:1fr;gap:1.5px}
  .dest-tile--featured{grid-column:span 1;flex-direction:column}
  .dest-tile--featured .dest-tile-img-wrap{width:100%}
  .dest-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr}
  .section-header{flex-direction:column;align-items:flex-start;gap:1rem}
}

@media(max-width:480px){
  .hero-title{font-size:1.9rem}
  .hero-stats-grid{grid-template-columns:1fr 1fr}
  .hero-stat-num{font-size:1.9rem}
  .cat-btn{padding:6px 12px;font-size:0.68rem}
}

/* SR-Only */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* ===================================================
   HAREKET KISITLAMASI (prefers-reduced-motion)
   =================================================== */
@media(prefers-reduced-motion:reduce){
  .marquee-inner{animation:none}
  .adh-ring{animation:none;opacity:0}
  *,*::before,*::after{transition-duration:.01ms!important;animation-duration:.01ms!important}
}

/* ===================================================
   DESTİNASYON ARŞİVİ — PREMİUM DÜNYA HARİTASI HERO
   =================================================== */
.adh-hero{position:relative;overflow:hidden;min-height:640px;background:#020810;display:block}
.adh-map-wrap{position:absolute;inset:0;z-index:1;overflow:hidden;background-size:cover;background-position:center}
.adh-svg-map{position:absolute;inset:0;width:100%;height:100%;display:block}
.adh-land{fill:#1a3258;stroke:#2d4f82;stroke-width:0.7;stroke-linejoin:round;transition:fill 0.4s}
.adh-land--ice{fill:#1c3550;stroke:#2a4a72;stroke-width:0.5;opacity:0.72}
.adh-hero-text{position:absolute;top:0;left:0;bottom:0;width:46%;max-width:540px;z-index:3;display:flex;flex-direction:column;justify-content:center;padding:56px 64px;background:linear-gradient(to right,rgba(2,8,16,0.97) 0%,rgba(2,8,16,0.88) 42%,rgba(2,8,16,0) 100%)}
.adh-hero-text .hero-eyebrow{color:#d4a853;font-size:11px;letter-spacing:0.18em;text-transform:uppercase;margin-bottom:18px;display:flex;align-items:center;gap:10px}
.adh-hero-text .hero-eyebrow::before{content:'';display:block;width:28px;height:1px;background:#d4a853}
.adh-hero-title{font-family:var(--font-serif);font-size:clamp(32px,4vw,58px);font-weight:500;line-height:1.12;color:#f0ece4;margin:0 0 18px}
.adh-hero-title em{font-style:italic;color:#d4a853}
.adh-hero-desc{font-family:var(--font-sans);font-size:14px;line-height:1.8;color:rgba(240,236,228,0.5);margin-bottom:36px;max-width:380px}
.adh-stats{display:flex;align-items:center;gap:28px}
.adh-stat{display:flex;flex-direction:column;gap:5px}
.adh-stat-num{font-family:var(--font-serif);font-size:28px;font-weight:600;color:#f0ece4;line-height:1}
.adh-stat-label{font-size:9px;letter-spacing:0.12em;text-transform:uppercase;color:rgba(240,236,228,0.38)}
.adh-stat-sep{width:1px;height:36px;background:rgba(240,236,228,0.1)}
@keyframes adh-pulse{0%{r:9;opacity:0.85}100%{r:38;opacity:0}}
.adh-ring{fill:none;stroke:#d4a853;stroke-width:2;opacity:0;transform-origin:center;transform-box:fill-box;animation:adh-pulse 2.8s ease-out infinite;animation-delay:var(--pin-delay,0s)}
.adh-ring-2{animation-delay:calc(var(--pin-delay,0s) + 0.9s)}
.adh-pin-dot{fill:rgba(212,168,83,0.3);stroke:#d4a853;stroke-width:1.5;transition:fill 0.2s}
.adh-pin-core{fill:#d4a853;pointer-events:none}
.adh-pin-link{cursor:pointer}
.adh-pin-link:hover .adh-pin-dot{fill:rgba(212,168,83,0.72)}
.adh-legend{position:absolute;bottom:22px;right:26px;z-index:4;display:flex;align-items:center;gap:8px;background:rgba(2,8,16,0.78);border:1px solid rgba(212,168,83,0.2);padding:6px 14px;border-radius:2px;backdrop-filter:blur(6px)}
.adh-legend-dot{width:8px;height:8px;border-radius:50%;background:#d4a853;box-shadow:0 0 8px rgba(212,168,83,0.7)}
.adh-legend-text{font-family:var(--font-sans);font-size:10px;letter-spacing:0.08em;color:rgba(240,236,228,0.55);text-transform:uppercase}
.adh-tooltip{position:fixed;z-index:9999;pointer-events:none;width:200px;background:rgba(2,10,22,0.94);border:1px solid rgba(212,168,83,0.28);border-radius:4px;overflow:hidden;opacity:0;transform:translateY(8px) scale(0.97);transition:opacity 0.18s,transform 0.18s;backdrop-filter:blur(10px)}
.adh-tooltip.is-visible{opacity:1;transform:translateY(0) scale(1)}
.adh-tt-thumb-wrap{position:relative;height:108px;background:#0d1b2a;overflow:hidden}
.adh-tt-thumb{width:100%;height:100%;object-fit:cover;display:block}
.adh-tt-flag{position:absolute;bottom:7px;right:9px;font-size:18px;line-height:1;text-shadow:0 1px 4px rgba(0,0,0,0.7)}
.adh-tt-body{padding:10px 14px 13px}
.adh-tt-region{font-size:9px;letter-spacing:0.12em;text-transform:uppercase;color:#d4a853;margin:0 0 4px}
.adh-tt-name{font-family:var(--font-serif);font-size:15px;font-weight:500;color:#f0ece4;margin:0 0 6px;line-height:1.25}
.adh-tt-cta{font-size:10px;letter-spacing:0.1em;color:rgba(240,236,228,0.45);text-transform:uppercase}
.dest-filter-bar{padding:20px 0;border-bottom:1px solid rgba(0,0,0,0.08)}
.dest-pagination{margin-top:48px;display:flex;justify-content:center;flex-wrap:wrap;gap:6px}
.dest-pagination a.page-numbers,
.dest-pagination span.page-numbers{display:inline-flex;align-items:center;justify-content:center;min-width:40px;height:40px;padding:0 14px;border:1px solid #d4cfc7;border-radius:2px;font-size:13px;color:#333;text-decoration:none;transition:all .2s}
.dest-pagination a.page-numbers:hover{background:#1a1a1a;border-color:#1a1a1a;color:#fff}
.dest-pagination span.page-numbers.current{background:#1a1a1a;border-color:#1a1a1a;color:#fff}
.dest-pagination span.page-numbers.dots{border:none;color:#aaa;min-width:auto}
.dest-total-info{text-align:center;margin-top:16px;font-size:13px;color:#888}
@media(prefers-reduced-motion:reduce){.adh-ring{animation:none;opacity:0}}
@media(max-width:860px){
  .adh-hero{min-height:auto;display:flex;flex-direction:column}
  .adh-map-wrap{position:relative;height:320px;order:2;flex-shrink:0}
  .adh-svg-map{height:320px}
  .adh-hero-text{position:relative;width:100%;max-width:100%;background:#020810;padding:40px 24px;order:1}
  .adh-legend{bottom:auto;top:10px;right:10px}
}

/* ===================================================
   ANASAYFA — BÖLGE KARTLARİ
   =================================================== */
.regions-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.region-card{position:relative;overflow:hidden;border-radius:var(--radius-sm);display:block;text-decoration:none;background:var(--color-dark-2)}
.region-card:nth-child(-n+3){height:440px}
.region-card:nth-child(n+4){height:290px}
.region-card--no-img .region-card-overlay{background:linear-gradient(135deg,#1c1a16 0%,#0b1220 100%)}
.region-card-img{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform 0.8s cubic-bezier(0.4,0,0.2,1)}
.region-card:hover .region-card-img{transform:scale(1.09)}
.region-card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,0.88) 0%,rgba(0,0,0,0.28) 55%,rgba(0,0,0,0.04) 100%);transition:opacity 0.4s}
.region-card:hover .region-card-overlay{opacity:0.93}
.region-card-body{position:absolute;bottom:0;left:0;right:0;padding:24px 26px 28px;z-index:2}
.region-card-count{display:inline-block;font-size:10px;letter-spacing:0.14em;text-transform:uppercase;color:var(--gold);background:rgba(184,146,74,0.12);border:1px solid rgba(184,146,74,0.3);padding:4px 12px;border-radius:2px;margin-bottom:10px}
.region-card-name{font-family:var(--font-serif);font-size:clamp(22px,2.2vw,30px);color:#fff;font-weight:500;line-height:1.1;margin:0 0 14px;text-shadow:0 2px 18px rgba(0,0,0,0.55)}
.region-card-cta{display:inline-flex;align-items:center;gap:6px;font-size:11px;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0);transition:color 0.35s,gap 0.35s}
.region-card:hover .region-card-cta{color:rgba(255,255,255,0.82);gap:12px}
@media(max-width:900px){
  .regions-grid{grid-template-columns:repeat(2,1fr)}
  .region-card:nth-child(-n+3),.region-card:nth-child(n+4){height:300px}
}
@media(max-width:540px){
  .regions-grid{grid-template-columns:1fr}
  .region-card:nth-child(-n+3),.region-card:nth-child(n+4){height:260px}
}

/* ── Coğrafyaya Göre Keşfet — Fotoğraflı Bölge Kartları ── */
.region-icon-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.region-icon-card{
  position:relative;overflow:hidden;
  border-radius:22px;
  min-height:280px;
  background:#0a1018;
  display:flex;flex-direction:column;justify-content:flex-end;
  text-decoration:none;
  transition:transform .45s cubic-bezier(.16,1,.3,1),box-shadow .45s;
}

/* Arka plan görseli — ayrı div ile scale animasyonu */
.ric-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  transition:transform .65s cubic-bezier(.16,1,.3,1);
  will-change:transform;
}
.region-icon-card:hover .ric-bg{transform:scale(1.07)}

/* Gradient overlay — alt metin okunabilirliği */
.region-icon-card::before{
  content:'';position:absolute;inset:0;z-index:1;
  background:linear-gradient(
    to top,
    rgba(4,9,18,.95) 0%,
    rgba(4,9,18,.6)  38%,
    rgba(4,9,18,.15) 70%,
    transparent      100%
  );
  transition:background .45s;
  pointer-events:none;
}
.region-icon-card:hover::before{
  background:linear-gradient(
    to top,
    rgba(4,9,18,.98) 0%,
    rgba(4,9,18,.68) 40%,
    rgba(4,9,18,.22) 72%,
    transparent      100%
  );
}

/* Hover: hafif parlama & yükseltme */
.region-icon-card:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 70px rgba(0,0,0,.6);
}

/* Sıra numarası — sağ üst köşe */
.ric-num{
  position:absolute;top:18px;right:20px;
  z-index:2;
  font-family:var(--font-sans);
  font-size:11px;font-weight:600;letter-spacing:.14em;
  color:rgba(255,255,255,.45);
}

/* İçerik — sol alt */
.ric-body{
  position:relative;z-index:2;
  padding:22px 26px 26px;
}
.region-icon-name{
  font-family:var(--font-serif);
  font-size:21px;font-weight:500;line-height:1.2;
  color:#fff;
  margin:0 0 7px;
  text-shadow:0 1px 8px rgba(0,0,0,.4);
}
.region-icon-count{
  font-family:var(--font-sans);
  font-size:10px;letter-spacing:.13em;text-transform:uppercase;
  color:rgba(255,255,255,.42);
  margin:0;
}
.region-icon-cta{
  display:inline-flex;align-items:center;gap:5px;
  font-family:var(--font-sans);font-size:10px;
  letter-spacing:.13em;text-transform:uppercase;
  color:var(--gold,#b8924a);
  margin-top:14px;
  opacity:0;transform:translateY(5px);
  transition:opacity .3s,transform .3s;
}
.region-icon-card:hover .region-icon-cta{opacity:1;transform:translateY(0)}

/* Alt altın çizgi */
.ric-accent-bar{
  position:absolute;bottom:0;left:0;z-index:3;
  height:3px;width:0;
  background:var(--gold,#b8924a);
  transition:width .5s cubic-bezier(.16,1,.3,1);
}
.region-icon-card:hover .ric-accent-bar{width:100%}

@media(max-width:900px){
  .region-icon-grid{grid-template-columns:repeat(2,1fr);gap:16px}
}
@media(max-width:500px){
  .region-icon-grid{gap:12px}
  .region-icon-card{min-height:220px}
  .ric-body{padding:18px 20px 22px}
  .region-icon-name{font-size:18px}
}

