/*
Theme Name:  Taşıttır
Theme URI:   https://tasittir.com
Author:      Taşıttır Nakliyat A.Ş.
Description: Türkiye'nin kapsamlı nakliyat ve taşımacılık platformu. Evden eve, şehirlerarası, ofis taşıma ve tüm lojistik hizmetleri. Hizmet alanlar ve verenler için gelişmiş panel sistemi.
Version:     3.0.0
Requires at least: 6.4
Requires PHP: 8.1
License:     Proprietary
Text Domain: tasittir
Tags:        moving, logistics, marketplace, elementor, full-width-template, custom-colors
*/

/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════ */
:root {
  /* Brand */
  --navy:      #1B2A4A;
  --navy-dk:   #0F1E36;
  --navy-md:   #243660;
  --navy-lt:   #2E4B82;
  --orange:    #F5620F;
  --orange-lt: #FF7A30;
  --orange-dk: #D44E09;

  /* Neutral */
  --white:   #FFFFFF;
  --off-white:#F8F9FB;
  --gray-50: #F4F5F7;
  --gray-100:#E8EAF0;
  --gray-200:#D1D5E0;
  --gray-300:#A8AEBE;
  --gray-500:#6B7A99;
  --gray-700:#3D4A6B;
  --black:   #0A0E1A;

  /* Semantic */
  --success:    #16A34A;
  --success-bg: #DCFCE7;
  --warning:    #B45309;
  --warning-bg: #FEF3C7;
  --danger:     #DC2626;
  --danger-bg:  #FEE2E2;
  --info:       #1D4ED8;
  --info-bg:    #DBEAFE;

  /* Typography */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* Layout */
  --container:  1180px;
  --nav-h:      68px;
  --sidebar-w:  240px;

  /* Radius */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;
  --r-full: 9999px;

  /* Shadow */
  --shadow-xs:  0 1px 3px rgba(10,14,26,.06), 0 1px 2px rgba(10,14,26,.04);
  --shadow-sm:  0 2px 8px rgba(10,14,26,.08), 0 1px 3px rgba(10,14,26,.06);
  --shadow-md:  0 4px 16px rgba(10,14,26,.10), 0 2px 6px rgba(10,14,26,.06);
  --shadow-lg:  0 8px 32px rgba(10,14,26,.12), 0 4px 12px rgba(10,14,26,.08);
  --shadow-xl:  0 20px 60px rgba(10,14,26,.16), 0 8px 20px rgba(10,14,26,.10);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --t-fast: 150ms var(--ease);
  --t-base: 200ms var(--ease);
  --t-slow: 350ms var(--ease);
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--t-base); }
a:hover { color: var(--orange-lt); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }
p { margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(34px, 5.5vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(22px, 3vw, 34px); }
h4 { font-size: clamp(18px, 2.5vw, 24px); }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

/* ═══════════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}
.container--narrow { max-width: 860px; }
.container--wide   { max-width: 1400px; }

.section        { padding-block: clamp(56px, 8vw, 96px); }
.section--sm    { padding-block: clamp(40px, 5vw, 64px); }
.section--white { background: var(--white); }
.section--gray  { background: var(--gray-50); }
.section--dark  { background: var(--navy-dk); }
.section--navy  { background: var(--navy); }

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

/* Flex */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }

/* Section Header */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--orange); border-radius: var(--r-full);
}
.section-title { margin-bottom: 16px; }
.section-title em { color: var(--orange); font-style: normal; }
.section-subtitle { color: var(--gray-500); font-size: 16px; max-width: 560px; line-height: 1.7; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r-md);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  line-height: 1; white-space: nowrap;
  transition: all var(--t-base); text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  position: relative; overflow: hidden;
}
.btn::after { content:''; position:absolute; inset:0; background:rgba(255,255,255,0); transition: background var(--t-fast); }
.btn:hover::after { background:rgba(255,255,255,.08); }
.btn:active { transform: translateY(1px); }

