/*
Theme Name: Shion Canada
Theme URI: https://shioncanada.com
Author: Shion Canada
Description: Custom immigration consulting theme for Shion Canada
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: shion-canada
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --sky: #2E8BC0;
  --sky-deep: #1A6A9A;
  --sky-light: #EBF6FD;
  --sky-mid: #A8D8F0;
  --maple: #D64933;
  --gold: #E8A020;
  --dark: #14202B;
  --mid: #445566;
  --muted: #7A8FA0;
  --light: #F6FBFF;
  --white: #ffffff;
  --border: rgba(46,139,192,0.15);
}

html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; line-height: 1.6; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 0 6%; height: 110px;
}
.logo {
  font-family: 'Cormorant Garamond', serif; font-size: 30px;
  color: var(--sky-deep); letter-spacing: 0.5px;
  text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.logo-img { height: 48px; width: auto; object-fit: contain; display: block; }
.logo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--maple); display: inline-block; margin-bottom: 2px; }
nav ul { list-style: none; display: flex; gap: 48px; justify-content: center; }
nav ul li a { text-decoration: none; font-size: 20px; font-weight: 400; color: var(--mid); transition: color 0.2s; }
nav ul li a:hover { color: var(--sky); }
nav ul li a.current-menu-item { color: var(--sky); font-weight: 500; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }

/* ── LANG SWITCHER ── */
.lang-switcher { display: flex; align-items: center; background: var(--sky-light); border-radius: 24px; padding: 3px; gap: 2px; border: 1px solid var(--border); }
.lang-switcher ul { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; }
.lang-switcher ul li { display: flex; }
.lang-switcher a { padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; text-decoration: none; transition: all 0.18s; color: var(--muted); letter-spacing: 0.8px; text-transform: uppercase; }
.lang-switcher a.active,
.lang-switcher li.current-lang a { background: white; color: var(--sky-deep); box-shadow: 0 1px 4px rgba(46,139,192,0.15); }
.lang-switcher a:hover:not(.active) { color: var(--sky); }

/* ── NAV CTA ── */
.nav-cta {
  background: var(--sky); color: white; padding: 12px 26px;
  border-radius: 30px; font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all 0.2s; font-family: 'Outfit', sans-serif;
}
.nav-cta:hover { background: var(--sky-deep); transform: translateY(-1px); }

/* ── PAGE HERO ── */
.page-hero { padding: 150px 6% 70px; background: linear-gradient(150deg, var(--sky-light) 0%, #fff 60%); border-bottom: 1px solid var(--border); }
.page-hero-inner { max-width: 1080px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--sky); text-decoration: none; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px,4.5vw,58px); line-height: 1.15; color: var(--dark); margin-bottom: 18px; }
.page-hero h1 em { font-style: italic; color: var(--sky); }
.page-hero p { font-size: 17px; color: var(--mid); font-weight: 300; max-width: 560px; line-height: 1.75; }

/* ── SECTIONS ── */
.section { padding: 90px 6%; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-alt { background: var(--sky-light); }
.label { font-size: 11px; font-weight: 600; color: var(--sky); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,3.5vw,44px); color: var(--dark); margin-bottom: 14px; line-height: 1.2; }
.section-sub { font-size: 16px; color: var(--mid); font-weight: 300; line-height: 1.75; max-width: 560px; margin-bottom: 50px; }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 13px 30px; border-radius: 32px; font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.22s; cursor: pointer; border: none; font-family: 'Outfit', sans-serif; }
.btn-primary { background: var(--sky); color: white; }
.btn-primary:hover { background: var(--sky-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,139,192,0.28); }
.btn-outline { background: transparent; color: var(--sky); border: 1.5px solid var(--sky); }
.btn-outline:hover { background: var(--sky-light); }
.btn-white { background: white; color: var(--sky); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.btn-white-ghost { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.55); }
.btn-white-ghost:hover { background: rgba(255,255,255,0.1); }

/* ── CARDS ── */
.card { background: white; border-radius: 18px; padding: 30px 26px; border: 1px solid var(--border); transition: transform 0.25s, box-shadow 0.25s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(46,139,192,0.1); }
.card-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--sky-light); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.card h3 { font-size: 16px; font-weight: 500; margin-bottom: 10px; color: var(--dark); }
.card p { font-size: 14px; color: var(--mid); line-height: 1.7; font-weight: 300; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(130deg, var(--sky) 0%, var(--sky-deep) 100%); padding: 80px 6%; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -120px; right: -100px; width: 380px; height: 380px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px,3vw,40px); color: white; margin-bottom: 14px; }
.cta-banner p { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 32px; font-weight: 300; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 60px 6% 30px; }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--sky-mid); text-decoration: none; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 260px; }
.footer-col h4 { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--sky-mid); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 12px; font-weight: 600; color: var(--mid); letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 7px; }
input[type=text], input[type=email], input[type=tel], select, textarea { width: 100%; padding: 12px 16px; font-size: 14px; font-family: 'Outfit', sans-serif; border: 1.5px solid var(--border); border-radius: 12px; color: var(--dark); background: var(--light); transition: border-color 0.2s, box-shadow 0.2s; outline: none; appearance: none; }
input:focus, select:focus, textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(46,139,192,0.1); background: white; }
textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.submit-btn { width: 100%; padding: 16px; background: var(--sky); color: white; border: none; border-radius: 14px; font-size: 16px; font-weight: 500; font-family: 'Outfit', sans-serif; cursor: pointer; transition: all 0.22s; }
.submit-btn:hover { background: var(--sky-deep); transform: translateY(-2px); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.85s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) { nav ul { display: none; } .footer-top { grid-template-columns: 1fr 1fr; } .form-row { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } .page-hero { padding: 130px 5% 50px; } .section { padding: 60px 5%; } }
.lang-switcher ul li::before { display: none; }
nav ul li::before { display: none; }
.lang-switcher li { list-style: none; }
