:root {
    --navy: #0d2b5e;
    --gold: #f5c400;
    --sky: #1e5fa8;
    --white: #ffffff;
    --light: #f4f7fc;
    --text: #1a1a2e;
  }

  .bg-theme{
    background: var(--navy);
  }
  * { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  h1, h2, h3, .display-font {
    font-family: 'Playfair Display', serif;
  }

  /* ── NAVBAR ── */
  .navbar {
    background: linear-gradient(to right, #fff, #fff);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  }
  .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--sky) !important;
    letter-spacing: 0.5px;
  }
  .navbar-brand span { color: var(--sky); }
  .navbar .nav-link {
    color: var(--navy) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
  }
  .navbar .nav-link:hover { color: var(--gold) !important; }
  .navbar .btn-gold {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .navbar .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,196,0,0.4);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--sky) 60%, #2a7dc9 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245,196,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--gold);
    display: block;
  }
  .hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 2rem;
  }
  .btn-hero-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(245,196,0,0.35);
  }
  .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245,196,0,0.5);
    color: var(--navy);
  }
  .btn-hero-outline {
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    margin-left: 1rem;
    transition: all 0.3s;
  }
  .btn-hero-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    color: white;
  }
  .hero-stat {
    text-align: center;
    padding: 1.5rem 1rem;
  }
  .hero-stat .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
  }
  .hero-stat .label {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
  }
  .hero-stat-bar {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 3rem;
    padding-top: 2rem;
  }

  /* ── SECTION TITLES ── */
  .section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem;
  }
  .section-title span { color: var(--sky); }
  .title-bar {
    width: 50px; height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    border-radius: 2px;
    margin-bottom: 1.5rem;
  }

  /* ── WHO WE ARE ── */
  .who-section { padding: 100px 0; background: var(--white); }
  .who-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(13,43,94,0.2);
    position: relative;
  }
  .who-img-wrap img { width: 100%; display: block; object-fit: cover; height: 420px; }
  .who-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    display: flex; align-items: center; gap: 8px;
  }
  .who-text p {
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #555;
  }
  .contact-item i {
    color: var(--sky);
    font-size: 1.1rem;
    width: 22px;
  }
  .contact-item a { color: var(--sky); text-decoration: none; }

  /* ── MISSION/VISION ── */
  .mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy), var(--sky));
    position: relative;
    overflow: hidden;
  }
  .mission-section::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245,196,0,0.12), transparent 70%);
    border-radius: 50%;
  }
  .mission-section .section-label { color: var(--gold); }
  .mission-section .section-title { color: var(--white); }
  .mission-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    height: 100%;
    transition: all 0.3s;
  }
  .mission-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-5px);
  }
  .mission-card .icon {
    width: 56px; height: 56px;
    background: var(--gold);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: var(--navy);
  }
  .mission-card h4 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }
  .mission-card p { color: rgba(255,255,255,0.75); line-height: 1.7; font-size: 0.95rem; margin: 0; }

  /* ── WHY CHOOSE US ── */
  .why-section { padding: 100px 0; background: var(--light); }
  .why-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 40px rgba(13,43,94,0.08);
    height: 100%;
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
  }
  .why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(13,43,94,0.15);
    border-bottom-color: var(--gold);
  }
  .why-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--light);
    line-height: 1;
    margin-bottom: 0.5rem;
    -webkit-text-stroke: 2px var(--navy);
  }
  .why-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
  }
  .why-card p { color: #666; line-height: 1.7; font-size: 0.95rem; margin: 0; }
  .quote-banner {
    background: var(--navy);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
  }
  .quote-banner::after {
    content: '"';
    position: absolute;
    top: -20px; right: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 15rem;
    color: rgba(245,196,0,0.08);
    line-height: 1;
    pointer-events: none;
  }
  .quote-banner p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: white;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .quote-banner p span { color: var(--gold); }

  /* ── OPPORTUNITIES / COUNTRIES ── */
  .opportunities-section { padding: 100px 0; background: white; }
  .country-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    transition: all 0.25s;
    cursor: default;
    margin: 0.4rem;
  }
  .country-pill:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
    transform: scale(1.05);
  }
  .country-pill .flag { font-size: 1.4rem; }
  .opportunity-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(13,43,94,0.1);
    transition: transform 0.3s;
    height: 100%;
  }
  .opportunity-card:hover { transform: translateY(-8px); }
  .opp-header {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .opp-header.china { background: linear-gradient(135deg, #c0392b, #e74c3c); }
  .opp-header.europe { background: linear-gradient(135deg, #154f8a, #1e5fa8); }
  .opp-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
  }
  .opp-header h3 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.4rem;
    margin: 0;
  }
  .opp-header p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin: 0; }
  .opp-body { background: white; padding: 1.75rem; }
  .opp-body p { color: #555; line-height: 1.7; font-size: 0.95rem; }
  .docs-list { list-style: none; padding: 0; margin: 0; }
  .docs-list li {
    display: flex; align-items: center; gap: 10px;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #444;
  }
  .docs-list li:last-child { border-bottom: none; }
  .docs-list li i { color: var(--sky); font-size: 0.9rem; }

  /* ── SERVICES ── */
  .services-section { padding: 100px 0; background: var(--light); }
  .service-icon-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(13,43,94,0.07);
    transition: all 0.3s;
    height: 100%;
  }
  .service-icon-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(13,43,94,0.14);
  }
  .service-icon-card .svc-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--navy), var(--sky));
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
    color: var(--gold);
    transition: transform 0.3s;
  }
  .service-icon-card:hover .svc-icon { transform: rotate(-5deg) scale(1.1); }
  .service-icon-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
  }
  .service-icon-card p { color: #777; font-size: 0.88rem; line-height: 1.6; margin: 0; }

  /* ── JOBS ── */
  .jobs-section { padding: 100px 0; background: white; }
  .job-tag {
    display: inline-block;
    background: var(--light);
    color: var(--navy);
    border-radius: 8px;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.3rem;
    border: 1px solid #dde5f3;
    transition: all 0.2s;
  }
  .job-tag:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
  }
  .salary-highlight {
    background: linear-gradient(135deg, var(--gold), #e8a800);
    color: var(--navy);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
  }
  .salary-highlight .amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    display: block;
  }
  .salary-highlight .sublabel { font-size: 0.85rem; font-weight: 600; opacity: 0.75; }

  /* ── CTA ── */
  .cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--sky) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(245,196,0,0.08), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
  }
  .cta-section h2 {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
  }
  .cta-section h2 span { color: var(--gold); }
  .cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2.5rem; }
  .btn-cta {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(245,196,0,0.4);
  }
  .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(245,196,0,0.55);
    color: var(--navy);
  }
  .btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-left: 1rem;
    transition: all 0.3s;
  }
  .btn-cta-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    color: white;
  }

  /* ── FOOTER ── */
  footer {
    background: #070e1e;
    color: rgba(255,255,255,0.6);
    padding: 60px 0 30px;
  }
  .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1rem;
  }
  .footer-brand span { color: var(--gold); }
  footer h6 {
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  .footer-link {
    display: block;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
  }
  .footer-link:hover { color: var(--gold); }
  .footer-contact {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
  }
  .footer-contact i { color: var(--gold); margin-top: 3px; min-width: 16px; }
  .footer-contact a { color: rgba(255,255,255,0.6); text-decoration: none; }
  .footer-contact a:hover { color: var(--gold); }
  .footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 2.5rem 0 1.5rem;
  }
  .footer-bottom { font-size: 0.82rem; }

  /* ── ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }
  .delay-4 { transition-delay: 0.4s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .hero { min-height: auto; padding: 80px 0 60px; }
    .btn-hero-outline { margin-left: 0; margin-top: 0.75rem; }
    .hero-stat-bar { display: none; }
    .quote-banner { padding: 2rem 1.5rem; }
  }

   /* HERO */
   .gallery-hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #0a1628 0%, #0d2b5e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .gallery-hero::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(245,196,0,0.12), transparent 70%);
  }
  .gallery-hero .label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  .gallery-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
  }
  .gallery-hero h1 em {
    font-style: normal;
    color: var(--gold);
  }
  .gallery-hero p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
  }

  /* FILTER TABS */
  .filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
  }
  .filter-btn {
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65);
    border-radius: 50px;
    padding: 0.5rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
  }
  .filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
  }

  /* MASONRY / GRID */
  .gallery-section { padding: 0 0 80px; }
  .gallery-grid {
    columns: 3;
    column-gap: 16px;
  }
  @media (max-width: 900px) { .gallery-grid { columns: 2; } }
  @media (max-width: 560px) { .gallery-grid { columns: 1; } }

  .gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
  }
  .gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
    border-radius: 16px;
  }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,0.85) 100%);
    opacity: 0;
    transition: opacity 0.35s;
    border-radius: 16px;
    display: flex; align-items: flex-end; padding: 1.25rem;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .overlay-content h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: white;
    margin: 0 0 0.2rem;
  }
  .overlay-content span {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
  }
  .zoom-icon {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    background: rgba(245,196,0,0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    font-size: 0.85rem;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s;
  }
  .gallery-item:hover .zoom-icon {
    opacity: 1;
    transform: scale(1);
  }

  /* FEATURED BANNER */
  .featured-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--navy), var(--sky));
  }
  .featured-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.75rem;
  }
  .featured-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: white;
    margin-bottom: 1rem;
  }
  .featured-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
  }
  .feat-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  }
  .feat-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
  }

  /* LIGHTBOX */
  .lightbox {
    display: none;
    position: fixed; inset: 0;
    background: rgba(5,10,20,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
  }
  .lightbox.open { display: flex; }
  .lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
  }
  @keyframes zoomIn {
    from { opacity:0; transform: scale(0.88); }
    to   { opacity:1; transform: scale(1); }
  }
  .lightbox-inner img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 100px rgba(0,0,0,0.7);
    display: block;
  }
  .lb-close {
    position: absolute;
    top: -14px; right: -14px;
    width: 40px; height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    font-weight: 700;
  }
  .lb-prev, .lb-next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
  }
  .lb-prev { left: -60px; }
  .lb-next { right: -60px; }
  .lb-prev:hover, .lb-next:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
  }
  .lb-caption {
    text-align: center;
    margin-top: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
  }
  .lb-caption strong { color: var(--gold); }

  /* STATS STRIP */
  .stats-strip {
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 2rem 0;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
  }
  .stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 500; }

  /* CTA */
  .gallery-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #0a1628, #051020);
  }
  .gallery-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: white; margin-bottom: 0.75rem; }
  .gallery-cta h2 span { color: var(--gold); }
  .gallery-cta p { color: rgba(255,255,255,0.55); margin-bottom: 2rem; }
  .btn-gold-cta {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(245,196,0,0.3);
  }
  .btn-gold-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(245,196,0,0.5);
    color: var(--navy);
  }

  /* FADE IN */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .fade-up.visible { opacity:1; transform:translateY(0); }
  .d1 { transition-delay: 0.1s; }
  .d2 { transition-delay: 0.2s; }
  .d3 { transition-delay: 0.3s; }

      /* ── SOCIAL PROOF ── */
      .social-proof-section { padding: 100px 0; background: var(--light); }
 
      .proof-featured {
        display: flex;
        gap: 0;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 70px rgba(13,43,94,0.15);
        margin-bottom: 2rem;
        background: white;
      }
      .proof-featured-img {
        width: 300px;
        flex-shrink: 0;
        position: relative;
        background: var(--navy);
      }
      .proof-featured-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        display: block;
        min-height: 340px;
      }
      .proof-img-label {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        background: rgba(10,22,40,0.78);
        color: rgba(255,255,255,0.8);
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        backdrop-filter: blur(4px);
      }
      .proof-featured-body {
        padding: 2.5rem 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
      }
      .proof-president-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(13,43,94,0.07);
        border: 1.5px solid rgba(13,43,94,0.15);
        border-radius: 50px;
        padding: 0.4rem 1.1rem;
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 1.25rem;
        width: fit-content;
        letter-spacing: 0.3px;
      }
      .proof-president-tag i { color: var(--sky); font-size: 0.95rem; }
      .proof-name {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        color: var(--navy);
        margin: 0 0 0.25rem;
      }
      .proof-role {
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--sky);
        margin: 0 0 1.25rem;
      }
      .proof-quote {
        border-left: 4px solid var(--gold);
        margin: 0 0 1.75rem;
        padding: 0.75rem 1.25rem;
        background: rgba(245,196,0,0.06);
        border-radius: 0 10px 10px 0;
        font-size: 1rem;
        color: #333;
        line-height: 1.75;
        font-style: italic;
      }
      .proof-quote strong { color: var(--navy); font-style: normal; }
      .proof-stats-row {
        display: flex;
        align-items: center;
        gap: 2rem;
      }
      .proof-stat-num {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 900;
        color: var(--navy);
        display: block;
        line-height: 1.1;
      }
      .proof-stat-lbl {
        font-size: 0.78rem;
        color: #777;
        font-weight: 500;
      }
      .proof-stat-divider {
        width: 1px;
        height: 40px;
        background: #ddd;
      }
   
      /* Testimonial cards */
      .testi-card {
        background: white;
        border-radius: 20px;
        padding: 1.75rem;
        box-shadow: 0 6px 30px rgba(13,43,94,0.07);
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: all 0.3s;
        border-bottom: 3px solid transparent;
      }
      .testi-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 50px rgba(13,43,94,0.13);
        border-bottom-color: var(--gold);
      }
      .testi-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 1rem; letter-spacing: 2px; }
      .testi-text { color: #555; font-size: 0.95rem; line-height: 1.75; flex: 1; margin-bottom: 1.25rem; font-style: italic; }
      .testi-footer { display: flex; align-items: center; gap: 12px; border-top: 1px solid #f0f0f0; padding-top: 1rem; }
      .testi-avatar {
        width: 40px; height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--navy), var(--sky));
        color: white;
        font-size: 0.8rem;
        font-weight: 700;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
      }
      .testi-name { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin: 0 0 0.15rem; }
      .testi-loc { font-size: 0.75rem; color: #888; margin: 0; }
      .testi-loc i { color: var(--sky); font-size: 0.7rem; }
      .testi-year { margin-left: auto; font-size: 0.75rem; color: #aaa; border: 1px solid #eee; border-radius: 6px; padding: 2px 8px; flex-shrink: 0; }
   
      @media (max-width: 768px) {
        .proof-featured { flex-direction: column; }
        .proof-featured-img { width: 100%; height: 260px; }
        .proof-featured-img img { min-height: 260px; }
        .proof-featured-body { padding: 1.75rem; }
        .proof-stats-row { gap: 1rem; }
      }

/* ── REKENING NOTICE ── */
.footer-rekening {
  background: rgba(245,196,0,0.1);
  border: 1px solid rgba(245,196,0,0.25);
  border-radius: 12px;
  padding: 0.85rem 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-rekening-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.88rem;
}
.footer-rekening-inner > .bi-shield-lock-fill {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.footer-rekening-label {
  color: rgba(255,255,255,0.75);
}
.footer-rekening-bank {
  color: white;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-rekening-bank .bi-bank2 {
  color: var(--gold);
}
.footer-rekening-bank strong {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* ── NAVBAR ── */
.kc-navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  padding: 0.9rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.kc-navbar-brand { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: white; text-decoration: none; }
.kc-navbar-brand span { color: var(--gold); }
.kc-btn-back {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 600;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50px; padding: 0.4rem 1rem;
  transition: all 0.2s;
}
.kc-btn-back:hover { color: white; border-color: var(--gold); }

/* ── HERO ── */
.kc-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.kc-hero img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.kc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,43,94,0.2) 0%, rgba(13,43,94,0.85) 70%, var(--navy) 100%);
}
.kc-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 3rem 2rem;
}
.kc-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: white; line-height: 1.15; margin-bottom: 0.5rem;
}
.kc-hero-content h1 span { color: var(--gold); }
.kc-hero-quote {
  display: inline-block;
  background: rgba(13,43,94,0.75);
  backdrop-filter: blur(6px);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 0.85rem 1.4rem;
  margin-top: 1rem;
  max-width: 480px;
}
.kc-hero-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--gold); margin-bottom: 0.2rem;
  font-style: italic;
}
.kc-hero-quote em { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* ── TABS ── */
.kc-tab-bar {
  background: var(--navy);
  display: flex; justify-content: center;
  gap: 0; border-bottom: 2px solid rgba(255,255,255,0.1);
  overflow-x: auto;
  position: sticky; top: 64px; z-index: 50;
}
.kc-tab-btn {
  background: none; border: none;
  color: rgba(255,255,255,0.55);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 1rem 1.6rem;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all 0.2s;
}
.kc-tab-btn.active, .kc-tab-btn:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── SECTIONS ── */
.kc-tab-pane { display: none; }
.kc-tab-pane.active { display: block; }
.kc-section-wrap { max-width: 860px; margin: 0 auto; padding: 3.5rem 2rem; }

.kc-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; color: var(--navy);
  margin-bottom: 0.5rem;
}
.kc-section-subtitle {
  color: #666; font-size: 0.95rem; margin-bottom: 2.5rem; line-height: 1.7;
}
.kc-gold-line {
  width: 52px; height: 4px;
  background: var(--gold); border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ── INTRO BAND ── */
.kc-intro-band {
  background: var(--navy); color: white;
  padding: 2.5rem 3rem;
  display: flex; gap: 2rem; align-items: flex-start;
  flex-wrap: wrap;
}
.kc-intro-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem;
}
.kc-intro-band p { line-height: 1.8; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.kc-intro-bullets { list-style: none; padding: 0; margin-top: 1rem; }
.kc-intro-bullets li {
  padding: 0.4rem 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  display: flex; align-items: center; gap: 10px;
}
.kc-intro-bullets li i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }

/* ── FASILITAS ── */
.kc-facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.kc-facility-card {
  background: var(--light);
  border-radius: 18px;
  padding: 1.5rem 1rem;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.kc-facility-card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--gold);
  box-shadow: 0 10px 30px rgba(13,43,94,0.1);
}
.kc-facility-card i { font-size: 2rem; color: var(--sky); display: block; margin-bottom: 0.75rem; }
.kc-facility-card span { font-size: 0.82rem; font-weight: 700; color: var(--navy); }

/* ── BEASISWA / DETAIL BIAYA ── */
.kc-beasiswa-type {
  margin-bottom: 2.5rem;
}
.kc-beasiswa-type-label {
  font-size: 0.72rem; font-weight: 900; letter-spacing: 2px;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 0.4rem;
}
.kc-beasiswa-type h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--navy); margin-bottom: 0.5rem;
}
.kc-beasiswa-type p {
  color: #555; line-height: 1.75; font-size: 0.92rem; margin-bottom: 1rem;
}
.kc-beasiswa-covers {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem;
}
.kc-cover-tag {
  background: rgba(30,95,168,0.08);
  border: 1px solid rgba(30,95,168,0.2);
  border-radius: 50px; padding: 0.3rem 0.85rem;
  font-size: 0.78rem; font-weight: 700; color: var(--sky);
}
.kc-deadline-alert {
  background: rgba(245,196,0,0.12);
  border: 1.5px solid rgba(245,196,0,0.4);
  border-radius: 12px;
  padding: 0.7rem 1.1rem;
  font-size: 0.83rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: 8px;
  margin-top: 0.5rem;
}
.kc-deadline-alert i { color: var(--gold); }