.btn-primary   { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); color: var(--white); }
.btn-secondary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy-md); border-color: var(--navy-md); color: var(--white); }
.btn-white     { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--gray-50); color: var(--navy); }
.btn-outline   { background: transparent; color: var(--navy); border-color: var(--gray-200); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-outline-white:hover { border-color: var(--white); color: var(--white); }
.btn-ghost  { background: transparent; color: var(--orange); border-color: transparent; padding-inline: 8px; }
.btn-ghost:hover { background: rgba(245,98,15,.08); }
.btn-danger { background: var(--danger-bg); color: var(--danger); border-color: var(--danger-bg); }
.btn-success-soft { background: var(--success-bg); color: var(--success); border-color: var(--success-bg); }

.btn-sm  { padding: 8px 18px; font-size: 13px; border-radius: var(--r-sm); }
.btn-lg  { padding: 15px 32px; font-size: 16px; border-radius: var(--r-lg); }
.btn-xl  { padding: 18px 40px; font-size: 17px; border-radius: var(--r-lg); }
.btn-block { width: 100%; }
.btn-icon { padding: 10px; border-radius: var(--r-sm); gap: 0; }
.btn-loading { pointer-events: none; opacity: .7; }

/* ═══════════════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════════════ */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: 7px;
}
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-md);
  background: var(--white); color: var(--navy);
  font-size: 14px; font-family: var(--font-body);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  outline: none; line-height: 1.5;
}
.form-control:hover { border-color: var(--gray-200); }
.form-control:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,42,74,.08); }
.form-control.is-invalid { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(220,38,38,.08); }
.form-control.is-valid   { border-color: var(--success); }
.form-control::placeholder { color: var(--gray-300); }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A99' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12px; color: var(--gray-500); margin-top: 5px; line-height: 1.5; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 5px; font-weight: 500; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-checkbox input[type="checkbox"] { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--orange); flex-shrink: 0; }
.form-checkbox-label { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* Input with icon */
.input-icon-wrap { position: relative; }
.input-icon-wrap .input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gray-300); pointer-events: none; }
.input-icon-wrap .form-control { padding-left: 42px; }
.input-icon-wrap.icon-right .input-icon { left: auto; right: 14px; }
.input-icon-wrap.icon-right .form-control { padding-left: 16px; padding-right: 42px; }

/* ═══════════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.card:hover { box-shadow: var(--shadow-md); }
.card-hover:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(245,98,15,.12); }
.card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}
.card-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--navy); }
.card-sm { padding: 16px; border-radius: var(--r-md); }

/* Service Card */
.service-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r-xl); padding: 32px 28px;
  transition: all var(--t-slow); cursor: pointer;
  text-decoration: none; display: block; color: inherit;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--orange);
  transform: scaleX(0); transition: transform var(--t-base);
  transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--orange); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-card__arrow { transform: translate(4px, -4px); opacity: 1; }
.service-card__icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(245,98,15,.1), rgba(245,98,15,.06));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 26px;
  transition: transform var(--t-base);
}
.service-card:hover .service-card__icon { transform: scale(1.08); }
.service-card__title { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 10px; }
.service-card__desc  { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin: 0; }
.service-card__arrow { position: absolute; top: 24px; right: 24px; color: var(--orange); opacity: 0; transition: all var(--t-base); }

/* Listing Card */
.listing-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all var(--t-base); text-decoration: none;
  display: block; color: inherit;
}
.listing-card:hover { box-shadow: var(--shadow-lg); border-color: var(--orange); transform: translateY(-2px); color: inherit; }
.listing-card__head { padding: 18px 20px 14px; border-bottom: 1px solid var(--gray-100); }
.listing-card__route { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--navy); }
.listing-card__type  { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.listing-card__body  { padding: 14px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.listing-card__meta-item { background: var(--gray-50); border-radius: var(--r-sm); padding: 8px 12px; }
.listing-card__meta-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-300); margin-bottom: 2px; }
.listing-card__meta-val   { font-size: 13px; font-weight: 600; color: var(--navy); }
.listing-card__foot { padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--gray-100); }
.listing-card__price { font-family: var(--font-display); font-weight: 900; font-size: 22px; color: var(--orange); }

/* ═══════════════════════════════════════════════════════════
   BADGES
═══════════════════════════════════════════════════════════ */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 700; line-height: 1.5;
}
.badge-success  { background: var(--success-bg);  color: var(--success); }
.badge-warning  { background: var(--warning-bg);  color: var(--warning); }
.badge-danger   { background: var(--danger-bg);   color: var(--danger);  }
.badge-info     { background: var(--info-bg);      color: var(--info);    }
.badge-navy     { background: var(--navy);          color: var(--white);   }
.badge-orange   { background: var(--orange);        color: var(--white);   }
.badge-gray     { background: var(--gray-100);      color: var(--gray-700);}
.badge-dot::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ═══════════════════════════════════════════════════════════
   ALERTS
