/* ===== CSS VARIABLES ===== */
:root, [data-bs-theme=light] {
  --color-default: #222222;
  --color-primary: #052844;
  --color-primary-dark: #031c2f;
  --color-secondary: #f85a40;
  --color-accent: #1a6bb8;
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Poppins", sans-serif;
  --bs-success: #052844;
  --bs-success-rgb: 5,40,68;
  --bs-success-text-emphasis: #052844;
  --bs-success-bg-subtle: rgba(5,40,68,0.12);
  --bs-success-border-subtle: rgba(5,40,68,0.2);
  --bs-success-bg: #052844;
  --bs-success-border-color: #052844;
  --bs-form-valid-color: var(--color-primary);
  --bs-form-valid-border-color: var(--color-primary);
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-default);
  color: var(--color-default);
  line-height: 1.6;
}

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

.text-success, .text-success-emphasis, .text-success-emphasis { color: var(--color-primary) !important; }
.text-bg-success { color: #fff !important; background-color: var(--color-primary) !important; }
.bg-success { background-color: var(--color-primary) !important; }
.border-success { border-color: var(--color-primary) !important; }
.link-success, .link-success:focus, .link-success:hover { color: var(--color-primary) !important; }
.focus-ring-success { --bs-focus-ring-color: rgba(5,40,68, var(--bs-focus-ring-opacity)); }
.btn-success { color: #fff !important; background-color: var(--color-primary) !important; border-color: var(--color-primary) !important; }
.btn-success:hover, .btn-success:focus { background-color: var(--color-primary-dark) !important; border-color: var(--color-primary-dark) !important; }
.btn-outline-success { color: var(--color-primary) !important; border-color: var(--color-primary) !important; }
.btn-outline-success:hover, .btn-outline-success:focus { color: #fff !important; background-color: var(--color-primary) !important; border-color: var(--color-primary) !important; }

.form-control.is-valid,
.was-validated .form-control:valid,
.form-select.is-valid,
.was-validated .form-select:valid {
  border-color: var(--color-primary) !important;
}
.form-control.is-valid,
.was-validated .form-control:valid {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23052844' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") !important;
}
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus,
.form-select.is-valid:focus,
.was-validated .form-select:valid:focus {
  box-shadow: 0 0 0 .25rem rgba(5,40,68,0.25) !important;
}
.form-check-input.is-valid,
.was-validated .form-check-input:valid {
  border-color: var(--color-primary) !important;
}
.form-check-input.is-valid:checked,
.was-validated .form-check-input:valid:checked {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}
.form-check-input.is-valid:focus,
.was-validated .form-check-input:valid:focus {
  box-shadow: 0 0 0 .25rem rgba(5,40,68,0.25) !important;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-primary); line-height: 1.3; }

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

section { padding: 60px 0; overflow: hidden; }

.sections-bg { background-color: #f6f6f6; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 999999; background: #fff; transition: all 0.6s ease-out;
}
#preloader::before {
  content: ""; position: fixed;
  top: calc(50% - 30px); left: calc(50% - 30px);
  border: 6px solid transparent;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%; width: 60px; height: 60px;
  animation: spin 1.5s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; right: 15px; bottom: -15px; z-index: 99999;
  background: var(--color-primary); width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.4s; visibility: hidden; opacity: 0;
}
.scroll-top i { font-size: 20px; color: #fff; }
.scroll-top:hover { background: var(--color-primary-dark); }
.scroll-top.active { visibility: visible; opacity: 1; bottom: 15px; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--color-primary); height: 40px; font-size: 14px;
  color: #fff; display: flex; align-items: center;
}
.topbar .contact-info a,
.topbar .contact-info span { color: #fff; padding-left: 5px; }
.topbar .contact-info a:hover { text-decoration: underline; color: #fff; }
.topbar .social-links a { color: rgba(255,255,255,0.75); margin-left: 20px; font-size: 15px; transition: color 0.3s; }
.topbar .social-links a:hover { color: #fff; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 997;
  height: 80px; background: #fff;
  display: flex; align-items: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.5s;
}
.header .logo img { max-height: 50px; }
.header .logo h1 {
  font-size: 26px; margin: 0; font-weight: 700;
  color: var(--color-primary); font-family: var(--font-primary);
}

/* ===== DESKTOP NAV ===== */
@media (min-width: 1280px) {
  .navbar { padding: 0; }
  .navbar ul { margin: 0; padding: 0; display: flex; list-style: none; align-items: center; }
  .navbar li { position: relative; }
  .navbar > ul > li { padding: 10px 0 10px 24px; }
  .navbar a, .navbar a:focus {
    display: flex; align-items: center; gap: 4px;
    font-family: var(--font-secondary); font-size: 15px; font-weight: 600;
    color: #444; white-space: nowrap; transition: color 0.3s;
    padding: 0 3px; position: relative;
  }
  .navbar > ul > li > a::before {
    content: ""; position: absolute; width: 0; height: 2px; bottom: -6px; left: 0;
    background: var(--color-primary); transition: width 0.3s ease;
  }
  .navbar a:hover::before, .navbar li:hover > a::before, .navbar .active::before { width: 100%; }
  .navbar a:hover, .navbar .active, .navbar li:hover > a { color: var(--color-primary); }

  .navbar .appointment {
    background: var(--color-primary); padding: 8px 20px !important;
    border-radius: 50px; border: 1px solid var(--color-primary);
    margin-left: 8px; color: #fff !important;
  }
  .navbar .appointment:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: #fff !important; }
  .navbar .appointment::before, .navbar .appointment:hover::before { display: none !important; }

  /* dropdown */
  .navbar .dropdown ul {
    display: block; position: absolute; left: 24px; top: calc(100% + 30px);
    margin: 0; padding: 10px 0; z-index: 99; opacity: 0; visibility: hidden;
    background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 6px; min-width: 200px; transition: all 0.3s;
  }
  .navbar .dropdown ul a { padding: 10px 20px; font-size: 14px; color: var(--color-primary); font-weight: 600; }
  .navbar .dropdown ul a:hover { color: var(--color-secondary); }
  .navbar .dropdown:hover > ul { opacity: 1; top: 100%; visibility: visible; }

  .mobile-nav-show, .mobile-nav-hide { display: none; }
}

/* ===== MOBILE NAV ===== */
@media (max-width: 1279px) {
  .navbar {
    position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px;
    bottom: 0; z-index: 9997; transition: right 0.3s;
  }
  .navbar ul {
    position: absolute; inset: 0; padding: 50px 0 10px;
    background: rgba(5,40,68,0.96); overflow-y: auto; z-index: 9998;
  }
  .navbar a, .navbar a:focus {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 20px; font-size: 15px; font-weight: 600;
    color: rgba(255,255,255,0.8); transition: color 0.3s;
  }
  .navbar a:hover, .navbar .active { color: #fff; }
  .navbar .dropdown ul {
    position: static; display: none; padding: 8px 0;
    margin: 8px 20px; background: rgba(5,40,68,0.92);
    border-radius: 4px;
  }
  .navbar .dropdown > .dropdown-active { display: block; }

  .mobile-nav-show { color: var(--color-primary); font-size: 28px; cursor: pointer; z-index: 9999; }
  .mobile-nav-hide {
    color: #fff; font-size: 30px; cursor: pointer; position: fixed;
    right: 20px; top: 20px; z-index: 9999;
  }
  .mobile-nav-active { overflow: hidden; }
  .mobile-nav-active .navbar { right: 0; }
  .mobile-nav-active .navbar::before {
    content: ""; position: fixed; inset: 0;
    background: rgba(5,40,68,0.85); z-index: 9996;
  }
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; padding-bottom: 50px; }
.section-header h2 {
  font-size: 30px; font-weight: 700; margin-bottom: 18px; padding-bottom: 18px; position: relative;
}
.section-header h2::after {
  content: ""; position: absolute; display: block;
  width: 50px; height: 3px; background: var(--color-primary);
  left: 0; right: 0; bottom: 0; margin: auto;
}
.section-header p { color: #444; margin-bottom: 0; }

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0a3d60 60%, #123f6f 100%);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url('../img/hero-bg-abstract.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.hero .hero-content { position: relative; z-index: 1; }
.hero h1 {
  font-size: 42px; font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 20px;
}
.hero .hero-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 15px; font-weight: 500;
}
.hero .hero-intro {
  color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 35px; line-height: 1.7;
}
.hero .hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 50px; }

.btn-apply {
  background: #fff; color: var(--color-primary); font-weight: 700;
  padding: 14px 32px; border-radius: 50px; font-size: 15px; letter-spacing: 0.5px;
  border: 2px solid #fff; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-apply:hover { background: transparent; color: #fff; border-color: #fff; }

.btn-whatsapp {
  background: #25d366; color: #fff; font-weight: 700;
  padding: 14px 32px; border-radius: 50px; font-size: 15px; letter-spacing: 0.5px;
  border: 2px solid #25d366; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff; }
.btn-whatsapp i { font-size: 18px; }

.hero .icon-boxes { padding-bottom: 60px; position: relative; z-index: 1; }
.hero .icon-box {
  padding: 50px 25px; background: #0b456b; border-radius: 10px;
  text-align: center; position: relative; z-index: 1; height: 100%;
  transition: background 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.hero .icon-box:hover { background: #174f7c; }
.hero .icon-box .icon { font-size: 44px; color: rgba(255,255,255,0.7); margin-bottom: 16px; display: block; transition: color 0.3s; }
.hero .icon-box:hover .icon { color: #fff; }
.hero .icon-box .title { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.hero .icon-box .title a { color: #fff; }
.hero .icon-box p { color: rgba(255,255,255,0.8); font-size: 14px; margin: 0; }

@media (max-width: 768px) {
  .hero h1 { font-size: 28px; }
  .hero .hero-subtitle { font-size: 15px; }
  .btn-apply, .btn-whatsapp { padding: 12px 22px; font-size: 14px; }
}

/* ===== WELCOME / INTRO SECTION ===== */
.welcome-section {
  background: linear-gradient(135deg, #052844 0%, #0a3d60 60%, #4772a2 100%);
  padding: 60px 40px; color: rgba(255,255,255,0.9);
}
.welcome-section h2 { color: #fff; font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.welcome-section h3 { color: rgba(255,255,255,0.9); font-size: 18px; font-style: italic; margin-bottom: 20px; font-weight: 400; }
.welcome-section p { font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.welcome-section .read-more {
  display: inline-flex; align-items: center; gap: 6px;
  background: #020f3b; color: #fff; padding: 12px 28px; border-radius: 6px;
  font-weight: 600; transition: background 0.3s;
}
.welcome-section .read-more:hover { background: var(--color-primary-dark); color: #fff; }

/* ===== EXPERTISE BOXES ===== */
.expertise-box {
  background: #fff; border-radius: 12px; padding: 35px 25px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); height: 100%; transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--color-primary);
}
.expertise-box:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.expertise-box .icon { margin-bottom: 20px; }
.expertise-box .icon img { width: 60px; height: 60px; object-fit: contain; }
.expertise-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--color-default); }
.expertise-box p { font-size: 14px; color: #666; margin: 0; line-height: 1.6; }

/* ===== SERVICES CARDS (What Makes Us Different) ===== */
.services-cards { padding: 60px 0; background: #f8f9fa; }
.service-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); height: 100%; transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.12); }
.service-card .card-img { overflow: hidden; height: 180px; }
.service-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .card-img img { transform: scale(1.08); }
.service-card .card-body-inner { padding: 30px 25px; position: relative; padding-top: 55px; }
.service-card .card-icon {
  position: absolute; top: -36px; left: 50%; transform: translateX(-50%);
  width: 72px; height: 72px; border-radius: 50%; background: #185aa7;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff; border: 6px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.service-card h3 { font-size: 18px; font-weight: 700; text-align: center; color: #185aa7; margin-bottom: 12px; }
.service-card p { font-size: 14px; line-height: 1.6; color: #555; text-align: center; margin: 0; }

/* ===== TRAINING SECTION ===== */
.training-section { padding: 70px 0; }
.training-grid .training-item {
  background: #fff; border-radius: 12px; padding: 40px 30px; height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07); border-left: 4px solid var(--color-primary);
  transition: transform 0.3s;
}
.training-grid .training-item:hover { transform: translateY(-4px); }
.training-grid .training-item .t-icon { font-size: 40px; color: var(--color-primary); margin-bottom: 16px; }
.training-grid .training-item h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.training-grid .training-item p { font-size: 14px; color: #666; line-height: 1.7; }

/* ===== FAQ ===== */
.faq { padding: 60px 0; }
.faq .content h3 { font-size: 30px; font-weight: 400; color: var(--color-secondary); margin-bottom: 8px; }
.faq .content p em { color: #666; font-size: 15px; }
.faq .accordion-item { border: 0; margin-top: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border-radius: 8px; }
.faq .accordion-button {
  padding: 16px 48px 16px 56px; font-weight: 600; font-size: 16px;
  background: #fff; border-radius: 8px; color: var(--color-default);
  box-shadow: none;
}
.faq .accordion-button:not(.collapsed) { color: var(--color-primary); box-shadow: none; }
.faq .accordion-button::after { color: var(--color-primary); }
.faq .question-icon { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); font-size: 20px; color: var(--color-primary); }
.faq .accordion-body { padding: 0 30px 20px 56px; font-size: 15px; color: #555; }

/* ===== ABOUT PAGE STYLES ===== */
.page-banner { width: 100%; max-height: 320px; object-fit: cover; }
.cta-section {
  background: var(--color-primary); border-radius: 15px; padding: 60px; margin: 40px 0;
}
.cta-section h2 { color: #fff; font-size: 36px; font-weight: 700; margin-bottom: 16px; }
.cta-section p { color: #fff; font-size: 16px; line-height: 1.8; }
.cta-section .cta-btn {
  display: inline-block; background: #fff; color: var(--color-primary);
  padding: 12px 36px; border-radius: 6px; font-weight: 600;
  margin-top: 20px; transition: all 0.3s;
}
.cta-section .cta-btn:hover { background: rgba(255,255,255,0.88); color: var(--color-primary); }

.vision-mission-box {
  background: var(--color-primary); border-radius: 12px; padding: 40px 35px; height: 100%;
  color: #fff; text-align: center;
}
.vision-mission-box .vm-icon { font-size: 40px; margin-bottom: 16px; color: rgba(255,255,255,0.8); }
.vision-mission-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.vision-mission-box p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.88); margin: 0; }

.philosophy-section { background: var(--color-primary); padding: 60px 0; }
.philosophy-section h2 { color: #fff; font-size: 28px; font-weight: 700; margin-bottom: 20px; }
.philosophy-section p { color: rgba(255,255,255,0.88); font-size: 15px; line-height: 1.9; }
.philosophy-section .btn-partner {
  display: inline-block; background: #fff; color: var(--color-primary);
  padding: 12px 36px; border-radius: 50px; font-weight: 700; margin-top: 20px; transition: all 0.3s;
  border: 2px solid #fff;
}
.philosophy-section .btn-partner:hover { background: transparent; color: #fff; }

.core-values { padding: 70px 0; }
.core-values .cv-item { margin-bottom: 50px; align-items: center; }
.core-values .cv-img { border-radius: 12px; overflow: hidden; }
.core-values .cv-img img { width: 100%; height: 280px; object-fit: cover; border-radius: 12px; }
.core-values .cv-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.core-values .cv-content p { font-size: 15px; color: #555; line-height: 1.7; }

.leadership-section { background: #f8f9fa; padding: 70px 0; }
.leader-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); padding: 30px;
}
.leader-card img { width: 180px; height: 220px; object-fit: cover; border-radius: 10px; }
.leader-card h3 { font-size: 20px; font-weight: 700; color: var(--color-primary); margin-bottom: 8px; }
.leader-card p { font-size: 14px; color: #555; line-height: 1.8; }

.purpose-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  padding: 60px 0; color: #fff;
}
.purpose-section h3 { font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.purpose-section p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.88); }
.purpose-section .btn-plan {
  display: inline-block; background: #fff; color: var(--color-primary);
  padding: 12px 32px; border-radius: 50px; font-weight: 700; margin-top: 20px; transition: all 0.3s;
  border: 2px solid #fff;
}
.purpose-section .btn-plan:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ===== SERVICES PAGE ===== */
.services-intro { background: linear-gradient(135deg, #3d53ff78, #42464ccc), url('../img/onfocus-content-bg.jpg') center/cover; padding: 50px 40px; color: #fff; border-radius: 10px; margin-bottom: 30px; }
.services-intro h2 { font-size: 28px; font-weight: 700; color: #fff; }
.services-intro p { color: rgba(255,255,255,0.88); font-size: 15px; }

.pricing-item {
  background: #fff; border-radius: 15px; padding: 40px 35px; height: 100%;
  box-shadow: 0 3px 20px rgba(108,117,125,0.12); transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-item:hover { transform: translateY(-5px); box-shadow: 0 10px 35px rgba(0,0,0,0.12); }
.pricing-item h3 { font-size: 22px; font-weight: 700; color: var(--color-default); margin-bottom: 16px; }
.pricing-item h3 i { color: var(--color-primary); margin-right: 8px; }
.pricing-item p { font-size: 14px; line-height: 1.7; color: #555; }
.pricing-item ul { list-style: none; padding: 0; margin: 16px 0; }
.pricing-item ul li { padding: 7px 0; font-size: 14px; display: flex; align-items: flex-start; gap: 8px; }
.pricing-item ul li i { color: var(--color-primary); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.buy-btn {
  display: inline-block; padding: 12px 36px; border-radius: 50px;
  background: var(--color-primary); color: #fff; font-weight: 600;
  transition: background 0.3s; border: none; cursor: pointer; font-size: 15px;
}
.buy-btn:hover { background: var(--color-primary-dark); color: #fff; }

.why-choose-section { background: #f8f9fa; padding: 60px 0; }
.why-choose-section h2 { font-size: 30px; font-weight: 700; color: var(--color-default); margin-bottom: 24px; text-align: center; }
.why-list { list-style: none; padding: 0; max-width: 800px; margin: 0 auto; }
.why-list li {
  padding: 16px 0 16px 50px; position: relative; border-bottom: 1px solid #e8e8e8;
  font-size: 15px; line-height: 1.6;
}
.why-list li::before {
  content: "\f26e"; font-family: "bootstrap-icons"; position: absolute;
  left: 12px; top: 16px; font-size: 20px; color: var(--color-primary);
}
.why-list li strong { color: var(--color-default); }
.highlight { background: rgba(5,40,68,0.12); color: var(--color-primary); padding: 2px 8px; border-radius: 4px; font-weight: 600; }

.advisory-section { padding: 70px 0; }
.advisory-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.advisory-section > .container > p { font-size: 15px; color: #555; margin-bottom: 40px; }
.advisory-card {
  background: #fff; border-radius: 12px; padding: 30px; height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-top: 3px solid var(--color-primary); transition: transform 0.3s;
}
.advisory-card:hover { transform: translateY(-4px); }
.advisory-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.advisory-card h3 i { color: var(--color-primary); margin-right: 6px; }
.advisory-card p { font-size: 14px; color: #666; line-height: 1.7; margin: 0; }

.get-started-cta { background: var(--color-primary); padding: 50px 0; text-align: center; }
.get-started-cta h4 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.get-started-cta p { color: rgba(255,255,255,0.88); font-size: 15px; margin-bottom: 24px; }
.get-started-cta a { color: rgba(255,255,255,0.9); }
.get-started-cta a:hover { color: #fff; text-decoration: underline; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 60px 0; }
.info-container {
  background: var(--color-primary); height: 100%; padding: 25px;
  border-radius: 12px 0 0 12px;
}
.info-item {
  background: var(--color-primary); border-radius: 10px; padding: 20px;
  margin-bottom: 16px; color: #fff; display: flex; align-items: flex-start; gap: 14px;
}
.info-item:last-child { margin-bottom: 0; }
.info-item i {
  font-size: 20px; width: 44px; height: 44px; background: rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s;
}
.info-item:hover i { background: #fff; color: var(--color-primary); }
.info-item h4 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.info-item p { font-size: 13px; margin: 0; line-height: 1.6; }
.info-item a { color: rgba(255,255,255,0.9); }
.info-item a:hover { color: #fff; text-decoration: underline; }

.contact-form-wrap {
  background: #fff; padding: 35px; height: 100%;
  border-radius: 0 12px 12px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contact-form-wrap h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.contact-form-wrap p { font-size: 14px; color: #666; margin-bottom: 24px; }
.contact-form-wrap .form-control { border-radius: 6px; padding: 12px 15px; font-size: 14px; border-color: #ddd; }
.contact-form-wrap .form-control:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(5,40,68,0.12); }
.contact-form-wrap textarea.form-control { min-height: 120px; }
.contact-form-wrap .g-recaptcha { margin-bottom: 16px; }
.btn-send {
  background: var(--color-primary); color: #fff; border: 0;
  padding: 13px 45px; border-radius: 50px; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: background 0.3s;
}
.btn-send:hover { background: var(--color-primary-dark); }
.form-alert { display: none; padding: 12px 15px; border-radius: 6px; margin-top: 16px; font-weight: 600; align-items: center; gap: 8px; }
.form-alert.error { background: #df1529; color: #fff; }
.form-alert.success { background: var(--color-primary); color: #fff; }
.form-alert.loading { background: #f8f9fa; color: #333; text-align: center; }

/* btn-apply is designed for dark backgrounds; override for light contact section */
.contact-section .btn-apply {
  border-color: var(--color-primary);
}
.contact-section .btn-apply:hover {
  background: var(--color-primary); color: #fff; border-color: var(--color-primary);
}

@media (max-width: 991px) {
  .info-container { border-radius: 12px 12px 0 0; }
  .contact-form-wrap { border-radius: 0 0 12px 12px; }
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs .page-header {
  padding: 50px 0; background: var(--color-primary); min-height: 15vh; position: relative;
}
.breadcrumbs .page-header h2 { font-size: 40px; font-weight: 600; color: #fff; }
.breadcrumbs .page-header p { color: rgba(255,255,255,0.8); }
.breadcrumbs nav { background: #f6f6f6; padding: 16px 0; }
.breadcrumbs nav ol { display: flex; list-style: none; font-size: 15px; font-weight: 600; flex-wrap: wrap; }
.breadcrumbs nav ol a { color: var(--color-primary); }
.breadcrumbs nav ol li + li { padding-left: 10px; }
.breadcrumbs nav ol li + li::before { content: "/"; padding-right: 10px; color: var(--color-secondary); }

/* ===== FOOTER ===== */
.footer {
  background: var(--color-primary); padding: 55px 0 0; color: rgba(255,255,255,0.85);
  font-size: 14px;
}
.footer h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer .footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer .footer-links ul li { padding: 8px 0; display: flex; align-items: center; gap: 6px; }
.footer .footer-links ul li i { color: rgba(255,255,255,0.5); font-size: 11px; }
.footer .footer-links ul a { color: rgba(255,255,255,0.75); transition: color 0.3s; }
.footer .footer-links ul a:hover { color: #fff; }
.footer .footer-contact p { line-height: 1.9; color: rgba(255,255,255,0.8); }
.footer .footer-contact a { color: rgba(255,255,255,0.85); }
.footer .footer-contact a:hover { color: #fff; }
.footer .social-links { display: flex; gap: 10px; margin-top: 16px; }
.footer .social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 15px; transition: all 0.3s;
}
.footer .social-links a:hover { color: #fff; border-color: #fff; }
.footer .footer-bottom {
  margin-top: 40px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}
.footer .footer-bottom p { margin: 0; color: rgba(255,255,255,0.7); font-size: 13px; }
.footer .footer-bottom a { color: rgba(255,255,255,0.85); }
.footer .footer-bottom a:hover { color: #fff; }

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 80px; z-index: 9990;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.whatsapp-float i { font-size: 30px; color: #fff; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.25); background: #1ebe5d; }

/* ===== PAGE-SPECIFIC BACKGROUND IMAGES ===== */
.pagebreak-img { width: 100%; max-height: 300px; object-fit: cover; }

/* ===== UTILITIES ===== */
.btn-primary-custom {
  background: var(--color-primary); color: #fff; padding: 12px 30px;
  border-radius: 50px; font-weight: 600; border: none; transition: background 0.3s;
}
.btn-primary-custom:hover { background: var(--color-primary-dark); color: #fff; }

.text-primary-green { color: var(--color-primary); }

/* ===== RESPONSIVE HELPERS ===== */
@media (max-width: 767px) {
  section { padding: 45px 0; }

  /* Hero */
  .hero { padding: 50px 0 0; }
  .hero h1 { font-size: 26px; }
  .hero .hero-subtitle { font-size: 14px; }

  /* Headings */
  .section-header { padding-bottom: 30px; }
  .section-header h2 { font-size: 24px; }
  .breadcrumbs .page-header h2 { font-size: 24px; }
  .breadcrumbs .page-header p { font-size: 13px; }

  /* Sections */
  .welcome-section { padding: 40px 20px; }
  .cta-section { padding: 40px 20px; }
  .cta-section h2 { font-size: 24px; }
  .philosophy-section { padding: 45px 0; }
  .advisory-section { padding: 50px 0; }
  .training-section { padding: 50px 0; }
  .core-values { padding: 50px 0; }
  .leadership-section { padding: 50px 0; }

  /* Cards & boxes */
  .pricing-item { padding: 28px 18px; }
  .vision-mission-box { padding: 28px 20px; }
  .leader-card { padding: 20px; }
  .info-container { padding: 20px; }
  .contact-form-wrap { padding: 25px 20px; }

  /* Services intro */
  .services-intro { padding: 30px 20px; }
  .services-intro h2 { font-size: 22px; }

  /* Footer */
  .footer { padding: 40px 0 0; }
}

/* Tiny screens (< 400px): prevent button overflow */
@media (max-width: 399px) {
  .btn-apply, .btn-whatsapp, .btn-send, .buy-btn {
    width: 100%; justify-content: center;
  }
  .hero .hero-btns { flex-direction: column; }
  .breadcrumbs .page-header h2 { font-size: 20px; }
}
