/* ==========================================================
   findurcolleges.com — specialist medical admissions
   Theme: same FUC navy/gold as findurcollege.com + medical-trust green accent
   Base font stack: system-ui (no Google Fonts blocking on India 4G)
   ========================================================== */

:root {
  --navy: #0c1a3a;
  --navy-2: #1a2540;
  --gold: #f59e0b;
  --gold-2: #fbbf24;
  --green: #047857;          /* medical-trust accent — used on CTAs + price callouts */
  --green-2: #059669;
  --ink: #1a2540;
  --gray: #475569;
  --gray-2: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-2: #f8fafc;
  --bg-3: #f0f7ff;
  --whatsapp: #25d366;
  --shadow-sm: 0 2px 8px rgba(15,36,86,.08);
  --shadow-md: 0 6px 22px rgba(15,36,86,.12);
  --shadow-lg: 0 12px 40px rgba(15,36,86,.18);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --max: 1140px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============== TOP NAV ============== */
.fuc-nav {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: .7rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.fuc-logo {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none; color: var(--navy); font-weight: 700;
}
.fuc-logo img { height: 38px; width: auto; }
.fuc-logo small {
  display: block; font-size: .7rem; font-weight: 500; color: var(--green);
  letter-spacing: .04em; text-transform: uppercase; line-height: 1;
}
.fuc-nav-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1.1rem;
  background: var(--green); color: #fff;
  border-radius: 999px;
  font-weight: 600; font-size: .9rem;
  text-decoration: none;
}
.fuc-nav-cta:hover { background: var(--green-2); text-decoration: none; }

/* ============== HERO ============== */
.fuc-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 2.4rem 1.25rem 2.6rem;
}
.fuc-hero-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.4rem;
  align-items: start;
}
.fuc-hero h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.2; margin: 0 0 1rem; font-weight: 800;
}
.fuc-hero h1 em {
  color: var(--gold-2); font-style: normal; font-weight: 800;
}
.fuc-hero p.lede {
  font-size: 1.05rem; line-height: 1.6; margin: 0 0 1.4rem;
  color: rgba(255,255,255,.92);
}
.fuc-trust-strip {
  display: flex; flex-wrap: wrap; gap: .5rem .8rem;
  margin: 1.2rem 0 0;
}
.fuc-trust-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: .35rem .75rem; border-radius: 999px;
  font-size: .82rem; color: #fff;
}

/* ============== LEAD FORM (sidebar on desktop, inline on mobile) ============== */
.fuc-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem 1.2rem;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.fuc-form-card h3 {
  margin: 0 0 .35rem; font-size: 1.15rem; color: var(--navy); font-weight: 700;
}
.fuc-form-card .small {
  font-size: .82rem; color: var(--gray); margin: 0 0 1rem;
}
.fuc-form-card label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--navy); margin: .8rem 0 .3rem;
}
.fuc-form-card input,
.fuc-form-card select,
.fuc-form-card textarea {
  width: 100%; padding: .65rem .8rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: .94rem; font-family: inherit; color: var(--ink);
  background: #fff;
}
.fuc-form-card input:focus,
.fuc-form-card select:focus,
.fuc-form-card textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(4,120,87,.12);
}
.fuc-form-card button {
  display: block; width: 100%;
  margin-top: 1rem; padding: .85rem 1rem;
  background: var(--green); color: #fff;
  border: 0; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 700; cursor: pointer;
}
.fuc-form-card button:hover { background: var(--green-2); }
.fuc-form-card .or {
  text-align: center; font-size: .78rem; color: var(--gray-2);
  margin: .9rem 0 .5rem; position: relative;
}
.fuc-form-card .or::before, .fuc-form-card .or::after {
  content: ""; position: absolute; top: 50%; width: 35%;
  height: 1px; background: var(--line);
}
.fuc-form-card .or::before { left: 0; }
.fuc-form-card .or::after { right: 0; }
.fuc-form-card .wa-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--whatsapp); color: #fff;
  padding: .8rem 1rem; border-radius: var(--radius-sm);
  font-weight: 600; text-decoration: none;
}
.fuc-form-card .wa-btn:hover { filter: brightness(.96); text-decoration: none; }

/* ============== MAIN CONTENT BAND ============== */
.fuc-main {
  max-width: var(--max); margin: 0 auto;
  padding: 2.2rem 1.25rem 3rem;
  display: grid; grid-template-columns: 1fr 340px; gap: 2.4rem;
  align-items: start;
}
.fuc-content {
  font-size: 1rem; line-height: 1.72;
}
.fuc-content h2 {
  font-size: 1.5rem; color: var(--navy); margin: 2rem 0 .8rem;
  font-weight: 700; padding-top: .4rem;
}
.fuc-content h3 {
  font-size: 1.15rem; color: var(--navy-2); margin: 1.4rem 0 .5rem;
  font-weight: 700;
}
.fuc-content p { margin: 0 0 1rem; }
.fuc-content ul, .fuc-content ol { margin: 0 0 1.2rem; padding-left: 1.4rem; }
.fuc-content li { margin: 0 0 .4rem; }
.fuc-content table {
  width: 100%; border-collapse: collapse; margin: 1rem 0 1.6rem;
  font-size: .92rem;
}
.fuc-content table th {
  background: var(--bg-3); color: var(--navy); text-align: left;
  padding: .65rem .8rem; border: 1px solid var(--line); font-weight: 700;
}
.fuc-content table td {
  padding: .6rem .8rem; border: 1px solid var(--line); vertical-align: top;
}
.fuc-content blockquote {
  border-left: 4px solid var(--gold);
  background: #fffaeb;
  padding: 1rem 1.2rem; margin: 1.2rem 0; border-radius: 0 var(--radius) var(--radius) 0;
  color: #78350f;
}

