/* ===== CAMPUS CORE PM — DEEP RED / DARK SLATE / GOLD STUDENT HOUSING THEME ===== */

:root {
  --cc-red: #C8102E;
  --cc-red-light: #E8294A;
  --cc-red-dim: rgba(200, 16, 46, 0.12);
  --cc-slate: #1A1A2E;
  --cc-slate-mid: #24243E;
  --cc-slate-light: #2E2E52;
  --cc-gold: #FFD700;
  --cc-gold-light: #FFE44D;
  --cc-gold-dim: rgba(255, 215, 0, 0.12);
  --cc-cream: #F8F6F2;
  --cc-cream-dark: #EDE9E0;
  --cc-charcoal: #1A1A1A;
  --cc-muted: #6B7280;
  --cc-border: rgba(255, 215, 0, 0.18);
}

/* NAVBAR */
.cc-nav { background: rgba(26, 26, 46, 0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--cc-border); }
.cc-nav .nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.cc-nav .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.cc-nav .nav-logo-text { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--cc-cream); }
.cc-nav .nav-links { display: flex; gap: 28px; }
.cc-nav .nav-links a { font-size: 14px; font-weight: 500; color: rgba(248,246,242,0.65); text-decoration: none; transition: color 0.2s; }
.cc-nav .nav-links a:hover { color: var(--cc-gold); }

/* HERO */
.cc-hero { background: var(--cc-slate); padding: 100px 24px 80px; position: relative; overflow: hidden; }
.cc-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 30%, rgba(200,16,46,0.18) 0%, transparent 55%), radial-gradient(ellipse at 15% 85%, rgba(255,215,0,0.06) 0%, transparent 50%); pointer-events: none; }
.cc-hero-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cc-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--cc-red-dim); border: 1px solid rgba(200,16,46,0.35); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; color: #F87B8E; margin-bottom: 20px; }
.cc-hero h1 { font-size: clamp(36px,5vw,54px); color: var(--cc-cream); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px; }
.cc-hero h1 em { font-style: normal; color: var(--cc-gold); }
.cc-hero p { font-size: 18px; color: rgba(248,246,242,0.7); line-height: 1.7; max-width: 460px; margin-bottom: 32px; }
.cc-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cc-hero-image { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.5); border: 1px solid rgba(255,215,0,0.15); }
.cc-hero-image img { width: 100%; height: 360px; object-fit: cover; display: block; }

/* TRUST BAR */
.cc-trust-bar { background: var(--cc-slate-mid); border-bottom: 1px solid var(--cc-border); padding: 40px 24px; text-align: center; }
.cc-trust-bar p { font-size: 13px; color: rgba(248,246,242,0.4); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.cc-trust-logos { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.cc-trust-logo { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: rgba(248,246,242,0.45); }

/* SECTIONS */
.cc-services-preview { padding: 96px 24px; background: var(--cc-cream); }
.cc-inner { max-width: 1160px; margin: 0 auto; }
.cc-section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--cc-red); margin-bottom: 12px; display: block; }
.cc-section-title { font-size: clamp(28px,4vw,42px); color: var(--cc-slate); margin-bottom: 16px; letter-spacing: -1px; }
.cc-section-desc { font-size: 17px; color: var(--cc-muted); line-height: 1.7; max-width: 560px; }

