/*
Theme Name: Hashtag Corporate
Theme URI: https://www.hashtagmys.com
Description: Hashtag Corporate child theme based on Kadence
Author: Hashtag
Author URI: https://www.hashtagmys.com
Template: kadence
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: hashtag-corporate
*/

/* =========================================
   HASHTAG BRAND VARIABLES
   ========================================= */
:root {
  --primary: #2563EB;
  --primary-dark: #1d4ed8;
  --secondary: #0A2540;
  --accent: #60A5FA;
  --bg-light: #F8FAFC;
  --text-dark: #0A2540;
  --text-muted: #64748B;
  --white: #ffffff;
  --gradient-hero: linear-gradient(135deg, #0A2540 0%, #1e3a5f 50%, #2563EB 100%);
  --gradient-cta: linear-gradient(135deg, #2563EB 0%, #60A5FA 100%);
  --border-radius: 12px;
  --shadow-card: 0 4px 24px rgba(37, 99, 235, 0.10);
  --shadow-hover: 0 8px 32px rgba(37, 99, 235, 0.18);
  --transition: all 0.3s ease;
}

/* =========================================
   GLOBAL RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  margin: 0;
}

/* Prose / body copy — all non-heading, non-bold text */
p, li, span, label, td, th, figcaption,
.service-desc, .why-desc, .section-subtitle,
.hero-subtext, .metric-label, .hero-card-desc,
.hero-countries-label, .hero-country-flag,
.training-stat-label, .js-title, .contact-label,
.contact-value, .footer-brand p, .footer-col ul li a,
.footer-bottom p {
  font-family: "source-serif-pro", Georgia, Cambria, "Times New Roman", Times, serif;
}

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

img { max-width: 100%; height: auto; }

/* =========================================
   TOP BAR
   ========================================= */
#top-bar {
  background: var(--primary);
  background-image: linear-gradient(90deg, #1d4ed8 0%, #2563EB 60%, #3b82f6 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: sticky;
  top: 0;
  z-index: 1001;
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ── Left: contact items ── */
.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 0;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.15px;
  font-family: 'Inter', sans-serif;
  padding: 0 18px 0 0;
  transition: color 0.2s;
  white-space: nowrap;
}
.top-bar-item:first-child { padding-left: 0; }

/* Pipe divider between items */
.top-bar-item + .top-bar-item {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 18px;
}

.top-bar-item:hover { color: #fff; }

.top-bar-item svg {
  flex-shrink: 0;
  opacity: 0.85;
}

/* ── Right: social icons ── */
.top-bar-social {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-social-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.90);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-right: 4px;
  white-space: nowrap;
}

.top-bar-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.20);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, color 0.2s;
}
.top-bar-social-icon:hover {
  background: rgba(255, 255, 255, 0.30);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .top-bar-inner { padding: 0 16px; }
  .top-bar-social-label { display: none; }
}
@media (max-width: 540px) {
  .top-bar-inner { justify-content: space-between; }
  .top-bar-item { font-size: 11px; padding-right: 12px; }
  .top-bar-item + .top-bar-item { padding-left: 12px; }
}

/* =========================================
   HEADER CONSULTATION BUTTON
   — Use nav.main-navigation to win the specificity
     war against `.main-navigation a { !important }`
   ========================================= */
nav.main-navigation a.header-consult-btn,
nav.main-navigation a.header-consult-btn:visited {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
  color: rgba(255, 255, 255, 0.90) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.1px;
  text-decoration: none !important;
  margin-left: 12px;
  border: 2px solid transparent;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.28);
  transition: background 0.25s ease, box-shadow 0.25s ease,
              border-color 0.25s ease, transform 0.2s ease, color 0.25s ease;
  white-space: nowrap;
}

nav.main-navigation a.header-consult-btn svg {
  flex-shrink: 0;
  color: #ffffff;
  stroke: #ffffff;
  transition: transform 0.2s ease;
}

nav.main-navigation a.header-consult-btn:hover,
nav.main-navigation a.header-consult-btn:focus {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(10, 37, 64, 0.35);
  transform: translateY(-1px);
}

nav.main-navigation a.header-consult-btn:hover svg,
nav.main-navigation a.header-consult-btn:focus svg {
  color: #ffffff;
  stroke: #ffffff;
  transform: rotate(-8deg) scale(1.1);
}

/* =========================================
   STICKY HEADER
   ========================================= */
