/* =============================================================
   HTC VIP TRANSFER — Kurumsal Stil Dosyası (style.css)
   Renk paleti "Logo Htc.pdf" baz alınarak oluşturulmuştur:
   Siyah + Altın/Şampanya gradyan + Krem/Beyaz.
   Bootstrap 5 üzerine kurulu özelleştirmeler.
   ============================================================= */

/* -------------------------------------------------------------
   1. Tasarım Değişkenleri (Design Tokens)
   ------------------------------------------------------------- */
:root {
  /* Marka renkleri */
  --htc-black:      #0e0e0e;
  --htc-ink:        #161616;
  --htc-ink-2:      #1f1f1f;
  --htc-charcoal:   #2a2a2a;

  --htc-gold-light: #e7d6a6;
  --htc-gold:       #c9a85c;
  --htc-gold-deep:  #a8823f;
  --htc-gold-grad:  linear-gradient(135deg, #e7d6a6 0%, #c9a85c 45%, #a8823f 100%);

  --htc-cream:      #f7f4ec;
  --htc-white:      #ffffff;

  --htc-text:       #1c1c1c;
  --htc-text-muted: #6b6b6b;
  --htc-text-light: #cfc9bd;

  --htc-border:     #e7e2d6;
  --htc-border-dark:#333030;

  /* Tipografi */
  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Geometri */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Gölgeler */
  --shadow-sm: 0 4px 14px rgba(14, 14, 14, .06);
  --shadow:    0 14px 40px rgba(14, 14, 14, .10);
  --shadow-lg: 0 26px 70px rgba(14, 14, 14, .18);
  --shadow-gold: 0 12px 30px rgba(168, 130, 63, .28);

  --topbar-h: 42px;
  --transition: .35s cubic-bezier(.22, .61, .36, 1);
}

/* -------------------------------------------------------------
   2. Temel (Base) Stiller
   ------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--htc-text);
  background: var(--htc-white);
  margin: 0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--htc-black);
}

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

img { max-width: 100%; }

.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }

/* Sabit navbar altında kalmasın diye anchor hedeflerine boşluk */
:target { scroll-margin-top: 110px; }
[id] { scroll-margin-top: 110px; }

.bg-dark-htc  { background: var(--htc-black); color: var(--htc-text-light); }
.bg-ink       { background: var(--htc-ink); color: var(--htc-text-light); }
.bg-cream     { background: var(--htc-cream); }

/* Altın metin yardımcı sınıfı */
.text-gold { color: var(--htc-gold-deep) !important; }
.gold-grad-text {
  background: var(--htc-gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* -------------------------------------------------------------
   3. Bölüm Başlıkları
   ------------------------------------------------------------- */
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head.start { text-align: left; margin-left: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--htc-gold-deep);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--htc-gold-grad);
}
.section-head.center .eyebrow::after {
  content: "";
  width: 34px; height: 2px;
  background: var(--htc-gold-grad);
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.bg-dark-htc .section-title,
.bg-ink .section-title { color: var(--htc-white); }

.section-sub { color: var(--htc-text-muted); font-size: 1.05rem; margin: 0; }
.bg-dark-htc .section-sub,
.bg-ink .section-sub { color: var(--htc-text-light); }

/* -------------------------------------------------------------
   4. Butonlar
   ------------------------------------------------------------- */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--radius-pill);
  padding: .85rem 1.8rem;
  transition: all var(--transition);
  border: 0;
}
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.02rem; }
.btn i { font-size: .95em; }

