/*
Theme Name: Admission Navigate Consultancy
Theme URI: https://admissionnavigate.com
Author: Admission Navigate Consultancy (DCTechOfficial)
Author URI: https://admissionnavigate.com
Description: The official production WordPress theme for Admission Navigate Consultancy, converted from the client's live static site (styles.css / index.html / about.html / services.html / study-canada.html / colleges.html / contact.html / book-consultation.html / careers.html / legal.html / privacy.html / blog). Palette: Navy #0B3C5D, Gold #D4AF37, White, Light Grey. Fonts: Poppins (headings), Inter (body). Header, footer, and all shared UI live in single template files so a change in one place (header.php / footer.php) reflects across the whole site.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: admission-navigate
Tags: education, one-column, two-columns, custom-menu, custom-logo, featured-images, footer-widgets, threaded-comments, translation-ready
*/

/* ═══════════════════════════════════════════════════════
   Admission Navigate Consultancy — ULTRA PREMIUM DESIGN
   Palette: Navy #0B3C5D, Gold #D4AF37, White, Light Grey
   Fonts: Poppins (headings), Inter (body)
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Brand Colors */
  --c-navy:        #0B3C5D;
  --c-navy-dark:   #062135;
  --c-navy-light:  #165682;
  --c-gold:        #D4AF37;
  --c-gold-dark:   #b59226;
  --c-gold-light:  #e8ca6b;
  --c-white:       #FFFFFF;
  --c-bg:          #F4F7F9;      /* Light Grey surface */
  --c-border:      #E2E8F0;

  /* Text */
  --c-text:        #334155;
  --c-text-light:  #64748B;
  --c-text-dark:   #0F172A;

  /* Typography */
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px -5px rgba(11,60,93,0.10);
  --shadow-lg: 0 25px 50px -12px rgba(11,60,93,0.20);

  /* Radii */
  --rad-sm: 8px;
  --rad-md: 16px;
  --rad-lg: 24px;

  --max-w: 1200px;
  --trans: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; transition:var(--trans); }
ul { list-style:none; }

/* ── HEADINGS — always Poppins ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--c-text-dark);
  font-weight: 700;
  line-height: 1.2;
}

/* Hero headings — always white ── */
.hero h1, .hero h2, .hero h3, .hero h4, .hero h5 { color: var(--c-white); }