.site-header,
#masthead {
  position: sticky !important;
  top: 38px;
  z-index: 1000;
  background: var(--white) !important;
  box-shadow: 0 2px 16px rgba(10, 37, 64, 0.08);
}

.header-navigation .nav-link,
.main-navigation a {
  color: var(--secondary) !important;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
}
.header-navigation .nav-link:hover,
.main-navigation a:hover { color: var(--primary) !important; }

/* Header CTA button */
.header-button,
.header-cta-btn {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  border: none !important;
  transition: var(--transition) !important;
}
.header-button:hover, .header-cta-btn:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary, .wp-block-button__link, .hashtag-btn-primary {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  border: 2px solid var(--primary) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  transition: var(--transition) !important;
  cursor: pointer;
}
.btn-primary:hover, .wp-block-button__link:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3) !important;
}

.btn-outline, .hashtag-btn-outline {
  background: transparent !important;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.6) !important;
  border-radius: 8px !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  transition: var(--transition) !important;
  cursor: pointer;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: var(--white) !important;
}

/* =========================================
   SECTION LAYOUT
   ========================================= */
.hashtag-section {
  padding: 80px 0;
}
.hashtag-section-gray {
  background: var(--bg-light);
}
.hashtag-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
  background: var(--gradient-hero);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-headline {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -1px;
}

.hero-headline span {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-countries {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-countries-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.hero-country-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  background: rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: 100px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: var(--transition);
}

.hero-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.hero-card-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.hero-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.hero-card-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* =========================================
   METRICS / STATS SECTION
   ========================================= */
.metrics-section {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid #E2E8F0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.metric-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  border: 1px solid #E2E8F0;
  transition: var(--transition);
}

.metric-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.metric-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-cta);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.metric-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
  background: var(--bg-light);
  padding: 50px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  border: 1px solid #93C5FD;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cta);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(96, 165, 250, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   WHY CHOOSE SECTION
   ========================================= */
.why-section {
  background: var(--secondary);
  padding: 50px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 32px 28px;
  transition: var(--transition);
  text-align: center;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-cta);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.why-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
}

/* =========================================
   TRAINING SECTION
   ========================================= */
.training-section {
  background: var(--bg-light);
  padding: 50px 0;
}

.training-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.training-visual {
  background: var(--gradient-hero);
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.training-visual::after {
  content: '🎓';
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 80px;
  opacity: 0.15;
}

.training-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.training-stat {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.training-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.training-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.training-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.training-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #E2E8F0;
  font-size: 15px;
  color: var(--text-dark);
}

.training-features li:last-child { border: none; }

.feature-check {
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: white;
}

/* =========================================
   JOB SUPPORT SECTION
   ========================================= */
.jobsupport-section {
  background: var(--white);
  padding: 50px 0;
}

.jobsupport-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.jobsupport-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.jobsupport-feature {
  background: var(--bg-light);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 20px;
  transition: var(--transition);
}

.jobsupport-feature:hover {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.04);
}

.js-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.js-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
}

/* =========================================
   DIGITAL MARKETING SECTION
   ========================================= */
.digimkt-section {
  background: var(--gradient-hero);
  padding: 50px 0;
}

.digimkt-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.digimkt-channels {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.digi-channel {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 16px 24px;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  min-width: 160px;
  justify-content: center;
}

.digi-channel:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.digi-channel-icon {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.digi-channel-icon svg {
  display: block;
  flex-shrink: 0;
}

/* =========================================
   COUNTRIES SECTION
   ========================================= */
.countries-section {
  background: var(--bg-light);
  padding: 32px 0;
  text-align: center;
}

.countries-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 24px auto 0;
  max-width: 700px;
  padding: 0 24px;
}

.country-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  padding: 0 28px;
  white-space: nowrap;
}

.country-strip-flag {
  font-size: 28px;
  line-height: 1;
}

.country-strip-divider {
  width: 1px;
  height: 28px;
  background: #CBD5E1;
  flex-shrink: 0;
}

.countries-tagline {
  margin: 16px 0 0;
  font-size: 14px;
  color: #475569;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.3px;
}

@media (max-width: 600px) {
  .country-strip-item { padding: 0 16px; font-size: 16px; }
  .country-strip-flag { font-size: 22px; }
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
  background: var(--white);
  padding: 50px 0;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-cta);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 16px;
  color: var(--secondary);
  font-weight: 600;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white) !important;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 8px;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #E2E8F0;
}