.btn-gold {
  background: var(--htc-gold-grad);
  color: var(--htc-black);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { color: var(--htc-black); transform: translateY(-2px); filter: brightness(1.06); }

.btn-dark-htc { background: var(--htc-black); color: var(--htc-white); }
.btn-dark-htc:hover { background: var(--htc-ink-2); color: var(--htc-gold-light); transform: translateY(-2px); }

.btn-outline-gold {
  background: transparent;
  color: var(--htc-gold-deep);
  border: 1.5px solid var(--htc-gold);
}
.btn-outline-gold:hover { background: var(--htc-gold-grad); color: var(--htc-black); }

.btn-outline-light {
  background: transparent;
  color: var(--htc-white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-light:hover { background: var(--htc-white); color: var(--htc-black); }

.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5a; color: #fff; transform: translateY(-2px); }

/* -------------------------------------------------------------
   5. Üst Bilgilendirme Barı (Topbar)
   ------------------------------------------------------------- */
.topbar {
  background: var(--htc-black);
  color: var(--htc-text-light);
  font-size: .85rem;
  min-height: var(--topbar-h);
  border-bottom: 1px solid rgba(201,168,92,.18);
}
.topbar a { color: var(--htc-text-light); }
.topbar a:hover { color: var(--htc-gold-light); }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar .tb-item i { color: var(--htc-gold); }

/* Dil seçici */
.lang-switch { display: inline-flex; gap: 4px; }
.lang-switch button {
  background: transparent;
  border: 0;
  color: var(--htc-text-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}
.lang-switch button:hover { color: var(--htc-gold-light); }
.lang-switch button.active {
  background: var(--htc-gold-grad);
  color: var(--htc-black);
}

/* -------------------------------------------------------------
   6. Navbar + Marka (Logo)
   ------------------------------------------------------------- */
.site-navbar {
  background: rgba(14,14,14,.96);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  border-bottom: 1px solid rgba(201,168,92,.14);
}
.site-navbar.scrolled { box-shadow: var(--shadow); }

.navbar .nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .94rem;
  color: var(--htc-text-light) !important;
  padding: .6rem 1rem !important;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem; right: 1rem; bottom: .35rem;
  height: 2px;
  background: var(--htc-gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--htc-white) !important; }
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }

/* CSS ile yeniden üretilmiş logo (koyu/açık zeminde çalışır) */
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-mark {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: .04em;
  color: var(--htc-white);
}
.brand-mark .c {
  background: var(--htc-gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-sub {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .58rem;
  letter-spacing: .42em;
  color: var(--htc-gold-light);
  margin-top: 4px;
  padding-left: 3px;
}
.navbar-light-brand .brand-mark { color: var(--htc-black); }
.navbar-light-brand .brand-sub { color: var(--htc-gold-deep); }

/* logo.png görseli — olduğu gibi gösterilir (altın HTC koyu zeminde okunur) */
.brand-logo { height: 48px; width: auto; display: block; }
.footer-logo .brand-logo-light { height: 52px; }

/* Kurumsal dropdown menü */
.dropdown-menu-htc {
  background: var(--htc-ink);
  border: 1px solid rgba(201,168,92,.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  margin-top: 10px;
}
.dropdown-menu-htc .dropdown-item {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .9rem;
  color: var(--htc-text-light);
  border-radius: var(--radius-sm);
  padding: .55rem .8rem;
}
.dropdown-menu-htc .dropdown-item:hover,
.dropdown-menu-htc .dropdown-item:focus {
  background: rgba(201,168,92,.14);
  color: var(--htc-gold-light);
}
.navbar .nav-link.dropdown-toggle::after { vertical-align: middle; margin-left: 6px; border-top-color: var(--htc-gold); }

/* Masaüstünde dropdown hover ile açılsın (tıklama gerekmez) */
@media (min-width: 1200px) {
  .site-navbar .nav-item.dropdown:hover > .dropdown-menu { display: block; margin-top: 4px; }
  .dropdown-menu-htc::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; } /* hover köprüsü */
}

/* Rafine "Hemen Rezervasyon Yap" butonu */
.reservation-cta {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .03em;
  color: var(--htc-gold-light);
  background: transparent;
  border: 1.5px solid rgba(201,168,92,.55);
  border-radius: var(--radius-pill);
  padding: .62rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}
.reservation-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--htc-gold-grad);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--transition);
  z-index: -1;
}
.reservation-cta:hover {
  color: var(--htc-black);
  border-color: transparent;
  transform: translateY(-2px);
}
.reservation-cta:hover::before { transform: scaleX(1); transform-origin: left; }

.navbar-toggler { border-color: rgba(201,168,92,.4); }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c9a85c' stroke-width='2.2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* -------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--htc-black);
  overflow: hidden;
}
/* Arka plan slider — otomatik crossfade + hafif zoom */
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  opacity: 0;
  animation: heroFade 21s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 7s; }
