/* ═══════════════════════════════════════════════════════════
   KKP — Keyfiat Kooshan Pars
   Design System: Precision-Engineered Clinical Authority
   Color: Deep navy + warm copper/amber
   Typography: Vazirmatn (Persian-native)
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables ───────────────────────────────────── */
:root {
  --kkp-navy:       #0b1d3a;
  --kkp-navy-mid:   #132d52;
  --kkp-navy-light: #1a3a6b;
  --kkp-copper:     #c06a3a;
  --kkp-copper-light: #d4864e;
  --kkp-gold:       #d4a24c;
  --kkp-cream:      #faf7f2;
  --kkp-slate:      #4a5568;
  --kkp-light:      #f0ece6;
  --kkp-border:     #e2ddd5;
  --kkp-white:      #ffffff;
  --kkp-text:       #2d3748;
  --kkp-text-light: #718096;

  --font-body: 'Vazirmatn', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(11,29,58,0.08);
  --shadow-md: 0 4px 16px rgba(11,29,58,0.10);
  --shadow-lg: 0 8px 32px rgba(11,29,58,0.14);
  --shadow-xl: 0 16px 48px rgba(11,29,58,0.18);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Base Reset ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--kkp-text);
  background: var(--kkp-white);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--kkp-navy-light);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--kkp-copper);
}

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

/* ─── Utility Classes ─────────────────────────────────── */
.section-padding {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }
}

.bg-light-subtle {
  background: var(--kkp-cream) !important;
}

.min-vh-80 {
  min-height: 80vh;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--kkp-copper);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.section-label span {
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--kkp-copper);
  border-radius: 2px;
}
.section-label--center {
  justify-content: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--kkp-navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--kkp-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--kkp-navy);
  border-color: var(--kkp-navy);
  color: var(--kkp-white);
}
.btn-primary:hover {
  background: var(--kkp-navy-light);
  border-color: var(--kkp-navy-light);
  color: var(--kkp-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--kkp-copper);
  border-color: var(--kkp-copper);
  color: var(--kkp-white);
}
.btn-accent:hover {
  background: var(--kkp-copper-light);
  border-color: var(--kkp-copper-light);
  color: var(--kkp-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  border-color: var(--kkp-navy);
  color: var(--kkp-navy);
}
.btn-outline-primary:hover {
  background: var(--kkp-navy);
  color: var(--kkp-white);
}

.btn-outline-light {
  border-color: rgba(255,255,255,0.4);
  color: var(--kkp-white);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--kkp-white);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   TOPBAR
   ═══════════════════════════════════════════════════════════ */
.topbar {
  background: var(--kkp-navy);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar__contact {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.topbar__contact a,
.topbar__contact span {
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar__contact a:hover {
  color: var(--kkp-gold);
}

.topbar__social a {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  padding: 0.2rem;
}
.topbar__social a:hover {
  color: var(--kkp-gold);
}

@media (max-width: 768px) {
  .topbar__contact span:last-child {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   SITE HEADER / NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.site-header {
  background: var(--kkp-white);
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.site-header .navbar {
  padding: 0.6rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand__logo {
  height: 44px;
  width: auto;
}

.navbar-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-brand__name {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--kkp-navy);
}

.navbar-brand__abbr {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--kkp-copper);
  letter-spacing: 0.2em;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--kkp-text);
  padding: 0.6rem 0.85rem !important;
  font-size: 0.92rem;
  position: relative;
  transition: color var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--kkp-copper);
  transition: width var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--kkp-copper);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.dropdown-menu {
  border: 1px solid var(--kkp-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  min-width: 240px;
  animation: dropIn 0.25s ease;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all var(--transition);
}

.dropdown-item:hover {
  background: var(--kkp-cream);
  color: var(--kkp-copper);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--kkp-navy);
  overflow: hidden;
  padding: 2rem 0 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(192,106,58,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(26,58,107,0.4) 0%, transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--kkp-gold);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease;
}

.hero__title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--kkp-white);
  line-height: 1.15;
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease 0.1s both;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3.8rem;
  }
}

.hero__subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--kkp-gold);
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.9;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero image frame */
.hero__image-frame {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero__image-frame-border {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 3px solid var(--kkp-copper);
  border-radius: var(--radius-lg);
  opacity: 0.4;
  pointer-events: none;
}

.hero__image {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  background: var(--kkp-navy-mid);
}

/* ═══════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--kkp-navy-mid);
  padding: 0;
  position: relative;
  z-index: 3;
}

.stats-bar__item {
  text-align: center;
  padding: 1.8rem 1rem;
  border-left: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.stats-bar__item:hover {
  background: rgba(255,255,255,0.03);
}

.stats-bar__number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--kkp-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stats-bar__label {
  /* font-size: 0.85rem; */
  color: rgb(255 255 255);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PREVIEW
   ═══════════════════════════════════════════════════════════ */
.about-preview__image-block {
  position: relative;
  padding: 2rem;
}

.about-preview__accent-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 70%;
  border: 3px solid var(--kkp-copper);
  border-radius: var(--radius-lg);
  opacity: 0.2;
}

