/* ============================================================
   SWD Academy – Main Stylesheet
   Colors: Navy #002147 | Red #C8102E | White #FFFFFF
   ============================================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:        #002147;
  --navy-dark:   #001530;
  --navy-light:  #003580;
  --red:         #800400;
  --red-dark:    #5c0b0b;
  --red-light:   #800000;
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --gray-light:  #e9ecef;
  --gray:        #6c757d;
  --gray-dark:   #343a40;
  --gold:        #f0a500;
  --shadow:      0 4px 24px rgba(0,33,71,0.10);
  --shadow-hover:0 8px 40px rgba(0,33,71,0.18);
  --radius:      12px;
  --radius-sm:   6px;
  --transition:  all 0.3s ease;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

a { color: var(--red); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--red-dark); }

img { max-width: 100%; }

/* ---- Utility ---- */
.text-navy    { color: var(--navy) !important; }
.text-red     { color: var(--red) !important; }
.text-gold    { color: var(--gold) !important; }
.bg-navy      { background-color: var(--navy) !important; }
.bg-navy-dark { background-color: var(--navy-dark) !important; }
.bg-red       { background-color: var(--red) !important; }
.bg-off-white { background-color: var(--off-white) !important; }
.fw-600       { font-weight: 600; }
.fw-700       { font-weight: 700; }

.section-pad  { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* Section Heading */
.section-heading { margin-bottom: 50px; }
.section-heading .label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-heading p {
  font-size: 16px;
  color: var(--gray);
  max-width: 600px;
}
.section-heading.centered { text-align: center; }
.section-heading.centered p { margin: 0 auto; }

/* ---- Buttons ---- */
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-block;
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,16,46,0.35);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,33,71,0.08);
  padding: 0;
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1030;
}
#mainNav.scrolled {
  box-shadow: 0 4px 30px rgba(0,33,71,0.15);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
/* Real logo image in navbar */
.navbar-brand .navbar-logo {
  height: 100px;
  width: 100px;
  object-fit: contain;
  flex-shrink: 0;
}
.navbar-brand .brand-text .name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.navbar-brand .brand-text .tagline {
  font-size: 10px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy) !important;
  padding: 8px 16px !important;
  border-radius: 6px;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--red) !important;
  background: rgba(200,16,46,0.06);
}
.navbar-nav .nav-item .btn-red {
  padding: 9px 22px;
  font-size: 13px;
}
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  padding: 7px 0;
}
.top-bar a { color: rgba(255,255,255,0.8); }
.top-bar a:hover { color: var(--white); }
.top-bar .social-links a {
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 90vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::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.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,16,46,0.2);
  border: 1px solid rgba(200,16,46,0.4);
  color: #ff6b7a;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-section h1 {
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-section h1 span { color: var(--red); }
.hero-section .hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stats .stat .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stats .stat .num span { color: var(--red); }
.hero-stats .stat .lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.hero-image-box {
  position: relative;
}
.hero-image-box img {
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.hero-image-box .floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-image-box .floating-card.card-1 { bottom: -20px; left: -30px; }
.hero-image-box .floating-card.card-2 { top: 30px; right: -30px; }
.hero-image-box .floating-card .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.floating-card .icon.red  { background: rgba(200,16,46,0.1); color: var(--red); }
.floating-card .icon.navy { background: rgba(0,33,71,0.1); color: var(--navy); }
.floating-card .info .val { font-size: 18px; font-weight: 700; color: var(--navy); }
.floating-card .info .lbl { font-size: 11px; color: var(--gray); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 50px 0;
}
.stats-bar .stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stats-bar .stat-item:last-child { border-right: none; }
.stats-bar .stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-bar .stat-num span { color: var(--red); }
.stats-bar .stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================================
   COURSE CARDS
   ============================================================ */
.course-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,33,71,0.06);
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.course-card .card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.course-card .card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.course-card:hover .card-img img { transform: scale(1.08); }
.course-card .card-img .badge-level {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--navy);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.course-card .card-img .badge-featured {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--red);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.course-card .card-body {
  padding: 24px;
}
.course-card .cat-tag {
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}
.course-card h5 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}
.course-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.course-card .meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--gray);
  padding: 14px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 16px;
}
.course-card .meta span { display: flex; align-items: center; gap: 5px; }
.course-card .meta i { color: var(--navy); }
.course-card .card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course-card .fee { font-size: 18px; font-weight: 700; color: var(--navy); }
.course-card .fee small { font-size: 11px; color: var(--gray); font-weight: 400; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
  height: 100%;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--red);
}
.why-card .icon-box {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--white);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .icon-box {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
}
.why-card h4 { font-size: 18px; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--gray); }

/* ============================================================
   APPLICATION STEPS
   ============================================================ */