/* ── LAYOUT HELPERS ── */
.container   { width:100%; max-width:var(--max-w); margin:0 auto; padding:0 1.5rem; }
.section     { padding: 6rem 0; }
.bg-white    { background: var(--c-white); }
.bg-navy     { background: var(--c-navy); color: var(--c-white); }
.bg-light    { background: var(--c-bg); }
.text-gold   { color: var(--c-gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap:0.5rem;
  font-family: var(--font-head); font-weight:600; font-size:0.95rem;
  padding: 0.85rem 2rem; border-radius: var(--rad-sm);
  cursor: pointer; border: none; transition: var(--trans); letter-spacing:0.02em;
}
.btn-gold   { background: var(--c-gold); color: var(--c-white); box-shadow: 0 4px 14px rgba(212,175,55,0.30); }
.btn-gold:hover { background: var(--c-gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,175,55,0.40); }
.btn-navy   { background: var(--c-navy); color: var(--c-white)!important; }
.btn-navy:hover { background: var(--c-navy-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--c-navy); border: 2px solid var(--c-navy); }
.btn-outline:hover { background: var(--c-navy); color: var(--c-white); }
.btn-full   { width: 100%; }
.btn-sm     { padding: 0.55rem 1.25rem; font-size: 0.875rem; }

/* ── SECTION TITLE ── */
.sec-title { text-align:center; margin-bottom:3.5rem; max-width:700px; margin-inline:auto; }
.sec-title h2 { font-size:2.5rem; color:var(--c-navy); margin-bottom:1rem; }
.sec-title p  { font-size:1.1rem; color:var(--c-text-light); }
.bg-navy .sec-title h2 { color: var(--c-white); }
.bg-navy .sec-title p  { color: rgba(255,255,255,0.8); }

/* ── HEADER ── */
.header {
  height: 90px; background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  position: sticky; top:0; z-index:1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-wrap { display:flex; align-items:center; justify-content:space-between; height:100%; }
.logo { display:flex; align-items:center; gap:0.75rem; }
.logo img { height:60px; border-radius:4px; }

/* Nav */
.nav ul { display:flex; align-items:center; gap:2rem; }
.nav a  {
  font-family: var(--font-body); font-size:0.95rem; font-weight:500;
  color: var(--c-text); padding:0.5rem 0; position:relative;
}
.nav a:hover, .nav a.active { color: var(--c-navy); }
.nav a::after {
  content:''; position:absolute; bottom:0; left:0; width:0; height:2px;
  background: var(--c-gold); transition: var(--trans);
}
.nav a:hover::after, .nav a.active::after { width:100%; }

/* Mobile */
.mobile-toggle {
  display:none; background:none; border:none;
  font-size:1.5rem; color:var(--c-navy); cursor:pointer;
}
.mobile-menu {
  display:none; position:fixed; top:90px; left:0; right:0;
  background: var(--c-white); padding:1.5rem;
  box-shadow: var(--shadow-md); z-index:999;
  flex-direction:column; gap:1rem;
}
.mobile-menu.active { display:flex; }
.mobile-menu a { font-family:var(--font-head); font-weight:600; color:var(--c-navy); padding:0.5rem 0; }

/* ── HERO ── */
.hero {
  padding: 4rem 0;
  background: linear-gradient(rgba(11,60,93,0.85), rgba(11,60,93,0.95)),
              url('assets/images/v3_hero_pro.png') center/cover no-repeat;
  color: var(--c-white);
}
.hero-grid   { display:grid; grid-template-columns:1fr 450px; gap:4rem; align-items:center; }
.hero-content h1 {
  font-family: var(--font-head); font-size:clamp(2.75rem,4vw,4rem);
  color: var(--c-white); margin-bottom:1.5rem; line-height:1.1;
}
.hero-content p { font-size:1.2rem; color:rgba(255,255,255,0.9); margin-bottom:2.5rem; max-width:550px; }

.hero-stats { display:flex; gap:3rem; border-top:1px solid rgba(255,255,255,0.2); padding-top:2rem; }
.h-stat h4  { font-family:var(--font-head); color:var(--c-gold); font-size:2rem; margin-bottom:0.25rem; }
.h-stat span { font-size:0.85rem; font-weight:600; text-transform:uppercase; letter-spacing:1px; color:rgba(255,255,255,0.7); }

/* ── HERO FORM ── */
.hero-form {
  background: var(--c-white); padding:2.5rem; border-radius:var(--rad-md);
  box-shadow: var(--shadow-lg); color:var(--c-text-dark);
}
.hero-form h3 { font-family:var(--font-head); font-size:1.5rem; margin-bottom:0.25rem; color:var(--c-navy); }
.hero-form > p { font-family:var(--font-body); font-size:0.9rem; color:var(--c-text-light); margin-bottom:1rem; }
.form-group { margin-bottom:1.25rem; }
.form-group label { display:block; font-family:var(--font-body); font-size:0.85rem; font-weight:600; margin-bottom:0.5rem; color:var(--c-text-dark); }
.form-control {
  width:100%; padding:0.85rem 1rem; border:1px solid var(--c-border);
  border-radius:var(--rad-sm); font-family:var(--font-body); font-size:0.95rem;
  transition:var(--trans); outline:none; background:#fafafa; color:var(--c-text-dark);
}
.form-control:focus { border-color:var(--c-navy); background:var(--c-white); box-shadow:0 0 0 3px rgba(11,60,93,0.10); }
.form-control::placeholder { color: var(--c-text-light); }

/* ── WHY CHOOSE US ── */
.features { margin-top:0; position:relative; z-index:10; padding:5rem 0 3rem; }
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.feat-card {
  background: var(--c-white); padding:2.5rem 2rem; border-radius:var(--rad-md);
  box-shadow: var(--shadow-md); text-align:center; border:1px solid var(--c-border);
  transition:var(--trans);
}
.feat-card:hover { transform:translateY(-8px); border-color:var(--c-gold); box-shadow:var(--shadow-lg); }
.feat-icon {
  width:64px; height:64px; margin:0 auto 1.5rem; background:var(--c-bg);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; color:var(--c-navy); transition:var(--trans);
}
.feat-card:hover .feat-icon { background:var(--c-navy); color:var(--c-white); }
.feat-card h4 { font-family:var(--font-head); font-size:1.25rem; color:var(--c-text-dark); margin-bottom:0.75rem; }
.feat-card p  { font-family:var(--font-body); font-size:0.95rem; color:var(--c-text-light); }

/* ── SPLIT (ABOUT) ── */
.split { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.split-img { border-radius:var(--rad-lg); overflow:hidden; box-shadow:var(--shadow-lg); position:relative; }
.split-img img { width:100%; }
.split-img::after { content:''; position:absolute; inset:0; border:1px solid rgba(255,255,255,0.2); border-radius:var(--rad-lg); }
.split-text h2 { font-family:var(--font-head); font-size:2.5rem; color:var(--c-navy); margin-bottom:1.5rem; }
.split-text p  { font-family:var(--font-body); font-size:1.1rem; margin-bottom:1.5rem; color:var(--c-text-light); }
.check-list { display:flex; flex-direction:column; gap:1rem; margin-bottom:2.5rem; }
.check-list li { display:flex; align-items:center; gap:1rem; font-family:var(--font-body); font-weight:600; color:var(--c-text-dark); }
.check-list li i { color:var(--c-gold); font-size:1.25rem; }

/* ── SERVICES GRID ── */
.srv-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.srv-card {
  background: var(--c-white); padding:2rem; border-radius:var(--rad-md);
  border:1px solid var(--c-border); transition:var(--trans);
}
.srv-card:hover { border-color:var(--c-navy); box-shadow:var(--shadow-md); transform:translateY(-4px); }
.srv-card i  { font-size:2rem; color:var(--c-gold); margin-bottom:1.25rem; display:block; }
.srv-card h4 { font-family:var(--font-head); font-size:1.1rem; color:var(--c-text-dark); margin-bottom:0.5rem; }
.srv-card p  { font-family:var(--font-body); font-size:0.9rem; color:var(--c-text-light); }

/* ── STUDY IN CANADA ── */
.canada-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:2rem; }
.can-card {
  background: var(--c-white); padding:2.5rem; border-radius:var(--rad-md);
  border-left:4px solid var(--c-navy); box-shadow:var(--shadow-sm);
}
.bg-navy .can-card { background:rgba(255,255,255,0.08); border-left-color:var(--c-gold); }
.can-card h4 { font-family:var(--font-head); font-size:1.25rem; color:var(--c-navy); margin-bottom:1rem; display:flex; align-items:center; gap:0.75rem; }
.can-card h4 i { color:var(--c-gold); }
.bg-navy .can-card h4 { color:var(--c-white); }
.can-card p  { font-family:var(--font-body); color:var(--c-text-light); }
.bg-navy .can-card p { color:rgba(255,255,255,0.85); }

/* ── COLLEGES ── */
.colleges-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.col-card {
  background: var(--c-white); border-radius:var(--rad-md); overflow:hidden;
  box-shadow:var(--shadow-sm); border:1px solid var(--c-border); transition:var(--trans);
}
.col-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.col-img { height:200px; position:relative; }
.col-img img { width:100%; height:100%; object-fit:cover; }
.col-badge {
  position:absolute; top:1rem; right:1rem; background:var(--c-gold); color:var(--c-white);
  padding:0.35rem 1rem; border-radius:999px; font-size:0.75rem; font-weight:700;
  font-family:var(--font-head);
}
.col-body { padding:1.5rem; }
.col-body h4 { font-family:var(--font-head); font-size:1.25rem; color:var(--c-text-dark); margin-bottom:0.5rem; }
.col-body p  { font-family:var(--font-body); color:var(--c-text-light); font-size:0.9rem; display:flex; align-items:center; gap:0.5rem; margin-bottom:1.25rem; }
.col-meta { display:flex; justify-content:space-between; border-top:1px solid var(--c-border); padding-top:1rem; font-size:0.85rem; font-weight:600; color:var(--c-text-light); }
.col-meta span { color:var(--c-navy); }

/* ── TIMELINE ── */
.timeline { position:relative; max-width:800px; margin:0 auto; }
.timeline::before { content:''; position:absolute; top:0; bottom:0; left:50%; width:2px; background:var(--c-border); transform:translateX(-50%); }
.tl-item { display:flex; justify-content:space-between; align-items:center; margin-bottom:2rem; position:relative; }
.tl-item:nth-child(even) { flex-direction:row-reverse; }
.tl-content { width:45%; background:var(--c-white); padding:1.5rem; border-radius:var(--rad-md); box-shadow:var(--shadow-sm); border:1px solid var(--c-border); }
.tl-content h4 { font-family:var(--font-head); color:var(--c-navy); margin-bottom:0.5rem; }
.tl-content p  { font-family:var(--font-body); font-size:0.95rem; color:var(--c-text-light); }
.tl-dot { width:40px; height:40px; background:var(--c-navy); color:var(--c-white); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-weight:700; position:absolute; left:50%; transform:translateX(-50%); border:4px solid var(--c-bg); box-shadow:0 0 0 2px rgba(11,60,93,0.20); }

/* ── TESTIMONIALS ── */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.testi-card { background:var(--c-white); padding:2rem; border-radius:var(--rad-md); box-shadow:var(--shadow-sm); border:1px solid var(--c-border); }
.testi-stars { color:var(--c-gold); margin-bottom:1rem; }
.testi-card p { font-family:var(--font-body); font-style:italic; color:var(--c-text-dark); margin-bottom:1.5rem; }
.testi-user   { display:flex; align-items:center; gap:1rem; }
.testi-av     { width:48px; height:48px; border-radius:50%; background:var(--c-navy); color:var(--c-white); display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-weight:700; flex-shrink:0; }
.testi-user h5 { font-family:var(--font-head); font-size:1rem; color:var(--c-text-dark); margin-bottom:0.1rem; }
.testi-user span { font-family:var(--font-body); font-size:0.85rem; color:var(--c-text-light); }

/* ── FAQ ── */
.faq-box { max-width:800px; margin:0 auto; display:flex; flex-direction:column; gap:1rem; }
.faq-item { background:var(--c-white); border:1px solid var(--c-border); border-radius:var(--rad-sm); overflow:hidden; }
.faq-q {
  padding:1.25rem 1.5rem; cursor:pointer; display:flex; justify-content:space-between; align-items:center;
  font-family:var(--font-head); font-weight:600; color:var(--c-navy);
}
.faq-q i { transition:transform 0.3s ease; flex-shrink:0; }
.faq-item.open .faq-q i { transform:rotate(180deg); }
.faq-a { padding:1.25rem 1.5rem; border-top:1px solid var(--c-border); display:none; font-family:var(--font-body); color:var(--c-text-light); line-height:1.7; }
.faq-item.open .faq-a { display:block; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--c-navy-dark) 0%, var(--c-navy) 100%);
  padding:5rem 2rem; border-radius:var(--rad-lg); text-align:center; color:var(--c-white);
  box-shadow:var(--shadow-lg); border: 1px solid rgba(212,175,55,0.30);
}
.cta-banner h2 { font-family:var(--font-head); color:var(--c-white); font-size:2.5rem; margin-bottom:1rem; }
.cta-banner p  { font-family:var(--font-body); font-size:1.2rem; color:rgba(255,255,255,0.9); margin-bottom:2.5rem; }