/* Deadline cards */
.kc-deadline-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin: 2rem 0;
}
.kc-deadline-card {
  border: 2px solid #b2dfdb;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy) !important;
}
.kc-deadline-head {
  padding: 1rem 1.25rem 0.5rem;
}
.kc-deadline-badge {
  font-size: 0.73rem; font-weight: 900;
  letter-spacing: 1.5px; color: var(--gold);
  display: block; margin-bottom: 0.35rem;
}
.kc-sch-list { padding: 0 0.75rem 0.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.kc-sch-item {
  background: var(--teal-dark);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  text-align: center;
}
.kc-sch-item-name {
  font-size: 0.8rem; font-weight: 900;
  letter-spacing: 0.5px; color: white;
  margin-bottom: 4px;
}
.kc-sch-item ul {
  list-style: none; padding: 0; margin: 0;
  font-size: 0.76rem; color: rgba(255,255,255,0.8);
}
.kc-sch-item ul li::before { content: "· "; }

/* Biaya table */
.kc-biaya-table-wrap {
  overflow-x: auto; margin: 1.5rem 0;
}
.kc-biaya-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.88rem;
}
.kc-biaya-table th {
  background: var(--navy); color: white;
  padding: 0.85rem 1rem; text-align: left;
  font-weight: 700; font-size: 0.8rem;
}
.kc-biaya-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #eee;
  color: #333;
}
.kc-biaya-table tr:last-child td {
  background: rgba(13,43,94,0.05);
  font-weight: 700; color: var(--navy);
}
.kc-biaya-table td:last-child { font-weight: 700; color: var(--sky); }

