/* ================================================================
   QA Assessor – Main Stylesheet
   Professional Lead Auditor & Internal Auditor Training
   ================================================================ */

:root {
  --primary: #0071bf;
  --primary-dark: #1c69bf;
  --primary-light: #0172c0;
  --gradient: linear-gradient(135deg, #1c69bf 0%, #0071bf 50%, #0172c0 100%);
  --gradient-h: linear-gradient(135deg, #0172c0 0%, #0071bf 50%, #1c69bf 100%);
  --neutral: #6a727a;
  --border: #cfcecf;
  --black: #000000;
  --white: #ffffff;
  --light-bg: #f4f8fd;
  --card-shadow: 0 4px 24px rgba(0,113,191,0.10);
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --orange: #f39200;
  --gradient-orange: linear-gradient(135deg, #f39200 0%, #e67e00 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: #1a2636; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); }

/* ─── HEADER ─── */
header.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,113,191,0.10);
  border-bottom: 3px solid var(--orange);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 72px;
}
.logo { display: flex; align-items: center; gap: 12px; cursor: pointer; text-decoration: none; color: inherit; }
/* Hide WordPress custom-logo-link anchor (extra anchor added by the_custom_logo() function)
   This prevents a duplicate nested anchor + img from appearing in the logo area */
.custom-logo-link { display: none !important; }
/* Ensure logo anchor has no text decoration */
.logo a { color: inherit; text-decoration: none; }
.logo img { height: 54px; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--primary); letter-spacing: -0.5px; }
.logo-text .brand-tagline { font-size: 0.85rem; color: var(--neutral); letter-spacing: 1.5px; text-transform: uppercase; }

/* Desktop Nav */
/* ─── FIX: Remove bullet dots from navigation list items ─── */
/* The nav uses wp_nav_menu with a <ul class="menu"> wrapper.
   Both the ul and li must have list-style:none to remove disc bullets.
   The ul inside .site-nav also needs display:flex to maintain horizontal layout.
   This matches certificate.qaassessor.org reference site behavior. */
.site-nav ul,
.site-nav ul.menu,
.site-nav li {
    list-style: none;    /* ← removes the disc/bullet dots */
    margin: 0;
    padding: 0;
}
/* ul.menu inside .site-nav needs flex display to lay items out horizontally */
.site-nav ul.menu {
    display: flex;       /* ← horizontal row layout */
    flex-direction: row;
    align-items: center;
    gap: 6px;            /* ← spacing between nav items */
}
/* Remove bullet dots from mobile navigation list items */
.mobile-nav li,
.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  font-family: var(--font-head); font-weight: 500; font-size: 0.95rem;
  color: #1a2636; padding: 8px 14px; border-radius: 8px;
  transition: all .2s;
}
.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current-menu-ancestor > a { color: var(--primary); background: #e8f3fb; }

/* Dropdown Menu */
.site-nav .menu-item-has-children { position: relative; }
.site-nav .sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid #e8eef5; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,113,191,0.15); min-width: 240px;
  padding: 8px; z-index: 500;
}
.site-nav .menu-item-has-children:hover .sub-menu { display: block; }
.site-nav .sub-menu li a {
  display: block; padding: 10px 16px; border-radius: 8px;
  font-size: 0.92rem; color: #1a2636; transition: .2s;
}
.site-nav .sub-menu li a:hover { background: #e8f3fb; color: var(--primary); }

.btn-register {
  background: linear-gradient(135deg, #0071bf 0%, #f39200 100%); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 10px 22px; border-radius: 50px; border: none; cursor: pointer;
  transition: all .25s; box-shadow: 0 4px 15px rgba(243,146,0,0.35);
  white-space: nowrap; display: inline-block;
}
.btn-register:hover { box-shadow: 0 6px 22px rgba(0,113,191,0.5); transform: translateY(-1px); color: #fff; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: .3s; }

/* Mobile Nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  background: #fff; padding: 12px 24px 20px;
  border-bottom: 3px solid var(--primary);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-head); font-weight: 500; font-size: 0.95rem; color: #1a2636; padding: 10px 0; border-bottom: 1px solid #f0f0f0; display: block; }
.mobile-nav .sub-menu { list-style: none; padding-left: 16px; }
.mobile-nav .sub-menu a { font-size: 0.92rem; border-bottom: none; color: var(--neutral); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block; background: var(--gradient-orange); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 13px 32px; border-radius: 50px; border: none; cursor: pointer;
  transition: all .25s; box-shadow: 0 4px 15px rgba(243,146,0,0.4);
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(0,113,191,0.5); transform: translateY(-2px); color: #fff; }
.btn-outline {
  display: inline-block; background: transparent; color: var(--primary);
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 12px 32px; border-radius: 50px; border: 2px solid var(--primary); cursor: pointer;
  transition: all .25s;
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-white {
  display: inline-block; background: #fff; color: var(--orange);
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 13px 32px; border-radius: 50px; border: none; cursor: pointer;
  transition: all .25s; box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}
.btn-white:hover { box-shadow: 0 8px 28px rgba(255,255,255,0.5); transform: translateY(-2px); color: var(--primary); }

/* ─── HERO ─── */
.hero {
  background: var(--gradient);
  padding: 80px 24px 100px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(243,146,0,0.25); color: #fff;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
  backdrop-filter: blur(10px); border: 1px solid rgba(243,146,0,0.5);
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 20px; letter-spacing: -1px;
}
.hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; line-height: 1.7; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px;
}
.hero-stat {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 20px 16px; border-radius: 16px; text-align: center;
}
.hero-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--orange); font-family: var(--font-head); }
.hero-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; }
.hero-image-box {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 24px; padding: 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
}
.hero-image-box img { width: 140px; filter: brightness(0) invert(1); }
.hero-courses-preview { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.course-pill {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 16px; border-radius: 12px; transition: .2s;
}
.course-pill:hover { background: rgba(255,255,255,0.25); }
.course-pill i { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.course-pill span { color: #fff; font-size: 0.85rem; font-weight: 500; }

/* ─── SECTION BASE ─── */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block; background: #e8f3fb; color: var(--primary);
  font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800;
  color: #1a2636; margin-bottom: 16px; letter-spacing: -0.5px;
}
.section-sub { font-size: 1rem; color: var(--neutral); line-height: 1.7; max-width: 620px; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ─── ABOUT STRIP ─── */
.about-strip { background: var(--light-bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual {
  background: var(--gradient); border-radius: 24px;
  padding: 48px; display: flex; flex-direction: column; gap: 24px;
}
.about-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat-item {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  padding: 20px 16px; border-radius: 16px; text-align: center;
}
.about-stat-item strong { font-size: 2.2rem; font-weight: 800; color: var(--orange); font-family: var(--font-head); display: block; }
.about-stat-item span { font-size: 0.85rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--neutral); font-size: 0.97rem; line-height: 1.8; margin-bottom: 16px; }
.about-features { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.about-feature i { color: var(--primary); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.about-feature p { color: var(--neutral); font-size: 1rem; margin: 0; }

/* ─── CARDS ─── */
.cards-grid { display: grid; gap: 24px; }
.cards-grid.col-3 { grid-template-columns: repeat(3,1fr); }
.cards-grid.col-4 { grid-template-columns: repeat(4,1fr); }
.cards-grid.col-2 { grid-template-columns: repeat(2,1fr); }

.card {
  background: #fff; border: 1px solid #e8eef5; border-radius: 20px;
  padding: 32px; box-shadow: var(--card-shadow); transition: all .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,113,191,0.15); border-color: var(--primary); }
.card-icon {
  width: 56px; height: 56px; background: #e8f3fb; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary); margin-bottom: 20px;
}
.card h3 { font-size: 1.1rem; font-weight: 700; color: #1a2636; margin-bottom: 10px; }
.card p { font-size: 0.95rem; color: var(--neutral); line-height: 1.7; }

/* ─── COURSE CARD ─── */
.course-card {
  background: #fff; border: 1px solid #e8eef5; border-radius: 20px;
  overflow: hidden; box-shadow: var(--card-shadow); transition: all .25s;
}
.course-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,113,191,0.18); border-color: var(--primary); }
.course-card-header {
  background: var(--gradient); padding: 20px 24px;
  display: flex; align-items: center; gap: 14px;
}
.course-card-header .iso-badge {
  background: rgba(243,146,0,0.9); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  padding: 8px 14px; border-radius: 10px; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.course-card-header h3 { font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.4; }
.course-card-body { padding: 20px 24px; }
.course-types { display: flex; flex-direction: column; gap: 8px; }
.course-type {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-radius: 10px; background: var(--light-bg);
  transition: .2s; text-decoration: none; color: inherit;
}
.course-type:hover { background: #e8f3fb; }
.course-type span { font-size: 0.9rem; font-weight: 500; color: #1a2636; }
.course-type .days { font-size: 0.85rem; color: var(--orange); font-weight: 600; }
.course-type i { color: var(--primary); font-size: 0.85rem; }
.course-type-meta { display: flex; align-items: center; gap: 8px; }

/* ─── WHY CHOOSE ─── */
.why-section { background: var(--gradient); }
.why-section .section-title { color: #fff; }
.why-section .section-sub { color: rgba(255,255,255,0.8); }
.why-section .section-tag { background: rgba(243,146,0,0.2); color: var(--orange); border-color: rgba(243,146,0,0.4); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.10); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 20px;
  padding: 32px; transition: .25s;
}
.why-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.why-card .icon { font-size: 2.2rem; margin-bottom: 16px; color: var(--orange); }
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.7; }

/* ─── METHODOLOGY ─── */
.method-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.method-card {
  display: flex; gap: 20px; background: #fff; border: 1px solid #e8eef5;
  border-radius: 20px; padding: 28px; box-shadow: var(--card-shadow); align-items: flex-start;
}
.method-num {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--gradient-orange); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.method-card h3 { font-size: 1.05rem; font-weight: 700; color: #1a2636; margin-bottom: 8px; }
.method-card p { font-size: 0.95rem; color: var(--neutral); line-height: 1.7; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--light-bg); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: #fff; border-radius: 20px; padding: 28px;
  box-shadow: var(--card-shadow); border: 1px solid #e8eef5; transition: .25s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.stars { color: var(--orange); margin-bottom: 12px; font-size: 0.97rem; }
.testimonial-card p { font-size: 0.97rem; color: #3a4a5a; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.author-info strong { font-size: 0.95rem; font-weight: 700; color: #1a2636; display: block; }
.author-info span { font-size: 0.85rem; color: var(--neutral); }

/* ─── SCHEDULE TABLE ─── */
.schedule-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.schedule-table th {
  background: linear-gradient(135deg, #1c69bf 0%, #0071bf 70%, #f39200 100%); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  text-align: left; padding: 14px 16px; text-transform: uppercase; letter-spacing: 0.5px;
}
.schedule-table th:first-child { border-radius: 12px 0 0 0; }
.schedule-table th:last-child { border-radius: 0 12px 0 0; }
.schedule-table td { padding: 14px 16px; border-bottom: 1px solid #e8eef5; font-size: 0.95rem; color: #1a2636; }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: var(--light-bg); }
.schedule-table tbody tr:nth-child(even) td { background: #f9fbfd; }
.status-open { background: #dcfce7; color: #16a34a; font-size: 0.85rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; display: inline-block; }
.status-filling { background: #fef9c3; color: #ca8a04; font-size: 0.85rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; display: inline-block; }
.status-closed { background: #fee2e2; color: #dc2626; font-size: 0.85rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; display: inline-block; }
.table-wrap { overflow-x: auto; border-radius: 16px; box-shadow: var(--card-shadow); border: 1px solid #e8eef5; }

/* ─── CTA SECTION ─── */
.cta-section { background: var(--gradient); text-align: center; }
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FORMS ─── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 700; color: #1a2636; margin-bottom: 6px; letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid #e0e8f0; border-radius: 12px;
  font-family: var(--font-body); font-size: 0.97rem; color: #1a2636;
  background: #fff; transition: .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,113,191,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-card {
  background: #fff; border: 1px solid #e8eef5; border-radius: 24px;
  padding: 40px; box-shadow: var(--card-shadow);
}
.form-card h3 { font-size: 1.4rem; font-weight: 800; color: #1a2636; margin-bottom: 8px; }
.form-card .form-sub { color: var(--neutral); font-size: 0.97rem; margin-bottom: 28px; }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--gradient); padding: 60px 24px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.26rem; max-width: 600px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.breadcrumb span { font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.breadcrumb a { font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: #fff; }

/* ─── FILTER BAR ─── */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 8px 18px; border-radius: 50px; border: 1.5px solid var(--border);
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 600;
  color: var(--neutral); background: #fff; cursor: pointer; transition: .2s; text-decoration: none; display: inline-block;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gradient-orange); color: #fff; border-color: var(--orange);
}

/* ─── TRAINERS ─── */
.trainer-card {
  background: #fff; border: 1px solid #e8eef5; border-radius: 20px;
  overflow: hidden; box-shadow: var(--card-shadow); transition: .25s;
  text-align: center;
}
.trainer-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,113,191,0.15); }
.trainer-avatar {
  height: 160px; background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
}
.trainer-avatar i { font-size: 5rem; color: rgba(255,255,255,0.6); }
.trainer-info { padding: 24px; }
.trainer-info h3 { font-size: 1.1rem; font-weight: 700; color: #1a2636; margin-bottom: 4px; }
.trainer-info .role { font-size: 0.92rem; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.trainer-info p { font-size: 0.9rem; color: var(--neutral); line-height: 1.7; margin-bottom: 16px; }
.trainer-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.trainer-tag { background: rgba(243,146,0,0.12); color: var(--orange); font-size: 0.82rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; }

/* ─── FAQ ─── */
.faq-item { border: 1px solid #e8eef5; border-radius: 16px; margin-bottom: 12px; overflow: hidden; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; cursor: pointer; background: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: #1a2636;
  transition: .2s; width: 100%; border: none; text-align: left;
  outline: none;
}
.faq-question:hover { background: var(--light-bg); }
.faq-question i { color: var(--orange); transition: .3s; flex-shrink: 0; }
.faq-answer { display: none; padding: 0 24px 18px; color: var(--neutral); font-size: 0.95rem; line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-item.open .faq-question { background: #f4f8fd; border-left: 3px solid #1b6abf; }

/* ─── POLICY ─── */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { font-size: 1.4rem; font-weight: 700; color: #1a2636; margin: 36px 0 12px; }
.policy-content p { color: var(--neutral); font-size: 0.97rem; line-height: 1.9; margin-bottom: 16px; }
.policy-content ul { margin: 12px 0 20px 20px; }
.policy-content ul li { color: var(--neutral); font-size: 0.97rem; line-height: 1.9; margin-bottom: 6px; }

/* ─── COURSE DETAIL ─── */
.course-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.course-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; align-items: start; }
.detail-card {
  background: #fff; border: 1px solid #e8eef5; border-radius: 20px;
  padding: 32px; box-shadow: var(--card-shadow); margin-bottom: 24px;
}
.detail-card h2 { font-size: 1.3rem; font-weight: 800; color: #1a2636; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #e8f3fb; }
.detail-card ul { list-style: none; padding: 0; }
.detail-card ul li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid #f0f4f8; font-size: 0.95rem; color: #1a2636; }
.detail-card ul li:last-child { border-bottom: none; }
.detail-card ul li i { color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.detail-card p { color: var(--neutral); line-height: 1.8; font-size: 0.97rem; }

.sidebar-info-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f0f4f8; }
.sidebar-info-item:last-child { border-bottom: none; }
.sidebar-info-item .info-icon { width: 36px; height: 36px; background: rgba(243,146,0,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 0.9rem; flex-shrink: 0; }
.sidebar-info-item div strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--neutral); text-transform: uppercase; letter-spacing: 0.5px; }
.sidebar-info-item div span { font-size: 0.97rem; color: #1a2636; font-weight: 500; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-info-item .icon { width: 48px; height: 48px; background: rgba(243,146,0,0.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.1rem; flex-shrink: 0; }
.contact-info-item h4 { font-size: 0.95rem; font-weight: 700; color: #1a2636; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.95rem; color: var(--neutral); }
.social-links { display: flex; gap: 12px; margin-top: 28px; }
.social-link {
  width: 44px; height: 44px; border-radius: 12px; background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.1rem; transition: .2s;
}
.social-link:hover { background: var(--orange); color: #fff; }
.map-placeholder {
  background: var(--light-bg); border-radius: 16px; height: 220px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; color: var(--neutral); border: 2px dashed var(--border);
  margin-top: 28px;
}
.map-placeholder i { font-size: 2.5rem; color: var(--primary); }

/* ─── FOOTER ─── */
footer.site-footer { background: #0d1f35; color: #a0b4c8; }
.footer-top { padding: 64px 24px 40px; max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { }
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .logo-wrap img { height: 50px; filter: brightness(0) invert(1); }
.footer-brand .logo-wrap .brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: #fff; }
.footer-brand .logo-wrap .brand-tagline { font-size: 0.8rem; color: #a0b4c8; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.8; max-width: 260px; margin-bottom: 20px; }
.footer-email { font-size: 0.9rem; margin-bottom: 8px; }
.footer-email i { color: var(--primary); margin-right: 8px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: #a0b4c8;
  font-size: 0.95rem; transition: .2s;
}
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-col h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: #fff; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; }
.footer-col ul li a { font-size: 0.9rem; color: #a0b4c8; transition: .2s; display: block; }
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-col-extra-heading { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: #fff; margin: 24px 0 16px; letter-spacing: 0.5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 24px; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.85rem; }
.iso-certs { display: flex; gap: 10px; }
.iso-cert-badge {
  background: rgba(255,255,255,0.08); color: #a0b4c8; font-size: 0.82rem; font-weight: 600;
  padding: 4px 10px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.1);
}

/* ─── NOTIFICATION ─── */
.notification {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: #fff; border: 1px solid #e8eef5; border-radius: 16px;
  padding: 16px 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 12px;
  transform: translateY(100px); opacity: 0; transition: .4s;
  max-width: 340px;
}
.notification.show { transform: translateY(0); opacity: 1; }
.notification i { font-size: 1.5rem; color: #16a34a; }
.notification-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: #1a2636; }
.notification-text span { font-size: 0.85rem; color: var(--neutral); }

/* ─── EXTRAS ─── */
.tag { display: inline-block; background: rgba(243,146,0,0.12); color: var(--orange); font-size: 0.8rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; margin-right: 6px; margin-bottom: 6px; }
.divider { height: 1px; background: #e8eef5; margin: 24px 0; }
.text-primary { color: var(--primary); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.back-btn { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.92rem; transition: .2s; }
.back-btn:hover { color: #fff; }

/* ─── ISO STANDARD PAGE ─── */
.iso-category-header { margin-bottom: 32px; }
.iso-category-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #e8f3fb; border-radius: 12px; padding: 12px 20px; margin-bottom: 20px;
}
.iso-category-badge .code { font-family: var(--font-head); font-weight: 800; color: var(--primary); font-size: 1.1rem; }
.iso-category-badge .name { color: var(--neutral); font-size: 0.97rem; }

/* ─── COURSE TYPE PILLS ─── */
.course-type-nav { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.course-type-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 50px; border: 2px solid #e8eef5;
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem;
  color: #1a2636; background: #fff; transition: .2s; text-decoration: none;
}
.course-type-pill:hover, .course-type-pill.active { background: var(--gradient-orange); color: #fff; border-color: var(--orange); }
.course-type-pill .duration-badge { font-size: 0.8rem; background: rgba(0,113,191,0.1); color: var(--primary); padding: 2px 8px; border-radius: 20px; }
.course-type-pill:hover .duration-badge, .course-type-pill.active .duration-badge { background: rgba(255,255,255,0.2); color: #fff; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .cards-grid.col-3 { grid-template-columns: repeat(2,1fr); }
  .cards-grid.col-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-box { display: none; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .cards-grid.col-3, .cards-grid.col-4, .cards-grid.col-2 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .course-detail-grid { grid-template-columns: 1fr; }
  .course-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  section { padding: 56px 20px; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .about-stat-row { grid-template-columns: 1fr; }
  .iso-certs { flex-wrap: wrap; justify-content: center; }
}


/* ─── REGISTER PAGE SPECIFIC ─── */
.registration-section { padding: 60px 24px; }

.form-card h2,
.form-card-title { font-size: 1.5rem; font-weight: 800; color: #1a2636; margin-bottom: 8px; }

.btn-reg-submit {
    display: block !important;
    width: 100% !important;
    text-align: center;
    padding: 16px 32px;
    margin-bottom: 12px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-terms-note {
    text-align: center;
    font-size: 0.85rem;
    color: #6a727a;
    margin-top: 0;
}
.form-terms-note a { color: var(--primary); text-decoration: underline; }

.form-success-msg {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}
.form-success-msg .success-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.form-success-msg h3 { color: #166534; font-size: 1.3rem; margin-bottom: 8px; }
.form-success-msg p { color: #166534; }

.form-error-msg {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 12px;
    padding: 16px 20px;
    color: #dc2626;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.page-hero-title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-hero-subtitle { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 600px; }

/* ─── WORDPRESS SPECIFIC FIXES ─── */
.wp-block-image img { border-radius: 16px; }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 24px; }
.alignright { float: right; margin-left: 24px; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
