/* ===== Vəkil.info — Ümumi Stil Faylı ===== */

:root {
  --navy: #14233e;
  --navy-light: #1d3357;
  --gold: #b8925a;
  --gold-light: #d9bb8c;
  --cream: #f7f5f0;
  --white: #ffffff;
  --gray: #6b6f7b;
  --gray-light: #e7e5df;
  --text: #1c1e26;
  --radius: 4px;
  --max-width: 1180px;
  --shadow: 0 10px 30px rgba(20, 35, 62, 0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }

p { color: var(--gray); }

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

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--gray-light);
}

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

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 9px;
}
.logo span { color: var(--gold); }
.logo svg { flex-shrink: 0; }

.main-nav { display: flex; align-items: center; gap: 22px; }

.lang-switch { position: relative; display: flex; align-items: center; font-size: 0.85rem; font-weight: 700; font-family: "Inter", sans-serif; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: var(--navy);
  padding: 6px 2px;
}
.lang-current .arrow { font-size: 0.65rem; color: var(--gray); transition: transform 0.2s ease; }
.lang-switch.open .lang-current .arrow { transform: rotate(180deg); }
.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  min-width: 90px;
  padding: 8px 0;
  border: 1px solid var(--gray-light);
  z-index: 60;
}
.lang-switch.open .lang-dropdown { display: block; }
.lang-dropdown a {
  display: block;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
}
.lang-dropdown a.active { color: var(--gold); }
.lang-dropdown a:hover { background: var(--cream); color: var(--navy); }

.main-nav ul { display: flex; gap: 19px; list-style: none; }

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--gold); }

.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 10px 0;
  border: 1px solid var(--gray-light);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 400;
}
.dropdown a:hover { background: var(--cream); color: var(--gold); }

.header-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold); color: var(--navy) !important; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy) url("hero-lines.svg") center/cover no-repeat;
}
.hero-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.hero-eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
  display: inline-block;
}
.hero .hero-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 6px;
  display: block;
}
.hero .hero-role {
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 24px;
  display: block;
}
.hero h1 { color: var(--white); max-width: 720px; margin-bottom: 20px; }
.hero p.lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Article body ---------- */
.article-body h2 { font-size: 1.35rem; margin-top: 38px; margin-bottom: 12px; }
.article-body h2:first-child { margin-top: 0; }
.article-body p { color: var(--gray); line-height: 1.75; }

/* ---------- Foreword ---------- */
.foreword-section { background: var(--white); padding: 80px 0; }
.foreword-grid { display: grid; grid-template-columns: 200px 1fr; gap: 50px; align-items: center; }
.foreword-photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 50%; box-shadow: var(--shadow); border: 3px solid var(--cream); }
.foreword-content .eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 700; margin-bottom: 16px; display: block; }
.foreword-quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--navy);
  position: relative;
  padding-left: 34px;
}
.foreword-quote::before {
  content: "\201C";
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-size: 3.6rem;
  color: var(--gold);
  position: absolute;
  left: -8px;
  top: -18px;
  line-height: 1;
}
.foreword-sign { margin-top: 22px; }
.sign-name { font-family: "Playfair Display", serif; font-style: italic; font-weight: 700; font-size: 1.25rem; color: var(--gold); display: block; }
.sign-role { color: var(--gray); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.6); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--gold); color: var(--navy); }

/* ---------- Sections ---------- */
section { padding: 90px 0; }
.section-alt { background: var(--cream); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.7); }

.section-head { max-width: 640px; margin-bottom: 50px; }
.section-head .eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Grid / Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card .num {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.card p:last-child { margin-bottom: 0; }

.service-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card img { width: 100%; height: 190px; object-fit: cover; display: block; }
.service-card .body { padding: 26px; }
.service-card h3 { margin-bottom: 8px; }
.service-card .arrow { color: var(--gold); font-weight: 600; font-size: 0.9rem; margin-top: 12px; display: inline-block; }
.service-card:hover .arrow { text-decoration: underline; }

/* ---------- About / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); position: relative; z-index: 1; transition: transform 0.6s ease; }
.split .img-wrap { position: relative; overflow: visible; }
.split .img-wrap:hover img { transform: scale(1.025) translateY(-2px); }
.split .img-wrap::before {
  content: "";
  position: absolute;
  top: -18px; left: -18px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
  transition: transform 0.6s ease;
}
.split .img-wrap:hover::before { transform: translate(-6px, -6px); }
.img-wrap { animation: float-y 6s ease-in-out infinite; }
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.stat-row { display: flex; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.stat b {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--navy);
  display: block;
}
.stat span { color: var(--gray); font-size: 0.9rem; }

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 56px 0;
}
.stats-bar .grid { grid-template-columns: repeat(4, 1fr); text-align: center; gap: 20px; }
.stats-bar .stat-item .icon-badge { margin: 0 auto 18px; }
.stats-bar .stat-item b {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: var(--white);
  display: block;
}
.stats-bar .stat-item span {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ---------- Icon badge / icon service cards ---------- */
.icon-badge {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), background 0.35s ease;
}
.icon-badge svg { width: 30px; height: 30px; color: var(--gold); transition: color 0.35s ease; }
.service-icon-card:hover .icon-badge,
.card:hover .icon-badge,
.stat-item:hover .icon-badge {
  transform: scale(1.1) rotate(-6deg);
  background: var(--gold);
}
.service-icon-card:hover .icon-badge svg,
.card:hover .icon-badge svg,
.stat-item:hover .icon-badge svg { color: var(--navy); }

