/* =========================================================
   YAK Vize Danışmanlık — Premium Brand Stylesheet
   ========================================================= */

:root {
  /* Marka Paleti — Lacivert + Bronz (Premium Korporat) */
  --navy-900: #081a36;
  --navy-800: #0d2e5c;     /* Logo lacivert (orijinal koruma) */
  --navy-700: #15406f;
  --navy-600: #1f5790;

  --bronze-600: #a87a2f;   /* Ana vurgu — altın bronz */
  --bronze-500: #c19a4d;
  --bronze-400: #d6b76a;
  --bronze-300: #ebd49a;
  --bronze-100: #f5ecd6;

  --crimson: #c1121f;      /* Sadece "Red Danışmanlığı" gibi kritik vurgular */

  --cream: #faf7f1;
  --paper: #ffffff;
  --ink-900: #0e1320;
  --ink-700: #2c3548;
  --ink-500: #5b6478;
  --ink-300: #a3acbe;
  --line: rgba(14, 19, 32, 0.08);
  --line-strong: rgba(14, 19, 32, 0.16);

  --shadow-sm: 0 4px 16px rgba(8, 26, 54, 0.06);
  --shadow-md: 0 10px 30px rgba(8, 26, 54, 0.08);
  --shadow-lg: 0 24px 60px rgba(8, 26, 54, 0.12);
  --shadow-bronze: 0 18px 50px rgba(168, 122, 47, 0.18);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --container: 1200px;
}

/* ============= Reset + Base ============= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-800); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--bronze-600); }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy-900);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 4.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze-600);
  margin-bottom: 14px;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-700);
}

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

/* ============= Buttons ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all .35s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy-800);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-900);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-bronze {
  background: linear-gradient(135deg, var(--bronze-600), var(--bronze-500));
  color: #fff;
}
.btn-bronze:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-bronze);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--bronze-600);
  color: var(--bronze-600);
}
.btn-light {
  background: rgba(255,255,255,0.95);
  color: var(--navy-800);
}
.btn-light:hover {
  background: #fff;
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============= Navbar ============= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all .35s ease;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(8, 26, 54, 0.04);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand-mark img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-list a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-900);
  position: relative;
  padding: 6px 0;
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--bronze-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.nav-list a:hover::after,
.nav-list a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-list a:hover, .nav-list a.active { color: var(--bronze-600); }

.dropdown { position: relative; }
.dropdown-trigger { cursor: pointer; }
.dropdown-trigger::after {
  content: '▾';
  font-size: 0.7em;
  margin-left: 6px;
  color: var(--ink-500);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -20px;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .25s ease;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-700);
}
.dropdown-menu a:hover { background: var(--bronze-100); color: var(--navy-900); }

.nav-cta { margin-left: 12px; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  cursor: pointer;
  color: var(--navy-800);
}
.menu-toggle svg { width: 22px; height: 22px; }

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 20px 24px;
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.mobile-menu li:last-child { border-bottom: none; }
.mobile-menu a { font-weight: 500; color: var(--ink-900); }
.mobile-menu .mobile-cta { display: block; margin-top: 16px; text-align: center; }

@media (max-width: 991px) {
  .nav-list, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; }
}

/* ============= Hero ============= */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(168, 122, 47, 0.16), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(13, 46, 92, 0.18), transparent 35%),
    linear-gradient(180deg, #fdfaf3 0%, #f5efe1 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 .accent { color: var(--bronze-600); font-style: italic; }
.hero-copy p { font-size: 1.12rem; color: var(--ink-700); margin: 18px 0 32px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--navy-800);
  font-weight: 700;
  display: block;
  line-height: 1;
}
.hero-meta-item .lbl {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 6px;
  display: block;
}

.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,26,54,0) 50%, rgba(8,26,54,0.42) 100%);
}
.hero-card {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-md);
}
.hero-card .label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze-600);
  font-weight: 600;
}
.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin: 8px 0 0;
  color: var(--navy-900);
}

@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { aspect-ratio: 3 / 4; max-height: 520px; }
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-meta-item .num { font-size: 1.5rem; }
}