/* SERVICE CARDS */
.cc-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.cc-service-card { background: white; border: 1.5px solid var(--cc-cream-dark); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 14px; transition: border-color 0.2s, box-shadow 0.2s; }
.cc-service-card:hover { border-color: var(--cc-red); box-shadow: 0 8px 32px rgba(200,16,46,0.08); }
.cc-service-icon { width: 48px; height: 48px; background: var(--cc-red-dim); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; border: 1px solid rgba(200,16,46,0.2); }
.cc-service-card h3 { font-size: 17px; color: var(--cc-slate); font-family: 'Sora', sans-serif; font-weight: 700; }
.cc-service-card p { font-size: 14px; color: var(--cc-muted); line-height: 1.65; }
.cc-btn-ghost-sm { font-size: 12px; padding: 8px 16px; color: var(--cc-red); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.cc-btn-ghost-sm:hover { color: var(--cc-slate); }

/* STATS */
.cc-stats-section { background: var(--cc-slate); padding: 80px 24px; position: relative; overflow: hidden; }
.cc-stats-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(200,16,46,0.1) 0%, transparent 60%); pointer-events: none; }
.cc-stats-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.cc-stat-item { display: flex; flex-direction: column; gap: 8px; }
.cc-stat-number { font-family: 'Sora', sans-serif; font-size: 42px; font-weight: 800; color: var(--cc-gold); letter-spacing: -2px; }
.cc-stat-label { font-size: 15px; color: rgba(248,246,242,0.7); }
.cc-stat-sub { font-size: 12px; color: rgba(248,246,242,0.4); }

/* WHY SECTION */
.cc-why-section { padding: 96px 24px; background: var(--cc-cream); }
.cc-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 48px; align-items: center; }
.cc-why-list { display: flex; flex-direction: column; gap: 24px; }
.cc-why-item { display: flex; gap: 16px; align-items: flex-start; }
.cc-why-check { width: 28px; height: 28px; border-radius: 50%; background: var(--cc-red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.cc-why-item h4 { font-size: 16px; font-family: 'Sora', sans-serif; font-weight: 700; color: var(--cc-slate); margin-bottom: 4px; }
.cc-why-item p { font-size: 14px; color: var(--cc-muted); line-height: 1.6; }

/* CTA */
.cc-cta-section { padding: 96px 24px; background: var(--cc-slate-mid); position: relative; overflow: hidden; }
.cc-cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(200,16,46,0.12) 0%, transparent 60%); }
.cc-cta-inner { max-width: 720px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 28px; position: relative; }
.cc-cta-inner h2 { font-size: clamp(28px,4vw,40px); color: var(--cc-cream); letter-spacing: -1px; }
.cc-cta-inner p { font-size: 17px; color: rgba(248,246,242,0.6); line-height: 1.7; }
.cc-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.cc-cta-meta { font-size: 13px; color: rgba(248,246,242,0.35); display: flex; gap: 16px; align-items: center; }

/* BUTTONS */
.cc-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--cc-red); color: white; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px; padding: 14px 24px; border-radius: 8px; text-decoration: none; transition: background 0.2s, transform 0.2s; cursor: pointer; border: none; }
.cc-btn-primary:hover { background: var(--cc-red-light); transform: translateY(-1px); }
.cc-btn-primary--large { font-size: 16px; padding: 16px 32px; }
.cc-btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(248,246,242,0.75); font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px; padding: 14px 24px; border-radius: 8px; border: 1.5px solid rgba(255,215,0,0.3); text-decoration: none; transition: all 0.2s; }
.cc-btn-ghost:hover { border-color: var(--cc-gold); color: var(--cc-gold); }
.cc-btn-sm { font-size: 12px; padding: 8px 16px; }

/* FOOTER */
.cc-footer { background: var(--cc-slate); border-top: 1px solid var(--cc-border); padding: 56px 24px 32px; }
.cc-footer-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--cc-border); }
.cc-footer h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--cc-gold); margin-bottom: 14px; font-family: 'Sora', sans-serif; }
.cc-footer p, .cc-footer a { font-size: 14px; color: rgba(248,246,242,0.45); text-decoration: none; line-height: 1.8; }
.cc-footer a:hover { color: var(--cc-cream); }
.cc-footer-bottom { max-width: 1160px; margin: 20px auto 0; font-size: 12px; color: rgba(248,246,242,0.25); }

/* PAGE HERO (shared inner pages) */
.cc-page-hero { background: var(--cc-slate); padding: 80px 24px 60px; position: relative; overflow: hidden; }
.cc-page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(200,16,46,0.15) 0%, transparent 60%); pointer-events: none; }
.cc-page-hero-grid { max-width: 1160px; margin: 0 auto; }
.cc-page-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--cc-red-dim); border: 1px solid rgba(200,16,46,0.35); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; color: #F87B8E; margin-bottom: 16px; }
.cc-page-hero h1 { font-size: clamp(32px,5vw,48px); color: var(--cc-cream); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 16px; }
.cc-page-hero p { font-size: 18px; color: rgba(248,246,242,0.65); max-width: 560px; line-height: 1.7; }