═══════════════════════════════════════════════════════════ */
.alert {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; border-radius: var(--r-md);
  font-size: 14px; line-height: 1.6; margin-bottom: 16px;
  border: 1px solid transparent;
}
.alert-success { background: var(--success-bg); color: var(--success); border-color: rgba(22,163,74,.15); }
.alert-warning { background: var(--warning-bg); color: var(--warning); border-color: rgba(180,83,9,.15); }
.alert-danger  { background: var(--danger-bg);  color: var(--danger);  border-color: rgba(220,38,38,.15); }
.alert-info    { background: var(--info-bg);    color: var(--info);    border-color: rgba(29,78,216,.15); }
.alert-icon    { flex-shrink: 0; margin-top: 1px; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy-dk);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
  transition: all var(--t-base);
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.35); }

.nav-wrap {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 20px; color: var(--white);
  flex-shrink: 0; box-shadow: 0 4px 12px rgba(245,98,15,.35);
}
.nav-logo-text { font-family: var(--font-display); font-weight: 900; font-size: 24px; color: var(--white); letter-spacing: -.02em; line-height: 1; }
.nav-logo-text span { color: var(--orange); }
.nav-logo-sub { font-size: 9px; font-weight: 600; color: rgba(255,255,255,.35); letter-spacing: 1px; text-transform: uppercase; display: block; margin-top: 1px; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu-item { position: relative; }
.nav-menu-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 13px; border-radius: var(--r-sm);
  color: rgba(255,255,255,.65); font-size: 13.5px; font-weight: 500;
  transition: all var(--t-fast); text-decoration: none;
}
.nav-menu-link:hover, .nav-menu-link.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-menu-link svg { transition: transform var(--t-fast); }
.nav-menu-item:hover .nav-menu-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r-lg); padding: 8px;
  min-width: 220px; box-shadow: var(--shadow-xl);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--t-base); z-index: 100;
}
.nav-menu-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--r-sm);
  font-size: 13px; font-weight: 500; color: var(--navy);
  transition: background var(--t-fast); text-decoration: none;
}
.nav-dropdown a:hover { background: var(--gray-50); }
.nav-dropdown-icon { width: 28px; height: 28px; border-radius: 6px; background: var(--gray-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-user-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 6px; border-radius: var(--r-full);
  background: rgba(255,255,255,.08); color: var(--white);
  font-size: 13px; font-weight: 500; text-decoration: none;
  transition: background var(--t-fast);
}
.nav-user-btn:hover { background: rgba(255,255,255,.14); color: var(--white); }
.nav-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center;
  justify-content: center; font-size: 11px; font-weight: 700;
  color: var(--white); flex-shrink: 0;
}
.nav-badge {
  position: relative; display: inline-flex;
}
.nav-badge-dot {
  position: absolute; top: -3px; right: -3px;
  width: 14px; height: 14px; background: var(--orange);
  border-radius: 50%; font-size: 8px; font-weight: 700;
  color: var(--white); display: flex; align-items: center;
  justify-content: center; border: 2px solid var(--navy-dk);
}

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: var(--r-sm); cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t-base); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--navy-dk); overflow-y: auto;
  padding: 80px 24px 40px;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 16px; border-radius: var(--r-md);
  color: rgba(255,255,255,.75); font-size: 15px; font-weight: 500;
  transition: all var(--t-fast); text-decoration: none; display: block;
}
.mobile-menu a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.mobile-menu-divider { height: 1px; background: rgba(255,255,255,.08); margin: 12px 0; }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer { background: var(--navy-dk); }
.footer-main { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand-desc { color: rgba(255,255,255,.4); font-size: 13px; line-height: 1.75; margin-top: 16px; max-width: 280px; }
.footer-col-title { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: 13px; transition: color var(--t-fast); text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: 14px;
  transition: all var(--t-fast); text-decoration: none;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-copy { color: rgba(255,255,255,.25); font-size: 12px; }
.footer-trust { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-trust-badge {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-sm); padding: 5px 12px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.3); letter-spacing: .3px;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(150deg, var(--navy-dk) 0%, var(--navy) 55%, #1e3060 100%);
  position: relative; overflow: hidden;
  padding: clamp(56px, 10vw, 120px) 0 clamp(48px, 8vw, 96px);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,98,15,.12) 0%, transparent 70%);
  top: -200px; right: -100px; pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 480px; gap: 56px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,98,15,.15); border: 1px solid rgba(245,98,15,.3);
  border-radius: var(--r-full); padding: 6px 16px 6px 10px; margin-bottom: 22px;
}
.hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(245,98,15,.4)} 50%{box-shadow:0 0 0 6px rgba(245,98,15,0)} }
.hero__badge span { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: .5px; text-transform: uppercase; }
.hero__title { color: var(--white); margin-bottom: 20px; line-height: 1.02; }
.hero__title em { color: var(--orange); font-style: normal; }
.hero__subtitle { color: rgba(255,255,255,.6); font-size: 16px; line-height: 1.7; max-width: 500px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 32px; margin-top: 44px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.1); }
.hero__stat-num { font-family: var(--font-display); font-weight: 900; font-size: 32px; color: var(--white); line-height: 1; }
.hero__stat-lbl { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 4px; font-weight: 500; }
.hero__stat-divider { width: 1px; background: rgba(255,255,255,.12); }