.hero-slide:nth-child(3) { animation-delay: 14s; }
@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.06); }
  4%   { opacity: 1; }
  28%  { opacity: 1; }
  33%  { opacity: 0; transform: scale(1); }
  100% { opacity: 0; }
}
/* Karartma overlay (metin okunurluğu) */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.72) 45%, rgba(10,10,10,.4) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(circle at 80% 120%, rgba(201,168,92,.22), transparent 55%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; }
  .hero-slide:nth-child(1) { opacity: 1; }
}
.hero-inner { position: relative; z-index: 2; padding: 120px 0 90px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero h1 .gold-grad-text { display: inline-block; }
.hero-lead { font-size: 1.18rem; color: var(--htc-text-light); max-width: 600px; margin-bottom: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 46px; }
.hero-badge { display: flex; align-items: center; gap: 12px; }
.hero-badge i { color: var(--htc-gold); font-size: 1.6rem; }
.hero-badge strong { display: block; font-family: var(--font-heading); font-size: 1.25rem; color: #fff; }
.hero-badge span { font-size: .82rem; color: var(--htc-text-light); }

/* İç sayfa hero (page header) */
.page-hero {
  position: relative;
  color: #fff;
  padding: 150px 0 70px;
  background:
    linear-gradient(rgba(10,10,10,.85), rgba(10,10,10,.78)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.breadcrumb-htc { font-size: .9rem; }
.breadcrumb-htc a { color: var(--htc-gold-light); }
.breadcrumb-htc .sep { color: var(--htc-text-light); margin: 0 8px; }
.breadcrumb-htc .current { color: var(--htc-text-light); }

/* -------------------------------------------------------------
   8. Rezervasyon Formu (kart)
   ------------------------------------------------------------- */
.reservation-card {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  border-top: 4px solid transparent;
  border-image: var(--htc-gold-grad) 1;
  color: var(--htc-text); /* hero gibi koyu zeminlerde metin/checkbox beyaz kalmasın */
}
.reservation-card .form-check-label { color: var(--htc-text); }
.reservation-card .form-check-label a { color: var(--htc-gold-deep); }
.reservation-card .form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .82rem;
  color: var(--htc-text);
  margin-bottom: 6px;
}
.form-control, .form-select {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--htc-border);
  padding: .7rem .9rem;
  font-size: .95rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--htc-gold);
  box-shadow: 0 0 0 .2rem rgba(201,168,92,.18);
}
.input-icon { position: relative; }
.input-icon i {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--htc-gold-deep); font-size: .9rem;
}
.input-icon .form-control,
.input-icon .form-select { padding-left: 38px; }

/* Tahmini fiyat kutusu */
.estimate-box {
  background: var(--htc-black);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 22px;
  display: none;
}
.estimate-box.show { display: block; animation: fadeUp .4s ease; }
.estimate-box .est-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed rgba(255,255,255,.12); }
.estimate-box .est-row:last-child { border-bottom: 0; }
.estimate-box .est-price { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 700; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* -------------------------------------------------------------
   9. Harita / Yol Tahmini
   ------------------------------------------------------------- */
#route-map, .map-canvas {
  width: 100%;
  height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow);
}
.leaflet-routing-container { display: none; } /* yerleşik paneli gizle, kendi UI'mizi gösteriyoruz */