.about-preview__main-image {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-preview__placeholder {
  background: linear-gradient(135deg, var(--kkp-navy-mid), var(--kkp-navy));
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  width: 100%;
}
.about-preview__placeholder i {
  font-size: 4rem;
  color: rgba(255,255,255,0.15);
}

.about-preview__experience-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--kkp-copper);
  color: var(--kkp-white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-preview__exp-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.about-preview__exp-text {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
}

.about-preview__value {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem;
  background: var(--kkp-cream);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

.about-preview__value i {
  color: var(--kkp-copper);
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════════════ */
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--kkp-white);
  border: 1px solid var(--kkp-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--kkp-text);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background: var(--kkp-copper);
  transition: height var(--transition);
  border-radius: 0 0 4px 4px;
}

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

.service-card:hover::before {
  height: 100%;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--kkp-navy), var(--kkp-navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}

.service-card__icon i {
  font-size: 1.5rem;
  color: var(--kkp-gold);
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--kkp-navy);
  margin-bottom: 0.6rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--kkp-text-light);
  flex: 1;
  margin-bottom: 1rem;
}

.service-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--kkp-copper);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}

.service-card:hover .service-card__link {
  gap: 0.6rem;
}

.service-card--tall {
  min-height: 280px;
}

/* ═══════════════════════════════════════════════════════════
   WHY US SECTION
   ═══════════════════════════════════════════════════════════ */
.why-us__card {
  background: var(--kkp-cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
  transition: all var(--transition);
}
.why-us__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.why-us__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--kkp-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.why-us__icon i {
  color: var(--kkp-gold);
  font-size: 1.2rem;
}

.why-us__card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--kkp-navy);
  margin-bottom: 0.5rem;
}

.why-us__card p {
  font-size: 0.88rem;
  color: var(--kkp-text-light);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   CLIENTS SECTION
   ═══════════════════════════════════════════════════════════ */
.clients-group__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--kkp-navy);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--kkp-border);
}

.clients-group__title i {
  color: var(--kkp-copper);
}

.clients-group__logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
}

.clients-group__item {
  aspect-ratio: 3/2;
  border: 1px solid var(--kkp-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: all var(--transition);
  background: var(--kkp-white);
}

.clients-group__item:hover {
  border-color: var(--kkp-copper);
  box-shadow: var(--shadow-sm);
}

.clients-group__item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition);
}

.clients-group__item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   CERTIFICATE CARDS
   ═══════════════════════════════════════════════════════════ */
.cert-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--kkp-white);
  border: 1px solid var(--kkp-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  height: 100%;
}

.cert-card:hover {
  border-color: var(--kkp-copper);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.cert-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kkp-navy), var(--kkp-navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--kkp-gold);
}
.cert-card__icon i {
  font-size: 1.4rem;
  color: var(--kkp-gold);
}

.cert-card__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--kkp-navy);
  margin-bottom: 0.4rem;
}

.cert-card__desc {
  font-size: 0.82rem;
  color: var(--kkp-text-light);
  margin-bottom: 0;
}

.cert-card--tall {
  padding: 2rem 1.5rem;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--kkp-navy), var(--kkp-navy-mid));
  z-index: 0;
}
.cta-section__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-section > .container {
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--kkp-white);
  margin-bottom: 0.75rem;
}