/* Hero Search Card */
.hero__search-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 28px; box-shadow: 0 32px 80px rgba(0,0,0,.3);
  position: relative; z-index: 1;
}
.hero__search-title { font-family: var(--font-display); font-weight: 900; font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.hero__search-sub { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; }
.search-type-tabs { display: flex; background: var(--gray-50); border-radius: var(--r-md); padding: 4px; gap: 4px; margin-bottom: 18px; }
.search-type-tab {
  flex: 1; padding: 8px 6px; border-radius: var(--r-sm);
  font-size: 12px; font-weight: 600; color: var(--gray-500);
  cursor: pointer; transition: all var(--t-fast); text-align: center; border: none; background: none;
}
.search-type-tab.active { background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (Inner pages)
═══════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%);
  padding: clamp(48px,7vw,80px) 0; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 40%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.02));
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__eyebrow { color: rgba(255,255,255,.4); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.page-hero__eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--orange); border-radius: 2px; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.55); font-size: 16px; max-width: 600px; line-height: 1.7; }
.page-hero__breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.page-hero__breadcrumb a { color: rgba(255,255,255,.4); font-size: 13px; text-decoration: none; transition: color var(--t-fast); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__breadcrumb-sep { color: rgba(255,255,255,.2); font-size: 12px; }
.page-hero__breadcrumb span { color: rgba(255,255,255,.7); font-size: 13px; }

/* ═══════════════════════════════════════════════════════════
   PANEL LAYOUT
═══════════════════════════════════════════════════════════ */
.panel-layout { display: flex; min-height: calc(100vh - var(--nav-h)); background: var(--gray-50); }

/* Sidebar */
.panel-sidebar {
  width: var(--sidebar-w); min-width: var(--sidebar-w);
  background: var(--navy-dk);
  display: flex; flex-direction: column;
  position: sticky; top: var(--nav-h);
  height: calc(100vh - var(--nav-h)); overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,.05);
}
.panel-sidebar::-webkit-scrollbar { width: 4px; }
.panel-sidebar::-webkit-scrollbar-track { background: transparent; }
.panel-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 4px; }

.sidebar-logo-section { padding: 20px 20px 16px; border-bottom: 1px solid rgba(255,255,255,.06); }
.sidebar-section-label { padding: 16px 20px 6px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.2); }
.sidebar-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; color: rgba(255,255,255,.5);
  font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all var(--t-fast);
  text-decoration: none; border-left: 3px solid transparent;
  position: relative;
}
.sidebar-nav-item:hover { color: rgba(255,255,255,.85); background: rgba(255,255,255,.05); }
.sidebar-nav-item.active { color: var(--white); background: rgba(245,98,15,.12); border-left-color: var(--orange); }
.sidebar-nav-item.active .sidebar-nav-icon { color: var(--orange); }
.sidebar-nav-icon { width: 16px; height: 16px; flex-shrink: 0; }
.sidebar-nav-badge { margin-left: auto; background: var(--orange); color: var(--white); font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: var(--r-full); min-width: 18px; text-align: center; }
.sidebar-divider { height: 1px; background: rgba(255,255,255,.06); margin: 8px 0; }
.sidebar-user-section {
  margin-top: auto; padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; gap: 12px;
}
.sidebar-user-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(245,98,15,.2); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--orange); flex-shrink: 0; border: 2px solid rgba(245,98,15,.3); }
.sidebar-user-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8); line-height: 1.3; }
.sidebar-user-role { font-size: 11px; color: rgba(255,255,255,.3); }