.contact-form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 24px;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer,
#colophon {
  background: var(--secondary) !important;
  color: rgba(255,255,255,0.7);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6) !important;
  font-size: 14px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 8px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================================
   PAGE HERO
   ========================================= */
.page-hero {
  background: var(--gradient-hero);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-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.03'%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");
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .training-content { grid-template-columns: 1fr; }
  .jobsupport-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; justify-content: center; }
  .digimkt-channels { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .jobsupport-features { grid-template-columns: 1fr; }
}

/* =========================================
   ACHIEVEMENTS TIMELINE
   ========================================= */
.achievements-timeline {
  margin-top: 48px;
  padding: 0 24px;
}

.timeline-items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

/* Horizontal connecting line through dots */
.timeline-items::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #2563EB 0%, #60A5FA 100%);
  z-index: 0;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2563EB;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #2563EB;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.timeline-icon {
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1;
}

.timeline-number {
  font-size: 30px;
  font-weight: 800;
  color: #0A2540;
  line-height: 1;
  margin-bottom: 6px;
}

.timeline-label {
  font-size: 13px;
  color: #64748B;
  font-weight: 500;
  max-width: 100px;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .timeline-items { flex-direction: column; align-items: center; gap: 32px; }
  .timeline-items::before { display: none; }
  .timeline-dot { margin-bottom: 12px; }
}

/* =========================================
   SERVICES PAGE — padding override + process flow
   ========================================= */
.page-template-page-services .hashtag-section {
  padding: 50px 0;
}

#our-process {
  padding-top: 10px;
}

.process-zigzag {
  position: relative;
  max-width: 860px;
  margin: 32px auto 0;
  padding: 0 24px;
}

/* Central vertical spine */
.process-zigzag::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #2563EB 0%, #60A5FA 100%);
  transform: translateX(-50%);
  z-index: 0;
}

.zigzag-step {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
  position: relative;
}

/* Even steps flip: content moves to right side */
.zigzag-step:nth-child(even) {
  flex-direction: row-reverse;
}

.zigzag-box {
  flex: 1;
  background: white;
  border: 1px solid #93C5FD;
  border-radius: 16px;
  padding: 28px 32px;
  position: relative;
}

.zigzag-step:nth-child(odd) .zigzag-box {
  margin-right: 36px;
  text-align: right;
}

.zigzag-step:nth-child(even) .zigzag-box {
  margin-left: 36px;
  text-align: left;
}

/* Horizontal connector line from box to dot */
.zigzag-step:nth-child(odd) .zigzag-box::after {
  content: '';
  position: absolute;
  right: -36px;
  top: 50%;
  width: 36px;
  height: 2px;
  background: #93C5FD;
}

.zigzag-step:nth-child(even) .zigzag-box::after {
  content: '';
  position: absolute;
  left: -36px;
  top: 50%;
  width: 36px;
  height: 2px;
  background: #93C5FD;
}

.zigzag-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2563EB;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #2563EB;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}

.zigzag-empty {
  flex: 1;
}

.zigzag-num {
  font-size: 13px;
  font-weight: 700;
  color: #2563EB;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.zigzag-title {
  font-size: 18px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 8px;
}

.zigzag-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .process-zigzag::before { display: none; }
  .zigzag-step,
  .zigzag-step:nth-child(even) { flex-direction: column; align-items: flex-start; }
  .zigzag-step:nth-child(odd) .zigzag-box,
  .zigzag-step:nth-child(even) .zigzag-box { margin: 0 0 16px; text-align: left; }
  .zigzag-step:nth-child(odd) .zigzag-box::after,
  .zigzag-step:nth-child(even) .zigzag-box::after { display: none; }
  .zigzag-dot, .zigzag-empty { display: none; }
}

/* =========================================
   TRAINING PAGE — section padding + feature strips
   ========================================= */
.page-template-page-training .hashtag-section {
  padding: 50px 0;
}

.training-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  margin-top: 40px;
  text-align: left;
}

.training-feature-strip {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-left: 4px solid #2563EB;
  background: white;
}


.training-feature-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.training-feature-title {
  font-size: 17px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 6px;
}

.training-feature-desc {
  color: #64748B;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .training-features-grid { grid-template-columns: 1fr; }
}

/* =========================================
   ABOUT PAGE — section padding override + card hover
   ========================================= */
.page-template-page-about .hashtag-section {
  padding: 50px 0;
}

.about-value-card {
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.about-value-card:hover {
  border-color: #2563EB !important;
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.15);
  transform: translateY(-4px);
  background: #ffffff !important;
}