.service-icon-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-icon-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-icon-card .icon-badge { margin: 0 auto 22px; }
.service-icon-card h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.service-icon-card p { font-size: 0.92rem; margin-bottom: 14px; }
.service-icon-card .arrow {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}
.service-icon-card:hover .arrow { text-decoration: underline; }

/* ---------- Partner logos ---------- */
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; align-items: center; max-width: 780px; margin: 0 auto; }
.partner-logo {
  aspect-ratio: 3 / 2;
  border: 1px dashed var(--gray-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  padding: 12px;
}
.partner-logo img {
  max-width: 100%; max-height: 56px; object-fit: contain;
  filter: grayscale(100%); opacity: 0.75;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.partner-logo:hover img { filter: none; opacity: 1; }
.partner-logo.placeholder { color: var(--gray); font-size: 0.78rem; text-align: center; }

/* ---------- FAQ ---------- */
.faq-section { background: var(--navy); color: var(--white); }
.faq-section .section-head .eyebrow { color: var(--gold-light); }
.faq-section h2 { color: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold-light);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: rgba(255,255,255,0.75);
  margin-top: 14px;
  font-size: 0.95rem;
}

/* ---------- List / checks ---------- */
.check-list { list-style: none; margin-top: 18px; }
.check-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
  color: var(--gray);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Pricing table ---------- */
.price-table { width: 100%; border-collapse: collapse; margin-top: 20px; background: var(--white); }
.price-table th, .price-table td {
  border: 1px solid var(--gray-light);
  padding: 16px 18px;
  text-align: left;
  font-size: 0.95rem;
}
.price-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}
.price-table tr:nth-child(even) { background: var(--cream); }
.price-note {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--gray);
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

/* ---------- News / Decisions ---------- */
.news-category { margin-bottom: 56px; }
.news-category:last-child { margin-bottom: 0; }
.news-category-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.news-category-head h2 { margin: 0; font-size: 1.5rem; }
.notice-card {
  border: 1px dashed var(--gold-light);
  border-radius: var(--radius);
  padding: 34px;
  text-align: center;
  color: var(--gray);
  background: var(--cream);
}
.notice-card p { margin: 0; }

