/* Clear Edge Counseling — Premium Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0f2b4c;
  --navy-light: #1a3d6e;
  --navy-dark: #0a1f38;
  --gold: #d4a03c;
  --gold-light: #f0c75e;
  --gold-bg: #fdf8ef;
  --teal: #0ea5e9;
  --teal-light: #e0f5ff;
  --green: #10b981;
  --green-light: #d1fae5;
  --text: #1e293b;
  --text-mid: #475569;
  --text-light: #64748b;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e2e8f0;
  --primary: #0f2b4c;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --max-w: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); line-height: 1.7; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* Typography */
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; color: var(--navy); }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; color: var(--navy); }
h4 { font-size: 1rem; font-weight: 600; color: var(--navy); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer; transition: var(--transition); white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--navy); font-weight: 700; box-shadow: 0 4px 14px rgba(212,160,60,0.3); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,60,0.4); color: var(--navy); }
.btn-gold { background: var(--gold); color: var(--navy); font-weight: 700; box-shadow: 0 4px 14px rgba(212,160,60,0.3); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,60,0.4); }
.btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); font-weight: 700; box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-accent { background: var(--gold); color: var(--navy); font-weight: 700; }
.btn-accent:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; border-radius: 8px; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: 12px; }

/* ─── Header ─── */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center;
}
.logo img {
  height: 44px; width: auto;
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: var(--text-mid);
}
.nav-links a:hover { background: var(--gray-100); color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-cta { margin-left: 8px; }
.mobile-toggle {
  display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer;
  width: 44px; height: 44px; border-radius: 8px; color: var(--navy);
  align-items: center; justify-content: center;
}

/* ─── Hero ─── */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 0 100px;
  background: linear-gradient(170deg, var(--white) 0%, #f0f4f8 40%, #e8eef6 100%);
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,60,0.08) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.06) 0%, transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--gold); display: inline; }
.hero-desc {
  font-size: 1.15rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-proof {
  display: flex; gap: 40px; padding-top: 32px; border-top: 1px solid var(--gray-200);
}
.hero-proof-item .num { font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.hero-proof-item .label { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }

.hero-visual { position: relative; }
.hero-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); position: relative; z-index: 2;
}
.hero-img-main img { width: 100%; height: 480px; object-fit: cover; }
.hero-float-card {
  position: absolute; z-index: 3; background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-float-card.top { top: -20px; right: -20px; animation-delay: 0.5s; }
.hero-float-card.bottom { bottom: -20px; left: -20px; }
.float-icon {
  width: 42px; height: 42px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.float-icon.gold { background: var(--gold-bg); }
.float-icon.teal { background: var(--teal-light); }
.float-icon.green { background: var(--green-light); }
.float-text .ft-label { font-size: 0.75rem; color: var(--text-light); }
.float-text .ft-value { font-size: 0.95rem; font-weight: 700; color: var(--navy); }

/* ─── College Logo Strip ─── */
.college-strip {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  overflow: hidden; position: relative;
}
.college-strip .overline {
  text-align: center; font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold); margin-bottom: 24px;
}
.college-logos-track {
  display: flex; gap: 12px; width: max-content;
  animation: scroll-colleges 25s linear infinite;
}
@keyframes scroll-colleges {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.college-logos-track:hover { animation-play-state: paused; }
.college-logos-track span {
  font-size: 0.95rem; font-weight: 700; color: var(--white);
  padding: 12px 28px; background: rgba(255,255,255,0.08); border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15); white-space: nowrap;
  transition: var(--transition); backdrop-filter: blur(4px);
}
.college-logos-track span:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
/* Static fallback */
.college-logos {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.college-logos span {
  font-size: 0.95rem; font-weight: 700; color: var(--white);
  padding: 12px 28px; background: rgba(255,255,255,0.08); border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15); transition: var(--transition);
}
.college-logos span:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ─── Stats Bar ─── */
.stats-bar {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-light));
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  position: relative; z-index: 1; text-align: center;
}
.stat-item .stat-num {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--gold);
  line-height: 1.1; margin-bottom: 8px;
}
.stat-item .stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