.cta-section__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

.cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   PAGE BANNER
   ═══════════════════════════════════════════════════════════ */
.page-banner {
  position: relative;
  background: var(--kkp-navy);
  padding: 3.5rem 0 3rem;
  overflow: hidden;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 100%, rgba(192,106,58,0.12) 0%, transparent 50%);
}

.page-banner__content {
  position: relative;
  z-index: 1;
}

.page-banner__title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--kkp-white);
  margin-bottom: 0.5rem;
}

.page-banner__subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.page-banner .breadcrumb {
  margin-bottom: 0;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.page-banner .breadcrumb-item a:hover {
  color: var(--kkp-gold);
}

.page-banner .breadcrumb-item.active {
  color: var(--kkp-gold);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════════════════════
   SERVICE DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */
.service-detail h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--kkp-navy);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--kkp-cream);
}

.service-detail__list {
  list-style: none;
  padding: 0;
}
.service-detail__list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.6rem;
  border-bottom: 1px solid var(--kkp-cream);
  font-size: 0.95rem;
}
.service-detail__list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 1rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--kkp-copper);
}
[dir="rtl"] .service-detail__list li {
  padding: 0.5rem 1.6rem 0.5rem 0;
}

.service-detail__check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}
.service-detail__check-item i {
  color: var(--kkp-copper);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.service-detail__standards {
  background: var(--kkp-cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.service-detail__standards h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--kkp-navy);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-detail__standards h4 i {
  color: var(--kkp-copper);
}

.badge.bg-primary {
  background: var(--kkp-navy) !important;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
}

.badge.bg-secondary {
  background: var(--kkp-slate) !important;
  font-weight: 500;
  font-size: 0.78rem;
  padding: 0.35rem 0.7rem;
}

/* ─── Services Sidebar ──────────────────────────────────── */
.services-sidebar {
  position: sticky;
  top: 100px;
}

.services-sidebar__nav {
  background: var(--kkp-cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.services-sidebar__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--kkp-navy);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--kkp-border);
}

.services-sidebar__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-sidebar__nav li {
  margin-bottom: 0.25rem;
}

.services-sidebar__nav a {
  display: block;
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--kkp-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.services-sidebar__nav a:hover {
  background: var(--kkp-white);
  color: var(--kkp-copper);
  padding-right: 1.2rem;
}

.services-sidebar__cta {
  background: var(--kkp-navy);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.services-sidebar__cta h5 {
  color: var(--kkp-white);
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.services-sidebar__cta p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   TRAINING CARDS
   ═══════════════════════════════════════════════════════════ */
.training-category__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--kkp-navy);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--kkp-copper);
}

.training-category__title i {
  color: var(--kkp-copper);
}

.training-card {
  background: var(--kkp-white);
  border: 1px solid var(--kkp-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  height: 100%;
  transition: all var(--transition);
}
.training-card:hover {
  border-color: var(--kkp-copper);
  box-shadow: var(--shadow-sm);
}

.training-card__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--kkp-navy);
  margin-bottom: 0.5rem;
}

.training-card__desc {
  font-size: 0.85rem;
  color: var(--kkp-text-light);
  margin-bottom: 0;
}

.training-card--compact {
  padding: 1rem 1.2rem;
}
.training-card--compact .training-card__title {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════
   VALUE CARDS (About page)
   ═══════════════════════════════════════════════════════════ */
.value-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--kkp-white);
  border: 1px solid var(--kkp-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  height: 100%;
}
.value-card:hover {
  border-color: var(--kkp-copper);
  box-shadow: var(--shadow-sm);
}
.value-card i {
  font-size: 1.8rem;
  color: var(--kkp-copper);
  margin-bottom: 0.75rem;
  display: block;
}
.value-card h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--kkp-navy);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   TIMELINE (About page)
   ═══════════════════════════════════════════════════════════ */
.timeline {
  position: relative;
  padding-right: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--kkp-border);
  border-radius: 3px;
}

.timeline__item {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 2rem;
}

.timeline__dot {
  position: absolute;
  right: -2.55rem;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--kkp-copper);
  border: 3px solid var(--kkp-cream);
  z-index: 1;
}