/* ============= Trust Strip ============= */
.trust-strip {
  background: var(--navy-900);
  padding: 18px 0;
  color: #fff;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-strip-inner span { display: inline-flex; align-items: center; gap: 10px; opacity: 0.92; }
.trust-strip-inner i { color: var(--bronze-400); }

/* ============= Section ============= */
.section { padding: 100px 0; }
.section-light { background: var(--paper); }
.section-cream { background: var(--cream); }
.section-tinted { background: linear-gradient(180deg, #fdfaf3 0%, #f5efe1 100%); }
.section-dark { background: var(--navy-900); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .lead, .section-dark p { color: rgba(255,255,255,0.78); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.gold-line {
  display: block;
  width: 64px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--bronze-600), transparent);
  margin: 0 auto 18px;
}

/* ============= Service Cards ============= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--line);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze-600), var(--bronze-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card .icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--bronze-100);
  color: var(--bronze-600);
  font-size: 1.5rem;
  margin-bottom: 22px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin: 0 0 12px;
  color: var(--navy-900);
}
.service-card p { color: var(--ink-700); font-size: 0.94rem; margin: 0 0 18px; }
.service-card .more {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card .more::after { content: '→'; transition: transform .25s; }
.service-card:hover .more { color: var(--bronze-600); }
.service-card:hover .more::after { transform: translateX(4px); }

.service-card.featured {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
  border: none;
}
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,0.82); }
.service-card.featured .icon { background: rgba(255,255,255,0.1); color: var(--bronze-400); }
.service-card.featured .more { color: var(--bronze-400); }

@media (max-width: 991px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .service-grid { grid-template-columns: 1fr; } }

/* ============= Country Quick Grid ============= */
.country-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.country-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  transition: all .3s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink-900);
  display: block;
}
.country-tile:hover {
  border-color: var(--bronze-600);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--navy-900);
}
.country-tile .flag {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.country-tile .name {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) { .country-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .country-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============= Wizard (Evrak Sihirbazı) ============= */
.wizard-section { padding: 100px 0; background: linear-gradient(180deg, #f5efe1 0%, #fdfaf3 100%); }
.wizard {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.wizard::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--bronze-600), var(--bronze-400), var(--bronze-600));
}
.wizard-header { text-align: center; margin-bottom: 36px; }
.wizard-header .badge {
  display: inline-block;
  background: var(--bronze-100);
  color: var(--bronze-600);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.wizard-header h2 { margin: 0 0 8px; }
.wizard-header p { color: var(--ink-700); margin: 0; }

.wizard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.wizard-field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.wizard-field select {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.96rem;
  font-family: 'Inter', sans-serif;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink-900);
  cursor: pointer;
  transition: border-color .25s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a87a2f' stroke-width='2.5'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.wizard-field select:focus { outline: none; border-color: var(--bronze-600); }
.wizard-cta { text-align: center; margin-top: 30px; }
.wizard-cta .btn { padding: 16px 50px; font-size: 0.95rem; }

.wizard-result {
  margin-top: 36px;
  padding: 30px;
  background: var(--cream);
  border-left: 4px solid var(--bronze-600);
  border-radius: var(--radius-md);
  animation: wizardFadeIn .5s ease;
}
@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.wizard-result-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; gap: 12px; flex-wrap: wrap;
}
.wizard-result-head h4 {
  margin: 0; color: var(--navy-900); font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
}
.wizard-result-head h4 i { color: var(--bronze-600); margin-right: 10px; }
.print-btn {
  background: var(--navy-800); color: #fff;
  padding: 9px 18px; border: none; border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  transition: background .25s;
}
.print-btn:hover { background: var(--navy-900); }
.wizard-result-title {
  font-weight: 600; color: var(--ink-900); padding-bottom: 14px;
  border-bottom: 1px solid var(--line); margin-bottom: 18px; font-size: 1.02rem;
}
.wizard-result ul { list-style: none; padding: 0; margin: 0; }
.wizard-result li {
  padding: 10px 0; border-bottom: 1px dashed var(--line);
  font-size: 0.96rem; color: var(--ink-700); display: flex; gap: 10px;
}
.wizard-result li:last-child { border-bottom: none; }
.wizard-result li i { color: var(--bronze-600); margin-top: 4px; flex-shrink: 0; }
.wizard-result li.warning i { color: var(--crimson); }
.wizard-result li.warning { font-weight: 600; color: var(--ink-900); }
.wizard-note {
  margin-top: 20px; padding: 14px 18px;
  background: rgba(193, 18, 31, 0.06);
  border-radius: var(--radius-sm);
  font-size: 0.86rem; color: var(--ink-700);
}
.wizard-note i { color: var(--crimson); margin-right: 8px; }

@media (max-width: 767px) {
  .wizard { padding: 32px 22px; }
  .wizard-grid { grid-template-columns: 1fr; }
}

/* ============= Page Header (subpages) ============= */
.page-hero {
  position: relative;
  padding: 170px 0 90px;
  text-align: center;
  color: #fff;
  background: var(--navy-900);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,26,54,0.65), rgba(8,26,54,0.85));
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero .breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.86rem; color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.85); }
.page-hero .breadcrumb a:hover { color: var(--bronze-400); }

.bg-kurumsal::before { background-image: url('../images/header-kurumsal.jpg'); }
.bg-hizmetler::before { background-image: url('../images/header-hizmetler.jpg'); }
.bg-iletisim::before { background-image: url('../images/header-iletisim.jpg'); }