/* ── FOOTER ── */
.footer { background:var(--c-navy-dark); color:var(--c-white); padding:5rem 0 2rem; }
.foot-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:4rem; margin-bottom:4rem; }
.foot-brand img { height:50px; background:var(--c-white); padding:4px; border-radius:4px; margin-bottom:1.5rem; }
.foot-brand p { font-family:var(--font-body); color:rgba(255,255,255,0.7); font-size:0.95rem; margin-bottom:1.5rem; }
.socials { display:flex; gap:1rem; }
.socials a { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.10); display:flex; align-items:center; justify-content:center; transition:var(--trans); color:var(--c-white); }
.socials a:hover { background:var(--c-gold); color:var(--c-navy-dark); }
.foot-col h4 { font-family:var(--font-head); color:var(--c-white); margin-bottom:1.5rem; }
.foot-col ul { display:flex; flex-direction:column; gap:0.75rem; }
.foot-col ul li { font-family:var(--font-body); color:rgba(255,255,255,0.70); font-size:0.95rem; display:flex; align-items:center; gap:0.5rem; }
.foot-col ul li i { color:var(--c-gold); }
.foot-col a { font-family:var(--font-body); color:rgba(255,255,255,0.70); font-size:0.95rem; }
.foot-col a:hover { color:var(--c-gold); }
.nl-form { display:flex; margin-top:1rem; }
.nl-form input  { flex:1; padding:0.85rem; border:none; border-radius:var(--rad-sm) 0 0 var(--rad-sm); outline:none; font-family:var(--font-body); color:var(--c-text-dark); }
.nl-form button { padding:0.85rem 1.5rem; border:none; background:var(--c-gold); color:var(--c-white); border-radius:0 var(--rad-sm) var(--rad-sm) 0; font-family:var(--font-head); font-weight:600; cursor:pointer; transition:var(--trans); }
.nl-form button:hover { background:var(--c-gold-dark); }

