/*
Theme Name: Faizan Coaching Center
Theme URI: https://fcc.aromanish.com
Author: AromaNish
Author URI: https://aromanish.com
Description: A fully customizable WordPress theme for Faizan Coaching Center — featuring a modern educational design with hero, services, blog, and all essential pages.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: faizan-coaching-center
Tags: education, coaching, responsive, customizer
*/

/* =========================================
   CSS CUSTOM PROPERTIES
   ========================================= */
:root {
  --fcc-primary:       #1a5276;
  --fcc-secondary:     #2e86c1;
  --fcc-accent:        #f39c12;
  --fcc-dark:          #0d1b2a;
  --fcc-light:         #f4f8fb;
  --fcc-white:         #ffffff;
  --fcc-text:          #2c3e50;
  --fcc-muted:         #7f8c8d;
  --fcc-border:        #dce6ef;
  --fcc-font-heading:  'Playfair Display', Georgia, serif;
  --fcc-font-body:     'DM Sans', 'Segoe UI', sans-serif;
  --fcc-radius:        8px;
  --fcc-shadow:        0 4px 24px rgba(26,82,118,0.10);
  --fcc-transition:    0.3s ease;
  --fcc-container:     1160px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fcc-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--fcc-text);
  background: var(--fcc-white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--fcc-secondary); text-decoration: none; transition: color var(--fcc-transition); }
a:hover { color: var(--fcc-accent); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--fcc-font-heading);
  color: var(--fcc-dark);
  line-height: 1.25;
}
p { margin-bottom: 1rem; }
input, textarea, select {
  font-family: var(--fcc-font-body);
  font-size: 1rem;
}

/* =========================================
   LAYOUT HELPERS
   ========================================= */
.fcc-container {
  max-width: var(--fcc-container);
  margin: 0 auto;
  padding: 0 24px;
}
.fcc-section { padding: 80px 0; }
.fcc-section--alt { background: var(--fcc-light); }
.fcc-section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
  color: var(--fcc-primary);
}
.fcc-section-sub {
  color: var(--fcc-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.fcc-tag {
  display: inline-block;
  background: var(--fcc-accent);
  color: var(--fcc-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.fcc-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.fcc-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.fcc-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.fcc-flex { display: flex; align-items: center; gap: 1.5rem; }
.fcc-text-center { text-align: center; }
.fcc-text-center .fcc-section-sub { margin-left: auto; margin-right: auto; }

/* Buttons */
.fcc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--fcc-radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--fcc-transition);
}
.fcc-btn--primary {
  background: var(--fcc-accent);
  color: var(--fcc-white);
  border-color: var(--fcc-accent);
}
.fcc-btn--primary:hover {
  background: transparent;
  color: var(--fcc-accent);
}
.fcc-btn--outline {
  background: transparent;
  color: var(--fcc-white);
  border-color: var(--fcc-white);
}
.fcc-btn--outline:hover {
  background: var(--fcc-white);
  color: var(--fcc-primary);
}
.fcc-btn--dark {
  background: var(--fcc-primary);
  color: var(--fcc-white);
  border-color: var(--fcc-primary);
}
.fcc-btn--dark:hover {
  background: var(--fcc-secondary);
  border-color: var(--fcc-secondary);
  color: var(--fcc-white);
}

/* =========================================
   TOPBAR
   ========================================= */
.fcc-topbar {
  background: var(--fcc-primary);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.fcc-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.fcc-topbar__contact span { margin-right: 1.25rem; }
.fcc-topbar__contact a { color: rgba(255,255,255,0.85); }
.fcc-topbar__contact a:hover { color: var(--fcc-accent); }
.fcc-topbar__social a {
  color: rgba(255,255,255,0.7);
  margin-left: 10px;
  font-size: 0.9rem;
  transition: color var(--fcc-transition);
}
.fcc-topbar__social a:hover { color: var(--fcc-accent); }

/* =========================================
   HEADER / NAV
   ========================================= */
.fcc-header {
  background: var(--fcc-white);
  box-shadow: 0 2px 12px rgba(26,82,118,0.09);
  position: sticky;
  top: 0;
  z-index: 900;
}
.fcc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.fcc-logo { font-family: var(--fcc-font-heading); }
.fcc-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fcc-primary);
}
.fcc-logo img { height: 48px; width: auto; }
.fcc-logo__text { font-size: 1.3rem; font-weight: 700; color: var(--fcc-primary); line-height: 1.2; }
.fcc-logo__sub { font-family: var(--fcc-font-body); font-size: 0.72rem; color: var(--fcc-muted); letter-spacing: 1px; text-transform: uppercase; display: block; }

/* Nav */
.fcc-nav ul { display: flex; align-items: center; gap: 0; }
.fcc-nav li { position: relative; }
.fcc-nav a {
  display: block;
  padding: 10px 16px;
  color: var(--fcc-text);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color var(--fcc-transition);
}
.fcc-nav a:hover,
.fcc-nav .current-menu-item > a { color: var(--fcc-secondary); }
.fcc-nav .current-menu-item > a::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--fcc-accent);
  border-radius: 2px;
  margin-top: 2px;
}