.kc-biaya-packages { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.kc-biaya-pkg {
  background: var(--light); border-radius: 16px;
  padding: 1.25rem; border-top: 4px solid var(--sky);
  transition: all 0.2s;
}
.kc-biaya-pkg:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(13,43,94,0.1); }
.kc-biaya-pkg.featured { border-top-color: var(--gold); background: var(--navy); }
.kc-biaya-pkg-level { font-size: 0.72rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; color: var(--sky); margin-bottom: 0.3rem; }
.kc-biaya-pkg.featured .kc-biaya-pkg-level { color: var(--gold); }
.kc-biaya-pkg-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--navy); line-height: 1; }
.kc-biaya-pkg.featured .kc-biaya-pkg-price { color: white; }
.kc-biaya-pkg-idr { font-size: 0.78rem; color: #888; margin-top: 4px; }
.kc-biaya-pkg.featured .kc-biaya-pkg-idr { color: rgba(255,255,255,0.6); }

.kc-includes-title { font-size: 0.82rem; font-weight: 700; color: var(--navy); margin: 1.5rem 0 0.75rem; }
.kc-includes-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.kc-inc-tag {
  background: white; border: 1px solid #ddd; border-radius: 50px;
  padding: 0.3rem 0.85rem; font-size: 0.76rem; color: #444;
}

/* ── JURUSAN ── */
.kc-jurusan-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem;
}
.kc-jurusan-card {
  background: var(--light); border-radius: 18px; padding: 1.5rem;
  border-left: 5px solid var(--sky);
  transition: all 0.2s;
}
.kc-jurusan-card:hover { border-left-color: var(--gold); transform: translateX(4px); }
.kc-jurusan-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem;
}
.kc-jurusan-card p { font-size: 0.83rem; color: #555; line-height: 1.65; }
.kc-jurusan-subjects { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.kc-subj-tag {
  background: white; border: 1px solid #d0dff5;
  border-radius: 50px; padding: 0.2rem 0.7rem;
  font-size: 0.73rem; font-weight: 600; color: var(--sky);
}

/* ── ALUMNI (placeholder) ── */
.kc-alumni-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.kc-alumni-card {
  background: var(--light); border-radius: 18px; padding: 1.25rem;
  display: flex; align-items: flex-start; gap: 12px;
}
.kc-alumni-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  color: white; font-size: 0.82rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kc-alumni-name { font-weight: 700; color: var(--navy); font-size: 0.9rem; margin-bottom: 2px; }
.kc-alumni-uni { font-size: 0.78rem; color: #666; margin-bottom: 2px; }
.kc-alumni-now { font-size: 0.75rem; color: var(--sky); font-weight: 600; }

/* ── STEPS ── */
.kc-steps-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.kc-step-card {
  background: var(--light); border-radius: 18px; padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.kc-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; color: var(--gold);
  line-height: 1; flex-shrink: 0; width: 44px;
}
.kc-step-title { font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.kc-step-body { font-size: 0.83rem; color: #555; line-height: 1.65; }
.kc-step-docs { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.6rem; }
.kc-step-doc {
  background: white; border: 1px solid #d0dff5;
  border-radius: 6px; padding: 0.2rem 0.55rem;
  font-size: 0.72rem; color: var(--sky); font-weight: 600;
}

/* ── IMPORTANT DATES ── */
.kc-dates-strip {
  background: var(--navy); padding: 2.5rem 3rem;
}
.kc-dates-strip h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold); font-size: 1.6rem; margin-bottom: 2rem;
  display: flex; align-items: center; gap: 10px;
}
.kc-dates-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.kc-date-item {
  border-left: 2px solid rgba(255,255,255,0.15);
  padding-left: 1rem;
}
.kc-date-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900; color: var(--gold);
  line-height: 1; margin-bottom: 0.5rem;
}
.kc-date-title { font-size: 0.78rem; font-weight: 700; color: white; margin-bottom: 0.25rem; }
.kc-date-val { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ── CTA ── */
.kc-cta-band {
  background: linear-gradient(135deg, var(--sky) 0%, var(--navy) 100%);
  text-align: center; padding: 3.5rem 2rem;
  color: white;
}
.kc-cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; margin-bottom: 0.75rem;
}
.kc-cta-band p { font-size: 1rem; opacity: 0.85; margin-bottom: 2rem; }
.kc-btn-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: 1rem;
  border-radius: 50px; padding: 0.9rem 2.2rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
}
.kc-btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,196,0,0.4); }