.foot-disclaimer { border-top:1px solid rgba(255,255,255,0.10); border-bottom:1px solid rgba(255,255,255,0.10); padding:1.5rem 0; margin-bottom:1.5rem; font-family:var(--font-body); font-size:0.85rem; color:rgba(255,255,255,0.50); text-align:center; }
.foot-bottom     { display:flex; justify-content:space-between; font-family:var(--font-body); color:rgba(255,255,255,0.60); font-size:0.9rem; }
.foot-links      { display:flex; gap:1.5rem; }
.foot-links a:hover { color:var(--c-white); }

/* ── WHATSAPP ── */
.wa-btn {
  position:fixed; bottom:30px; right:30px; width:60px; height:60px;
  background:#25D366; color:var(--c-white); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:2rem; box-shadow:var(--shadow-md); z-index:100; transition:var(--trans);
}
.wa-btn:hover { transform:scale(1.1); background:#128C7E; }

/* ── BLOG HEADINGS ── */
.blog-title { font-size: 2.75rem; margin-bottom: 1.5rem; line-height: 1.2; font-family: var(--font-head); color: var(--c-navy); }

/* ── FAQ ACCORDION ── */
.faq-box { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--rad-md);
  margin-bottom: 1rem; overflow: hidden; transition: var(--trans);
}
.faq-item:hover { border-color: var(--c-gold); }
.faq-q {
  padding: 1.25rem 1.5rem; cursor: pointer; font-family: var(--font-head);
  font-weight: 600; font-size: 1.05rem; color: var(--c-navy);
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--trans);
}
.faq-q i { transition: transform 0.3s ease; color: var(--c-gold); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; padding: 0 1.5rem;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--c-text-light);
  line-height: 1.7; transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.5rem 1.25rem; }

