/* ================================================================
   Olamhanadlan – Main Stylesheet (RTL / Hebrew)
   Framework: Bootstrap 5.3 RTL + Custom
   ================================================================ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --primary:       #0A2342;
  --secondary:     #1A6FA8;
  --accent:        #E8A020;
  --accent-light:  #F5C842;
  --success:       #27AE60;
  --danger:        #E74C3C;
  --bg-light:      #F4F6F9;
  --bg-dark:       #0A2342;
  --text-main:     #1A1A2E;
  --text-muted:    #6B7280;
  --border:        #DDE3EB;
  --white:         #FFFFFF;
  --shadow-sm:     0 2px 8px rgba(10,35,66,.08);
  --shadow-md:     0 4px 20px rgba(10,35,66,.12);
  --shadow-lg:     0 8px 40px rgba(10,35,66,.18);
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --transition:    0.25s ease;
}

/* ── Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  text-align: right;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.65;
}

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

img { max-width: 100%; height: auto; }

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

/* ── Utility ────────────────────────────────────────────────── */
.text-accent    { color: var(--accent) !important; }
.bg-primary-d   { background: var(--primary); }
.bg-accent      { background: var(--accent); }
.font-900       { font-weight: 900; }
.font-800       { font-weight: 800; }
.font-700       { font-weight: 700; }
.shadow-card    { box-shadow: var(--shadow-sm); }
.radius         { border-radius: var(--radius); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  padding: 0.55rem 1.4rem;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26,111,168,.3);
}

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  font-weight: 700;
}
.btn-accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
}

.btn-whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  font-weight: 700;
}
.btn-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  color: #fff;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.main-navbar {
  background: var(--primary);
  padding: 0.6rem 0;
  box-shadow: 0 2px 16px rgba(10,35,66,.3);
  position: sticky;
  top: 0;
  z-index: 1040;
}

.main-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.main-navbar .navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.main-navbar .brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.main-navbar .brand-sub {
  font-size: 0.68rem;
  color: var(--accent-light);
  font-weight: 400;
}

.main-navbar .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  padding: 0.45rem 0.9rem !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-size: 0.92rem;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,.12);
}

.main-navbar .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  padding: 0.5rem;
  margin-top: 0.3rem;
  min-width: 200px;
  right: 0;
  left: auto;
}

.main-navbar .dropdown-item {
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition);
}

.main-navbar .dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.main-navbar .country-flag { font-size: 1.2rem; }