@media (max-width: 768px) {
  .kc-hero { height: 360px; }
  .kc-hero-content { padding: 1.5rem; }
  .kc-intro-band { padding: 1.75rem; }
  .kc-deadline-grid { grid-template-columns: 1fr; }
  .kc-jurusan-grid { grid-template-columns: 1fr; }
  .kc-steps-wrap { grid-template-columns: 1fr; }
  .kc-dates-grid { grid-template-columns: repeat(3, 1fr); }
  .kc-biaya-packages { grid-template-columns: repeat(2, 1fr); }
  .kc-dates-strip { padding: 2rem 1.5rem; }
  .kc-section-wrap { padding: 2.5rem 1.25rem; }
}
@media (max-width: 480px) {
  .kc-dates-grid { grid-template-columns: repeat(2, 1fr); }
  .kc-biaya-packages { grid-template-columns: 1fr 1fr; }
}

/* ── HERO ── */
.ke-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #154f8a 60%, var(--sky) 100%);
  padding: 80px 0 60px; position: relative; overflow: hidden;
}
.ke-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,196,0,0.13) 0%, transparent 70%);
  border-radius: 50%;
}
.ke-hero::after {
  content: '';
  position: absolute; bottom: -120px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.ke-hero-label {
  font-size: 0.73rem; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.ke-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; color: white; line-height: 1.15; margin-bottom: 1rem;
}
.ke-hero h1 em { font-style: normal; color: var(--gold); display: block; }
.ke-hero-sub {
  color: rgba(255,255,255,0.8); font-size: 1.05rem;
  line-height: 1.75; max-width: 540px; margin-bottom: 2rem;
}
.ke-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: 1rem; border: none;
  border-radius: 50px; padding: 0.9rem 2.2rem;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(245,196,0,0.4);
}
.ke-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(245,196,0,0.55);
  color: var(--navy);
}
.ke-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: white;
  font-weight: 700; font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 50px; padding: 0.9rem 2.2rem;
  text-decoration: none; transition: all 0.3s; margin-left: 0.75rem;
}
.ke-btn-outline:hover {
  border-color: white; background: rgba(255,255,255,0.1); color: white;
}