/* ── PROVINCE CARDS ── */
.province-card {
  background: var(--c-white); padding: 2rem; border-radius: var(--rad-md);
  border: 1px solid var(--c-border); box-shadow: var(--shadow-sm); transition: var(--trans);
}
.province-card:hover { border-color: var(--c-gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.province-card h4 { font-family: var(--font-head); font-size: 1.2rem; color: var(--c-navy); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.province-card ul { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.9rem; color: var(--c-text-light); padding-left: 1rem; list-style: disc; }

/* ── ANCHOR NAV (Study in Canada sticky sub-nav) ── */
.anchor-nav {
  background: var(--c-white); border-bottom: 1px solid var(--c-border);
  position: sticky; top: 70px; z-index: 50; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.anchor-nav ul {
  display: flex; justify-content: center; gap: 0.5rem;
  max-width: var(--max-w); margin: 0 auto; padding: 0.75rem 1rem;
  white-space: nowrap;
}
.anchor-nav a {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  color: var(--c-text-light); padding: 0.5rem 1.25rem; border-radius: 999px;
  transition: var(--trans); text-transform: uppercase; letter-spacing: 0.5px;
}
.anchor-nav a:hover, .anchor-nav a.active { background: var(--c-navy); color: var(--c-white); }

/* ── PGWP TABLE ── */
.pgwp-table {
  width: 100%; border-collapse: collapse; border-radius: var(--rad-sm); overflow: hidden;
  box-shadow: var(--shadow-sm); font-family: var(--font-body); font-size: 0.95rem;
}
.pgwp-table thead { background: var(--c-navy); color: var(--c-white); }
.pgwp-table th, .pgwp-table td { padding: 0.85rem 1.25rem; text-align: left; }
.pgwp-table tbody tr { border-bottom: 1px solid var(--c-border); }
.pgwp-table tbody tr:nth-child(even) { background: var(--c-bg); }
.pgwp-table tbody tr:hover { background: rgba(212,175,55,0.08); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-dark) 100%);
  color: var(--c-white); text-align: center; padding: 4rem 3rem; border-radius: var(--rad-lg);
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { font-family: var(--font-head); font-size: 2.25rem; margin-bottom: 1rem; color: var(--c-white); }
.cta-banner p  { font-size: 1.15rem; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 2rem; }

/* ── BLOG LAYOUT ── */
.max-w-800 { max-width: 800px; }
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.blog-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: 0.9rem; color: var(--c-text-light); font-family: var(--font-body); }
.blog-meta i { margin-right: 0.35rem; color: var(--c-gold); }

/* ── BLOG SIDEBAR ── */
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--c-white); padding: 1.5rem; border-radius: var(--rad-md);
  border: 1px solid var(--c-border); margin-bottom: 1.5rem; box-shadow: var(--shadow-sm);
}
.sidebar-title { font-family: var(--font-head); font-size: 1.1rem; color: var(--c-navy); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--c-gold); }
.search-widget-form { display: flex; }
.search-widget-input { flex: 1; padding: 0.7rem 1rem; border: 1px solid var(--c-border); border-radius: var(--rad-sm) 0 0 var(--rad-sm); font-size: 0.9rem; outline: none; }
.search-widget-input:focus { border-color: var(--c-navy); }
.search-widget-btn { padding: 0.7rem 1rem; background: var(--c-navy); color: var(--c-white); border: none; border-radius: 0 var(--rad-sm) var(--rad-sm) 0; cursor: pointer; transition: var(--trans); }
.search-widget-btn:hover { background: var(--c-navy-dark); }
.category-list li { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid var(--c-border); }
.category-list li:last-child { border-bottom: none; }
.category-list a { font-size: 0.9rem; color: var(--c-text); font-weight: 500; }
.category-list a:hover { color: var(--c-navy); }
.category-count { background: var(--c-bg); color: var(--c-text-light); font-size: 0.8rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 999px; }
.sidebar-ad-card {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-dark) 100%);
  color: var(--c-white); padding: 2rem; border-radius: var(--rad-md); text-align: center;
}
.sidebar-ad-card h3 { font-family: var(--font-head); font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--c-white); }
.sidebar-ad-card p  { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; }
.btn-full { display: block; width: 100%; text-align: center; }
.btn-gold {
  display: inline-block; padding: 0.85rem 2.5rem; border-radius: 999px; font-weight: 700;
  font-family: var(--font-head); font-size: 0.95rem; cursor: pointer; transition: var(--trans);
  background: var(--c-gold); color: var(--c-white); border: none;
}
.btn-gold:hover { background: #B8962E; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ── DESTINATIONS HERO ── */
.destinations-hero {
  padding: 4rem 0 3rem; text-align: center;
}
.destinations-hero .section-tag {
  display: inline-block; background: rgba(212,175,55,0.15); color: var(--c-gold);
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; padding: 0.4rem 1.25rem;
  border-radius: 999px; margin-bottom: 1.25rem;
}

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .hero-grid { grid-template-columns:1fr; gap:3rem; }
  .hero-form { max-width:600px; margin:0 auto; padding: 2rem; }
  .features-grid, .colleges-grid, .testi-grid { grid-template-columns:repeat(2,1fr); }
  .split { grid-template-columns:1fr !important; gap: 2.5rem; }
  .srv-grid { grid-template-columns:repeat(2,1fr); }
  .foot-grid { grid-template-columns:repeat(2,1fr); }
  .canada-grid { grid-template-columns:repeat(2,1fr); }
  .blog-layout { grid-template-columns:1fr 280px; gap:2rem; }
}