.timeline__content {
  background: var(--kkp-white);
  border: 1px solid var(--kkp-border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  transition: all var(--transition);
}

.timeline__content:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--kkp-copper);
}

.timeline__year {
  display: inline-block;
  background: var(--kkp-navy);
  color: var(--kkp-gold);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.timeline__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--kkp-navy);
  margin-bottom: 0.3rem;
}

.timeline__desc {
  font-size: 0.88rem;
  color: var(--kkp-text-light);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════════════════════ */
.blog-card {
  background: var(--kkp-white);
  border: 1px solid var(--kkp-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: all var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__date {
  font-size: 0.82rem;
  color: var(--kkp-text-light);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.blog-card__title a {
  color: var(--kkp-navy);
}
.blog-card__title a:hover {
  color: var(--kkp-copper);
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--kkp-text-light);
  margin-bottom: 0.75rem;
}

.blog-card__tags {
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.blog-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--kkp-copper);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ─── Blog Post Single ──────────────────────────────────── */
.blog-post-single__meta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--kkp-cream);
  font-size: 0.88rem;
  color: var(--kkp-text-light);
}

.blog-post-single__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-post-single__content {
  font-size: 1rem;
  line-height: 2;
}

.blog-post-single__content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--kkp-navy);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-post-single__content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--kkp-navy);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-post-single__content ul,
.blog-post-single__content ol {
  padding-right: 1.2rem;
  margin-bottom: 1rem;
}

.blog-post-single__content li {
  margin-bottom: 0.3rem;
}

.blog-post-single__content strong {
  color: var(--kkp-navy);
}

.blog-post-single__nav {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--kkp-cream);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--kkp-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item__icon i {
  font-size: 1.1rem;
  color: var(--kkp-copper);
}

.contact-info-item h5 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--kkp-navy);
  margin-bottom: 0.15rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.9rem;
  color: var(--kkp-text-light);
  margin-bottom: 0;
}

.contact-form-wrapper {
  background: var(--kkp-cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form-wrapper h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--kkp-navy);
  margin-bottom: 0.5rem;
}

.contact-form .form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--kkp-navy);
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--kkp-border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--kkp-copper);
  box-shadow: 0 0 0 3px rgba(192,106,58,0.12);
}

.map-section {
  background: var(--kkp-cream);
}

.map-placeholder {
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--kkp-text-light);
  opacity: 0.5;
}
.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--kkp-navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.site-footer__logo-img {
  height: 80px;
  width: 80px;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(1);
}

.site-footer__logo-text {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--kkp-white);
}

.site-footer__logo-abbr {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--kkp-gold);
  letter-spacing: 0.2em;
}

.site-footer__about {
  font-size: 0.95rem;
  color: var(--kkp-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.site-footer__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}

.site-footer__heading {
  font-size: 1rem;
  font-weight: 800;
  color: var(--kkp-white);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__links li {
  margin-bottom: 0.4rem;
}

.site-footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: all var(--transition);
}

.site-footer__links a:hover {
  color: var(--kkp-gold);
  padding-right: 0.3rem;
}

.site-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
}

.site-footer__contact i {
  color: var(--kkp-copper);
/* margin-top: 0.3rem; */
  flex-shrink: 0;
}

.site-footer__contact a {
  color: rgba(255,255,255,0.6);
}
.site-footer__contact a:hover {
  color: var(--kkp-gold);
}

.site-footer__social {
  margin-top: 1rem;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.site-footer__social a:hover {
  background: var(--kkp-copper);
  color: var(--kkp-white);
}

.site-footer__bottom {
  margin-top: 3rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.site-footer__bottom p {
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .cta-section__title {
    font-size: 1.8rem;
  }

  .page-banner__title {
    font-size: 1.8rem;
  }

  .services-sidebar {
    position: static;
    margin-top: 2rem;
  }
  .map-section iframe {
      height: 400px;
  }
}

@media (max-width: 575px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__badge {
    font-size: 0.78rem;
  }

  .stats-bar__number {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .topbar__contact {
    gap: 0.8rem;
    font-size: 0.75rem;
  }
  .map-section iframe {
      height: 300px;
  }
}