.route-result {
  background: #fff;
  border: 1px solid var(--htc-border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.route-stat { text-align: center; padding: 10px; }
.route-stat i { color: var(--htc-gold-deep); font-size: 1.5rem; }
.route-stat .val { font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem; display: block; }
.route-stat .lbl { font-size: .8rem; color: var(--htc-text-muted); }

/* -------------------------------------------------------------
   10. Hizmet & Genel Kartlar
   ------------------------------------------------------------- */
.svc-card {
  background: #fff;
  border: 1px solid var(--htc-border);
  border-radius: var(--radius);
  padding: 32px 26px;
  height: 100%;
  transition: all var(--transition);
}
.svc-card .ic {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--htc-cream);
  color: var(--htc-gold-deep);
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.svc-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.svc-card p { color: var(--htc-text-muted); font-size: .95rem; margin: 0; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover .ic { background: var(--htc-gold-grad); color: var(--htc-black); }

/* -------------------------------------------------------------
   11. Araç Filosu Kartları
   ------------------------------------------------------------- */
.fleet-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--htc-border);
  transition: all var(--transition);
  height: 100%;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fleet-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(135deg, #f7f4ec, #ece6d6); display: grid; place-items: center; }
.fleet-media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .6s ease; }
.fleet-card:hover .fleet-media img { transform: scale(1.07); }
.fleet-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--htc-black); color: var(--htc-gold-light);
  font-family: var(--font-heading); font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; padding: 5px 12px; border-radius: var(--radius-pill);
}
.fleet-body { padding: 22px 22px 24px; }
.fleet-body h3 { font-size: 1.25rem; margin-bottom: 6px; }
.fleet-specs { display: flex; flex-wrap: wrap; gap: 10px 16px; margin: 14px 0 18px; padding: 0; list-style: none; }
.fleet-specs li { font-size: .85rem; color: var(--htc-text-muted); display: flex; align-items: center; gap: 6px; }
.fleet-specs li i { color: var(--htc-gold-deep); }

/* -------------------------------------------------------------
   12. Neden Biz (özellikler) & İstatistikler
   ------------------------------------------------------------- */
.feature {
  display: flex; gap: 16px; padding: 6px 0;
}
.feature .ic {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(201,168,92,.14);
  color: var(--htc-gold-light);
  font-size: 1.25rem;
}
.feature h4 { font-size: 1.05rem; margin: 0 0 4px; color: #fff; }
.feature p { font-size: .9rem; color: var(--htc-text-light); margin: 0; }

.stat-strip { border-top: 1px solid var(--htc-border-dark); }
.stat .num { font-family: var(--font-heading); font-weight: 800; font-size: 2.4rem; }
.stat .lbl { color: var(--htc-text-light); font-size: .9rem; }

/* -------------------------------------------------------------
   13. Bölgeler / Popüler Rotalar
   ------------------------------------------------------------- */
.route-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.route-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.route-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.9), rgba(10,10,10,.1));
}
.route-card .rc-body { position: relative; z-index: 2; padding: 22px; width: 100%; }
.route-card h3 { color: #fff; font-size: 1.2rem; margin: 0 0 6px; }
.route-card .price { color: var(--htc-gold-light); font-weight: 600; font-family: var(--font-heading); }
.route-card:hover img { transform: scale(1.08); }

/* -------------------------------------------------------------
   14. Online Ödeme / Sanal POS
   ------------------------------------------------------------- */
.pay-method {
  border: 1.5px solid var(--htc-border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  height: 100%;
  background: #fff;
  transition: all var(--transition);
}
.pay-method i { font-size: 2rem; color: var(--htc-gold-deep); margin-bottom: 12px; }
.pay-method:hover { border-color: var(--htc-gold); box-shadow: var(--shadow); }
.card-brands { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; font-size: 2rem; color: var(--htc-text-muted); }
.secure-badge { display: inline-flex; align-items: center; gap: 8px; color: #1a7f44; font-weight: 600; font-size: .9rem; }

/* Kart önizleme (ödeme adımı arayüzü) */
.credit-card {
  background: linear-gradient(135deg, #1a1a1a, #2c2a26);
  border: 1px solid rgba(201,168,92,.4);
  border-radius: 18px;
  color: #fff;
  padding: 26px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1.6/1;
  display: flex; flex-direction: column; justify-content: space-between;
}
.credit-card .cc-chip { width: 44px; height: 32px; border-radius: 7px; background: var(--htc-gold-grad); }
.credit-card .cc-number { font-family: var(--font-heading); letter-spacing: .14em; font-size: 1.25rem; }

/* -------------------------------------------------------------
   15. Yorumlar (Testimonial)
   ------------------------------------------------------------- */
.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--htc-border);
  height: 100%;
}
.testimonial .stars { color: var(--htc-gold); margin-bottom: 14px; }
.testimonial p { font-size: 1.02rem; color: var(--htc-text); font-style: italic; }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--htc-gold-grad); color: var(--htc-black);
  display: grid; place-items: center; font-family: var(--font-heading); font-weight: 700;
}
.testimonial .who strong { display: block; font-size: .95rem; }
.testimonial .who span { font-size: .82rem; color: var(--htc-text-muted); }