@media (max-width:768px) {
  .nav, .header-wrap > .btn-navy { display:none; }
  .mobile-toggle { display:block; }
  .section { padding:4rem 0; }
  .features { padding:3rem 0; }
  .features-grid, .colleges-grid, .testi-grid, .canada-grid, .srv-grid { grid-template-columns:1fr; }
  .hero-form { padding: 1.5rem; }
  .split { grid-template-columns:1fr !important; gap: 2rem; }
  .sec-title h2 { font-size:2rem; }
  .timeline::before { left:20px; }
  .tl-item, .tl-item:nth-child(even) { flex-direction:column; align-items:flex-start; padding-left:60px; }
  .tl-content { width:100%; }
  .tl-dot { left:0; transform:none; }
  .foot-grid { grid-template-columns:1fr; gap:2.5rem; }
  .foot-bottom { flex-direction:column; gap:1rem; text-align:center; }
  .hero-content h1 { font-size:2.25rem; }
  .blog-title { font-size: 1.75rem; }
  .blog-layout { grid-template-columns:1fr; }
  .blog-sidebar { position:static; }
  .anchor-nav ul { justify-content:flex-start; padding:0.5rem; }
  .anchor-nav a { font-size:0.8rem; padding:0.4rem 1rem; }
  .pgwp-table th, .pgwp-table td { padding:0.65rem 0.75rem; font-size:0.85rem; }
  .cta-banner { padding:3rem 1.5rem; }
  .cta-banner h2 { font-size:1.75rem; }
  .destinations-hero { padding:4rem 0 2rem; }
  .destinations-hero h1 { font-size:2rem; }
}

@media (max-width:480px) {
  .blog-title { font-size: 1.5rem; }
  .blog-meta { flex-direction:column; gap:0.5rem; }
  .hero-stats { flex-direction:column; gap:1.5rem; }
  .anchor-nav a { font-size:0.75rem; padding:0.35rem 0.75rem; }
  .province-card { padding:1.25rem; }
  .cta-banner { padding:2rem 1rem; }
  .cta-banner h2 { font-size:1.5rem; }
}