/* ─── Sections ─── */
.section { padding: 100px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--navy); color: var(--white); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-header .overline {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gold); margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-mid); font-size: 1.05rem; }

/* ─── Services ─── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 36px; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold)); opacity: 0;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.5rem;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.service-card .learn-more {
  font-weight: 600; font-size: 0.9rem; color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card .learn-more:hover { color: var(--gold); gap: 10px; }

/* Service card with image */
.service-card-img {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
}
.service-card-img:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card-img .card-image { height: 200px; overflow: hidden; }
.service-card-img .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card-img:hover .card-image img { transform: scale(1.05); }
.service-card-img .card-body { padding: 28px; }
.service-card-img .card-body h3 { margin-bottom: 10px; }
.service-card-img .card-body p { color: var(--text-mid); font-size: 0.93rem; margin-bottom: 16px; }

/* ─── About / Why Section ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
}
.about-image { position: relative; }
.about-img-wrap { position: relative; }
.about-img-wrap img, .about-image img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: 100%; height: 500px; object-fit: cover;
}
.about-img-wrap .accent-block {
  position: absolute; bottom: -24px; right: -24px; width: 180px; height: 180px;
  background: var(--gold); border-radius: var(--radius-lg); z-index: -1; opacity: 0.2;
}
.about-text .overline {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gold); margin-bottom: 12px;
}
.about-text h2 { margin-bottom: 20px; }
.about-text > p { color: var(--text-mid); font-size: 1.05rem; margin-bottom: 20px; }
.credential-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.credential-tag, .credential-badge {
  padding: 8px 16px; background: var(--gray-100); border-radius: 8px;
  font-size: 0.8rem; font-weight: 600; color: var(--navy);
}

/* ─── Feature Grid (3-col) ─── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card {
  text-align: center; padding: 40px 28px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--gray-200); transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.feature-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  background: linear-gradient(135deg, rgba(15,43,76,0.05), rgba(15,43,76,0.1));
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--text-mid); font-size: 0.93rem; }

/* ─── Process Steps ─── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.process-step { text-align: center; position: relative; }
.process-step::after {
  content: ''; position: absolute; top: 32px; right: -16px;
  width: 32px; height: 2px; background: var(--gray-300);
}
.process-step:last-child::after { display: none; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white); font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 4px 14px rgba(15,43,76,0.2);
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: var(--text-mid); }

/* ─── Testimonials ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 32px; transition: var(--transition); position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.testimonial-card .quote-mark {
  position: absolute; top: 20px; right: 24px; font-size: 3rem;
  color: var(--gold); opacity: 0.2; font-family: Georgia, serif; line-height: 1;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.95rem; color: var(--text-mid); font-style: italic; line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  background: var(--gray-200);
}
.testimonial-author .name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.testimonial-author .role { font-size: 0.8rem; color: var(--text-light); }
.testimonial-college { font-size: 0.75rem; font-weight: 600; color: var(--gold); margin-top: 4px; }

/* ─── Blog Cards ─── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition); display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover img { transform: scale(1.05); }
.blog-card-img { height: 210px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tag, .blog-tag {
  display: inline-block; padding: 4px 12px; background: var(--gold-bg);
  border-radius: 6px; font-size: 0.7rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; width: fit-content;
}
.blog-card-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.blog-card-body h3 a { color: var(--navy); }
.blog-card-body h3 a:hover { color: var(--navy-light); }
.blog-card-body p { color: var(--text-mid); font-size: 0.9rem; flex: 1; }
.blog-card-body .read-more {
  margin-top: 16px; font-weight: 600; font-size: 0.85rem; color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ─── CTA Section ─── */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,60,0.12) 0%, transparent 70%);
}
.cta-section::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }

/* ─── Footer ─── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.65); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .footer-logo { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); margin-bottom: 20px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── Page Hero (internal pages) ─── */
.page-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 50%, #f5f0ff 100%);
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--text-mid); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ─── Contact Page ─── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.85rem; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--gray-200); border-radius: 10px;
  font-size: 0.95rem; font-family: inherit; transition: var(--transition); background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(15,43,76,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── Info Cards (Contact page) ─── */
.contact-info-card {
  background: var(--gray-50); border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--gray-200);
}
.contact-info-card h3 { margin-bottom: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-info-item .icon-circle {
  width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
  background: rgba(30,58,95,0.08); display: flex; align-items: center;
  justify-content: center; color: var(--primary); font-size: 1.1rem;
}
.contact-info-item .info-text strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.contact-info-item .info-text span,
.contact-info-item .info-text a { font-size: 0.9rem; color: var(--text-light); }
.existing-clients { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 0.9rem; }

/* ─── FAQ Section ─── */
.faq-section { padding: 80px 0; background: var(--bg-alt); }
.faq-item {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 28px; margin-bottom: 16px; transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--primary); }
.faq-item p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 0; }

/* ─── Blog Post Layout ─── */
.blog-post { padding: 60px 0 80px; }
.blog-post-header { max-width: 800px; margin: 0 auto 40px; }
.blog-post-header .back-link {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem;
  color: var(--text-light); margin-bottom: 24px; font-weight: 500;
}
.blog-post-header .back-link:hover { color: var(--navy); }
.blog-post-header .meta { color: var(--text-light); font-size: 0.85rem; margin-top: 16px; }
.blog-post-content { max-width: 800px; margin: 0 auto; }
.blog-post-content p { margin-bottom: 1.2rem; }
.blog-post-content h2 { margin: 48px 0 16px; }
.blog-post-content h3 { margin: 32px 0 12px; }
.blog-post-content ul, .blog-post-content ol { margin: 16px 0 24px 24px; }
.blog-post-content li { margin-bottom: 8px; color: var(--text-mid); }
.blog-post-content img { border-radius: var(--radius-lg); margin: 32px 0; box-shadow: var(--shadow); }
.blog-cta-box {
  margin-top: 60px; padding: 40px; background: var(--gray-50); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); text-align: center;
}
.blog-cta-box h3 { margin-bottom: 10px; }
.blog-cta-box p { color: var(--text-mid); margin-bottom: 20px; }

/* ─── Detail Page Layout ─── */
.detail-hero {
  padding: 80px 0; position: relative; overflow: hidden;
  background: linear-gradient(170deg, var(--white) 0%, #f0f4f8 60%, #e8eef6 100%);
}
.detail-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.detail-hero h1 { margin-bottom: 16px; }
.detail-hero p { color: var(--text-mid); font-size: 1.1rem; line-height: 1.8; margin-bottom: 28px; }
.detail-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.detail-hero-img img { width: 100%; height: 380px; object-fit: cover; }

.detail-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.detail-feature {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 28px; transition: var(--transition);
}
.detail-feature:hover { box-shadow: var(--shadow); }
.detail-feature h4 { margin-bottom: 8px; }
.detail-feature p { font-size: 0.9rem; color: var(--text-mid); }

/* ─── Image Grid ─── */
.image-text-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.image-text-grid.reverse { direction: rtl; }
.image-text-grid.reverse > * { direction: ltr; }
.image-text-grid img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: 100%; height: 400px; object-fit: cover;
}

/* ─── Mobile ─── */
@media (max-width: 1024px) {
  .hero-grid { gap: 48px; }
  .about-grid { gap: 48px; }
  .detail-hero-grid { gap: 40px; }
}
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 20px 32px;
    box-shadow: var(--shadow-lg); gap: 4px;
  }
  .nav-links.active { display: flex; }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  .hero { padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-float-card { display: none; }
  .hero-proof { gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-step::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .college-logos { gap: 16px; }
  .college-logos span { font-size: 0.85rem; padding: 8px 14px; }
  .detail-hero-grid { grid-template-columns: 1fr; }
  .detail-features { grid-template-columns: 1fr; }
  .image-text-grid { grid-template-columns: 1fr; }
  .image-text-grid.reverse { direction: ltr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
