/* ============================================================
   Kyngouni International Education Ltd.
   Main Stylesheet — Corporate Premium Design
   Version: 1.0 | Production Ready
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --navy: #184075;
  /* --navy-deep:   #1f4983; */
  /* --navy-deep: #06459e; */
  --navy-deep: #23085a;
  /* --navy-mid: #365d97; */
  --navy-mid: #170449;
  --gold: #C6A75E;
  --gold-light: #D4BB7E;
  --gold-pale: #F5EDD8;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --grey-light: #EEF0F3;
  --grey-mid: #B0B8C4;
  --grey-dark: #6B7685;
  --text-body: #2C3D52;
  --text-muted: #5A6A7D;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --shadow-sm: 0 2px 12px rgba(11, 31, 58, 0.08);
  --shadow-md: 0 6px 28px rgba(11, 31, 58, 0.12);
  --shadow-lg: 0 16px 60px rgba(11, 31, 58, 0.16);

  --border-radius: 4px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 600;
}

/* ── Utility Classes ── */
.section-padding {
  padding: 96px 0;
}

.section-padding-sm {
  padding: 64px 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.text-gold {
  color: var(--gold) !important;
}

.bg-navy {
  background-color: var(--navy) !important;
}

.bg-navy-deep {
  background-color: var(--navy-deep) !important;
}

.divider-gold {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}

/* ── Buttons ── */
.btn-primary-kyn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--gold);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary-kyn:hover {
  background: var(--navy);
  color: var(--gold) !important;
  border-color: var(--gold);
}

.btn-outline-kyn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline-kyn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy) !important;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 2px solid var(--gold);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy) !important;
}

/* ── Navigation ── */
.navbar-kyn {
  background: var(--navy-deep) !important;
  padding: 0;
  border-bottom: 1px solid rgba(198, 167, 94, 0.15);
  transition: box-shadow 0.3s ease;
}

.navbar-kyn.scrolled {
  box-shadow: 0 4px 30px rgba(7, 21, 40, 0.5);
}

.navbar-brand-kyn {
  padding: 18px 0;
}

.navbar-brand-kyn .brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.navbar-brand-kyn .brand-name span {
  color: var(--gold);
}

.navbar-brand-kyn .brand-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-mid);
  display: block;
  margin-top: 2px;
}

/* Nav links */
.navbar-kyn .nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 28px 14px !important;
  position: relative;
  transition: color var(--transition);
}

.navbar-kyn .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar-kyn .nav-link:hover,
.navbar-kyn .nav-link.active {
  color: var(--gold) !important;
}

.navbar-kyn .nav-link:hover::after,
.navbar-kyn .nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.navbar-kyn .dropdown-menu {
  background: var(--navy);
  border: 1px solid rgba(198, 167, 94, 0.2);
  border-radius: 0;
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 240px;
}

.navbar-kyn .dropdown-item {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 24px;
  transition: all var(--transition);
}

.navbar-kyn .dropdown-item:hover {
  background: rgba(198, 167, 94, 0.1);
  color: var(--gold);
  padding-left: 30px;
}

@media (min-width: 992px) {
  .navbar-kyn .dropdown .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    margin-top: 10px;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .navbar-kyn .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

/* Mobile toggler */
.navbar-toggler-kyn {
  border: 1px solid rgba(198, 167, 94, 0.4);
  padding: 8px 12px;
  background: transparent;
  cursor: pointer;
}

.navbar-toggler-kyn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Consultation CTA in nav */
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  margin-left: 8px;
  border-radius: var(--border-radius);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--white) !important;
  color: var(--navy) !important;
}

/* ── Top Bar ── */
.topbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(198, 167, 94, 0.1);
  padding: 8px 0;
}

.topbar-text {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}

.topbar-text a {
  color: var(--gold);
}

.topbar-text a:hover {
  color: var(--gold-light);
}

/* ── Hero Section ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(7, 21, 40, 0.95) 0%,
      rgba(11, 31, 58, 0.85) 50%,
      rgba(18, 40, 72, 0.75) 100%);
}

/* Geometric accent */
.hero-accent {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, transparent 0%, rgba(198, 167, 94, 0.04) 100%);
  border-left: 1px solid rgba(198, 167, 94, 0.1);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  max-width: 540px;
  margin-bottom: 44px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero right panel */
.hero-panel {
  position: relative;
  z-index: 2;
}

.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(198, 167, 94, 0.2);
  backdrop-filter: blur(8px);
  padding: 40px;
  margin-bottom: 20px;
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-card-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.hero-card-item:last-child {
  border-bottom: none;
}

.hero-card-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.6s ease infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  60% {
    transform: translateY(8px);
    opacity: 0;
  }
}

/* ── Services Section ── */
.services-section {
  background: var(--off-white);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-top: 3px solid transparent;
  padding: 40px 32px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-top-color: var(--gold);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.service-icon i {
  color: var(--gold);
  font-size: 1.3rem;
}

.service-card:hover .service-icon {
  background: var(--gold);
}

.service-card:hover .service-icon i {
  color: var(--navy);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}

.service-link:hover {
  color: var(--gold);
  gap: 12px;
}

/* ── Why Choose Section ── */
.why-section {
  background: var(--navy);
}

.why-section .section-title {
  color: var(--white);
}

.why-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.why-item:last-child {
  border-bottom: none;
}

.why-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(198, 167, 94, 0.2);
  line-height: 1;
  min-width: 48px;
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 6px;
}