/* ═══════════════════════════════════════════════════════
   WORDPRESS CORE REQUIREMENTS
═══════════════════════════════════════════════════════ */
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px,1px,1px,1px); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
.screen-reader-text:focus {
  position: fixed !important; top: 8px; left: 8px; z-index: 100000; width: auto; height: auto;
  clip: auto; padding: 1rem 1.4rem; background: var(--c-navy); color: #fff; border-radius: var(--rad-sm);
}
.alignleft { float: left; margin: 0.4rem 1.5rem 1rem 0; }
.alignright { float: right; margin: 0.4rem 0 1rem 1.5rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--c-text-light); text-align: center; margin-top: 0.5rem; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
img.wp-smiley, img.emoji { display: inline; border: none; box-shadow: none; height: 1em; margin: 0 .07em; }

/* Admin bar offset for sticky header */
body.admin-bar .header,
body.admin-bar .anchor-nav { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .header, body.admin-bar .anchor-nav { top: 46px; }
}

/* ── FORM NOTICES (consultation / contact / auth forms) ── */
.form-notice { padding: 1rem 1.25rem; border-radius: var(--rad-sm); margin-bottom: 1.25rem; font-size: 0.92rem; font-weight: 500; }
.form-notice.success { background: rgba(34,142,94,0.1); color: #1f7a4d; border: 1px solid rgba(34,142,94,0.3); }
.form-notice.error { background: rgba(190,60,60,0.08); color: #a8342c; border: 1px solid rgba(190,60,60,0.3); }

/* ── COMMENTS ── */
.comments-area { margin-top: 3rem; }
.comment-list { list-style: none; margin: 0 0 2rem; padding: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.comment-body { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--rad-md); padding: 1.5rem; }
.comment-author .fn { font-weight: 700; color: var(--c-navy); font-style: normal; }
.comment-metadata { font-size: 0.8rem; color: var(--c-text-light); margin-bottom: 0.5rem; }
.comment-reply-link { font-size: 0.85rem; font-weight: 600; color: var(--c-gold-dark); }
.comment-respond .comment-form input[type="text"],
.comment-respond .comment-form input[type="email"],
.comment-respond .comment-form input[type="url"],
.comment-respond .comment-form textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--c-border); border-radius: var(--rad-sm); background: var(--c-bg); margin-bottom: 1rem; font-family: var(--font-body); }
.comment-respond .comment-form-cookies-consent { display: flex; gap: 0.5rem; align-items: center; font-size: 0.85rem; }

/* ── AUTH / PORTAL PAGES (Login, Register, Forgot Password, Dashboard) ── */
.auth-wrap { min-height: calc(100vh - 400px); display: flex; align-items: center; justify-content: center; padding: 4rem 1.5rem; background: var(--c-bg); }
.auth-card { background: var(--c-white); border-radius: var(--rad-lg); box-shadow: var(--shadow-lg); max-width: 460px; width: 100%; padding: 2.75rem 2.5rem; border-top: 4px solid var(--c-gold); }
.auth-card .auth-logo { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.auth-card .auth-logo img { height: 42px; width: auto; }
.auth-card h1 { font-size: 1.5rem; text-align: center; margin-bottom: 0.4rem; }
.auth-card .auth-sub { text-align: center; color: var(--c-text-light); font-size: 0.92rem; margin-bottom: 1.75rem; }
.auth-card .auth-foot { text-align: center; margin-top: 1.5rem; font-size: 0.9rem; color: var(--c-text-light); }
.auth-card .auth-foot a { color: var(--c-navy); font-weight: 700; }
.auth-divider { display: flex; align-items: center; gap: 1rem; color: var(--c-text-light); font-size: 0.8rem; margin: 1.5rem 0; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--c-border); }