/* -------------------------------------------------------------
   16. SSS (Accordion)
   ------------------------------------------------------------- */
.accordion-htc .accordion-item { border: 1px solid var(--htc-border); border-radius: var(--radius) !important; margin-bottom: 14px; overflow: hidden; }
.accordion-htc .accordion-button {
  font-family: var(--font-heading); font-weight: 600; font-size: 1.02rem; color: var(--htc-black);
  padding: 1.1rem 1.3rem;
}
.accordion-htc .accordion-button:not(.collapsed) { background: var(--htc-cream); color: var(--htc-gold-deep); box-shadow: none; }
.accordion-htc .accordion-button:focus { box-shadow: none; border-color: var(--htc-gold); }
.accordion-htc .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='%23a8823f' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
.accordion-htc .accordion-body { color: var(--htc-text-muted); }

/* -------------------------------------------------------------
   17. Blog Kartları
   ------------------------------------------------------------- */
.blog-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--htc-border); height: 100%;
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-media { aspect-ratio: 16/9; overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-media img { transform: scale(1.07); }
.blog-body { padding: 24px; }
.blog-meta { font-size: .8rem; color: var(--htc-gold-deep); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.blog-body h3 { font-size: 1.18rem; margin: 10px 0; }
.blog-body p { color: var(--htc-text-muted); font-size: .93rem; }

/* -------------------------------------------------------------
   18. İletişim
   ------------------------------------------------------------- */
.contact-card { display: flex; gap: 16px; align-items: flex-start; }
.contact-card .ic {
  width: 50px; height: 50px; border-radius: 14px; flex: 0 0 auto;
  display: grid; place-items: center; background: var(--htc-gold-grad); color: var(--htc-black); font-size: 1.2rem;
}
.contact-card h4 { font-size: 1rem; margin: 0 0 2px; }
.contact-card a, .contact-card p { color: var(--htc-text-muted); margin: 0; }
.map-iframe { width: 100%; height: 380px; border: 0; border-radius: var(--radius); filter: grayscale(.2); }

/* -------------------------------------------------------------
   19. Footer
   ------------------------------------------------------------- */
.site-footer { background: var(--htc-black); color: rgba(255,255,255,.7); padding: 72px 0 0; }
.site-footer h5 {
  color: #fff; font-size: 1.05rem; margin-bottom: 1.4rem; font-weight: 600;
  position: relative; padding-bottom: 12px;
}
.site-footer h5::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 36px; height: 2px; background: var(--htc-gold-grad);
}
.footer-logo img { height: 50px; margin-bottom: 1.1rem; }
.footer-about { font-size: .92rem; max-width: 330px; line-height: 1.7; }

/* Link listeleri — başında › işareti */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.6); font-size: .9rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.footer-links a::before { content: "›"; color: var(--htc-gold); font-size: 1.1rem; line-height: 1; }
.footer-links a:hover { color: var(--htc-gold-light); padding-left: 5px; }

/* Sosyal ikonlar */
.footer-social { display: flex; gap: 10px; margin-top: 1.5rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: grid; place-items: center;
  color: rgba(255,255,255,.7); transition: all var(--transition);
}
.footer-social a:hover { background: var(--htc-gold); border-color: var(--htc-gold); color: #fff; transform: translateY(-3px); }

/* TÜRSAB rozeti */
.footer-tursab { display: inline-block; margin-top: 22px; border-radius: 8px; overflow: hidden; transition: transform var(--transition); }
.footer-tursab img { width: 170px; height: auto; display: block; }
.footer-tursab:hover { transform: translateY(-3px); }

/* Alt bant */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; margin-top: 3rem; font-size: .85rem; }
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.6); }
.footer-bottom-links { display: flex; gap: 22px; justify-content: flex-end; flex-wrap: wrap; }
.footer-bottom-links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--htc-gold-light); }
@media (max-width: 767.98px) { .footer-bottom-links { justify-content: flex-start; margin-top: 10px; } }

/* -------------------------------------------------------------
   20. Sabit WhatsApp Butonu (sayfa boyunca solda)
   ------------------------------------------------------------- */