/* Dropdown */
.fcc-nav .sub-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--fcc-white);
  box-shadow: var(--fcc-shadow);
  border-radius: var(--fcc-radius);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--fcc-transition);
  z-index: 100;
}
.fcc-nav li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.fcc-nav .sub-menu a { padding: 10px 18px; border-bottom: 1px solid var(--fcc-border); font-size: 0.88rem; }
.fcc-nav .sub-menu li:last-child a { border-bottom: none; }

/* Mobile menu toggle */
.fcc-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--fcc-primary);
  color: var(--fcc-primary);
  padding: 7px 12px;
  border-radius: var(--fcc-radius);
  cursor: pointer;
  font-size: 1.2rem;
}

/* =========================================
   HERO
   ========================================= */
.fcc-hero {
  background: linear-gradient(135deg, var(--fcc-primary) 0%, var(--fcc-secondary) 100%);
  color: var(--fcc-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.fcc-hero::before {
  content: '';
  position: absolute;
  inset: 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.04'%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");
}
.fcc-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.fcc-hero__tag {
  display: inline-block;
  background: rgba(243,156,18,0.9);
  color: var(--fcc-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.fcc-hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--fcc-white);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.fcc-hero__desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}
.fcc-hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.fcc-hero__image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.fcc-hero__image--placeholder {
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 4rem;
}

/* Stats bar */
.fcc-stats {
  background: var(--fcc-dark);
  padding: 36px 0;
}
.fcc-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.fcc-stats__num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--fcc-accent);
  font-family: var(--fcc-font-heading);
  display: block;
}
.fcc-stats__label {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   FEATURES / WHAT WE DO
   ========================================= */
.fcc-features__card {
  background: var(--fcc-white);
  border: 1px solid var(--fcc-border);
  border-radius: var(--fcc-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--fcc-shadow);
  transition: transform var(--fcc-transition), box-shadow var(--fcc-transition);
}
.fcc-features__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26,82,118,0.15);
}
.fcc-features__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--fcc-primary), var(--fcc-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: var(--fcc-white);
}
.fcc-features__card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.fcc-features__card p { color: var(--fcc-muted); font-size: 0.93rem; margin: 0; }

/* =========================================
   ABOUT STRIP (HOME)
   ========================================= */