/* Panel Main */
.panel-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.panel-topbar {
  background: var(--white); border-bottom: 1px solid var(--gray-100);
  padding: 0 28px; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0; position: sticky; top: var(--nav-h); z-index: 10;
  box-shadow: var(--shadow-xs);
}
.panel-topbar-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--navy); }
.panel-content { padding: clamp(16px,3vw,28px); flex: 1; }

/* Stats Grid */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.stat-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: 20px 22px; transition: all var(--t-base); }
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-card__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--gray-300); margin-bottom: 10px; }
.stat-card__value { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--navy); line-height: 1; }
.stat-card__sub { font-size: 12px; color: var(--gray-500); margin-top: 6px; }
.stat-card__change { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: var(--r-full); margin-top: 8px; }
.stat-card__change.up   { background: var(--success-bg); color: var(--success); }
.stat-card__change.down { background: var(--danger-bg);  color: var(--danger);  }
.stat-card__icon { float: right; width: 40px; height: 40px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; }

/* Data Table */
.table-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 20px; box-shadow: var(--shadow-xs); }
.table-card-head { padding: 16px 20px; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; }
.table-card-title { font-weight: 700; font-size: 14px; color: var(--navy); }
.data-table { width: 100%; border-collapse: collapse; }
.data-table thead th { padding: 11px 20px; text-align: left; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--gray-300); background: var(--gray-50); border-bottom: 1px solid var(--gray-100); white-space: nowrap; }
.data-table tbody tr { border-bottom: 1px solid var(--gray-100); transition: background var(--t-fast); }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: var(--gray-50); }
.data-table td { padding: 13px 20px; font-size: 13px; color: var(--navy); vertical-align: middle; }
.data-table td.muted { color: var(--gray-500); }

/* ═══════════════════════════════════════════════════════════
   MESSAGING
═══════════════════════════════════════════════════════════ */
.messages-layout { display: grid; grid-template-columns: 300px 1fr; height: calc(100vh - 112px); background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); overflow: hidden; }
.msg-sidebar { border-right: 1px solid var(--gray-100); overflow-y: auto; display: flex; flex-direction: column; }
.msg-sidebar-head { padding: 16px 18px; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.msg-sidebar-title { font-weight: 700; font-size: 14px; color: var(--navy); }
.msg-thread { padding: 14px 18px; border-bottom: 1px solid var(--gray-100); cursor: pointer; transition: background var(--t-fast); text-decoration: none; display: block; }
.msg-thread:hover, .msg-thread.active { background: var(--gray-50); }
.msg-thread.active { border-left: 3px solid var(--orange); }
.msg-thread-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.msg-thread-name { font-weight: 600; font-size: 13px; color: var(--navy); }
.msg-thread-time { font-size: 11px; color: var(--gray-300); }
.msg-thread-preview { font-size: 12px; color: var(--gray-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.msg-thread-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.msg-chat { display: flex; flex-direction: column; }
.msg-chat-head { padding: 14px 20px; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: 12px; flex-shrink: 0; background: var(--white); }
.msg-chat-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--navy); flex-shrink: 0; }
.msg-chat-name  { font-weight: 700; font-size: 14px; color: var(--navy); }
.msg-chat-status { font-size: 12px; color: var(--success); font-weight: 500; }
.msg-chat-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 14px; background: var(--gray-50); }
.msg-bubble-row { display: flex; align-items: flex-end; gap: 8px; }
.msg-bubble-row.mine { flex-direction: row-reverse; }
.msg-bubble-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: var(--navy); flex-shrink: 0; }
.msg-bubble { max-width: 68%; padding: 10px 14px; border-radius: 16px; font-size: 13.5px; line-height: 1.55; }
.msg-bubble.theirs { background: var(--white); color: var(--navy); border-bottom-left-radius: 4px; box-shadow: var(--shadow-xs); }
.msg-bubble.mine   { background: var(--navy); color: var(--white); border-bottom-right-radius: 4px; }
.msg-bubble-time { font-size: 10px; color: var(--gray-300); margin-top: 4px; }
.msg-bubble-row.mine .msg-bubble-time { text-align: right; }
.msg-input-area { padding: 14px 20px; border-top: 1px solid var(--gray-100); display: flex; gap: 10px; align-items: flex-end; background: var(--white); flex-shrink: 0; }
.msg-input-area textarea { flex: 1; padding: 10px 14px; border: 1.5px solid var(--gray-100); border-radius: var(--r-lg); font-size: 13px; resize: none; height: 44px; max-height: 120px; outline: none; font-family: var(--font-body); color: var(--navy); transition: border-color var(--t-base); }
.msg-input-area textarea:focus { border-color: var(--navy); }

