/* Recruit2College — shared styles for content pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:       #0d1f3c;
  --navy-mid:   #162a4a;
  --navy-light: #1e3a5f;
  --grey:       #4a5568;
  --grey-light: #f0f2f5;
  --red:        #c0392b;
  --red-light:  #e74c3c;
  --gold:       #c9a84c;
  --white:      #ffffff;
  --cream:      #f8f9fc;
  --text:       #1a202c;
  --text-muted: #64748b;
  --border:     #e2e8f0;
  --shadow:     0 4px 24px rgba(13,31,60,0.10);
  --shadow-lg:  0 12px 48px rgba(13,31,60,0.16);
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-light); }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: rgba(13,31,60,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 0 28px; height: 84px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; color: var(--white); letter-spacing: 0.04em; text-decoration: none; line-height: 1; position: absolute; left: 50%; transform: translateX(-50%); white-space: nowrap; display: flex; flex-direction: column; align-items: center; }
.nav-logo-name { display: flex; align-items: center; gap: 4px; white-space: nowrap; background: linear-gradient(90deg, #c9a84c 0%, #e8c97a 30%, #fffbe6 50%, #e8c97a 70%, #c9a84c 100%); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 3s linear infinite; }
@keyframes shimmer { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }
.nav-logo-2 { font-style: italic; display: inline; }
.nav-logo-tag { color: var(--red-light); font-size: 10px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; margin-top: 3px; opacity: 0.7; white-space: nowrap; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta { background: var(--red); color: var(--white); font-size: 13px; font-weight: 600; padding: 9px 20px; border-radius: 6px; text-decoration: none; letter-spacing: 0.04em; transition: background 0.2s, transform 0.2s; white-space: nowrap; }
.nav-cta:hover { background: var(--red-light); transform: translateY(-1px); color: var(--white); box-shadow: 0 4px 20px rgba(192,57,43,0.4); }

#menu-toggle { display: none; }
.hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 38px; cursor: pointer; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 8px; transition: background 0.2s; flex-shrink: 0; user-select: none; }
.hamburger:hover { background: rgba(255,255,255,0.12); }
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s ease; transform-origin: center; pointer-events: none; }
#menu-toggle:checked ~ nav .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-toggle:checked ~ nav .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#menu-toggle:checked ~ nav .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer { position: fixed; top: 84px; right: 0; width: 320px; height: calc(100vh - 84px); background: var(--navy-mid); border-left: 1px solid rgba(255,255,255,0.07); z-index: 190; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); padding: 28px 24px; display: flex; flex-direction: column; gap: 4px; overflow-y: auto; }
#menu-toggle:checked ~ .nav-drawer { transform: translateX(0); }
.drawer-link { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.72); text-decoration: none; font-size: 16px; font-weight: 400; padding: 14px 16px; border-radius: 8px; transition: all 0.2s; border: 1px solid transparent; }
.drawer-link:hover { background: rgba(255,255,255,0.05); color: var(--white); border-color: rgba(255,255,255,0.08); }
.drawer-link.active { background: rgba(192,57,43,0.12); color: var(--white); border-color: rgba(192,57,43,0.25); }
.d-icon { font-size: 18px; width: 26px; text-align: center; flex-shrink: 0; }
.drawer-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 12px 0; }
.drawer-cta { display: block; background: var(--red); color: var(--white); text-decoration: none; text-align: center; font-size: 15px; font-weight: 600; padding: 14px; border-radius: 8px; margin-top: 8px; transition: background 0.2s; letter-spacing: 0.03em; }
.drawer-cta:hover { background: var(--red-light); color: var(--white); box-shadow: 0 4px 20px rgba(192,57,43,0.35); }
.drawer-overlay { display: none; position: fixed; inset: 0; top: 84px; background: rgba(0,0,0,0.5); z-index: 180; cursor: pointer; }
#menu-toggle:checked ~ .drawer-overlay { display: block; }

.drawer-group { display: flex; flex-direction: column; }
.drawer-group-toggle { display: none; }
.drawer-group-label { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.72); font-size: 16px; font-weight: 400; padding: 14px 16px; border-radius: 8px; cursor: pointer; transition: all 0.2s; border: 1px solid transparent; user-select: none; }
.drawer-group-label:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.drawer-group-label::after { content: '▾'; margin-left: auto; font-size: 12px; color: rgba(255,255,255,0.5); transition: transform 0.25s; }
.drawer-group-toggle:checked ~ .drawer-group-label::after { transform: rotate(180deg); }
.drawer-group-items { display: none; flex-direction: column; padding-left: 20px; gap: 2px; }
.drawer-group-toggle:checked ~ .drawer-group-items { display: flex; }
.drawer-sublink { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; padding: 10px 14px; border-radius: 6px; transition: all 0.2s; }
.drawer-sublink:hover { background: rgba(255,255,255,0.04); color: var(--white); }

/* PAGE HEADER (for inner pages) */
.page-hero { background: linear-gradient(135deg, #0d1f3c 0%, #1a1a2e 30%, #16213e 60%, #2a1a2e 100%); padding: 160px 24px 88px; position: relative; overflow: hidden; text-align: center; border-bottom: 3px solid var(--red); }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 48px 48px; opacity: 0.6; pointer-events: none; }
.page-hero::after { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(192,57,43,0.18) 0%, transparent 70%); top: -200px; right: -200px; pointer-events: none; }
.page-hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.page-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(192,57,43,0.15); border: 1px solid rgba(192,57,43,0.35); border-radius: 4px; padding: 7px 18px; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #f1a19a; margin-bottom: 28px; }
.dot-red { width: 7px; height: 7px; border-radius: 50%; background: var(--red-light); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(40px, 7vw, 72px); font-weight: 900; line-height: 1.05; color: var(--white); letter-spacing: -0.01em; margin-bottom: 18px; }
.page-hero h1 em { font-style: italic; color: var(--red-light); }
.page-hero .lead { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,0.65); max-width: 640px; margin: 0 auto; font-weight: 300; line-height: 1.7; }

