/* =====================================================
   AYGUN HUKUK — ANA STİL DOSYASI
   Tasarım: Lacivert + Altın | Playfair Display + Lato
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* ─── DEĞIŞKENLER ─── */
:root {
  --navy:       #0a1628;
  --navy-mid:   #111f3a;
  --navy-light: #1a2f52;
  --gold:       #c9a84c;
  --gold-light: #e2c478;
  --gold-dim:   #8a6f2e;
  --cream:      #f5efe3;
  --cream-dim:  #d4c5a4;
  --white:      #ffffff;
  --text-body:  #c8bfa8;
  --border:     rgba(201,168,76,.18);
  --shadow:     0 8px 40px rgba(0,0,0,.45);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--navy);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  line-height: 1.25;
}

/* ─── YARDIMCI ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 90px 0; }
.section-alt { background: var(--navy-mid); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2rem,4vw,2.8rem); margin-bottom: .75rem; }
.section-header .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: .04em;
}
.section-header .divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem auto 0;
}

.btn {
  display: inline-block;
  padding: .75rem 2rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  background: transparent;
}
.btn:hover, .btn:focus {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,.3);
}
.btn-solid {
  background: var(--gold);
  color: var(--navy);
}
.btn-solid:hover {
  background: var(--gold-light);
  color: var(--navy);
  border-color: var(--gold-light);
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 1.2rem 0;
}
#navbar.scrolled {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(12px);
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  /* Logo koyu arka planda iyi görünsün: gri tonu beyaza çevir */
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}
.nav-logo-img:hover { opacity: .85; }
#navbar.scrolled .nav-logo-img {
  /* Scrolled durumda altın tona çevir */
  filter: brightness(0) saturate(100%) invert(72%) sepia(48%) saturate(500%) hue-rotate(5deg) brightness(95%);
}

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: all .3s;
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.4rem; }
  .nav-links.open + .nav-cta { display: none; }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 70% 50%, rgba(26,47,82,.6) 0%, transparent 70%),
    linear-gradient(135deg, #0a1628 0%, #0f1d35 50%, #0a1628 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: repeating-linear-gradient(
    45deg,
    var(--gold) 0,
    var(--gold) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 20px 20px;
}
.hero-gold-line {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: .3;
  right: 35%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: .06em;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  max-width: 500px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badges {
  position: absolute;
  bottom: 3rem;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 1.5rem;
}
.hero-badge {
  text-align: center;
  padding: 1.2rem 1.8rem;
  border: 1px solid var(--border);
  background: rgba(17,31,58,.7);
  backdrop-filter: blur(8px);
}
.hero-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
}
.hero-badge .lbl {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

@media (max-width: 768px) {
  .hero-badges { display: none; }
}

/* ─── HAKKINDA ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap .frame {
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 1px solid var(--gold);
  opacity: .3;
  pointer-events: none;
}
.about-img-wrap img {
  width: 100%;
  filter: grayscale(20%) contrast(1.05);
}
.about-text h2 { font-size: 2.4rem; margin-bottom: 1.2rem; }
.about-text .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.about-text p { margin-bottom: 1rem; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-value {
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--gold);
  background: rgba(201,168,76,.04);
}
.about-value h4 { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.about-value p { font-size: .88rem; margin: 0; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ─── FAALİYET ALANLARI ─── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--border);
}
.area-card {
  background: var(--navy);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.area-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.area-card:hover::before { transform: scaleX(1); }
.area-card:hover { background: var(--navy-light); }
.area-card:hover .area-num { opacity: .25; }
.area-num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  opacity: .07;
  line-height: 1;
  transition: opacity var(--transition);
}
.area-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--gold);
  font-size: 1.4rem;
}
.area-card h3 { font-size: 1.2rem; color: var(--cream); margin-bottom: .75rem; }
.area-card p { font-size: .9rem; line-height: 1.65; }
.area-card .area-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.2rem;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.area-card .area-link::after { content: '→'; transition: transform .2s; }
.area-card:hover .area-link::after { transform: translateX(4px); }

/* ─── EKİBİMİZ ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.team-card {
  position: relative;
  overflow: hidden;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--navy-light);
}
.team-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: transform .5s, filter .5s;
}
.team-card:hover .team-card-img img { transform: scale(1.04); filter: grayscale(0); }
.team-card-body { padding: 1.5rem; }
.team-card-body h3 { font-size: 1.15rem; color: var(--cream); margin-bottom: .2rem; }
.team-card-body .title { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.team-card-body p { font-size: .88rem; margin-top: .75rem; }
.team-social { display: flex; gap: .5rem; margin-top: 1rem; }
.team-social a {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  color: var(--cream-dim);
  transition: all var(--transition);
}
.team-social a:hover { border-color: var(--gold); color: var(--gold); }

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-light);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.75rem; }
.blog-meta { display: flex; gap: 1rem; margin-bottom: .8rem; align-items: center; }
.blog-cat {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: .2rem .6rem;
}
.blog-date { font-size: .8rem; color: var(--gold-dim); }
.blog-card-body h3 { font-size: 1.2rem; color: var(--cream); margin-bottom: .7rem; line-height: 1.35; }
.blog-card-body p { font-size: .9rem; }
.blog-card-body .read-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.2rem;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-card-body .read-more::after { content: '→'; }
.blog-card:hover .read-more::after { margin-left: 4px; }

/* ─── SORU SOR (İLETİŞİM) ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { font-size: 2rem; margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1.5rem; }
.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}
.info-item .icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.info-item .text .label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .15rem;
}
.info-item .text .value { color: var(--cream-dim); font-size: .92rem; }

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 2px;
  margin-top: 2rem;
  transition: all var(--transition);
  width: fit-content;
}
.whatsapp-btn:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }
.whatsapp-btn svg { width: 20px; height: 20px; fill: #fff; }

.contact-form { background: var(--navy-mid); padding: 2.5rem; border: 1px solid var(--border); }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,.25);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-msg {
  padding: 1rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
  font-size: .9rem;
}
.form-msg.success { background: rgba(109,187,122,.1); border: 1px solid #6dbb7a; color: #6dbb7a; }
.form-msg.error   { background: rgba(200,60,60,.1); border: 1px solid #c83c3c; color: #e07070; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── KONUM ─── */
.location-wrap {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3rem;
  align-items: start;
}
.map-frame {
  border: 2px solid var(--border);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: invert(.85) hue-rotate(180deg) saturate(.7); }

@media (max-width: 768px) {
  .location-wrap { grid-template-columns: 1fr; }
}

/* ─── FOOTER ─── */
footer {
  background: #060e1c;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; max-width: 280px; }
.footer-brand .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  margin-top: .5rem;
}
footer h4 {
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: .6rem; }
footer ul li a { font-size: .88rem; color: var(--text-body); }
footer ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--gold-dim);
  flex-wrap: wrap;
  gap: .5rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─── SAYFA BAŞLIKLARI (İç sayfalar) ─── */
