/* ============================================
   HS GLOBAL CONSULTANTS — SHARED DESIGN SYSTEM
   ============================================ */
:root {
  --navy:        #0A1628;
  --deep-blue:   #0D2B55;
  --mid-blue:    #1A5AA8;
  --sky-blue:    #2E86DE;
  --light-blue:  #5BA4CF;
  --orange:      #FF5722;
  --orange-hot:  #FF3D00;
  --gold:        #FFC107;
  --white:       #FFFFFF;
  --off-white:   #F8FAFF;
  --gray-50:     #F9FAFB;
  --gray-100:    #F1F4F9;
  --gray-200:    #E2E8F0;
  --gray-300:    #CBD5E1;
  --gray-500:    #64748B;
  --gray-700:    #334155;
  --success:     #22C55E;
  --warning:     #F59E0B;
  --danger:      #EF4444;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-xs:  0 1px 4px rgba(10,22,40,0.06);
  --shadow-sm:  0 2px 8px rgba(10,22,40,0.08);
  --shadow-md:  0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg:  0 20px 60px rgba(10,22,40,0.18);
  --shadow-orange: 0 8px 32px rgba(255,87,34,0.3);

  --transition: all 0.25s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--navy); background: var(--white); line-height: 1.6; }
.page-wrapper { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---- LAYOUT ---- */
.container      { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.section        { padding: 96px 0; }
.section-sm     { padding: 64px 0; }
.section-xs     { padding: 40px 0; }
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.text-right  { text-align: right; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; }
h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
h5 { font-size: 15px; font-weight: 600; }
p  { color: var(--gray-500); line-height: 1.7; }
.lead { font-size: 18px; color: var(--gray-500); line-height: 1.7; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(46,134,222,0.1); color: var(--mid-blue);
  border: 1px solid rgba(46,134,222,0.2);
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; font-family: var(--font-display);
  margin-bottom: 16px;
}
.section-eyebrow.orange { background: rgba(255,87,34,0.1); color: var(--orange); border-color: rgba(255,87,34,0.25); }
.section-title   { margin-bottom: 16px; }
.section-sub     { font-size: 17px; color: var(--gray-500); max-width: 620px; line-height: 1.7; }
.section-sub.center { margin: 0 auto; text-align: center; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-md);
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  border: 2px solid transparent; cursor: pointer;
  transition: var(--transition); text-decoration: none; white-space: nowrap;
  line-height: 1;
}
.btn-sm  { padding: 9px 16px; font-size: 13px; white-space: nowrap; }
.btn-lg  { padding: 18px 36px; font-size: 17px; }
.btn-xl  { padding: 20px 44px; font-size: 18px; border-radius: var(--radius-lg); }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-hot));
  color: var(--white); border-color: transparent;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,87,34,0.45); }

.btn-blue {
  background: linear-gradient(135deg, var(--mid-blue), var(--sky-blue));
  color: var(--white); border-color: transparent;
  box-shadow: 0 8px 24px rgba(26,90,168,0.3);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(26,90,168,0.4); }

.btn-secondary {
  background: var(--white); color: var(--navy);
  border-color: var(--gray-200);
}
.btn-secondary:hover { border-color: var(--mid-blue); color: var(--mid-blue); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--mid-blue);
  border-color: var(--mid-blue);
}
.btn-outline:hover { background: var(--mid-blue); color: var(--white); }

.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-white {
  background: var(--white); color: var(--orange);
  border-color: transparent; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.18); }

.btn-ghost { background: transparent; color: var(--gray-700); border-color: transparent; padding-left: 0; }
.btn-ghost:hover { color: var(--mid-blue); gap: 12px; }

/* ---- CARDS ---- */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100);
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-hover-blue:hover { border-color: var(--sky-blue); }
.card-p  { padding: 32px; }
.card-p-sm { padding: 20px; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--gray-700); margin-bottom: 6px;
  letter-spacing: 0.6px; text-transform: uppercase;
}
.form-control {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--navy); background: var(--white);
  outline: none; transition: border-color 0.2s;
  font-family: var(--font-body); line-height: 1.4;
}
.form-control:focus { border-color: var(--sky-blue); }
.form-control::placeholder { color: var(--gray-300); }
.form-control-dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.form-control-dark::placeholder { color: rgba(255,255,255,0.35); }
.form-control-dark:focus { border-color: var(--sky-blue); }
.form-control-dark option { background: var(--deep-blue); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12px; color: var(--gray-500); margin-top: 5px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 5px; }