.why-desc {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* Image feature block */
.feature-image-block {
  position: relative;
}

.feature-image-block img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.7);
}

.feature-image-block::before {
  content: '';
  position: absolute;
  inset: -12px -12px;
  border: 1px solid rgba(198, 167, 94, 0.3);
  z-index: 0;
}

.feature-image-block img {
  position: relative;
  z-index: 1;
}

/* ── Countries Section ── */
.countries-section {
  background: var(--white);
}

.country-card {
  position: relative;
  overflow: hidden;
  height: 220px;
  cursor: default;
}

.country-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.55) saturate(0.6);
}

.country-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.4) saturate(0.5);
}

.country-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(7, 21, 40, 0.9) 0%, transparent 60%);
}

.country-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
}

.country-detail {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?w=1200&q=60&auto=format&fit=crop') center/cover;
  opacity: 0.05;
}

.cta-section .section-title {
  color: var(--white);
}

/* ── Blog Section ── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  height: 100%;
  transition: all var(--transition);
  overflow: hidden;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.85) saturate(0.75);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 28px;
}

.blog-category {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.blog-meta {
  font-size: 0.75rem;
  color: var(--grey-mid);
  display: flex;
  justify-content: space-between;
}

/* ── Footer ── */
.footer-main {
  background: var(--navy-deep);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(198, 167, 94, 0.15);
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 700;
}

.footer-brand .brand-name span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 300px;
}

.footer-reg {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(198, 167, 94, 0.6);
  border: 1px solid rgba(198, 167, 94, 0.2);
  padding: 4px 12px;
  margin-top: 12px;
  text-transform: uppercase;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(198, 167, 94, 0.2);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '—';
  font-size: 0.65rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-contact-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3px;
}

.footer-contact-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.footer-contact-text strong {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(198, 167, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy) !important;
  transform: translateY(-2px);
}

.footer-bottom {
  background: var(--navy);
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-countries {
  font-size: 0.72rem;
  color: rgba(198, 167, 94, 0.6);
  letter-spacing: 0.06em;
}

/* ── Floating WhatsApp ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  transition: transform var(--transition), box-shadow var(--transition);
  color: white !important;
  font-size: 1.4rem;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
  color: white !important;
}

/* ── Scroll to Top ── */
#scrollTop {
  position: fixed;
  bottom: 92px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--navy);
  border: 1px solid rgba(198, 167, 94, 0.4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

#scrollTop.visible {
  opacity: 1;
  visibility: visible;
}

#scrollTop:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── Testimonials ── */
.testimonials-section {
  background: var(--off-white);
}

.testimonial-card {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Form Styles ── */
.kyn-form .form-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.kyn-form .form-control,
.kyn-form .form-select {
  border: 1px solid var(--grey-light);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-body);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.kyn-form .form-control:focus,
.kyn-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 167, 94, 0.12);
  outline: none;
}

/* ── Breadcrumb ── */
.page-hero {
  background: var(--navy);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1200&q=60') center/cover;
  opacity: 0.08;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

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

.page-hero .breadcrumb-divider {
  color: rgba(255, 255, 255, 0.25);
}

/* ── Accreditation/Trust Bar ── */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
  border-bottom: 1px solid rgba(198, 167, 94, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-item i {
  color: var(--gold);
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── Accordion Styling ── */
.accordion-kyn .accordion-item {
  border: 1px solid var(--grey-light);
  border-radius: 0 !important;
  margin-bottom: 8px;
}

.accordion-kyn .accordion-button {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  background: var(--white);
  padding: 20px 24px;
  font-weight: 600;
}

.accordion-kyn .accordion-button:not(.collapsed) {
  background: var(--navy);
  color: var(--gold);
  box-shadow: none;
}

.accordion-kyn .accordion-button::after {
  filter: invert(0.4) sepia(1) hue-rotate(10deg) saturate(3);
}

.accordion-kyn .accordion-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 20px 24px;
  border-top: 1px solid var(--grey-light);
}

/* ── Process Steps ── */
.process-step {
  position: relative;
  padding-left: 64px;
  padding-bottom: 36px;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 1px;
  background: rgba(198, 167, 94, 0.2);
}

.process-step:last-child::before {
  display: none;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--navy);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Alert / Notice ── */
.notice-box {
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
  padding: 20px 24px;
  font-size: 0.875rem;
  color: var(--navy);
  line-height: 1.7;
}

.notice-box strong {
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .navbar-kyn .nav-link {
    padding: 12px 16px !important;
  }

  .navbar-kyn .nav-link::after {
    display: none;
  }

  .navbar-kyn .dropdown-menu {
    border-top: none;
    box-shadow: none;
    background: rgba(7, 21, 40, 0.5);
  }

  .hero-accent {
    display: none;
  }

  .hero-stats {
    gap: 28px;
  }

  .hero-panel {
    margin-top: 48px;
  }

  .feature-image-block img {
    height: 360px;
  }

  .feature-image-block::before {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 64px 0;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-main {
    padding: 56px 0 32px;
  }

  .service-card {
    padding: 28px 24px;
  }
}

@media (max-width: 575.98px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    text-align: center;
    justify-content: center;
  }
}