.wa-float {
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1050;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.85rem;
  box-shadow: 0 10px 30px rgba(37,211,102,.5);
  animation: wa-pulse 2.4s infinite;
  transition: transform var(--transition);
}
.wa-float:hover { color: #fff; transform: translateY(-50%) scale(1.08); }
.wa-float .wa-tip {
  position: absolute; left: 74px; white-space: nowrap;
  background: var(--htc-black); color: #fff; font-size: .82rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm);
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
  box-shadow: var(--shadow);
}
.wa-float:hover .wa-tip { opacity: 1; }

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Back to top butonu (fa-chevron-up) */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--htc-gold-grad); color: var(--htc-black);
  border: 0; display: none; place-items: center;
  font-size: 1.05rem; cursor: pointer; z-index: 1040;
  box-shadow: var(--shadow-gold); transition: all var(--transition);
}
.back-to-top.visible { display: grid; }
.back-to-top:hover { transform: translateY(-3px); filter: brightness(1.05); }

/* Telefon sabit buton (mobil için ek) */
.call-float {
  position: fixed; left: 22px; top: calc(50% + 74px); transform: translateY(-50%);
  z-index: 1050; width: 60px; height: 60px; border-radius: 50%;
  background: var(--htc-black); color: var(--htc-gold-light);
  display: grid; place-items: center; font-size: 1.5rem;
  box-shadow: var(--shadow); border: 1px solid rgba(201,168,92,.4);
  transition: transform var(--transition);
}
.call-float:hover { color: var(--htc-gold-light); transform: translateY(-50%) scale(1.08); }

/* -------------------------------------------------------------
   21. Çeşitli Yardımcılar & Animasyon
   ------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

.divider-gold { width: 70px; height: 3px; background: var(--htc-gold-grad); border-radius: 3px; }

.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li { padding: 7px 0 7px 30px; position: relative; }
.list-check li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 7px; color: var(--htc-gold-deep);
}

.toast-htc {
  position: fixed; bottom: 24px; right: 24px; z-index: 1080;
  background: var(--htc-black); color: #fff; border-left: 4px solid var(--htc-gold);
  padding: 16px 22px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  transform: translateY(30px); opacity: 0; transition: all var(--transition); max-width: 360px;
}
.toast-htc.show { transform: none; opacity: 1; }

/* Cookie bandı */
.cookie-bar {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 1070; background: var(--htc-black); color: var(--htc-text-light);
  border: 1px solid rgba(201,168,92,.3); border-radius: var(--radius-pill);
  padding: 10px 12px 10px 20px; box-shadow: var(--shadow-lg);
  width: min(720px, calc(100% - 24px)); display: none;
  align-items: center; gap: 14px; flex-wrap: nowrap; justify-content: space-between;
}
.cookie-bar.show { display: flex; }
.cookie-bar p { margin: 0; font-size: .82rem; flex: 1 1 auto; line-height: 1.35; }
.cookie-actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.cookie-link { color: var(--htc-gold-light); font-size: .8rem; white-space: nowrap; }
.cookie-link:hover { color: #fff; }
.cookie-btn { padding: .4rem 1.1rem; font-size: .82rem; white-space: nowrap; }
@media (max-width: 575.98px) {
  .cookie-bar { border-radius: var(--radius); padding: 12px 14px; }
  .cookie-bar p { font-size: .78rem; }
  .cookie-btn { padding: .35rem .9rem; font-size: .78rem; }
}

/* -------------------------------------------------------------
   22. Responsive
   ------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .section { padding: 64px 0; }
  .hero { min-height: auto; }
  .hero-inner { padding: 60px 0 50px; }
  .navbar-collapse {
    background: var(--htc-ink); border-radius: var(--radius);
    padding: 16px; margin-top: 12px;
  }
  .site-navbar .reservation-cta { margin-top: 12px; }
}

@media (max-width: 575.98px) {
  .section { padding: 52px 0; }
  .wa-float { width: 54px; height: 54px; font-size: 1.6rem; left: 16px; }
  .call-float { width: 54px; height: 54px; font-size: 1.35rem; left: 16px; top: calc(50% + 66px); }
  .reservation-card { padding: 20px; }
  .topbar .tb-contacts { display: none !important; }
  .hero-badges { gap: 18px; }
}