/* Hero stats */
.ke-stat-bar {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 3rem; padding-top: 2rem;
}
.ke-stat { text-align: center; }
.ke-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; color: var(--gold);
  display: block; line-height: 1.1;
}
.ke-stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 500; }

/* ── NEWS CARD (Prabowo) ── */
.ke-news-section { background: var(--light); padding: 70px 0; }
.ke-news-card {
  background: white; border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(13,43,94,0.12);
  display: flex; align-items: stretch;
}
.ke-news-img {
  width: 340px; flex-shrink: 0; position: relative; overflow: hidden;
}
.ke-news-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.ke-news-badge {
  position: absolute; top: 16px; left: 16px;
  background: white; color: #c0392b;
  font-size: 0.7rem; font-weight: 900; letter-spacing: 1px;
  padding: 0.3rem 0.8rem; border-radius: 6px;
  display: flex; align-items: center; gap: 5px;
}
.ke-news-body {
  padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; flex: 1;
}
.ke-news-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,43,94,0.07); border: 1.5px solid rgba(13,43,94,0.14);
  border-radius: 50px; padding: 0.35rem 1rem;
  font-size: 0.75rem; font-weight: 800; color: var(--navy);
  margin-bottom: 1.25rem; width: fit-content; letter-spacing: 0.3px;
}
.ke-news-tag i { color: var(--sky); }
.ke-news-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.3;
}
.ke-news-source { font-size: 0.8rem; color: #888; margin-bottom: 1.25rem; }
.ke-news-quote {
  border-left: 4px solid var(--gold);
  padding: 0.75rem 1.25rem;
  background: rgba(245,196,0,0.06);
  border-radius: 0 10px 10px 0;
  font-size: 0.95rem; color: #333; line-height: 1.75;
  font-style: italic; margin-bottom: 1.5rem;
}
.ke-news-quote strong { color: var(--navy); font-style: normal; }
.ke-stats-row { display: flex; gap: 2rem; align-items: center; }
.ke-stats-row-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 900; color: var(--navy);
  display: block; line-height: 1.1;
}
.ke-stats-row-lbl { font-size: 0.75rem; color: #777; font-weight: 500; }
.ke-divider { width: 1px; height: 40px; background: #ddd; }

/* ── KEUNGGULAN ── */
.ke-why-section { padding: 80px 0; background: white; }
.ke-section-label {
  font-size: 0.73rem; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--sky); margin-bottom: 0.6rem;
}
.ke-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900;
  color: var(--navy); margin-bottom: 0.5rem; line-height: 1.2;
}
.ke-section-title span { color: var(--sky); }
.ke-gold-bar { width: 48px; height: 4px; background: var(--gold); border-radius: 2px; margin-bottom: 2rem; }
.ke-why-card {
  background: var(--light); border-radius: 20px;
  padding: 2rem 1.75rem; height: 100%;
  border-bottom: 4px solid transparent;
  transition: all 0.3s;
}
.ke-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(13,43,94,0.1);
  border-bottom-color: var(--gold);
  background: white;
}
.ke-why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
  margin-bottom: 1.25rem;
}
.ke-why-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem;
}
.ke-why-card p { font-size: 0.88rem; color: #555; line-height: 1.7; margin: 0; }

/* ── FASILITAS BAND ── */
.ke-facilities-band {
  background: linear-gradient(135deg, var(--navy), var(--sky));
  padding: 70px 0;
}
.ke-fac-item {
  text-align: center; padding: 1rem;
}
.ke-fac-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--gold);
  margin: 0 auto 0.85rem;
  transition: all 0.3s;
}
.ke-fac-item:hover .ke-fac-icon {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
  transform: translateY(-4px);
}
.ke-fac-item span {
  font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.85); display: block;
}