/* ── Navbar Country Dropdown ────────────────────────────────── */
.country-mega-menu {
  min-width: 280px;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: visible;
  background-image:
    linear-gradient(
      to bottom,
      rgba(10,35,66,.52) 0%,
      rgba(10,35,66,.42) 50%,
      rgba(10,35,66,.68) 100%
    ),
    url('https://propx.co.il/assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.hero-section::before {
  display: none;
}

.hero-section .hero-bg-pattern {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 5.5rem;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero-title .accent { color: var(--accent); }

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  font-weight: 400;
  margin-top: 0.8rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

/* ── Floating Search Bar ─────────────────────────────────────── */
.hero-search-wrapper {
  position: absolute;
  bottom: -42px;
  right: 0;
  left: 0;
  z-index: 20;
  padding: 0 1rem;
}

.hero-search-box {
  background: #fff;
  border-radius: 16px;
  padding: 1.6rem 2rem;
  box-shadow: 0 12px 48px rgba(10,35,66,.28), 0 2px 12px rgba(0,0,0,.12);
  max-width: 960px;
  margin: 0 auto;
}

.hero-search-box .form-label {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: .4rem;
}

.hero-search-box .form-select,
.hero-search-box .form-control {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  color: var(--text-main);
  height: 52px;
  transition: border-color .15s;
}

.hero-search-box .form-select:focus,
.hero-search-box .form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(26,111,168,.12);
}

.hero-search-box .btn-search {
  height: 52px;
  font-size: 1rem;
  font-weight: 800;
  padding: 0 1.6rem;
  border-radius: 10px;
  letter-spacing: .02em;
}

/* ── Stats Bar spacing ───────────────────────────────────────── */
.stats-bar {
  margin-top: 58px;
}


/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.stat-item {
  text-align: center;
  border-left: 1px solid var(--border);
}

.stat-item:last-child { border-left: none; }

.stat-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ── Section Titles ─────────────────────────────────────────── */
.section-header {
  margin-bottom: 2.5rem;
}

.section-header .badge-tag {
  display: inline-block;
  background: rgba(26,111,168,.1);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}

.section-header .view-all {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
}

/* ── Module Cards ───────────────────────────────────────────── */
.module-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 2rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.module-card.mc-projects  { background: linear-gradient(135deg, #0A2342, #1A4F7A); }
.module-card.mc-pros      { background: linear-gradient(135deg, #1A6FA8, #0D5480); }
.module-card.mc-listings  { background: linear-gradient(135deg, #27AE60, #1E8449); }

.module-card .mc-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1.2rem;
}

.module-card h3 {
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
}

.module-card p { color: rgba(255,255,255,.8); font-size: 0.9rem; margin: 0; }

.module-card .mc-arrow {
  color: rgba(255,255,255,.5);
  font-size: 1.4rem;
  transition: transform var(--transition);
}

.module-card:hover .mc-arrow { transform: translateX(-6px); }

/* ── Country Cards ──────────────────────────────────────────── */
.country-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}

.country-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  text-decoration: none;
}

.country-card .flag { font-size: 2.4rem; display: block; margin-bottom: 0.6rem; }
.country-card .name { font-weight: 700; color: var(--primary); font-size: 1rem; }
.country-card .count { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ── Property Cards ─────────────────────────────────────────── */
.prop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  height: 100%;
}

.prop-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(26,111,168,.2);
}

.prop-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.prop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.prop-card:hover .prop-card-img img {
  transform: scale(1.05);
}

.prop-card-badges {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.prop-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.5;
}

.prop-badge-featured { background: var(--accent); color: var(--primary); }
.prop-badge-premium  { background: var(--primary); color: #fff; }
.prop-badge-sale     { background: var(--success); color: #fff; }
.prop-badge-rent     { background: var(--secondary); color: #fff; }
.prop-badge-new      { background: #9B59B6; color: #fff; }

.prop-card-fav {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  color: var(--text-muted);
}

.prop-card-fav:hover,
.prop-card-fav.active { color: var(--danger); background: #fff; }

.prop-card-body { padding: 1rem 1.2rem 1.2rem; }

.prop-location {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}

.prop-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prop-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.prop-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 0.7rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.prop-meta span { display: flex; align-items: center; gap: 0.3rem; }

/* ── Professional Cards ─────────────────────────────────────── */
.pro-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

.pro-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(26,111,168,.2);
}

.pro-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  margin: 0 auto 1rem;
  display: block;
}

.pro-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.pro-title {
  font-size: 0.82rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.pro-location {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.pro-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
  background: rgba(39,174,96,.1);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

/* ── Forms ──────────────────────────────────────────────────── */
.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.form-control, .form-select {
  font-family: 'Heebo', sans-serif;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-control:focus, .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(26,111,168,.12);
  outline: none;
}

.form-control::placeholder { color: var(--text-muted); }

.lead-form {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1.5px solid var(--border);
}

.lead-form h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--primary);
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb-section {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
}

.breadcrumb {
  margin: 0;
  font-size: 0.85rem;
}

.breadcrumb-item a { color: var(--secondary); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { content: "‹"; }

/* ── Alerts ─────────────────────────────────────────────────── */
.alert {
  border-radius: var(--radius-sm);
  border: none;
  font-size: 0.92rem;
  font-weight: 500;
}

/* ── Badges ─────────────────────────────────────────────────── */
.badge { font-family: 'Heebo', sans-serif; font-weight: 600; }

/* ── Blog Cards ─────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  height: 100%;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body { padding: 1.2rem; }

.blog-date { font-size: 0.78rem; color: var(--text-muted); }
.blog-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0.4rem 0 0.6rem;
}
.blog-excerpt { font-size: 0.85rem; color: var(--text-muted); }

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0D3B6E 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(232,160,32,.15) 0%, transparent 70%);
}

.cta-section h2 { color: #fff; font-weight: 800; }
.cta-section p { color: rgba(255,255,255,.75); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 1.5rem;
}

.site-footer h5 {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links li { margin-bottom: 0.5rem; }

.site-footer .footer-links a {
  color: rgba(255,255,255,.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.site-footer .footer-links a:hover { color: var(--accent); }

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  margin-left: 0.4rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ── Section Backgrounds ──────────────────────────────────────── */
.section-light { background: var(--bg-light); }
.section-white { background: var(--white); }

/* ── Loading Skeleton ─────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 4px;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-section   { min-height: 420px; }
  .hero-title     { font-size: 1.8rem; }
  .hero-subtitle  { font-size: 1rem; }
  .module-card    { padding: 1.3rem; }
  .stat-number    { font-size: 1.3rem; }
  .prop-meta      { gap: 0.6rem; }
}

/* ── Misc ────────────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.table-hover > tbody > tr:hover > * {
  background-color: rgba(26,111,168,.04);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
}

/* ── Flash Messages ──────────────────────────────────────────── */
.flash-message {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  min-width: 280px;
  max-width: 500px;
  padding: .85rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  animation: flashIn .3s ease;
}
@keyframes flashIn {
  from { opacity:0; transform:translateX(-50%) translateY(-10px); }
  to   { opacity:1; transform:translateX(-50%) translateY(0); }
}
.flash-success { background:#d1fae5; color:#065f46; border:1px solid #6ee7b7; }
.flash-error   { background:#fee2e2; color:#991b1b; border:1px solid #fca5a5; }
.flash-info    { background:#dbeafe; color:#1e40af; border:1px solid #93c5fd; }

/* ── Section Light/White ─────────────────────────────────────── */
.section-white { background: #fff; }
.section-light { background: var(--bg-light); }

/* ── Responsive Tables ───────────────────────────────────────── */
@media (max-width: 576px) {
  .table-responsive { font-size: .78rem; }
  .prop-card-img { min-height: 150px; }
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: .95rem; }
  .dash-stats-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── WhatsApp button full ─────────────────────────────────────── */
.btn-whatsapp-full {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: .5rem 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  transition: background .2s;
}
.btn-whatsapp-full:hover { background: #1ebe5a; color: #fff; }

/* ── Notification Bell ───────────────────────────────────────── */
.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: .6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ── Pricing Cards ───────────────────────────────────────────── */
.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.pricing-card:hover,
.pricing-card.featured {
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26,111,168,.15);
}
.pricing-card.featured { border-color: var(--accent); }
.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.pricing-period { font-size: .85rem; color: var(--text-muted); }

/* ── Multilingual Support ─────────────────────────────────────── */

/* LTR overrides when English */
html[dir="ltr"] .navbar {
  flex-direction: row-reverse;
}
html[dir="ltr"] .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  float: left;
  padding-left: .5rem;
  padding-right: 0;
}
html[dir="ltr"] .prop-card-body {
  text-align: left;
}
html[dir="ltr"] .prop-meta {
  direction: ltr;
}
html[dir="ltr"] .stats-bar .stat-item {
  border-left: none;
  border-right: 1px solid rgba(255,255,255,.15);
}
html[dir="ltr"] .stats-bar .stat-item:last-child {
  border-right: none;
}
html[dir="ltr"] .dash-nav-item {
  border-right: none;
  border-left: 3px solid transparent;
}
html[dir="ltr"] .dash-nav-item.active {
  border-left-color: var(--accent);
}
html[dir="ltr"] .lead-item-new {
  border-right: none;
  border-left: 3px solid var(--accent);
}
html[dir="ltr"] .pro-card {
  text-align: left;
}
html[dir="ltr"] .section-header .view-all {
  float: left;
}
/* Language toggle button style */
.lang-switcher-btn {
  font-size: .82rem;
  font-weight: 700;
  border-radius: 6px;
  padding: .25rem .6rem;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: #fff;
  cursor: pointer;
  transition: background .15s;
}
.lang-switcher-btn:hover {
  background: rgba(255,255,255,.2);
}

/* ── LTR Navbar Fix ──────────────────────────────────────────── */
html[dir="ltr"] .main-navbar .container {
  flex-direction: row;
}
html[dir="ltr"] .main-navbar .navbar-brand {
  margin-right: 1rem;
  margin-left: 0;
}
html[dir="ltr"] .main-navbar .navbar-nav .nav-link {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
html[dir="ltr"] .main-navbar .dropdown-menu {
  right: auto;
  left: 0;
}
html[dir="ltr"] .dropdown-menu-end {
  right: 0 !important;
  left: auto !important;
}

/* ── LTR Footer Fix ──────────────────────────────────────────── */
html[dir="ltr"] .footer-links {
  text-align: left;
}
html[dir="ltr"] footer h5 {
  text-align: left;
}
html[dir="ltr"] .footer-bottom {
  flex-direction: row-reverse;
}
html[dir="ltr"] .footer-social {
  justify-content: flex-start;
}

/* ── LTR General Fixes ───────────────────────────────────────── */
html[dir="ltr"] .breadcrumb {
  flex-direction: row;
}
html[dir="ltr"] .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  float: left;
  padding-right: 0;
  padding-left: 0.5rem;
}
html[dir="ltr"] .section-header {
  flex-direction: row;
}
html[dir="ltr"] .view-all {
  float: left;
}
html[dir="ltr"] .prop-card-img .prop-card-badges {
  left: auto;
  right: 8px;
}
html[dir="ltr"] .prop-card-img .prop-card-fav {
  right: auto;
  left: 8px;
}
html[dir="ltr"] .country-card {
  text-align: center;
}
html[dir="ltr"] .lead-form {
  text-align: left;
}
html[dir="ltr"] .pro-card {
  text-align: left;
}
html[dir="ltr"] .stats-bar .stat-item {
  border-left: none;
  border-right: 1px solid rgba(255,255,255,.15);
}
html[dir="ltr"] .stats-bar .stat-item:last-child {
  border-right: none;
}
/* hero search box */
html[dir="ltr"] .hero-search-box {
  text-align: left;
}

/* ── Admin Sidebar LTR ───────────────────────────────────────── */
html[dir="ltr"] .dashboard-sidebar {
  right: auto;
  left: 0;
}
html[dir="ltr"] .dashboard-layout {
  flex-direction: row;
}
html[dir="ltr"] .dash-nav-item {
  border-right: none;
  border-left: 3px solid transparent;
}
html[dir="ltr"] .dash-nav-item.active {
  border-left-color: var(--accent);
}
html[dir="ltr"] .dash-nav-badge {
  margin-left: auto;
  margin-right: 0;
}

/* ══════════════════════════════════════════════════════════
   NAVBAR – Clean Design
══════════════════════════════════════════════════════════ */

/* Search box */
.nav-search-box {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-search-icon {
  position: absolute;
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  pointer-events: none;
  z-index: 1;
}
html[dir="rtl"] .nav-search-icon { right: 11px; }
html[dir="ltr"] .nav-search-icon { left: 11px; }

.nav-search-box input {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 20px;
  color: #fff;
  font-size: .855rem;
  height: 34px;
  width: 175px;
  outline: none;
  transition: background .2s, border-color .2s, width .3s;
  font-family: 'Heebo', sans-serif;
}
html[dir="rtl"] .nav-search-box input { padding: 0 2rem 0 .9rem; }
html[dir="ltr"] .nav-search-box input { padding: 0 .9rem 0 2rem; }
.nav-search-box input::placeholder { color: rgba(255,255,255,.45); }
.nav-search-box input:focus {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.35);
  width: 210px;
}
.nav-search-results {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  width: 340px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  z-index: 1050;
  max-height: 380px;
  overflow-y: auto;
}
html[dir="rtl"] .nav-search-results { right: 0; }
html[dir="ltr"] .nav-search-results { left: 0; }

/* Pill button (language) */
.nav-pill-btn {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 20px;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  height: 32px;
  padding: 0 .7rem;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.nav-pill-btn:hover { background: rgba(255,255,255,.18); }
.nav-pill-btn::after { display: none; }

/* Bell icon */
.nav-icon-link {
  position: relative;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .95rem;
  transition: background .15s;
}
.nav-icon-link:hover { background: rgba(255,255,255,.1); color: #fff; }
.nav-notif-badge {
  position: absolute;
  top: 1px; right: 1px;
  background: #e74c3c;
  color: #fff;
  border-radius: 10px;
  font-size: .58rem;
  font-weight: 800;
  padding: .05rem .28rem;
  line-height: 1.5;
}

/* User button */
.nav-user-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 20px;
  color: #fff;
  font-size: .855rem;
  font-weight: 600;
  height: 34px;
  padding: 0 .7rem;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.nav-user-btn:hover { background: rgba(255,255,255,.18); }
.nav-user-btn::after { display: none; }
.nav-user-avatar { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.nav-user-initial {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: var(--primary);
  font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Guest buttons */
.nav-ghost-btn {
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 20px;
  font-size: .83rem;
  font-weight: 600;
  height: 34px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.nav-ghost-btn:hover { background: rgba(255,255,255,.1); color: #fff; }

.nav-accent-btn {
  background: var(--accent);
  color: var(--primary) !important;
  border-radius: 20px;
  font-size: .83rem;
  font-weight: 800;
  height: 34px;
  padding: 0 1.1rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: filter .15s;
  white-space: nowrap;
}
.nav-accent-btn:hover { filter: brightness(1.08); }

/* Publish button */
.nav-publish-btn {
  background: rgba(26,111,168,.55);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 20px;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  height: 34px;
  padding: 0 .9rem;
  align-items: center;
  gap: .3rem;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.nav-publish-btn:hover { background: rgba(26,111,168,.85); color: #fff; }

/* ══ Navbar Fix – Force single row layout ══════════════════ */
@media (min-width: 992px) {
  .main-navbar .navbar-collapse {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    justify-content: space-between;
    width: 100%;
  }
  .main-navbar .navbar-nav {
    flex-direction: row !important;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    flex: 1;
    justify-content: center;
  }
  .main-navbar .navbar-nav .nav-item {
    flex-shrink: 0;
  }

  /* Search stays compact */
  .nav-search-box {
    flex-shrink: 0;
  }

  /* Right-side group stays together */
  .main-navbar .navbar-collapse > .d-flex {
    flex-shrink: 0;
    flex-wrap: nowrap !important;
    gap: .35rem !important;
  }
}

/* Guest buttons – compact */
.nav-ghost-btn,
.nav-accent-btn {
  font-size: .8rem !important;
  padding: 0 .85rem !important;
  height: 32px !important;
  white-space: nowrap;
}
.nav-publish-btn {
  font-size: .8rem !important;
  padding: 0 .75rem !important;
  height: 32px !important;
}
.nav-pill-btn {
  height: 32px !important;
  padding: 0 .6rem !important;
  font-size: .8rem !important;
}
.nav-user-btn {
  height: 32px !important;
  padding: 0 .6rem !important;
  font-size: .82rem !important;
}
.nav-search-box input {
  width: 155px !important;
}
.nav-search-box input:focus {
  width: 190px !important;
}

/* ══ Site Header – Custom (no Bootstrap navbar) ══════════════ */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1040;
  box-shadow: 0 2px 16px rgba(10,35,66,.3);
}
.site-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 1rem;
  direction: rtl; /* always RTL container, items handle their own direction */
}
html[dir="ltr"] .site-header__inner { direction: ltr; }

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo__icon { font-size: 1.5rem; line-height: 1; }
.site-logo__name { display: block; font-size: 1rem; font-weight: 900; color: #fff; line-height: 1.1; }
.site-logo__sub  { display: block; font-size: .62rem; color: var(--accent); font-weight: 500; }

/* Desktop Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: .1rem;
  flex: 1;
  justify-content: center;
  list-style: none;
  margin: 0; padding: 0;
}
.site-nav__link,
.site-nav__link--btn {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 600;
  padding: .4rem .75rem;
  border-radius: 8px;
  transition: background .15s, color .15s;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .25rem;
  line-height: 1;
}
.site-nav__link:hover, .site-nav__link--btn:hover { background: rgba(255,255,255,.1); color: #fff; }

/* Countries dropdown */
.site-nav__dropdown { position: relative; }
.site-nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(10,35,66,.18);
  padding: .5rem;
  min-width: 175px;
  z-index: 200;
  direction: rtl;
}
html[dir="ltr"] .site-nav__dropdown-menu { right: auto; left: 0; direction: ltr; }
.site-nav__dropdown.open .site-nav__dropdown-menu { display: block; }
.site-nav__dropdown-item {
  display: flex; align-items: center; gap: .5rem;
  padding: .42rem .8rem; border-radius: 8px;
  text-decoration: none; color: var(--text-main);
  font-size: .875rem; font-weight: 500;
  transition: background .12s;
}
.site-nav__dropdown-item:hover { background: var(--bg-light); color: var(--primary); }

/* Right actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-shrink: 0;
}

/* Search */
.site-search { position: relative; display: flex; align-items: center; }
.site-search__icon {
  position: absolute;
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  pointer-events: none;
  z-index: 1;
}
html[dir="rtl"] .site-search__icon { right: 10px; }
html[dir="ltr"] .site-search__icon { left: 10px; }
.site-search__input {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 18px;
  color: #fff;
  font-size: .84rem;
  height: 32px;
  width: 155px;
  outline: none;
  font-family: 'Heebo', sans-serif;
  transition: background .2s, width .3s;
}
html[dir="rtl"] .site-search__input { padding: 0 2rem 0 .8rem; }
html[dir="ltr"] .site-search__input { padding: 0 .8rem 0 2rem; }
.site-search__input::placeholder { color: rgba(255,255,255,.45); }
.site-search__input:focus { background: rgba(255,255,255,.15); width: 185px; border-color: rgba(255,255,255,.35); }
.site-search__results {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  width: 330px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  z-index: 1050;
  max-height: 360px;
  overflow-y: auto;
}
html[dir="rtl"] .site-search__results { right: 0; }
html[dir="ltr"] .site-search__results { left: 0; }

/* Shared pill style */
.sh-pill {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 18px;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  height: 32px;
  padding: 0 .65rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
  display: flex; align-items: center; gap: .25rem;
}
.sh-pill:hover { background: rgba(255,255,255,.18); }
.sh-pill::after { display: none; }

/* Bell */
.sh-bell {
  position: relative;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .92rem;
  transition: background .15s;
}
.sh-bell:hover { background: rgba(255,255,255,.1); color: #fff; }
.sh-badge {
  position: absolute; top: 1px; right: 1px;
  background: #e74c3c; color: #fff;
  border-radius: 8px; font-size: .56rem;
  font-weight: 800; padding: .05rem .25rem; line-height: 1.5;
}

/* User button */
.sh-user {
  display: flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 18px;
  color: #fff; font-size: .84rem; font-weight: 600;
  height: 32px; padding: 0 .65rem;
  cursor: pointer; transition: background .15s; white-space: nowrap;
}
.sh-user:hover { background: rgba(255,255,255,.18); }
.sh-user::after { display: none; }
.sh-avatar { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.sh-initial {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: var(--primary);
  font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Login/Register */
.sh-ghost {
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 18px;
  font-size: .8rem; font-weight: 600;
  height: 32px; padding: 0 .9rem;
  display: flex; align-items: center;
  text-decoration: none;
  transition: background .15s; white-space: nowrap;
}
.sh-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.sh-accent {
  background: var(--accent); color: var(--primary) !important;
  border-radius: 18px; font-size: .8rem; font-weight: 800;
  height: 32px; padding: 0 1rem;
  display: flex; align-items: center;
  text-decoration: none; transition: filter .15s; white-space: nowrap;
}
.sh-accent:hover { filter: brightness(1.08); }
.sh-publish {
  background: rgba(26,111,168,.5);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 18px; color: #fff;
  font-size: .8rem; font-weight: 700;
  height: 32px; padding: 0 .8rem;
  align-items: center; gap: .25rem;
  text-decoration: none; transition: background .15s; white-space: nowrap;
}
.sh-publish:hover { background: rgba(26,111,168,.8); color: #fff; }

/* Mobile toggle */
.sh-toggle {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 8px; color: #fff;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer; transition: background .15s;
}
.sh-toggle:hover { background: rgba(255,255,255,.18); }

/* Mobile menu */
.site-mobile-menu {
  background: var(--primary);
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 1.25rem;
}
.site-mobile-menu.open { max-height: 560px; padding: .5rem 1.25rem .75rem; }
.site-mobile-menu a {
  display: block; color: rgba(255,255,255,.82); text-decoration: none;
  padding: .55rem .5rem; font-size: .9rem; font-weight: 500;
  border-radius: 8px; transition: background .12s;
}
.site-mobile-menu a:hover { background: rgba(255,255,255,.08); color: #fff; }

/* ══════════════════════════════════════════════════════════
   PROPERTY CARDS – Upgraded Design
══════════════════════════════════════════════════════════ */

/* Override existing prop-card */
.prop-card {
  background: #fff;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,35,66,.07) !important;
  border: 1px solid rgba(10,35,66,.08) !important;
  transition: box-shadow .25s ease, transform .25s ease !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.prop-card:hover {
  box-shadow: 0 12px 36px rgba(10,35,66,.14) !important;
  transform: translateY(-5px) !important;
  border-color: rgba(26,111,168,.18) !important;
}
.prop-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  flex-shrink: 0;
}
.prop-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease !important;
}
.prop-card:hover .prop-card-img img {
  transform: scale(1.07) !important;
}

/* Gradient overlay on image bottom */
.prop-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10,35,66,.45) 0%, transparent 100%);
  pointer-events: none;
}

/* Badges - positioned over image */
.prop-card-badges {
  position: absolute;
  top: .65rem;
  right: .65rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  z-index: 2;
}
html[dir="ltr"] .prop-card-badges { right: auto; left: .65rem; }

.prop-badge {
  display: inline-flex;
  align-items: center;
  padding: .22rem .6rem;
  border-radius: 6px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .02em;
  backdrop-filter: blur(4px);
}
.prop-badge-featured { background: var(--accent); color: var(--primary); }
.prop-badge-premium  { background: rgba(10,35,66,.85); color: #fff; }
.prop-badge-sale     { background: rgba(39,174,96,.9); color: #fff; }
.prop-badge-rent     { background: rgba(26,111,168,.9); color: #fff; }

/* Fav button */
.prop-card-fav {
  position: absolute;
  top: .65rem;
  left: .65rem;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
  border: none;
  color: #bbb;
  font-size: .9rem;
  backdrop-filter: blur(4px);
  z-index: 2;
}
html[dir="ltr"] .prop-card-fav { left: auto; right: .65rem; }
.prop-card-fav:hover, .prop-card-fav.active { color: #e74c3c; background: #fff; transform: scale(1.12); }

/* Card body */
.prop-card-body {
  padding: 1rem 1.1rem 1.15rem !important;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prop-location {
  font-size: .75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-bottom: .35rem;
  font-weight: 500;
}

.prop-title {
  font-size: .975rem !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  margin-bottom: .45rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}

.prop-price {
  font-size: 1.15rem !important;
  font-weight: 900 !important;
  color: var(--accent) !important;
  margin-bottom: .6rem;
  letter-spacing: -.01em;
}

.prop-meta {
  display: flex;
  gap: .8rem;
  font-size: .74rem;
  color: var(--text-muted);
  border-top: 1px solid #f0f0f0;
  padding-top: .65rem;
  margin-top: auto;
  flex-wrap: wrap;
  align-items: center;
}
.prop-meta span { display: flex; align-items: center; gap: .25rem; }
.prop-meta .ms-auto, .prop-meta .me-auto { margin-top: 0; }

/* ══ Professional Cards – Upgraded ═══════════════════════ */
.pro-card {
  background: #fff;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,35,66,.07) !important;
  border: 1px solid rgba(10,35,66,.08) !important;
  transition: box-shadow .25s, transform .25s !important;
  padding: 1.5rem !important;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pro-card:hover {
  box-shadow: 0 12px 36px rgba(10,35,66,.14) !important;
  transform: translateY(-5px) !important;
}
.pro-avatar {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  object-fit: cover;
  border: 3px solid var(--bg-light);
  margin-bottom: .75rem;
}
.pro-name {
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  margin-bottom: .15rem;
}
.pro-title {
  font-size: .8rem !important;
  color: var(--secondary) !important;
  font-weight: 600 !important;
  margin-bottom: .4rem;
}
.pro-location {
  font-size: .75rem !important;
  color: var(--text-muted) !important;
  margin-bottom: .5rem;
}
.pro-verified {
  font-size: .75rem;
  color: #27ae60;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}

/* ══ Section Headers – Upgraded ══════════════════════════ */
.section-header {
  margin-bottom: 1.75rem !important;
}
.badge-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(26,111,168,.12), rgba(26,111,168,.06));
  color: var(--secondary);
  border: 1px solid rgba(26,111,168,.2);
  border-radius: 20px;
  padding: .25rem .85rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.section-header h2 {
  font-size: 1.65rem !important;
  font-weight: 900 !important;
  color: var(--primary) !important;
  margin-bottom: 0 !important;
}
.view-all {
  font-size: .855rem;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .4rem .9rem;
  border: 1.5px solid rgba(26,111,168,.25);
  border-radius: 20px;
  transition: background .15s, border-color .15s;
}
.view-all:hover {
  background: rgba(26,111,168,.06);
  border-color: var(--secondary);
  color: var(--secondary);
}

/* ══ Country Cards – Upgraded ════════════════════════════ */
.country-card {
  background: #fff;
  border: 1.5px solid rgba(10,35,66,.08);
  border-radius: 14px !important;
  padding: 1.2rem .75rem !important;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.country-card:hover {
  box-shadow: 0 8px 24px rgba(10,35,66,.12);
  transform: translateY(-4px);
  border-color: rgba(26,111,168,.25);
}
.country-card .flag { font-size: 2.6rem !important; margin-bottom: .45rem; display: block; }
.country-card .name { font-weight: 800 !important; color: var(--primary) !important; font-size: .9rem !important; }
.country-card .count { font-size: .75rem; color: var(--text-muted); margin-top: .2rem; }

/* ══ Module Cards – Upgraded ═════════════════════════════ */
.module-card {
  border-radius: 16px !important;
  padding: 2rem 1.5rem !important;
  transition: transform .25s, box-shadow .25s !important;
}
.module-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 40px rgba(10,35,66,.25) !important;
}
.mc-icon {
  width: 54px !important;
  height: 54px !important;
  border-radius: 14px !important;
  font-size: 1.4rem !important;
  margin-bottom: 1.1rem;
}
.module-card h3 { font-size: 1.1rem !important; font-weight: 800 !important; }