/* ═══════════════════════════════════════════════════════════
   OFFER BOX
═══════════════════════════════════════════════════════════ */
.offer-box { border: 2px solid var(--orange); border-radius: var(--r-xl); padding: 24px; background: linear-gradient(135deg, var(--white), rgba(245,98,15,.02)); }
.offer-box__title { font-family: var(--font-display); font-weight: 900; font-size: 22px; color: var(--navy); margin-bottom: 4px; }
.offer-box__budget { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; }
.offer-box__budget-label { font-size: 13px; color: var(--gray-500); }
.offer-box__budget-amount { font-family: var(--font-display); font-weight: 900; font-size: 32px; color: var(--orange); }
.commission-breakdown { background: var(--gray-50); border-radius: var(--r-md); padding: 14px 16px; margin-top: 14px; }
.commission-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; color: var(--gray-500); }
.commission-row:last-child { margin-bottom: 0; padding-top: 8px; border-top: 1px solid var(--gray-100); font-weight: 700; color: var(--navy); }

/* ═══════════════════════════════════════════════════════════
   AUTH PAGES
═══════════════════════════════════════════════════════════ */
.auth-wrap { min-height: calc(100vh - var(--nav-h)); display: grid; grid-template-columns: 1fr 480px; }
.auth-visual { background: linear-gradient(150deg, var(--navy-dk), var(--navy)); padding: 60px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.auth-visual::after { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(245,98,15,.15) 0%, transparent 70%); bottom: -200px; right: -100px; }
.auth-visual-title { font-family: var(--font-display); font-weight: 900; font-size: 40px; color: var(--white); margin-bottom: 16px; }
.auth-visual-sub { color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.7; max-width: 380px; margin-bottom: 40px; }
.auth-features { display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1; }
.auth-feature { display: flex; align-items: center; gap: 14px; }
.auth-feature-icon { width: 40px; height: 40px; border-radius: var(--r-md); background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.auth-feature-text { font-size: 14px; color: rgba(255,255,255,.7); font-weight: 500; }
.auth-form-side { background: var(--gray-50); display: flex; align-items: center; justify-content: center; padding: clamp(24px,4vw,56px) clamp(20px,4vw,48px); }
.auth-card { background: var(--white); border-radius: var(--r-xl); padding: clamp(28px,4vw,44px); width: 100%; max-width: 440px; box-shadow: var(--shadow-xl); }
.auth-logo { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 28px; text-decoration: none; }
.auth-title { font-family: var(--font-display); font-weight: 900; font-size: 28px; text-align: center; margin-bottom: 6px; }
.auth-sub { font-size: 14px; color: var(--gray-500); text-align: center; margin-bottom: 28px; }
.auth-divider { display: flex; align-items: center; gap: 14px; color: var(--gray-300); font-size: 12px; margin: 20px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-100); }
.auth-footer-link { text-align: center; font-size: 14px; color: var(--gray-500); margin-top: 20px; }

/* Role Selector */
.role-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.role-option { padding: 16px; border: 2px solid var(--gray-100); border-radius: var(--r-lg); cursor: pointer; transition: all var(--t-base); text-align: center; }
.role-option:hover { border-color: var(--orange); background: rgba(245,98,15,.03); }
.role-option.selected { border-color: var(--orange); background: rgba(245,98,15,.06); }
.role-option__icon { font-size: 28px; margin-bottom: 8px; }
.role-option__title { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 3px; }
.role-option__desc  { font-size: 11px; color: var(--gray-500); line-height: 1.4; }