.fuc-aside {
  position: sticky; top: 80px;
  align-self: start;
}

/* ============== CONTENT-PLACEHOLDER (for build-time markers) ============== */
.fuc-placeholder {
  background: repeating-linear-gradient(45deg, #fef9c3, #fef9c3 8px, #fde68a 8px, #fde68a 16px);
  border: 2px dashed #d97706;
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  margin: 1.5rem 0;
  color: #78350f;
}
.fuc-placeholder strong { color: #92400e; }
.fuc-placeholder code {
  background: #fff7ed; padding: .1rem .4rem; border-radius: 4px; font-size: .9em;
}

/* ============== TESTIMONIAL CARD ============== */
.fuc-testimonial {
  background: var(--bg-2); border-left: 4px solid var(--green);
  padding: 1rem 1.2rem; margin: 1rem 0; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .95rem;
}
.fuc-testimonial cite {
  display: block; margin-top: .6rem; color: var(--gray);
  font-size: .85rem; font-style: normal; font-weight: 600;
}

/* ============== SECTION CTA ============== */
.fuc-cta-band {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  color: #fff;
  padding: 2rem 1.25rem;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}
.fuc-cta-band h2 { color: #fff; margin: 0 0 .8rem; }
.fuc-cta-band p { color: rgba(255,255,255,.92); margin: 0 0 1.2rem; }
.fuc-cta-band .btns {
  display: inline-flex; flex-wrap: wrap; gap: .8rem; justify-content: center;
}
.fuc-cta-band .btns a {
  background: #fff; color: var(--green); font-weight: 700;
  padding: .75rem 1.4rem; border-radius: 999px; text-decoration: none;
}
.fuc-cta-band .btns a.alt {
  background: var(--whatsapp); color: #fff;
}

/* ============== FOOTER ============== */
.fuc-foot {
  background: var(--navy); color: rgba(255,255,255,.9);
  padding: 2.4rem 1.25rem 1.4rem;
  font-size: .9rem;
}
.fuc-foot-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2rem;
}
.fuc-foot h4 {
  color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  margin: 0 0 .8rem;
}
.fuc-foot ul { list-style: none; padding: 0; margin: 0; }
.fuc-foot ul li { margin: .35rem 0; }
.fuc-foot a { color: rgba(255,255,255,.85); }
.fuc-foot a:hover { color: var(--gold-2); }
.fuc-foot .crosslink {
  background: rgba(255,255,255,.06); border-radius: var(--radius);
  padding: .9rem 1rem; margin-top: 1rem; font-size: .85rem;
}
.fuc-foot .crosslink strong { color: var(--gold-2); }
.fuc-foot-bottom {
  max-width: var(--max); margin: 1.5rem auto 0;
  padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.12);
  font-size: .8rem; color: rgba(255,255,255,.65);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
}

/* ============== STICKY WHATSAPP BUBBLE ============== */
.fuc-wa-float {
  position: fixed; bottom: 18px; right: 18px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform .15s;
}
.fuc-wa-float:hover { transform: scale(1.06); }
.fuc-wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .fuc-hero-grid, .fuc-main { grid-template-columns: 1fr; gap: 1.5rem; }
  .fuc-aside { position: static; }
  .fuc-foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .fuc-foot-grid { grid-template-columns: 1fr; }
  .fuc-hero { padding: 1.8rem 1rem 2rem; }
  .fuc-main { padding: 1.6rem 1rem 2rem; }
  .fuc-nav-cta span { display: none; }
}