.page-hero {
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--navy-mid);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
.page-hero .breadcrumb {
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--gold-dim);
  margin-top: .5rem;
}
.page-hero .breadcrumb a { color: var(--gold-dim); }
.page-hero .breadcrumb a:hover { color: var(--gold); }

/* ─── BLOG YAZISI ─── */
.post-content {
  max-width: 760px;
  margin: 0 auto;
}
.post-content h1 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 1rem; }
.post-content .post-meta { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.post-content .post-meta span { font-size: .82rem; color: var(--gold-dim); }
.post-content .cover { margin-bottom: 2.5rem; border: 1px solid var(--border); }
.post-content .body { font-size: 1.02rem; line-height: 1.8; }
.post-content .body h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; }
.post-content .body h3 { font-size: 1.3rem; margin: 2rem 0 .8rem; }
.post-content .body p { margin-bottom: 1.2rem; }
.post-content .body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  background: rgba(201,168,76,.04);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin: 2rem 0;
}

/* ─── ADMİN PANEL ─── */
.admin-body {
  background: #0d1a2e;
  min-height: 100vh;
}
.admin-header {
  background: #060e1c;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.admin-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-sidebar {
  width: 240px;
  background: #060e1c;
  border-right: 1px solid var(--border);
  min-height: calc(100vh - 62px);
  padding: 1.5rem 0;
  position: fixed;
  top: 62px;
}
.admin-sidebar a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.5rem;
  font-size: .85rem;
  color: var(--text-body);
  transition: all var(--transition);
}
.admin-sidebar a:hover, .admin-sidebar a.active {
  color: var(--gold);
  background: rgba(201,168,76,.05);
  border-right: 2px solid var(--gold);
}
.admin-main { margin-left: 240px; padding: 2.5rem; }
.admin-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.admin-card h2 { font-size: 1.3rem; margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.admin-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.admin-table th {
  text-align: left;
  padding: .75rem 1rem;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  font-family: 'Lato', sans-serif;
}
.admin-table td {
  padding: .85rem 1rem;
  border-bottom: 1px solid rgba(201,168,76,.07);
  color: var(--text-body);
}
.admin-table tr:hover td { background: rgba(201,168,76,.03); }
.badge {
  display: inline-block;
  padding: .15rem .6rem;
  font-size: .7rem;
  letter-spacing: .05em;
}
.badge-published { background: rgba(109,187,122,.15); color: #6dbb7a; }
.badge-draft     { background: rgba(201,168,76,.15); color: var(--gold); }

/* ─── ANİMASYONLAR ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp .7s ease forwards;
}
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .25s; }
.fade-up-3 { animation-delay: .4s; }
.fade-up-4 { animation-delay: .55s; }

/* ─── UTILITY ─── */
.text-gold   { color: var(--gold); }
.text-cream  { color: var(--cream); }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* WhatsApp sticky */
.wa-sticky {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  transition: transform .3s, box-shadow .3s;
}
.wa-sticky:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.5); }
.wa-sticky svg { width: 28px; height: 28px; fill: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