/* ═══════════════════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════════════════ */
.blog-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); overflow: hidden; transition: all var(--t-base); display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card__thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy), var(--navy-md)); overflow: hidden; position: relative; }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.blog-card:hover .blog-card__thumb img { transform: scale(1.04); }
.blog-card__thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.blog-card__cat { position: absolute; bottom: 12px; left: 12px; background: var(--orange); color: var(--white); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: var(--r-full); letter-spacing: .5px; text-transform: uppercase; }
.blog-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { display: flex; gap: 12px; font-size: 12px; color: var(--gray-300); margin-bottom: 10px; }
.blog-card__title { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__title a:hover { color: var(--orange); }
.blog-card__excerpt { font-size: 13px; color: var(--gray-500); line-height: 1.65; flex: 1; }
.blog-card__foot { padding: 14px 20px; border-top: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; }

/* Single Post */
.single-post__content { font-size: 16px; line-height: 1.85; color: var(--gray-700); }
.single-post__content h2 { font-size: 28px; color: var(--navy); margin: 40px 0 16px; }
.single-post__content h3 { font-size: 22px; color: var(--navy); margin: 32px 0 14px; }
.single-post__content p { margin-bottom: 20px; }
.single-post__content ul, .single-post__content ol { padding-left: 24px; margin-bottom: 20px; }
.single-post__content ul li { list-style: disc; margin-bottom: 8px; }
.single-post__content ol li { list-style: decimal; margin-bottom: 8px; }
.single-post__content blockquote { border-left: 4px solid var(--orange); padding: 16px 20px; margin: 32px 0; background: var(--gray-50); border-radius: 0 var(--r-md) var(--r-md) 0; color: var(--gray-700); font-style: italic; }
.single-post__content img { border-radius: var(--r-lg); margin: 28px 0; box-shadow: var(--shadow-md); }
.single-post__content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.single-post__content table th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; font-size: 13px; }
.single-post__content table td { padding: 11px 16px; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
.single-post__content table tr:nth-child(even) { background: var(--gray-50); }

/* ═══════════════════════════════════════════════════════════
   TRUST / FEATURES / WHY
═══════════════════════════════════════════════════════════ */
.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.feature-icon { width: 52px; height: 52px; border-radius: var(--r-md); background: rgba(245,98,15,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 22px; }
.feature-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.feature-desc  { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin: 0; }
.trust-bar { display: flex; align-items: center; justify-content: center; gap: clamp(24px,4vw,56px); padding: 32px 0; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-num { font-family: var(--font-display); font-weight: 900; font-size: 24px; color: var(--navy); }
.trust-lbl { font-size: 13px; color: var(--gray-500); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   STEPS / PROCESS
═══════════════════════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--orange), rgba(245,98,15,.2)); z-index: 0; }
.step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--white); border: 3px solid var(--orange); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: var(--font-display); font-weight: 900; font-size: 22px; color: var(--orange); box-shadow: 0 0 0 8px var(--white); }
.step-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.step-desc  { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════ */
.pricing-card { background: var(--white); border: 2px solid var(--gray-100); border-radius: var(--r-xl); padding: 36px; position: relative; transition: all var(--t-base); }
.pricing-card.featured { border-color: var(--orange); box-shadow: 0 8px 32px rgba(245,98,15,.15); }
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-label { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 18px; border-radius: var(--r-full); white-space: nowrap; }
.pricing-name  { font-size: 14px; font-weight: 600; color: var(--gray-500); margin-bottom: 12px; }
.pricing-price { font-family: var(--font-display); font-weight: 900; font-size: 52px; color: var(--navy); line-height: 1; }
.pricing-price sup { font-size: 22px; vertical-align: top; margin-top: 10px; display: inline-block; }
.pricing-price sub { font-size: 16px; font-family: var(--font-body); font-weight: 400; color: var(--gray-500); }
.pricing-features { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-700); }
.pricing-check { color: var(--success); font-size: 15px; flex-shrink: 0; }
.pricing-cross { color: var(--gray-300); font-size: 15px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-md); overflow: hidden; }
.faq-question {
  padding: 18px 22px; font-weight: 600; font-size: 15px;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; color: var(--navy); gap: 16px;
  transition: background var(--t-fast);
  user-select: none;
}
.faq-question:hover { background: var(--gray-50); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--gray-50); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--orange); transition: transform var(--t-base), background var(--t-base); font-weight: 400; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--t-slow); }
.faq-answer-inner { padding: 0 22px 18px; font-size: 14px; color: var(--gray-500); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonial-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-xl); padding: 28px; }
.testimonial-stars { color: #F59E0B; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--gray-700); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; font-weight: 900; color: var(--white); flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.testimonial-detail { font-size: 12px; color: var(--gray-500); }

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════ */
.cta-section { background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 60%, var(--navy-md) 100%); padding: clamp(56px,8vw,96px) 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(245,98,15,.15) 0%, transparent 70%); bottom: -150px; right: -50px; }
.cta-section__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,.6); font-size: 16px; max-width: 500px; margin: 0; }
.cta-section__actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   MAP PLACEHOLDER
═══════════════════════════════════════════════════════════ */
.map-ph { background: linear-gradient(135deg, #e8f0f8, #d0dcea); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: var(--navy-md); flex-direction: column; gap: 8px; }
.map-ph-icon { font-size: 36px; opacity: .5; }

/* ═══════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-muted  { color: var(--gray-500); }
.text-orange { color: var(--orange); }
.text-success { color: var(--success); }
.text-danger  { color: var(--danger); }
.text-navy    { color: var(--navy); }
.text-white   { color: var(--white) !important; }
.font-display { font-family: var(--font-display); font-weight: 900; }

.mt-0{margin-top:0}.mt-1{margin-top:6px}.mt-2{margin-top:12px}.mt-3{margin-top:18px}.mt-4{margin-top:24px}.mt-6{margin-top:36px}
.mb-0{margin-bottom:0}.mb-1{margin-bottom:6px}.mb-2{margin-bottom:12px}.mb-3{margin-bottom:18px}.mb-4{margin-bottom:24px}.mb-6{margin-bottom:36px}

.w-full { width: 100%; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Divider */
.divider { height: 1px; background: var(--gray-100); margin: 24px 0; }
.divider-lg { height: 1px; background: var(--gray-100); margin: 40px 0; }

/* Spinner */
.spinner { width: 22px; height: 22px; border: 2.5px solid var(--gray-100); border-top-color: var(--orange); border-radius: 50%; animation: spin .65s linear infinite; }
.spinner-sm { width: 16px; height: 16px; border-width: 2px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Overlay */
.overlay { position: fixed; inset: 0; background: rgba(10,14,26,.6); z-index: 900; display: none; backdrop-filter: blur(2px); }
.overlay.show { display: block; }

/* Loading Button */
.btn.loading { pointer-events: none; }
.btn.loading::before { content: ''; display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.4); border-top-color: var(--white); border-radius: 50%; animation: spin .65s linear infinite; margin-right: 8px; }

/* Skeleton */
.skeleton { background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%); background-size: 200% 100%; animation: skeleton 1.5s ease-in-out infinite; border-radius: var(--r-md); }
@keyframes skeleton { 0%{background-position:200%}100%{background-position:-200%} }

/* WordPress editor styles */
.wp-block-image img { border-radius: var(--r-lg); }
.wp-block-quote { border-left: 4px solid var(--orange); padding-left: 20px; }
.entry-content h2, .entry-content h3 { margin-top: 2em; margin-bottom: .75em; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – TABLET (≤1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --sidebar-w: 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__search-card { max-width: 560px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }
  .cta-section__inner { grid-template-columns: 1fr; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .sidebar-nav-item span:not(.sidebar-nav-icon):not(.sidebar-nav-badge) { display: none; }
  .sidebar-section-label { display: none; }
  .sidebar-user-section > div:not(.sidebar-user-avatar) { display: none; }
  .panel-topbar { padding: 0 16px; }
  .panel-content { padding: 16px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – MOBILE (≤768px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .section { padding-block: clamp(40px, 8vw, 64px); }
  .form-row { grid-template-columns: 1fr; }
  .hero__stats { gap: 20px; }
  .hero__stat-divider { display: none; }
  .cta-section__actions { width: 100%; flex-direction: row; flex-wrap: wrap; }
  .panel-sidebar { display: none; }
  .panel-sidebar.mobile-open { display: flex; position: fixed; z-index: 998; top: var(--nav-h); bottom: 0; left: 0; height: auto; }
  .messages-layout { grid-template-columns: 1fr; }
  .msg-sidebar { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .data-table thead { display: none; }
  .data-table tr { display: flex; flex-wrap: wrap; padding: 12px 16px; gap: 6px; }
  .data-table td { padding: 2px 4px; border: none; }
  .data-table td::before { content: attr(data-label); display: block; font-size: 10px; font-weight: 700; color: var(--gray-300); text-transform: uppercase; margin-bottom: 2px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .pricing-card { padding: 24px; }
  .testimonial-card { padding: 20px; }
  .auth-form-side { align-items: flex-start; padding: 24px 16px; }
  .auth-card { max-width: 100%; border-radius: var(--r-lg); }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .role-selector { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}