/* ============== UTILITIES ============== */
.fuc-narrow { max-width: 760px; }
.fuc-center { text-align: center; }
.fuc-mt-0 { margin-top: 0; }
.fuc-mt-2 { margin-top: 2rem; }
.fuc-pill {
  display: inline-block; padding: .25rem .6rem; border-radius: 999px;
  background: var(--bg-3); color: var(--navy); font-size: .78rem; font-weight: 600;
}
.fuc-pill.green { background: #d1fae5; color: var(--green); }
.fuc-pill.gold { background: #fef3c7; color: #78350f; }

/* ============== HERO EYEBROW + DUAL CTA ============== */
.fuc-eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 .9rem;
}
.fuc-hero-ctas {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin: 1.4rem 0 0;
}
.fuc-hero-ctas a {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  font-weight: 700; font-size: .98rem; text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.fuc-hero-ctas a.primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(245,158,11,.35);
}
.fuc-hero-ctas a.primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(245,158,11,.45); }
.fuc-hero-ctas a.outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.fuc-hero-ctas a.outline:hover { background: rgba(255,255,255,.08); border-color: #fff; }

/* ============== STAT STRIP (under hero) ============== */
.fuc-stats {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.2rem 1.25rem;
}
.fuc-stats-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.fuc-stat {
  text-align: center; color: #fff;
  padding: .4rem .6rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.fuc-stat:last-child { border-right: 0; }
.fuc-stat-num {
  font-size: 1.6rem; font-weight: 800; color: var(--gold-2);
  line-height: 1.1;
}
.fuc-stat-label {
  font-size: .82rem; color: rgba(255,255,255,.78);
  margin-top: .25rem;
}

/* ============== FEATURE CARDS ROW ============== */
.fuc-feature-cards {
  max-width: var(--max); margin: 2rem auto 0;
  padding: 0 1.25rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.fuc-feature-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  color: #fff;
  min-height: 140px;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow-md);
}
.fuc-feature-card.c1 { background: linear-gradient(135deg, #047857 0%, #065f46 100%); }
.fuc-feature-card.c2 { background: linear-gradient(135deg, #1e3a8a 0%, #0c1a3a 100%); }
.fuc-feature-card.c3 { background: linear-gradient(135deg, #b45309 0%, #78350f 100%); }
.fuc-feature-card .icon {
  position: absolute; top: 1rem; right: 1.1rem;
  font-size: 1.6rem; opacity: .35;
}
.fuc-feature-card h3 {
  margin: 0 0 .35rem; font-size: 1.05rem; color: #fff; font-weight: 700;
}
.fuc-feature-card p {
  margin: 0; font-size: .88rem; color: rgba(255,255,255,.85); line-height: 1.5;
}

/* ============== FAQ ACCORDION ============== */
.fuc-faq {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0 0 .7rem;
  overflow: hidden;
  transition: box-shadow .15s;
}
.fuc-faq[open] { box-shadow: var(--shadow-sm); border-color: var(--gold); }
.fuc-faq summary {
  cursor: pointer; list-style: none;
  padding: 1rem 2.4rem 1rem 1.1rem;
  font-weight: 700; color: var(--navy); font-size: 1rem;
  position: relative;
}
.fuc-faq summary::-webkit-details-marker { display: none; }
.fuc-faq summary::after {
  content: "+"; position: absolute; right: 1.1rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem; color: var(--gold); font-weight: 400;
  transition: transform .15s;
}
.fuc-faq[open] summary::after { content: "−"; }
.fuc-faq .answer {
  padding: 0 1.1rem 1.1rem;
  color: var(--gray); line-height: 1.7;
}
.fuc-faq .answer p:last-child { margin-bottom: 0; }

/* ============== RELATED COLLEGES SIDEBAR ============== */
.fuc-related {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.1rem;
  margin-top: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.fuc-related h4 {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray); margin: 0 0 .8rem; font-weight: 700;
}
.fuc-related ul { list-style: none; padding: 0; margin: 0; }
.fuc-related li {
  border-top: 1px solid var(--line);
  padding: .7rem 0;
}
.fuc-related li:first-child { border-top: 0; padding-top: 0; }
.fuc-related a {
  color: var(--navy); font-weight: 600; font-size: .94rem;
  display: flex; justify-content: space-between; align-items: center; gap: .5rem;
  text-decoration: none;
}
.fuc-related a:hover { color: var(--green); }
.fuc-related a::after {
  content: "→"; color: var(--gold); font-weight: 700; opacity: .6;
}
.fuc-related a:hover::after { opacity: 1; transform: translateX(2px); }
.fuc-related .meta {
  display: block; font-size: .78rem; color: var(--gray-2); font-weight: 500;
  margin-top: .15rem;
}

/* ============== ASK COUNSELLOR FLOATING CHIP ============== */
.fuc-ask-chip {
  position: fixed; bottom: 86px; right: 18px; z-index: 60;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .65rem 1rem .65rem .7rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--navy);
  border-radius: 999px;
  font-weight: 700; font-size: .9rem; text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform .15s, box-shadow .15s;
}
.fuc-ask-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); text-decoration: none; }
.fuc-ask-chip .dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--navy); color: var(--gold-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800;
}

/* ============== RESPONSIVE — new components ============== */
@media (max-width: 900px) {
  .fuc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .fuc-stat:nth-child(2) { border-right: 0; }
  .fuc-feature-cards { grid-template-columns: 1fr; }
  .fuc-ask-chip span.label { display: none; }
  .fuc-ask-chip { padding: .65rem .7rem; }
}
@media (max-width: 560px) {
  .fuc-hero-ctas a { flex: 1 1 100%; justify-content: center; }
  .fuc-stat { padding: .3rem .4rem; }
  .fuc-stat-num { font-size: 1.3rem; }
}