/* ============= Two-Column Block ============= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; aspect-ratio: 4 / 3; }
.split-photo img { width: 100%; height: 100%; object-fit: cover; }
.split-photo .badge-floating {
  position: absolute; top: 24px; left: 24px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-radius: var(--radius-pill); padding: 8px 18px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--bronze-600);
}
.split.reverse > :first-child { order: 2; }
.split ul.checks { list-style: none; padding: 0; margin: 24px 0 30px; }
.split ul.checks li {
  position: relative; padding: 8px 0 8px 32px; font-size: 1.02rem; color: var(--ink-700);
}
.split ul.checks li::before {
  content: '✓';
  position: absolute; left: 0; top: 8px;
  width: 22px; height: 22px;
  background: var(--bronze-100); color: var(--bronze-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.78rem;
}

@media (max-width: 991px) { .split { grid-template-columns: 1fr; gap: 40px; } .split.reverse > :first-child { order: initial; } }

/* ============= Stats ============= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat .num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--bronze-400);
  font-weight: 700;
  line-height: 1;
  display: block;
}
.stat .lbl {
  margin-top: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  display: block;
}
@media (max-width: 767px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; } }

/* ============= Promo Banner ============= */
.promo {
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.promo::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,122,47,0.18), transparent 70%);
  border-radius: 50%;
}
.promo-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.promo h2 { color: #fff; margin: 0 0 14px; }
.promo p { color: rgba(255,255,255,0.85); margin: 0; font-size: 1.06rem; }
.promo .gold { color: var(--bronze-400); font-weight: 700; }
.promo-cta { text-align: right; }
@media (max-width: 767px) {
  .promo-grid { grid-template-columns: 1fr; text-align: center; }
  .promo-cta { text-align: center; }
}

/* ============= Testimonials ============= */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 32px 30px;
  border: 1px solid var(--line);
  position: relative;
  transition: all .35s ease;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: -10px; left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  color: var(--bronze-300);
  line-height: 1;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-text {
  font-style: italic;
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.75;
  margin: 18px 0 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.testimonial-author img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bronze-300);
}
.testimonial-author .name {
  font-weight: 700; color: var(--navy-900); font-size: 0.98rem;
}
.testimonial-author .role {
  font-size: 0.82rem; color: var(--bronze-600);
  letter-spacing: 0.04em; margin-top: 2px;
}
@media (max-width: 991px) { .testimonial-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; } }

/* ============= FAQ ============= */
.faq-grid { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item.is-open { border-color: var(--bronze-400); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  text-align: left;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-q .icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bronze-100);
  color: var(--bronze-600);
  flex-shrink: 0;
  transition: transform .3s ease, background .25s ease;
}
.faq-item.is-open .faq-q .icon {
  background: var(--bronze-600); color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--ink-700);
  font-size: 0.96rem;
  line-height: 1.75;
}
.faq-item.is-open .faq-a { max-height: 600px; }

/* ============= Contact Form ============= */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.contact-form-wrap h3 { margin: 0 0 8px; }
.contact-form-wrap > p { color: var(--ink-700); margin: 0 0 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink-900);
  transition: border-color .25s ease;
}
.form-control:focus { outline: none; border-color: var(--bronze-600); }
textarea.form-control { min-height: 120px; resize: vertical; font-family: inherit; }
.contact-form-wrap .btn { width: 100%; padding: 16px; }
@media (max-width: 575px) { .form-row { grid-template-columns: 1fr; } }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  text-align: center;
  border: 1px solid var(--line);
  transition: all .35s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-card .icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bronze-100);
  color: var(--bronze-600);
  font-size: 1.4rem;
}
.contact-card h4 { font-family: 'Playfair Display', serif; margin: 0 0 8px; font-size: 1.2rem; }
.contact-card p { color: var(--ink-700); margin: 0; font-size: 0.94rem; }
.contact-card .big {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-top: 6px;
}
@media (max-width: 767px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============= Footer ============= */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.78);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-grid h5 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.footer-grid img.footer-logo {
  height: 56px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.footer-grid p { font-size: 0.92rem; line-height: 1.7; margin: 0 0 20px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 12px; font-size: 0.92rem; }
.footer-grid a { color: rgba(255,255,255,0.78); }
.footer-grid a:hover { color: var(--bronze-400); }
.footer-grid li i { color: var(--bronze-400); margin-right: 10px; width: 16px; }
.footer-map { width: 100%; height: 180px; border: 0; border-radius: var(--radius-md); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  text-align: center;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 991px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============= Floating Buttons ============= */
.float-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 90px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform .3s ease;
}
.float-whatsapp:hover { transform: scale(1.08); color: #fff; }

/* Mobile Sticky CTA */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(8,26,54,0.08);
  padding: 12px 16px;
  z-index: 95;
}
.sticky-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sticky-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sticky-cta .call { background: var(--navy-800); color: #fff; }
.sticky-cta .wa { background: #25d366; color: #fff; }
@media (max-width: 767px) {
  .sticky-cta { display: block; }
  .float-whatsapp { bottom: 90px; right: 16px; width: 50px; height: 50px; font-size: 1.4rem; }
  body { padding-bottom: 70px; }
}

/* ============= Reveal Animations ============= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============= Print ============= */
@media print {
  .site-header, .site-footer, .float-whatsapp, .sticky-cta,
  .wizard-grid, .wizard-cta, .promo, .hero-actions { display: none !important; }
  body { background: #fff; padding: 0; }
  .wizard { box-shadow: none; border: none; padding: 0; }
}