/* ── STUDENT DASHBOARD ── */
.dash-shell { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 400px); background: var(--c-bg); }
.dash-sidebar { background: var(--c-navy); color: #fff; padding: 2rem 1.25rem; }
.dash-sidebar .dash-user { display: flex; align-items: center; gap: 0.75rem; padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.15); }
.dash-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--c-gold); color: var(--c-navy-dark); display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.dash-nav a { display: flex; align-items: center; gap: 0.7rem; padding: 0.75rem 0.9rem; border-radius: var(--rad-sm); color: rgba(255,255,255,0.8); font-weight: 500; font-size: 0.92rem; margin-bottom: 0.25rem; }
.dash-nav a:hover, .dash-nav a.active { background: rgba(255,255,255,0.1); color: #fff; }
.dash-nav a i { width: 18px; text-align: center; color: var(--c-gold); }
.dash-main { padding: 2.5rem; }
.dash-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.dash-stat-card { background: var(--c-white); border-radius: var(--rad-md); padding: 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); }
.dash-stat-card h4 { font-size: 1.9rem; color: var(--c-navy); margin-bottom: 0.2rem; }
.dash-stat-card span { font-size: 0.82rem; color: var(--c-text-light); }
.dash-panel { background: var(--c-white); border-radius: var(--rad-md); padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); margin-bottom: 1.5rem; }
.dash-panel h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.dash-checklist li { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 0; border-bottom: 1px solid var(--c-border); font-size: 0.92rem; }
.dash-checklist li:last-child { border-bottom: none; }
.dash-checklist input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--c-gold); }
.progress-bar { height: 8px; border-radius: 999px; background: var(--c-border); overflow: hidden; margin: 0.5rem 0 0.25rem; }
.progress-bar span { display: block; height: 100%; background: var(--c-gold); }
@media (max-width: 900px) {
  .dash-shell { grid-template-columns: 1fr; }
  .dash-sidebar { display: flex; overflow-x: auto; gap: 0.5rem; padding: 1rem; }
  .dash-sidebar .dash-user { display: none; }
  .dash-stats-row { grid-template-columns: repeat(2,1fr); }
}

/* ── CAREERS ── */
.perks-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; margin-top: 2.5rem; }
.perk-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--rad-md); padding: 2rem; text-align: center; box-shadow: var(--shadow-sm); }
.perk-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--c-navy); color: var(--c-gold); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 1.25rem; }
.jobs-filter-bar { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin: 2rem 0; }
.filter-btn { background: var(--c-white); border: 1px solid var(--c-border); border-radius: 999px; padding: 0.6rem 1.4rem; font-weight: 600; font-size: 0.88rem; color: var(--c-text); cursor: pointer; transition: var(--trans); }
.filter-btn.active, .filter-btn:hover { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }
.jobs-list { display: flex; flex-direction: column; gap: 1rem; }
.job-row { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--rad-md); padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; box-shadow: var(--shadow-sm); flex-wrap: wrap; gap: 1rem; }
.job-row h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.job-meta-tags { display: flex; gap: 1rem; flex-wrap: wrap; }
.job-tag { font-size: 0.85rem; color: var(--c-text-light); display: flex; align-items: center; gap: 0.4rem; }
.job-tag i { color: var(--c-gold); }

/* ── LEGAL / PRIVACY CONTENT PAGES ── */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--c-navy); }
.legal-content p, .legal-content li { color: var(--c-text); font-size: 1rem; margin-bottom: 1rem; }
.legal-content ul { margin-left: 1.5rem; list-style: disc; }
.legal-updated { color: var(--c-text-light); font-size: 0.9rem; margin-bottom: 2rem; display: block; }

/* WhatsApp float button (shared, matches ported .wa-btn already in base CSS) */

/* ── MOBILE & TABLET NAVIGATION OVERHAUL (Breakpoint < 830px) ── */
@media (max-width: 830px) {
  /* Override Default Desktop Layout Elements */
  .nav, 
  .header-wrap > .btn-navy { 
    display: none !important; 
  }
  
  /* Trigger Toggle Button Display */
  .mobile-toggle { 
    display: block !important; 
    font-size: 1.75rem;
    padding: 0.5rem;
    z-index: 1001;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--c-navy);
    transition: var(--trans);
  }

  /* Structural Fix: Hide off-screen dynamically until called */
  .mobile-menu {
    display: flex !important; /* Forces layout tracking */
    opacity: 0;
    visibility: hidden; /* Stops elements from being clickable when closed */
    
    position: fixed;
    top: 0;
    right: -100%; /* Positions the menu hidden completely outside the right screen border */
    width: 100%;
    max-width: 400px; 
    height: 100vh;
    background: var(--c-white);
    padding: 7rem 2.5rem 3rem; 
    box-shadow: -10px 0 30px rgba(11, 60, 93, 0.15);
    z-index: 999;
    flex-direction: column;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s;
  }

  /* This opens the menu drawer cleanly */
  .mobile-menu.active { 
    right: 0 !important; 
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Mobile Menu Links Styling */
  .mobile-menu a { 
    font-family: var(--font-head); 
    font-weight: 600; 
    font-size: 1.15rem;
    color: var(--c-navy); 
    padding: 1rem 0; 
    border-bottom: 1px solid var(--c-border);
    display: flex;
    align-items: center;
   /* justify-content: space-between;*/
    transition: var(--trans);
  }

  .mobile-menu a:hover {
    color: var(--c-gold);
    padding-left: 0.5rem;
  }
}