/* SERVICES PAGE */
.cc-page-content { padding: 80px 24px; background: var(--cc-cream); }
.cc-service-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; margin-top: 48px; }
.cc-service-detail-card { background: white; border: 1.5px solid var(--cc-cream-dark); border-radius: 16px; padding: 36px; display: flex; flex-direction: column; gap: 16px; }
.cc-service-detail-card h3 { font-size: 20px; color: var(--cc-slate); font-family: 'Sora', sans-serif; font-weight: 700; }
.cc-service-detail-card > p { font-size: 15px; color: var(--cc-muted); line-height: 1.7; }
.cc-service-detail-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cc-service-detail-card li { font-size: 14px; color: var(--cc-charcoal); display: flex; gap: 10px; align-items: flex-start; }
.cc-service-detail-card li::before { content: '✓'; color: var(--cc-red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* PRICING */
.cc-pricing-section { background: var(--cc-slate); padding: 80px 24px; }
.cc-pricing-table { margin-top: 48px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cc-pricing-card { background: var(--cc-slate-mid); border: 1.5px solid rgba(255,215,0,0.2); border-radius: 16px; padding: 36px; display: flex; flex-direction: column; gap: 20px; }
.cc-pricing-card--featured { background: var(--cc-slate); border-color: var(--cc-gold); }
.cc-pricing-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--cc-gold); }
.cc-pricing-card h3 { font-size: 20px; font-family: 'Sora', sans-serif; font-weight: 700; color: var(--cc-cream); }
.cc-pricing-price { font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 800; color: var(--cc-gold); }
.cc-pricing-price span { font-size: 15px; font-weight: 500; color: rgba(248,246,242,0.5); }
.cc-pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cc-pricing-card li { font-size: 14px; color: rgba(248,246,242,0.7); display: flex; gap: 10px; }
.cc-pricing-card li::before { content: '✓'; color: var(--cc-gold); font-weight: 700; flex-shrink: 0; }
.cc-pricing-cta { padding: 80px 24px; background: var(--cc-cream); }
.cc-pricing-cta-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.cc-pricing-cta-inner h2 { font-size: clamp(26px,4vw,36px); color: var(--cc-slate); margin-bottom: 16px; }
.cc-pricing-cta-inner p { font-size: 17px; color: var(--cc-muted); line-height: 1.7; margin-bottom: 28px; }

/* ABOUT PAGE */
.cc-team-section { padding: 80px 24px; background: var(--cc-cream); }
.cc-team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.cc-team-card { background: white; border: 1.5px solid var(--cc-cream-dark); border-radius: 16px; overflow: hidden; }
.cc-team-card img { width: 100%; height: 240px; object-fit: cover; display: block; }
.cc-team-card-body { padding: 24px; }
.cc-team-card-body h3 { font-size: 18px; font-family: 'Sora', sans-serif; font-weight: 700; color: var(--cc-slate); margin-bottom: 4px; }
.cc-team-card-body .role { font-size: 13px; color: var(--cc-red); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.cc-team-card-body p { font-size: 14px; color: var(--cc-muted); line-height: 1.6; }
.cc-values-section { padding: 80px 24px; background: var(--cc-slate-mid); }
.cc-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.cc-value-card { background: var(--cc-slate); border: 1px solid var(--cc-border); border-radius: 16px; padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.cc-value-card .icon { font-size: 28px; }
.cc-value-card h3 { font-size: 17px; font-family: 'Sora', sans-serif; font-weight: 700; color: var(--cc-cream); }
.cc-value-card p { font-size: 14px; color: rgba(248,246,242,0.55); line-height: 1.65; }

/* CONTACT PAGE */
.cc-contact-section { padding: 80px 24px; background: var(--cc-cream); }
.cc-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; margin-top: 48px; }
.cc-contact-info { display: flex; flex-direction: column; gap: 32px; }
.cc-contact-info h3 { font-size: 18px; font-family: 'Sora', sans-serif; font-weight: 700; color: var(--cc-slate); margin-bottom: 8px; }
.cc-contact-item { display: flex; gap: 14px; align-items: flex-start; }
.cc-contact-icon { width: 40px; height: 40px; background: var(--cc-red-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; border: 1px solid rgba(200,16,46,0.2); }
.cc-contact-item p { font-size: 15px; color: var(--cc-muted); line-height: 1.6; }
.cc-contact-item strong { display: block; font-size: 15px; color: var(--cc-charcoal); font-weight: 600; margin-bottom: 2px; }
.cc-form-wrapper { background: white; border: 1.5px solid var(--cc-cream-dark); border-radius: 20px; padding: 40px; box-shadow: 0 4px 24px rgba(26,26,46,0.06); }
.cc-form-wrapper h3 { font-size: 20px; font-family: 'Sora', sans-serif; font-weight: 700; color: var(--cc-slate); margin-bottom: 4px; }
.cc-form-wrapper > p { font-size: 14px; color: var(--cc-muted); margin-bottom: 28px; }
.cc-form-group { margin-bottom: 20px; }
.cc-form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--cc-slate); margin-bottom: 6px; }
.cc-form-group input, .cc-form-group select, .cc-form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--cc-cream-dark); border-radius: 10px; font-size: 15px; font-family: 'DM Sans', sans-serif; color: var(--cc-charcoal); background: var(--cc-cream); transition: border-color 0.2s; box-sizing: border-box; }
.cc-form-group input:focus, .cc-form-group select:focus, .cc-form-group textarea:focus { outline: none; border-color: var(--cc-red); }
.cc-form-group textarea { resize: vertical; min-height: 100px; }
.cc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cc-form-note { font-size: 12px; color: var(--cc-muted); margin-top: 16px; }
.cc-form-success { display: none; background: #FFF5F7; border: 1.5px solid var(--cc-red); border-radius: 12px; padding: 20px; text-align: center; }
.cc-form-success h4 { font-size: 16px; color: var(--cc-slate); font-family: 'Sora', sans-serif; margin-bottom: 8px; }
.cc-form-success p { font-size: 14px; color: var(--cc-muted); }

/* HOURS */
.cc-hours-section { background: var(--cc-cream-dark); padding: 64px 24px; }
.cc-hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; }
.cc-hours-card { background: white; border: 1.5px solid var(--cc-cream-dark); border-radius: 16px; padding: 28px; }
.cc-hours-card h4 { font-size: 14px; font-family: 'Sora', sans-serif; font-weight: 700; color: var(--cc-slate); margin-bottom: 16px; }
.cc-hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--cc-cream-dark); font-size: 14px; color: var(--cc-charcoal); }
.cc-hours-row:last-child { border-bottom: none; }
.cc-hours-row span:last-child { color: var(--cc-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .cc-hero-grid { grid-template-columns: 1fr; }
  .cc-hero-image { display: none; }
  .cc-services-grid { grid-template-columns: 1fr 1fr; }
  .cc-stats-grid { grid-template-columns: repeat(2,1fr); }
  .cc-why-grid { grid-template-columns: 1fr; }
  .cc-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cc-contact-grid { grid-template-columns: 1fr; }
  .cc-service-detail-grid { grid-template-columns: 1fr; }
  .cc-pricing-table { grid-template-columns: 1fr; }
  .cc-hours-grid { grid-template-columns: 1fr; }
  .cc-team-grid { grid-template-columns: 1fr; }
  .cc-values-grid { grid-template-columns: 1fr; }
  .cc-nav .nav-links { display: none; }
}
@media (max-width: 600px) {
  .cc-services-grid { grid-template-columns: 1fr; }
  .cc-stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cc-form-row { grid-template-columns: 1fr; }
  .cc-form-wrapper { padding: 24px; }
}