.meclis-subhead { font-size: 1.05rem; margin: 26px 0 14px; color: var(--navy); font-family: "Playfair Display", serif; }
.meclis-live-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; margin-left: 10px; }
.meclis-live-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #2fbf4f; display: inline-block; animation: meclis-pulse 1.6s ease-in-out infinite; }
@keyframes meclis-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.meclis-list { display: flex; flex-direction: column; gap: 12px; }
.meclis-item {
  display: block; padding: 16px 20px; border: 1px solid var(--gray-light);
  border-radius: var(--radius); background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.meclis-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.meclis-item .meclis-date {
  display: block; font-size: 0.76rem; color: var(--gold); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px;
}
.meclis-item .meclis-title { color: var(--navy); font-weight: 600; font-size: 0.95rem; line-height: 1.45; }
.meclis-error { color: var(--gray); font-size: 0.9rem; padding: 18px; text-align: center; border: 1px dashed var(--gray-light); border-radius: var(--radius); background: var(--cream); }
.meclis-error a { color: var(--gold); font-weight: 600; text-decoration: underline; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card img {
  width: 150px; height: 150px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 18px; display: block;
  border: 3px solid var(--gold-light);
}
.team-card h3 { margin-bottom: 4px; }
.team-card .role { color: var(--gold); font-size: 0.88rem; font-weight: 600; margin-bottom: 10px; display: block; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h3 { color: var(--white); margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-item .icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item b { display: block; color: var(--navy); margin-bottom: 2px; }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--gray-light);
  border-radius: var(--radius); font-family: inherit; font-size: 0.95rem;
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-grid h4 { color: var(--white); font-family: "Inter", sans-serif; font-size: 0.95rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-logo { font-family: "Playfair Display", serif; font-size: 1.3rem; color: var(--white); margin-bottom: 14px; display: flex; align-items: center; gap: 9px; }
.footer-logo svg { flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem;
}
.footer-privacy-link { color: rgba(247,245,240,0.55); text-decoration: none; margin-left: 8px; }
.footer-privacy-link:hover { color: var(--gold-light); text-decoration: underline; }
.whatsapp-float {
  position: fixed; bottom: 26px; left: 26px; z-index: 200;
  background: #25D366; color: white; width: 58px; height: 58px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25); font-size: 1.6rem;
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float { animation: wa-pulse 2.6s ease-out infinite; }
@keyframes wa-pulse {
  0% { box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Pillar strip (hero lead-in) ---------- */
.hero h1 em, .lead em { font-style: italic; color: var(--gold-light); font-family: "Playfair Display", serif; }
.pillar-strip { background: var(--cream); padding: 54px 0; border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.pillar { padding: 0 34px; border-left: 1px solid var(--gray-light); display: block; }
.pillar:first-child { border-left: none; padding-left: 0; }
.pillar .num { font-family: "Playfair Display", serif; color: var(--gold); font-size: 1.1rem; font-weight: 700; display: block; margin-bottom: 10px; }
.pillar h3 { font-size: 1.1rem; margin-bottom: 10px; }
.pillar p { font-size: 0.92rem; margin-bottom: 14px; }
.pillar .arrow { color: var(--gold); font-weight: 600; font-size: 0.86rem; }
.pillar:hover .arrow { text-decoration: underline; }
@media (max-width: 900px) {
  .pillar-grid { grid-template-columns: 1fr; gap: 26px; }
  .pillar { border-left: none; padding: 20px 0 0; }
  .pillar:first-child { padding-top: 0; }
}

/* ---------- Breadcrumb / page header ---------- */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 50px;
}
.page-header h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.6rem); }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------- Scroll-reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .img-wrap, .whatsapp-float { animation: none; }
}

/* ---------- Smart FAQ assistant widget ---------- */
.assistant-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 200;
  background: var(--navy); color: var(--gold-light); width: 58px; height: 58px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25); border: none; cursor: pointer;
  transition: transform 0.25s ease;
}
.assistant-fab:hover { transform: scale(1.06); }
.assistant-fab svg { width: 26px; height: 26px; }

.assistant-panel {
  position: fixed; bottom: 96px; right: 26px; z-index: 210;
  width: 340px; max-width: calc(100vw - 40px);
  height: 460px; max-height: calc(100vh - 140px);
  background: var(--white); border-radius: 10px;
  box-shadow: 0 20px 50px rgba(20,35,62,0.28);
  display: none; flex-direction: column; overflow: hidden;
  border: 1px solid var(--gray-light);
}
.assistant-panel.open { display: flex; }
.assistant-head {
  background: var(--navy); color: var(--white); padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.assistant-head strong { font-family: "Playfair Display", serif; font-size: 1.02rem; }
.assistant-head span { display: block; font-size: 0.74rem; color: var(--gold-light); margin-top: 2px; }
.assistant-close { background: none; border: none; color: var(--white); font-size: 1.3rem; cursor: pointer; line-height: 1; padding: 4px; }
.assistant-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--cream); }
.assistant-msg { max-width: 86%; padding: 10px 13px; border-radius: 9px; font-size: 0.87rem; line-height: 1.5; }
.assistant-msg.bot { background: var(--white); border: 1px solid var(--gray-light); align-self: flex-start; color: var(--text); }
.assistant-msg.bot.typing { color: var(--gray); font-style: italic; }
.assistant-form button:disabled { opacity: 0.6; cursor: default; }
.assistant-msg.user { background: var(--navy); color: var(--white); align-self: flex-end; }
.assistant-msg a { color: var(--gold); font-weight: 600; text-decoration: underline; }
.assistant-suggestions { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 12px; flex-shrink: 0; background: var(--cream); }
.assistant-chip {
  background: var(--white); border: 1px solid var(--gray-light); color: var(--navy);
  font-size: 0.78rem; padding: 6px 11px; border-radius: 20px; cursor: pointer; transition: all 0.2s ease;
}
.assistant-chip:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.assistant-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--gray-light); flex-shrink: 0; background: var(--white); }
.assistant-form input {
  flex: 1; border: 1px solid var(--gray-light); border-radius: 6px; padding: 9px 12px;
  font-family: inherit; font-size: 0.87rem; outline: none;
}
.assistant-form input:focus { border-color: var(--gold); }
.assistant-form button {
  background: var(--gold); color: var(--navy); border: none; border-radius: 6px;
  padding: 0 16px; font-weight: 700; cursor: pointer; font-size: 0.85rem;
}
@media (max-width: 560px) {
  .assistant-fab { right: 18px; bottom: 18px; }
  .whatsapp-float { left: 18px; bottom: 18px; }
  .assistant-panel { left: 12px; right: 12px; width: auto; bottom: 88px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav ul { display: none; }
  .split, .contact-grid, .foreword-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-bar .grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split .img-wrap::before { display: none; }
  .foreword-photo { width: 140px; margin: 0 auto; }
  .foreword-quote { padding-left: 28px; font-size: 1.1rem; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .stats-bar .grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 14px 18px; }
  section { padding: 60px 0; }
}