/* ── JOB SECTORS ── */
.ke-jobs-section { padding: 80px 0; background: var(--light); }
.ke-sector-card {
  background: white; border-radius: 20px;
  overflow: hidden; height: 100%;
  box-shadow: 0 6px 30px rgba(13,43,94,0.07);
  transition: all 0.3s;
}
.ke-sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 55px rgba(13,43,94,0.13);
}
.ke-sector-head {
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 12px;
}
.ke-sector-head.lapangan { background: linear-gradient(135deg, #2e7d32, #43a047); }
.ke-sector-head.teknis   { background: linear-gradient(135deg, #1565c0, #1976d2); }
.ke-sector-head.jasa     { background: linear-gradient(135deg, #6a1b9a, #8e24aa); }
.ke-sector-head.logistik { background: linear-gradient(135deg, #e65100, #f57c00); }
.ke-sector-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.2); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.ke-sector-head h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: white; margin: 0;
}
.ke-sector-head p { font-size: 0.75rem; color: rgba(255,255,255,0.75); margin: 0; }
.ke-sector-body { padding: 1.25rem 1.5rem; }
.ke-job-tag {
  display: inline-block;
  background: var(--light); color: var(--navy);
  border: 1px solid #dde5f3; border-radius: 8px;
  padding: 0.35rem 0.85rem; font-size: 0.8rem; font-weight: 600;
  margin: 0.25rem; transition: all 0.2s;
}
.ke-job-tag:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ── BIAYA ── */
.ke-biaya-section { padding: 80px 0; background: white; }
.ke-biaya-total {
  background: var(--navy); border-radius: 24px;
  padding: 2.5rem; text-align: center; margin-bottom: 2.5rem;
}
.ke-biaya-total-label { font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.ke-biaya-total-price {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900; color: white; line-height: 1;
}
.ke-biaya-total-price span { font-size: 1.5rem; vertical-align: super; }
.ke-biaya-total-sub { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.5rem; }

.ke-payment-step {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; border-radius: 16px;
  background: var(--light); margin-bottom: 1rem;
  transition: all 0.2s;
}
.ke-payment-step:hover { background: #e8eeff; }
.ke-payment-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.ke-payment-title { font-weight: 700; color: var(--navy); font-size: 0.92rem; margin-bottom: 0.2rem; }
.ke-payment-desc { font-size: 0.82rem; color: #666; line-height: 1.6; margin: 0; }
.ke-payment-amount {
  margin-left: auto; flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 900; color: var(--sky);
  white-space: nowrap;
}
.ke-includes-title { font-size: 0.82rem; font-weight: 800; color: var(--navy); margin: 1.75rem 0 0.75rem; letter-spacing: 0.3px; }
.ke-inc-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ke-inc-tag {
  background: var(--light); border: 1px solid #dde5f3;
  border-radius: 50px; padding: 0.3rem 0.9rem;
  font-size: 0.77rem; color: #444; font-weight: 600;
}
.ke-cicilan-note {
  background: rgba(245,196,0,0.1);
  border: 1.5px solid rgba(245,196,0,0.35);
  border-radius: 14px; padding: 1.1rem 1.4rem;
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 1.25rem;
}
.ke-cicilan-note i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.ke-cicilan-note p { font-size: 0.83rem; color: var(--navy); line-height: 1.65; margin: 0; }

/* ── STEPS ── */
.ke-steps-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #154f8a 100%);
  position: relative; overflow: hidden;
}
.ke-steps-section::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,196,0,0.1), transparent 70%);
  border-radius: 50%;
}
.ke-step-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px; padding: 2rem;
  height: 100%; transition: all 0.3s;
}
.ke-step-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
}
.ke-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900; color: var(--gold);
  line-height: 1; margin-bottom: 0.75rem;
}
.ke-step-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: white; margin-bottom: 0.6rem;
}
.ke-step-card p { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin: 0; }
.ke-step-docs { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.75rem; }
.ke-step-doc {
  background: rgba(255,255,255,0.12); border-radius: 6px;
  padding: 0.2rem 0.6rem; font-size: 0.72rem;
  color: rgba(255,255,255,0.85); font-weight: 600;
}

/* ── CTA ── */
.ke-cta-section {
  background: var(--navy); padding: 80px 0;
  text-align: center; position: relative; overflow: hidden;
}
.ke-cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,196,0,0.07), transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.ke-cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 5vw, 3rem); color: white; margin-bottom: 0.75rem;
}
.ke-cta-section h2 span { color: var(--gold); }
.ke-cta-section p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .ke-news-card { flex-direction: column; }
  .ke-news-img { width: 100%; height: 260px; }
  .ke-stats-row { gap: 1rem; }
  .ke-hero { padding: 60px 0 40px; }
  .ke-btn-outline { margin-left: 0; margin-top: 0.75rem; }
  .ke-biaya-total-price { font-size: 2.5rem; }
}