:root {
  --navy: #082471;
  --red: #eb5757;
  --green: #6cc569;
  --white: #ffffff;
  --cream: #f9f9f9;
  --text-dark: #333333;
  --text-grey: #666666;
}

.course-content {
  font-family: 'Sen', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── HERO ── */
.course-hero {
  background: var(--navy);
  color: var(--white);
  padding: 120px 40px 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: left;
}

.course-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: var(--red);
/* clip-path removed for rectangular look */
  opacity: 0.9;
  z-index: 1;
}

.hero-inner { 
  position: relative; 
  z-index: 10; 
  max-width: 1200px; 
  width: 100%;
  margin: 0 auto; 
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-text-side {
  padding-right: 20px;
}

.hero-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.course-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.course-hero h1 span { 
    color: var(--green); 
    font-family: 'Dancing Script', cursive;
    display: inline-block;
    font-size: 0.8em;
    margin-left: 10px;
    vertical-align: middle;
}

/* Fix for footer contact boxes layout */
#colophon .elementor-element-6af99025 .elementor-widget-wrap {
    display: flex !important;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}
#colophon .elementor-element-3bf12772,
#colophon .elementor-element-7427aff2,
#colophon .elementor-element-613f0007 {
    flex: 1 1 200px;
    margin-bottom: 20px !important;
}

/* Ensure header icons are visible */


.course-hero p {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-btns { display: flex; gap: 20px; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid var(--red);
  display: inline-block;
}
.btn-primary:hover { background: transparent; transform: translateY(-3px); }

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.hero-image-side {
    position: relative;
    z-index: 10;
}

.hero-image-side img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 20px 20px 0px var(--green);
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--white);
  padding: 40px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
  z-index: 20;
  margin-top: -50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}
.stat-item {
  flex: 1 1 200px;
  text-align: center;
  padding: 20px;
  border-right: 1px solid #eee;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Sen', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-lbl {
  font-size: 14px;
  color: var(--text-grey);
  margin-top: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── SECTION COMMON ── */
.course-section { padding: 80px 60px; }
.section-inner { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header.left { text-align: left; border-left: 5px solid var(--red); padding-left: 30px; }

.section-kicker {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--navy);
}
.section-header p {
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--text-grey);
  max-width: 800px;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
}
.section-header.left p { margin-left: 0; }

/* ── DESTINATIONS TABS ── */
.tabs-container {
    margin-top: 50px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}
.tab-nav {
    display: flex;
    background: #f4f7f6;
}
.tab-btn {
    flex: 1;
    padding: 25px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    background: transparent;
    color: var(--text-grey);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.tab-btn i { font-size: 1.5rem; }
.tab-btn.active {
    background: var(--navy);
    color: var(--white);
}
.tab-panel {
    display: none;
    padding: 60px;
}
.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.dest-text h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 25px;
}
.dest-text p {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlight-box {
/* clip-path removed for rectangular look */
    background: rgba(108, 197, 105, 0.1);
    border-left: 5px solid var(--green);
    padding: 25px;
    border-radius: 0 10px 10px 0;
    margin: 30px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
}

.feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}
.feature-list li i {
    color: var(--green);
    margin-top: 5px;
}

/* ── PROCESS ── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}
.process-card {
    background: #f9fbfd;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    border: 1px solid #eee;
    transition: all 0.3s;
}
.process-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); border-color: var(--red); }
.process-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(235, 87, 87, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}
.process-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
    position: relative;
}
.process-card p {
    font-size: 1rem;
    color: var(--text-grey);
    line-height: 1.7;
}

/* ── EMPLOYERS ── */
.employers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.employer-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s;
}
.employer-card:hover { border-color: var(--green); background: #fdfdfd; }
.employer-card h4 { font-size: 1.25rem; font-weight: 800; margin-bottom: 15px; color: var(--navy); }
.employer-card p { font-size: 0.95rem; color: var(--text-grey); margin-bottom: 20px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: #eee; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; color: var(--text-grey); }

/* ── CTA ── */
.course-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 100px 40px;
  position: relative;
}
.course-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 30px;
}
.course-cta p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 50px;
  opacity: 0.9;
}

@media(max-width: 991px) {
    .hero-inner { grid-template-columns: 1fr; gap: 24px; }
    .hero-image-side { order: -1; max-width: 420px; margin: 0 auto; }
    .course-hero { text-align: center; padding-top: 120px; padding-bottom: 60px; }
    .hero-btns { justify-content: center; }
    .tab-nav { flex-direction: column; }
    .dest-grid { grid-template-columns: 1fr; gap: 30px; }
    .course-section { padding: 60px 30px; }
}

@media(max-width: 600px) {
    .course-hero {
        padding: 90px 16px 50px;
        min-height: auto;
    }
    .course-hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }
    .course-hero p { font-size: 1rem; }
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .btn-primary, .btn-outline {
        width: 100%;
        text-align: center;
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    .hero-image-side img {
        box-shadow: 6px 6px 0px var(--green);
    }
    .stats-band {
        margin-top: 0;
        border-radius: 0;
        max-width: 100%;
    }
    .stat-item {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .stat-num { font-size: 2.2rem; }
    .course-section { padding: 40px 16px; }
    .tab-panel { padding: 24px 14px; }
    .process-card { padding: 24px 16px; }
    .course-cta { padding: 50px 16px; }
    .section-header { margin-bottom: 28px; }
    .section-header.left { border-left: 4px solid var(--red); padding-left: 16px; }
    .tabs-container { border-radius: 10px; }
    .tab-btn { padding: 14px 12px; font-size: 1rem; }
}

/* =====================================================
   HIREWISE — COURSE PAGES HEADER CONTACT STYLES
   ===================================================== */
/* Force correct STM icon font rendering */
.hw-header-contact i.stm-phone_13_2,
.hw-header-contact i.stm-whatsapp {
  font-family: 'stm' !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  line-height: 1 !important;
  speak: never;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block !important;
}

/* Hide header contact section completely on mobile and tablet */
@media (max-width: 1024px) {
  .hw-header-contact {
    display: none !important;
  }
}