/* CONTENT SECTIONS */
.section { padding: 80px 24px; }
.section.alt { background: var(--cream); }
.section.dark { background: var(--navy); color: rgba(255,255,255,0.85); }
.section.dark p { color: rgba(255,255,255,0.7); }
.section.dark .section-title { color: var(--white); }
.section-inner { max-width: 1060px; margin: 0 auto; }
.section-narrow { max-width: 820px; margin: 0 auto; }
.section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.section.dark .section-eyebrow { color: var(--red-light); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4.5vw, 48px); font-weight: 700; color: var(--navy); line-height: 1.1; margin-bottom: 18px; }
.section-title em { font-style: italic; color: var(--red); }
.section.dark .section-title em { color: var(--red-light); }
.section-desc { color: var(--text-muted); font-size: 17px; max-width: 720px; font-weight: 300; margin-bottom: 36px; line-height: 1.75; }
.section.dark .section-desc { color: rgba(255,255,255,0.6); }

/* PROSE BLOCKS */
.prose { font-size: 16px; line-height: 1.8; color: var(--text); max-width: 760px; }
.prose p { margin-bottom: 18px; color: var(--text-muted); font-weight: 300; }
.prose p strong { color: var(--text); font-weight: 600; }
.prose h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.5vw, 36px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-top: 44px; margin-bottom: 14px; }
.prose h3 { font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.6vw, 26px); font-weight: 700; color: var(--navy); line-height: 1.25; margin-top: 32px; margin-bottom: 10px; }
.prose ul { margin: 12px 0 22px 0; padding-left: 22px; }
.prose ul li { margin-bottom: 10px; color: var(--text-muted); font-weight: 300; }
.prose ul li strong { color: var(--text); font-weight: 600; }

/* FEATURE GRID */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 32px; }
.feat-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px 26px; transition: transform 0.25s, box-shadow 0.25s; }
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(192,57,43,0.2); }
.feat-icon { font-size: 26px; margin-bottom: 14px; display: block; }
.feat-card h4 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feat-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* TWO COLUMN */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* CALLOUT CARDS */
.callout { background: var(--cream); border: 1px solid var(--border); border-left: 3px solid var(--red); border-radius: 0 10px 10px 0; padding: 22px 26px; margin: 24px 0; }
.callout h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.callout p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }
.section.dark .callout { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); border-left-color: var(--red); }
.section.dark .callout h4 { color: var(--white); }
.section.dark .callout p { color: rgba(255,255,255,0.7); }