/* ---- BADGES ---- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
}
.badge-blue    { background: #EFF6FF; color: var(--mid-blue); }
.badge-orange  { background: #FFF3E0; color: var(--orange); }
.badge-green   { background: #F0FDF4; color: #15803D; }
.badge-yellow  { background: #FEFCE8; color: #92400E; }
.badge-purple  { background: #FAF5FF; color: #7C3AED; }
.badge-gray    { background: var(--gray-100); color: var(--gray-700); }
.badge-red     { background: #FEF2F2; color: #DC2626; }

/* ---- STATUS BADGES (CRM) ---- */
.status { display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.status-new       { background: #EFF6FF; color: #1D4ED8; }
.status-contacted { background: #F0FDF4; color: #15803D; }
.status-counselling { background: #FFF7ED; color: #C2410C; }
.status-applied   { background: #FAF5FF; color: #7C3AED; }
.status-offer     { background: #ECFDF5; color: #065F46; }
.status-visa      { background: #FEF3C7; color: #92400E; }
.status-approved  { background: #D1FAE5; color: #064E3B; }
.status-enrolled  { background: #0A1628; color: #fff; }
.status-pending   { background: #FEF3C7; color: #92400E; }
.status-rejected  { background: #FEF2F2; color: #991B1B; }

/* ---- TABLES ---- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1.5px solid var(--gray-100); }
table { width: 100%; border-collapse: collapse; }
thead th {
  background: var(--gray-50); padding: 14px 16px;
  font-size: 12px; font-weight: 700; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.7px;
  text-align: left; border-bottom: 1.5px solid var(--gray-100);
}
tbody td { padding: 14px 16px; font-size: 14px; border-bottom: 1px solid var(--gray-50); color: var(--gray-700); vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--gray-50); }
.table-action { display: flex; gap: 6px; }

/* ---- TOPBAR ---- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: var(--navy); padding: 10px 0;
  font-size: 13px; color: rgba(255,255,255,0.75);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left  { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 12px; align-items: center; }
.topbar a { color: rgba(255,255,255,0.75); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: color 0.2s; }
.topbar a:hover { color: var(--orange); }
.topbar .social-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; transition: background 0.2s;
}
.topbar .social-icon:hover { background: var(--orange); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 44px; left: 0; right: 0; z-index: 1000;
  background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,.08);
  border-bottom: 3px solid var(--sky-blue);
  transition: box-shadow 0.3s;
}
/* Push content below fixed navbar */
body { padding-top: 116px; }
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; gap: 16px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-mark {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--deep-blue), var(--sky-blue));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-display); font-weight: 800; font-size: 17px;
  flex-shrink: 0;
}
.logo-text strong { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--navy); line-height: 1.1; display: block; }
.logo-text span   { font-size: 11px; color: var(--gray-500); letter-spacing: 1px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; flex-shrink: 1; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 3px;
  padding: 8px 11px; border-radius: var(--radius-sm);
  color: var(--gray-700); text-decoration: none;
  font-size: 13.5px; font-weight: 600; font-family: var(--font-display);
  white-space: nowrap;
  transition: var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--mid-blue); background: var(--gray-100); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1.5px solid var(--gray-100);
  min-width: 220px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s; z-index: 200;
}
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  color: var(--gray-700); text-decoration: none; font-size: 14px;
  transition: var(--transition);
}
.dropdown a:hover { background: var(--gray-100); color: var(--mid-blue); }

.nav-ctas { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-whatsapp {
  display: flex; align-items: center; gap: 6px;
  background: #25D366; color: white;
  padding: 9px 14px; border-radius: var(--radius-md);
  font-size: 13px; font-weight: 700; text-decoration: none;
  font-family: var(--font-display); transition: var(--transition);
  white-space: nowrap;
}
.nav-whatsapp:hover { background: #1db954; transform: translateY(-1px); }
.nav-whatsapp.nav-livechat-blink { position: relative; }
.livechat-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FFFFFF; flex-shrink: 0;
  animation: livechatBlink 1.2s ease-in-out infinite;
}
@keyframes livechatBlink {
  0%   { opacity: 1;   box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  50%  { opacity: 0.3; box-shadow: 0 0 0 5px rgba(255,255,255,0); }
  100% { opacity: 1;   box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; display: block; }

/* ---- ANNOUNCEMENT TICKER ---- */
.announce-bar { position: fixed; top: 116px; left: 0; right: 0; z-index: 999; background: linear-gradient(90deg, var(--orange), #FF8C00); padding: 11px 0; overflow: hidden; }
.announce-track { display: flex; gap: 60px; animation: ticker 28s linear infinite; white-space: nowrap; }
@keyframes ticker { to { transform: translateX(-50%); } }
.announce-item { display: flex; align-items: center; gap: 8px; color: white; font-weight: 600; font-size: 13px; font-family: var(--font-display); }
.announce-item .tag { background: rgba(255,255,255,0.25); padding: 2px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; }

/* ---- HERO (PAGE) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 60%, #0D3B7A 100%);
  padding: 80px 0 70px; position: relative; overflow: hidden;
}
.page-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'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,0.75); max-width: 640px; margin-bottom: 32px; }
.page-hero-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.page-hero-meta-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 14px; }
.page-hero-meta-item strong { color: white; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none; }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb span { color: rgba(255,255,255,0.3); font-size: 12px; }
.breadcrumb .current { color: rgba(255,255,255,0.85); font-size: 13px; }

/* ---- STATS ROW ---- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--gray-200); border-radius: var(--radius-md); overflow: hidden; }
.stat-item { background: var(--white); padding: 28px 24px; text-align: center; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.stat-item span { font-size: 13px; color: var(--gray-500); }
.stat-item.dark { background: var(--navy); }
.stat-item.dark strong { color: white; }
.stat-item.dark span { color: rgba(255,255,255,0.5); }

/* ---- COUNTRY CARDS ---- */
.country-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100); overflow: hidden;
  text-decoration: none; color: inherit; display: block;
  transition: var(--transition);
}
.country-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sky-blue); }
.country-card-header {
  background: linear-gradient(135deg, var(--navy), var(--deep-blue));
  padding: 28px 20px; text-align: center;
}
.country-card-header .flag { font-size: 52px; display: block; margin-bottom: 8px; }
.country-card-header h3 { color: white; font-size: 18px; }
.country-card-body { padding: 20px; }
.country-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.country-card-cta { display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; color: var(--mid-blue); font-family: var(--font-display); }

/* ---- TABS ---- */
.tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 22px; border-radius: 100px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  cursor: pointer; border: 2px solid var(--gray-200);
  color: var(--gray-500); transition: var(--transition); background: var(--white);
}
.tab-btn.active, .tab-btn:hover { border-color: var(--mid-blue); color: var(--mid-blue); background: rgba(46,134,222,0.06); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ---- TIMELINE ---- */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--gray-200); }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-dot { position: absolute; left: -28px; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--sky-blue); border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--sky-blue); }
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { font-size: 14px; }

/* ---- ACCORDION ---- */
.accordion { border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--gray-100); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; background: var(--white);
  transition: background 0.2s; gap: 16px;
}
.accordion-header:hover { background: var(--gray-50); }
.accordion-header h4 { font-size: 15px; margin: 0; flex: 1; }
.accordion-icon { font-size: 18px; color: var(--sky-blue); transition: transform 0.3s; flex-shrink: 0; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; }
.accordion-item.open .accordion-body { max-height: 400px; padding: 0 24px 20px; }
.accordion-body p { font-size: 14px; color: var(--gray-500); }

/* ---- ALERT BOXES ---- */
.alert { display: flex; gap: 12px; padding: 16px 20px; border-radius: var(--radius-md); font-size: 14px; }
.alert-icon { font-size: 18px; flex-shrink: 0; }
.alert-blue   { background: #EFF6FF; color: #1E40AF; border-left: 4px solid var(--sky-blue); }
.alert-green  { background: #F0FDF4; color: #14532D; border-left: 4px solid var(--success); }
.alert-orange { background: #FFF7ED; color: #9A3412; border-left: 4px solid var(--orange); }
.alert-red    { background: #FEF2F2; color: #991B1B; border-left: 4px solid var(--danger); }

/* ---- CONSULTATION WIDGET ---- */
.consult-widget {
  background: linear-gradient(135deg, var(--navy), var(--deep-blue));
  border-radius: var(--radius-xl); padding: 40px;
  position: sticky; top: 90px;
}
.consult-widget h3 { color: white; margin-bottom: 6px; font-size: 22px; }
.consult-widget > p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 24px; }
.consult-widget .form-label { color: rgba(255,255,255,0.6); }

/* Consult Widget Form Fields */
.cw-field { margin-bottom: 14px; }
.cw-field label { display: block; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 5px; }
.cw-field input, .cw-field select { width: 100%; padding: 10px 13px; background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2); border-radius: 8px; color: white; font-size: 14px; font-family: inherit; box-sizing: border-box; outline: none; transition: border-color 0.2s; }
.cw-field input::placeholder { color: rgba(255,255,255,0.35); }
.cw-field input:focus, .cw-field select:focus { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.15); }
.cw-field select { -webkit-appearance: none; appearance: none; cursor: pointer; }
.cw-field select option { background: #003B71; color: white; }
.cw-success { text-align: center; padding: 20px 0; }
.cw-privacy { font-size: 11px; color: rgba(255,255,255,0.4); text-align: center; margin: 10px 0 0; }
.consult-trust { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; justify-content: center; }
.consult-trust span { font-size: 11px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 4px; }
.consult-trust .ok { color: var(--success); }

/* ---- FLOATING WHATSAPP ---- */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  text-decoration: none; transition: transform 0.2s;
  animation: wa-pulse 3s infinite;
}
@keyframes wa-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
.wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: white; color: var(--navy); padding: 8px 14px;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  white-space: nowrap; box-shadow: var(--shadow-sm);
  opacity: 0; transition: opacity 0.2s; pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ---- FOOTER ---- */
footer { background: var(--navy); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 60px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: white; border-color: var(--orange); }
.footer-col h4 {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.4); margin-bottom: 18px;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px;
  transition: color 0.2s; display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-contact-item .ico { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.footer-contact-item p { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.6; margin: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-contact-item a:hover { color: var(--orange); }
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-form input { flex: 1; padding: 11px 14px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); color: white; font-size: 13px; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button { background: var(--orange); color: white; border: none; border-radius: var(--radius-sm); padding: 11px 16px; cursor: pointer; font-size: 14px; transition: background 0.2s; }
.newsletter-form button:hover { background: var(--orange-hot); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .topbar-left { display: none; }
  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 16px; box-shadow: var(--shadow-md); z-index: 200; }
  .nav-links.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--gray-50); }
  .nav-ctas.open { display: flex; flex-direction: column; position: absolute; top: calc(100% + 220px); left: 0; right: 0; background: white; padding: 16px; box-shadow: var(--shadow-md); z-index: 200; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   MOBILE MENU (v2 — full overlay)
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: white; z-index: 999;
  overflow-y: auto; padding-top: 80px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open {
  display: block;
  transform: translateX(0);
}
.mobile-menu-inner { padding: 16px 20px 40px; }
.mobile-link {
  display: block; padding: 14px 16px; font-size: 16px; font-weight: 600;
  color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--gray-100);
  font-family: var(--font-display); transition: color 0.2s;
}
.mobile-link:hover { color: var(--mid-blue); }
.mobile-link.mobile-sub { padding-left: 32px; font-size: 14px; font-weight: 500; color: var(--gray-700); }
.mobile-group { margin: 4px 0; }
.mobile-group-title {
  padding: 12px 16px; font-size: 11px; font-weight: 700;
  color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px;
  background: var(--gray-50);
}
.mobile-ctas { padding: 20px 0 0; }

/* Hamburger → X animation */
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   MOBILE RESPONSIVE FIXES (v2)
   ============================================ */
@media (max-width: 768px) {
  /* Topbar */
  .topbar-left { display: none; }
  .topbar-right { gap: 6px; }

  /* Navbar */
  .nav-links, .nav-ctas { display: none !important; }
  .hamburger { display: flex; }

  /* Hero (homepage) */
  .hero-inner,
  .hero-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .hero-form-card { display: none; } /* form shows below on mobile instead */
  .hero-title { font-size: clamp(30px, 8vw, 44px) !important; }
  .hero-search-row { flex-direction: column !important; gap: 10px !important; }
  .hero-search-row > * { width: 100% !important; }

  /* Destination / service pages */
  .dest-hero-inner,
  .dest-layout,
  .service-layout,
  .service-layout.reverse { grid-template-columns: 1fr !important; direction: ltr !important; }
  .consult-widget { position: static !important; }

  /* Grids */
  .grid-2, .grid-3, .grid-4,
  .uni-cards, .info-grid,
  .ceo-grid, .timeline-grid,
  .values-grid, .team-grid,
  .chart-grid, .footer-grid { grid-template-columns: 1fr !important; }

  /* Stats row: 2 columns on mobile */
  .stats-row { grid-template-columns: 1fr 1fr !important; }

  /* Blog layout */
  .blog-layout { grid-template-columns: 1fr !important; }
  .blog-grid { grid-template-columns: 1fr !important; }

  /* Contact layout */
  .contact-layout { grid-template-columns: 1fr !important; }

  /* Finder */
  .finder-layout { grid-template-columns: 1fr !important; }
  .filter-sidebar { display: none; }
  .filter-sidebar.mobile-open { display: block !important; }
  .finder-main-search { flex-direction: column !important; gap: 10px !important; }
  .finder-main-search > * { width: 100% !important; }
  .course-card-inner { flex-direction: column !important; }
  .course-card-body { flex-direction: column !important; }
  .course-actions { flex-direction: row !important; min-width: unset !important; padding: 0 16px 16px !important; justify-content: space-between; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-bottom { flex-direction: column !important; text-align: center !important; }
  .footer-bottom-links { justify-content: center; }

  /* Section spacing */
  .section { padding: 52px 0 !important; }
  .section-sm { padding: 40px 0 !important; }
  .container { padding: 0 16px !important; }

  /* Post layout */
  .post-layout { grid-template-columns: 1fr !important; }

  /* Hours grid */
  .hours-grid { grid-template-columns: 1fr !important; }

  /* CRM sidebar — hide on mobile */
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .main { margin-left: 0 !important; }
  .stat-cards { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr !important; }
  .dest-quick-facts { gap: 10px !important; }
  .dqf { padding: 10px 12px !important; }
  .dqf strong { font-size: 18px !important; }
  .btn-xl { padding: 16px 28px !important; font-size: 15px !important; }
  .section-title { font-size: clamp(24px, 6vw, 36px) !important; }
  .announce-bar { display: none; } /* Too cluttered on tiny screens */
}

/* Tablet (769–1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-4 { grid-template-columns: 1fr 1fr !important; }
  .team-grid { grid-template-columns: 1fr 1fr !important; }
  .uni-cards { grid-template-columns: 1fr 1fr !important; }
  .blog-grid { grid-template-columns: 1fr 1fr !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
  .dest-layout, .contact-layout, .post-layout { grid-template-columns: 1fr 300px !important; }
}

/* ============================================
   REAL LOGO IMAGE
   ============================================ */
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* On dark backgrounds (mobile menu etc) show white version */
.mobile-menu .logo-img { filter: brightness(0) invert(1); }

@media (max-width: 768px) {
  .logo-img { height: 40px; }
}

/* Blog Hero Image */
.blog-hero-image {
  background: var(--navy);
  padding-bottom: 40px;
}

/* Immigration dropdown section labels */
.dropdown-section-label {
  padding: 8px 16px 2px;
  font-size: 10px;
  font-weight: 800;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  cursor: default;
}
.dropdown-divider {
  height: 1px;
  background: #F1F5F9;
  margin: 6px 0;
}

/* ================================================
   ACCESSIBILITY: Respect prefers-reduced-motion
   Fixes WCAG 2.2 A 2.2.2 - no 5+ second animations
   without a pause mechanism
   ================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .announce-track { animation: none !important; }
  .livechat-dot { animation: none !important; opacity: 1 !important; }
  #liveChatFloat .lcf-dot { animation: none !important; opacity: 1 !important; }
}

/* ================================================
   PERFORMANCE OPTIMIZATIONS
   content-visibility: auto makes browser skip 
   rendering off-screen content (huge mobile win)
   ================================================ */
.section, section { content-visibility: auto; contain-intrinsic-size: 0 500px; }
.hero, .dest-hero, .services-hero, .blog-hero { content-visibility: visible; }
.announce-track { will-change: transform; }
.navbar { will-change: transform; }
img { max-width: 100%; height: auto; }