.fcc-about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.fcc-about-strip__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--fcc-shadow);
}
.fcc-about-strip__image img { width: 100%; }
.fcc-about-strip__check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.fcc-about-strip__check::before {
  content: '✓';
  background: var(--fcc-accent);
  color: var(--fcc-white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================================
   COURSES / PROGRAMS
   ========================================= */
.fcc-course-card {
  background: var(--fcc-white);
  border-radius: var(--fcc-radius);
  overflow: hidden;
  box-shadow: var(--fcc-shadow);
  border: 1px solid var(--fcc-border);
  transition: transform var(--fcc-transition);
}
.fcc-course-card:hover { transform: translateY(-5px); }
.fcc-course-card__img {
  height: 180px;
  background: linear-gradient(135deg, var(--fcc-primary), var(--fcc-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.6);
}
.fcc-course-card__img img { width: 100%; height: 100%; object-fit: cover; }
.fcc-course-card__body { padding: 1.5rem; }
.fcc-course-card__badge {
  display: inline-block;
  background: var(--fcc-light);
  color: var(--fcc-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fcc-course-card__body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.fcc-course-card__body p { color: var(--fcc-muted); font-size: 0.88rem; margin-bottom: 1rem; }
.fcc-course-card__meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.fcc-course-card__price { font-size: 1.1rem; font-weight: 700; color: var(--fcc-primary); }

/* =========================================
   TESTIMONIALS
   ========================================= */
.fcc-testimonials { background: var(--fcc-primary); color: var(--fcc-white); }
.fcc-testimonials .fcc-section-title { color: var(--fcc-white); }
.fcc-testimonials .fcc-section-sub { color: rgba(255,255,255,0.75); }
.fcc-testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--fcc-radius);
  padding: 1.75rem;
}
.fcc-testimonial-card__stars { color: var(--fcc-accent); font-size: 1.1rem; margin-bottom: 0.75rem; }
.fcc-testimonial-card p { color: rgba(255,255,255,0.88); font-style: italic; margin-bottom: 1rem; font-size: 0.95rem; }
.fcc-testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.fcc-testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--fcc-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--fcc-white);
  flex-shrink: 0;
}
.fcc-testimonial-card__author strong { display: block; font-size: 0.92rem; color: var(--fcc-white); }
.fcc-testimonial-card__author span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* =========================================
   TEAM
   ========================================= */
.fcc-team-card { text-align: center; }
.fcc-team-card__photo {
  width: 130px; height: 130px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 4px solid var(--fcc-accent);
  background: var(--fcc-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--fcc-muted);
}
.fcc-team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.fcc-team-card h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.fcc-team-card span { color: var(--fcc-muted); font-size: 0.88rem; }

/* =========================================
   CTA BANNER
   ========================================= */
.fcc-cta {
  background: linear-gradient(135deg, var(--fcc-accent) 0%, #e67e22 100%);
  color: var(--fcc-white);
  text-align: center;
  padding: 70px 0;
}
.fcc-cta h2 { color: var(--fcc-white); font-size: 2rem; margin-bottom: 0.75rem; }
.fcc-cta p { color: rgba(255,255,255,0.9); margin-bottom: 1.75rem; font-size: 1.05rem; }

/* =========================================
   BLOG
   ========================================= */
.fcc-blog-card {
  background: var(--fcc-white);
  border-radius: var(--fcc-radius);
  overflow: hidden;
  box-shadow: var(--fcc-shadow);
  border: 1px solid var(--fcc-border);
  transition: transform var(--fcc-transition);
}
.fcc-blog-card:hover { transform: translateY(-5px); }
.fcc-blog-card__thumb {
  height: 200px;
  overflow: hidden;
  background: var(--fcc-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--fcc-muted);
  font-size: 2.5rem;
}
.fcc-blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.fcc-blog-card:hover .fcc-blog-card__thumb img { transform: scale(1.04); }
.fcc-blog-card__body { padding: 1.5rem; }
.fcc-blog-card__meta { color: var(--fcc-muted); font-size: 0.82rem; margin-bottom: 0.5rem; }
.fcc-blog-card__meta a { color: var(--fcc-secondary); }
.fcc-blog-card__body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.fcc-blog-card__body h3 a { color: var(--fcc-dark); }
.fcc-blog-card__body h3 a:hover { color: var(--fcc-secondary); }
.fcc-blog-card__body p { color: var(--fcc-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.fcc-read-more {
  color: var(--fcc-secondary);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.fcc-read-more:hover { color: var(--fcc-accent); }

/* Blog archive layout */
.fcc-blog-archive { padding: 60px 0; }
.fcc-blog-archive__inner { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.fcc-sidebar__widget { margin-bottom: 2rem; }
.fcc-sidebar__widget h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fcc-primary);
  border-left: 3px solid var(--fcc-accent);
  padding-left: 10px;
  margin-bottom: 1rem;
}
.fcc-sidebar__search input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--fcc-border);
  border-radius: var(--fcc-radius);
  outline: none;
}
.fcc-sidebar__search input:focus { border-color: var(--fcc-secondary); }
.fcc-sidebar__cats li { border-bottom: 1px solid var(--fcc-border); }
.fcc-sidebar__cats li a { display: flex; justify-content: space-between; padding: 8px 0; color: var(--fcc-text); font-size: 0.92rem; }
.fcc-sidebar__cats li a:hover { color: var(--fcc-secondary); }
.fcc-sidebar__recent li { padding: 8px 0; border-bottom: 1px solid var(--fcc-border); }
.fcc-sidebar__recent li a { font-size: 0.9rem; color: var(--fcc-text); }
.fcc-sidebar__recent li a:hover { color: var(--fcc-secondary); }
.fcc-sidebar__recent small { display: block; color: var(--fcc-muted); font-size: 0.78rem; margin-top: 2px; }

/* Single post */
.fcc-single { padding: 60px 0; }
.fcc-single__inner { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
.fcc-post-header { margin-bottom: 2rem; }
.fcc-post-header h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.fcc-post-meta { color: var(--fcc-muted); font-size: 0.88rem; margin-bottom: 1.5rem; }
.fcc-post-meta a { color: var(--fcc-secondary); }
.fcc-post-content h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
.fcc-post-content h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; }
.fcc-post-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.fcc-post-content ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }
.fcc-post-content blockquote {
  border-left: 4px solid var(--fcc-accent);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: var(--fcc-light);
  border-radius: 0 var(--fcc-radius) var(--fcc-radius) 0;
  font-style: italic;
  color: var(--fcc-muted);
}
.fcc-post-content img { border-radius: var(--fcc-radius); margin: 1.5rem 0; }
.fcc-post-tags { margin: 2rem 0; }
.fcc-post-tags a {
  display: inline-block;
  background: var(--fcc-light);
  color: var(--fcc-primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  margin: 3px;
}
.fcc-post-tags a:hover { background: var(--fcc-primary); color: var(--fcc-white); }

/* Pagination */
.fcc-pagination { margin-top: 2rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.fcc-pagination a, .fcc-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--fcc-border);
  border-radius: var(--fcc-radius);
  font-size: 0.9rem;
  transition: all var(--fcc-transition);
}
.fcc-pagination a:hover, .fcc-pagination .current {
  background: var(--fcc-primary);
  color: var(--fcc-white);
  border-color: var(--fcc-primary);
}

/* =========================================
   CONTACT FORM
   ========================================= */
.fcc-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.fcc-contact-info__item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.fcc-contact-info__icon {
  width: 46px; height: 46px;
  background: var(--fcc-primary);
  color: var(--fcc-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.fcc-contact-info__text strong { display: block; color: var(--fcc-primary); font-size: 0.9rem; }
.fcc-contact-info__text span { color: var(--fcc-muted); font-size: 0.92rem; }
.fcc-form .fcc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.fcc-form .fcc-form-group { margin-bottom: 1rem; }
.fcc-form label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem; color: var(--fcc-text); }
.fcc-form input,
.fcc-form textarea,
.fcc-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--fcc-border);
  border-radius: var(--fcc-radius);
  background: var(--fcc-white);
  color: var(--fcc-text);
  outline: none;
  transition: border-color var(--fcc-transition);
}
.fcc-form input:focus,
.fcc-form textarea:focus { border-color: var(--fcc-secondary); }
.fcc-form textarea { resize: vertical; min-height: 140px; }
.fcc-form__msg {
  padding: 12px 16px;
  border-radius: var(--fcc-radius);
  font-size: 0.92rem;
  display: none;
  margin-top: 1rem;
}
.fcc-form__msg--success { background: #eafaf1; color: #196f3d; display: block; }
.fcc-form__msg--error   { background: #fdedec; color: #922b21; display: block; }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.fcc-page-hero {
  background: linear-gradient(135deg, var(--fcc-primary) 0%, var(--fcc-secondary) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--fcc-white);
}
.fcc-page-hero h1 { color: var(--fcc-white); font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 0.5rem; }
.fcc-breadcrumb { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.fcc-breadcrumb a { color: var(--fcc-accent); }

/* =========================================
   ABOUT PAGE
   ========================================= */
.fcc-about-content { padding: 70px 0; }
.fcc-about-content__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.fcc-mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.fcc-mv-card {
  background: var(--fcc-light);
  border-radius: var(--fcc-radius);
  padding: 1.5rem;
  border-left: 4px solid var(--fcc-accent);
}
.fcc-mv-card h4 { color: var(--fcc-primary); margin-bottom: 0.5rem; }
.fcc-mv-card p { color: var(--fcc-muted); font-size: 0.92rem; margin: 0; }

/* =========================================
   PRIVACY / LEGAL
   ========================================= */
.fcc-legal { padding: 60px 0; }
.fcc-legal__content { max-width: 800px; margin: 0 auto; }
.fcc-legal__content h2 { font-size: 1.4rem; margin: 2rem 0 0.75rem; color: var(--fcc-primary); }
.fcc-legal__content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.fcc-legal__content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.fcc-legal__content p { color: var(--fcc-text); }
.fcc-legal__updated { background: var(--fcc-light); padding: 10px 16px; border-radius: var(--fcc-radius); font-size: 0.88rem; color: var(--fcc-muted); margin-bottom: 2rem; }

/* =========================================
   FAQ
   ========================================= */
.fcc-faq { padding: 70px 0; }
.fcc-faq__item { border: 1px solid var(--fcc-border); border-radius: var(--fcc-radius); margin-bottom: 1rem; overflow: hidden; }
.fcc-faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.5rem;
  text-align: left;
  font-family: var(--fcc-font-body);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--fcc-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--fcc-transition);
}
.fcc-faq__question:hover { background: var(--fcc-light); }
.fcc-faq__question.active { background: var(--fcc-primary); color: var(--fcc-white); }
.fcc-faq__icon { font-size: 1.2rem; font-weight: 300; transition: transform var(--fcc-transition); }
.fcc-faq__question.active .fcc-faq__icon { transform: rotate(45deg); }
.fcc-faq__answer { display: none; padding: 1rem 1.5rem; color: var(--fcc-muted); font-size: 0.93rem; background: var(--fcc-light); }
.fcc-faq__answer.open { display: block; }