/* PRICING MINI CARDS */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 32px; }
.price-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 30px 28px; }
.price-card.featured { background: var(--navy); color: var(--white); border-color: var(--navy-light); }
.price-card .pkg-name { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.price-card.featured .pkg-name { color: var(--gold); }
.price-card .pkg-price { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.price-card.featured .pkg-price { color: var(--white); }
.price-card .pkg-billing { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.price-card.featured .pkg-billing { color: rgba(255,255,255,0.5); }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.price-card ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.price-card.featured ul li { color: rgba(255,255,255,0.78); }
.price-card .pcheck { color: var(--red); flex-shrink: 0; margin-top: 1px; }
.price-card.featured .pcheck { color: var(--gold); }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 64px 24px; text-align: center; border-top: 3px solid var(--red); border-bottom: 3px solid var(--red); }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 14px; }
.cta-band h2 em { font-style: italic; color: var(--red-light); }
.cta-band p { color: rgba(255,255,255,0.6); font-size: 17px; max-width: 560px; margin: 0 auto 28px; line-height: 1.7; font-weight: 300; }
.btn-red { display: inline-block; background: var(--red); color: var(--white); font-size: 15px; font-weight: 600; padding: 15px 36px; border-radius: 6px; text-decoration: none; letter-spacing: 0.03em; transition: all 0.2s; box-shadow: 0 4px 20px rgba(192,57,43,0.4); }
.btn-red:hover { background: var(--red-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,57,43,0.5); }
.btn-ghost { display: inline-block; background: transparent; color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 400; padding: 15px 36px; border-radius: 6px; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); transition: all 0.2s; margin-left: 8px; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* FAQ ACCORDION */
.faq-list { display: flex; flex-direction: column; margin-top: 24px; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 22px 4px; text-align: left; gap: 16px; font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); transition: color 0.2s; }
.faq-q:hover { color: var(--red); }
.faq-arrow { font-size: 18px; color: var(--text-muted); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--red); }
.faq-a { display: none; padding: 0 4px 24px 4px; font-size: 15px; line-height: 1.75; color: var(--text-muted); font-weight: 300; }
.faq-a strong { color: var(--text); font-weight: 600; }
.faq-item.open .faq-a { display: block; }

/* CONTACT FORM */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 44px 40px; box-shadow: var(--shadow-lg); max-width: 720px; margin: 0 auto; }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.03em; }
.form-group label span { color: var(--red); margin-left: 2px; }
.form-group .hint { font-size: 12px; color: var(--text-muted); font-weight: 400; margin-left: 4px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], select, textarea { width: 100%; background: var(--cream); border: 1.5px solid var(--border); border-radius: 8px; padding: 12px 16px; font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--text); transition: border-color 0.2s, box-shadow 0.2s; outline: none; appearance: none; }
input:focus, select:focus, textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,31,60,0.08); background: var(--white); }
textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.btn-submit { background: var(--navy); color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; padding: 16px 52px; border-radius: 8px; border: none; cursor: pointer; letter-spacing: 0.04em; transition: all 0.2s; box-shadow: 0 4px 20px rgba(13,31,60,0.25); width: 100%; max-width: 360px; }
.btn-submit:hover { background: var(--navy-light); transform: translateY(-2px); }
.submit-area { margin-top: 28px; text-align: center; }
.submit-note { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }
.success-msg { display: none; text-align: center; padding: 36px 24px; }
.success-msg.show { display: block; }
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(13,31,60,0.08); display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 24px; }
.success-msg h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.success-msg p { font-size: 16px; color: var(--text-muted); max-width: 400px; margin: 0 auto; line-height: 1.7; }

/* FOOTER */
footer { background: var(--navy); padding: 56px 24px 32px; text-align: center; }
.footer-inner { max-width: 1060px; margin: 0 auto; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-logo-2 { color: var(--gold); font-style: italic; font-size: 32px; }
.footer-logo span { color: var(--red-light); font-size: 12px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; display: inline; margin-left: 8px; opacity: 0.7; }
.footer-divider { width: 40px; height: 1px; background: var(--red); margin: 16px auto; opacity: 0.5; }
footer p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; }
footer a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--white); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-bottom { margin-top: 22px; font-size: 12px; opacity: 0.4; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 30px 22px; }
  .section { padding: 60px 20px; }
  .page-hero { padding: 130px 20px 64px; }
}
@media (max-width: 600px) {
  nav { height: 64px; padding: 0 16px; justify-content: space-between; }
  .nav-logo { position: static; transform: none; font-size: 28px; }
  .nav-cta { display: none; }
  .nav-drawer { top: 64px; height: calc(100vh - 64px); width: 290px; }
  .drawer-overlay { top: 64px; }
  .page-hero h1 { font-size: clamp(32px, 9vw, 48px); }
  .footer-logo { font-size: 24px; }
}