.steps-section { background: var(--off-white); }
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.step-num {
  width: 54px; height: 54px; flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 30px;
  background: rgba(0,33,71,0.2);
}
.step-item:last-child .step-num::after { display: none; }
.step-content h4 { font-size: 17px; margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--gray); margin: 0; }

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.news-card .news-img { height: 200px; overflow: hidden; }
.news-card .news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-img img { transform: scale(1.06); }
.news-card .news-body { padding: 24px; }
.news-card .news-cat {
  font-size: 11px; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 8px; display: block;
}
.news-card h5 { font-size: 16px; margin-bottom: 10px; color: var(--navy); }
.news-card p { font-size: 13px; color: var(--gray); margin-bottom: 14px; }
.news-card .news-meta { font-size: 12px; color: var(--gray); display: flex; gap: 12px; align-items: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-section { background: var(--navy); }
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); }
.testimonial-card .stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.testimonial-card .quote { font-size: 15px; color: rgba(255,255,255,0.85); font-style: italic; margin-bottom: 24px; }
.testimonial-card .author { display: flex; align-items: center; gap: 14px; }
.testimonial-card .author .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.testimonial-card .author .name { font-weight: 600; color: var(--white); font-size: 14px; }
.testimonial-card .author .course { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-banner h2 { color: var(--white); font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 0; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 80px 0 60px;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
}
.page-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 48px); margin-bottom: 12px; }
.page-hero .breadcrumb { margin: 0; background: transparent; padding: 0; }
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.6); font-size: 13px; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ============================================================
   APPLICATION FORM
   ============================================================ */
.form-section { background: var(--off-white); }
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.form-card .form-header {
  background: var(--navy);
  padding: 28px 32px;
  color: var(--white);
}
.form-card .form-header h3 { color: var(--white); margin: 0; font-size: 22px; }
.form-card .form-header p { color: rgba(255,255,255,0.7); margin: 6px 0 0; font-size: 14px; }
.form-card .form-body { padding: 32px; }
.form-card .form-step-indicator {
  display: flex;
  margin-bottom: 32px;
  gap: 0;
}
.form-step-indicator .step {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  border-bottom: 3px solid var(--gray-light);
  position: relative;
}
.form-step-indicator .step.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.form-step-indicator .step.done {
  color: var(--red);
  border-bottom-color: var(--red);
}
.form-label { font-weight: 600; font-size: 13px; color: var(--navy); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--gray-dark);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,33,71,0.08);
}
.form-text { font-size: 12px; color: var(--gray); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  height: 100%;
}
.contact-info-box h3 { color: var(--white); margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info-item .icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(200,16,46,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #ff6b7a; font-size: 16px;
}
.contact-info-item .text .label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.contact-info-item .text .val { color: var(--white); font-weight: 500; font-size: 14px; }
.social-icons-contact { display: flex; gap: 10px; margin-top: 30px; }
.social-icons-contact a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 15px;
  transition: var(--transition);
}
.social-icons-contact a:hover { background: var(--red); }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-container iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ============================================================
   STUDENT PORTAL
   ============================================================ */
.portal-sidebar {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  min-height: 500px;
}
.portal-sidebar .student-info {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  padding: 30px 24px;
  text-align: center;
}
.portal-sidebar .student-info .avatar {
  width: 80px; height: 80px;
  background: var(--red);
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.2);
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700; color: var(--white);
  overflow: hidden;
}
.portal-sidebar .student-info .avatar img { width: 100%; height: 100%; object-fit: cover; }
.portal-sidebar .student-info h5 { color: var(--white); margin-bottom: 4px; }
.portal-sidebar .student-info small { color: rgba(255,255,255,0.6); font-size: 12px; }
.portal-sidebar .nav-links { padding: 16px 0; }
.portal-sidebar .nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  color: rgba(255,255,255,0.7);
  font-size: 14px; font-weight: 500;
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.portal-sidebar .nav-links a:hover,
.portal-sidebar .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border-left-color: var(--red);
}
.portal-sidebar .nav-links a i { width: 18px; text-align: center; }
.portal-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 24px;
}
.portal-card h4 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-light);
  display: flex; align-items: center; gap: 10px;
}
.portal-card h4 i { color: var(--red); font-size: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
/* Footer logo image */
footer .footer-brand .footer-logo {
  height: 70px;
  width: 70px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
  filter: brightness(1.05) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
footer .footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); max-width: 280px; margin-top: 12px; }
footer h5 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 20px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: rgba(255,255,255,0.55); font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
footer ul li a:hover { color: var(--red); padding-left: 4px; }
footer ul li a i { font-size: 10px; color: var(--red); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.footer-contact li i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  margin-top: 60px;
}
.footer-bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 14px;
  margin-left: 8px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-accordion .accordion-item {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  padding: 18px 24px;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--navy);
  color: var(--white);
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  filter: none;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(10);
}
.faq-accordion .accordion-body { padding: 20px 24px; font-size: 14px; color: var(--gray); }

/* ============================================================
   MISC / UTILS
   ============================================================ */
.alert-success { background: #d4f4e2; border-color: #28a745; color: #1a5c30; }
.alert-error, .alert-danger { background: #fde8ec; border-color: var(--red); color: var(--red-dark); }
.alert-warning { background: #fff3cd; border-color: #ffc107; color: #856404; }
.alert-info { background: #d0e8ff; border-color: #0d6efd; color: #0a3d8a; }

.loader-overlay {
  position: fixed; inset: 0;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s;
}
.loader-overlay.hide { opacity: 0; pointer-events: none; }
.loader { width: 50px; height: 50px; border: 4px solid rgba(255,255,255,0.2); border-top-color: var(--red); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Scroll to top */
#scrollTop {
  position: fixed; bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,33,71,0.25);
}
#scrollTop.visible { opacity: 1; pointer-events: all; }
#scrollTop:hover { background: var(--red); transform: translateY(-3px); }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .hero-section { min-height: auto; padding: 80px 0; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-image-box { margin-top: 40px; }
  .hero-image-box .floating-card { display: none; }
  .stats-bar .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px; }
}
@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .stats-bar .stat-num { font-size: 32px; }
  .cta-banner { padding: 60px 0; }
  footer { padding: 60px 0 0; }
}