/* =========================================
   FOOTER
   ========================================= */
.fcc-footer { background: var(--fcc-dark); color: rgba(255,255,255,0.75); }
.fcc-footer__top { padding: 60px 0 40px; }
.fcc-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
.fcc-footer__brand .fcc-logo a { color: var(--fcc-white); }
.fcc-footer__brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 1rem 0 1.25rem; line-height: 1.7; }
.fcc-footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  margin-right: 6px;
  transition: all var(--fcc-transition);
  font-size: 0.9rem;
}
.fcc-footer__social a:hover { background: var(--fcc-accent); color: var(--fcc-white); }
.fcc-footer__col h4 {
  font-family: var(--fcc-font-heading);
  color: var(--fcc-white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.fcc-footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--fcc-accent);
}
.fcc-footer__col ul li { margin-bottom: 0.6rem; }
.fcc-footer__col ul li a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color var(--fcc-transition); }
.fcc-footer__col ul li a:hover { color: var(--fcc-accent); }
.fcc-footer__contact-item { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.fcc-footer__contact-item span:first-child { color: var(--fcc-accent); flex-shrink: 0; }
.fcc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.fcc-footer__bottom a { color: var(--fcc-accent); }

/* =========================================
   BREADCRUMB CUSTOMIZER
   ========================================= */
.fcc-breadcrumb-bar {
  background: var(--fcc-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--fcc-border);
}
.fcc-breadcrumb-bar .fcc-breadcrumb { color: var(--fcc-muted); }
.fcc-breadcrumb-bar .fcc-breadcrumb a { color: var(--fcc-secondary); }

/* =========================================
   ENROLLMENT / ADMISSIONS PAGE
   ========================================= */
.fcc-enroll-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.fcc-step {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid var(--fcc-border);
  border-radius: var(--fcc-radius);
  position: relative;
}
.fcc-step__num {
  width: 50px; height: 50px;
  background: var(--fcc-primary);
  color: var(--fcc-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.2rem;
  margin: 0 auto 1rem;
}
.fcc-step h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.fcc-step p { color: var(--fcc-muted); font-size: 0.88rem; margin: 0; }

/* =========================================
   MAP / LOCATION
   ========================================= */
.fcc-map-wrap {
  border-radius: var(--fcc-radius);
  overflow: hidden;
  box-shadow: var(--fcc-shadow);
  background: var(--fcc-light);
  height: 350px;
  display: flex; align-items: center; justify-content: center;
}
.fcc-map-wrap iframe { width: 100%; height: 100%; border: none; }

/* =========================================
   NOTICE BAR
   ========================================= */
.fcc-notice {
  background: var(--fcc-accent);
  color: var(--fcc-white);
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}
.fcc-notice a { color: var(--fcc-white); text-decoration: underline; }

/* =========================================
   SEARCH RESULTS
   ========================================= */
.fcc-search-page { padding: 60px 0; }
.fcc-search-page h1 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.fcc-search-page__count { color: var(--fcc-muted); margin-bottom: 2rem; }
.fcc-no-results { text-align: center; padding: 60px 0; }
.fcc-no-results h2 { color: var(--fcc-muted); font-size: 1.5rem; margin-bottom: 1rem; }

/* =========================================
   404 PAGE
   ========================================= */
.fcc-404 { padding: 100px 0; text-align: center; }
.fcc-404__code { font-size: 8rem; font-weight: 900; color: var(--fcc-accent); line-height: 1; font-family: var(--fcc-font-heading); }
.fcc-404 h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.fcc-404 p { color: var(--fcc-muted); margin-bottom: 2rem; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .fcc-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .fcc-footer__grid { grid-template-columns: 1fr 1fr; }
  .fcc-stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .fcc-hero__inner,
  .fcc-about-strip__inner,
  .fcc-about-content__inner,
  .fcc-contact-grid,
  .fcc-blog-archive__inner,
  .fcc-single__inner { grid-template-columns: 1fr; }
  .fcc-grid-2, .fcc-grid-3 { grid-template-columns: 1fr; }
  .fcc-form .fcc-form-row { grid-template-columns: 1fr; }
  .fcc-footer__grid { grid-template-columns: 1fr; }
  .fcc-mission-vision,
  .fcc-enroll-steps { grid-template-columns: 1fr 1fr; }
  .fcc-nav { display: none; }
  .fcc-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--fcc-white); box-shadow: var(--fcc-shadow); padding: 1rem 0; z-index: 200; }
  .fcc-nav.open ul { flex-direction: column; }
  .fcc-nav.open a { padding: 12px 24px; }
  .fcc-menu-toggle { display: block; }
  .fcc-header { position: relative; }
  .fcc-hero { padding: 60px 0; }
  .fcc-section { padding: 50px 0; }
  .fcc-topbar__contact { display: none; }
  .fcc-footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .fcc-mission-vision,
  .fcc-enroll-steps { grid-template-columns: 1fr; }
  .fcc-stats__grid { grid-template-columns: 1fr 1fr; }
  .fcc-hero__btns { flex-direction: column; }
  .fcc-btn { width: 100%; justify-content: center; }
}

/* =========================================
   COMMENT FORM & COMMENTS
   ========================================= */
.fcc-comments { margin-top: 3rem; }
.fcc-comments h3 { font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--fcc-primary); }
.fcc-comment { display: flex; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--fcc-border); }
.fcc-comment__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--fcc-light); overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: var(--fcc-muted);
}
.fcc-comment__body { flex: 1; }
.fcc-comment__meta { font-size: 0.82rem; color: var(--fcc-muted); margin-bottom: 0.4rem; }
.fcc-comment__meta strong { color: var(--fcc-dark); }
.fcc-comment__text { font-size: 0.92rem; }
.fcc-comment-form { margin-top: 2rem; }
.fcc-comment-form h4 { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--fcc-primary); }

/* =========================================
   PRINT
   ========================================= */
@media print {
  .fcc-topbar, .fcc-header, .fcc-footer, .fcc-cta, .fcc-notice { display: none; }
  body { font-size: 12pt; }
}
