@import url('font.css');
@import url('animate.min.css');

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

:root {
  --orange: #E8692A;
  --orange-dark: #C8521A;
  --blue: #1B6CA8;
  --blue-dark: #0D4F80;
  --teal: #1A5F6B;
  --dark: #0A0E1A;
  --white: #FFFFFF;
  --light-bg: #edf3fc;
  --text-dark: #1A1E2E;
  --text-mid: #4A5368;
  --text-light: #8A96AA;
  --font: "Figtree", "Figtree Placeholder", sans-serif;
  --font-body: "Figtree", "Figtree Placeholder", sans-serif;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

ul {
    list-style: none;
}

h2 {
  font-size: 55px;
  font-weight: 600;
}

/* ===================== PAGES ===================== */
.page { display: none; }
.page.active { display: block; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 30px; left: 0; right: 0;
  z-index: 1000;
}
.navbar.scrolled {
  top: 40px;
  animation: BackInDown 0.3s ease;

}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
    width: 73px;
    height: 84px;
}

/* Nav links */
.nav-links {
    display: flex;
    gap: 28px;
    margin: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    /* padding: 12px 60px; */
}

.nav-links a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 20px;
    text-decoration: none;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Dropdown */
/* Kontainer Utama */
.dropdown {
  position: relative;
  display: inline-block;
  align-content: center;
}

/* Tombol Dropdown */
.dropbtn {
  background-color: #3498db;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

/* Isi Dropdown (Disembunyikan secara default) */
.dropdown-content {
  display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 230px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
    top: 58px;
}

/* Link di dalam dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  border-radius: 10px;
  align-items: center;
}

/* Ubah warna link saat di-hover */
.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Tampilkan menu saat tombol di-hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Ubah warna tombol saat dropdown aktif */
.dropdown:hover .dropbtn {
  background-color: #2980b9;
}

.dropdown-icon {
  margin-right: 10px;
}

/* CTA Button */
.btn-protected {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background: var(--orange);
  border: none;
  padding: 20px 30px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-protected:hover { background: var(--orange-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg-img {
position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 75px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-sub {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
    margin: 0 auto 2rem;
    line-height: 1.3;;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Backgrounds */
.hero-home {
  background: linear-gradient(135deg, #0D1B2A 0%, #1B4080 50%, #1A2A5A 100%);
      min-height: 100vh;
}
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1400&q=80') center/cover; */
  opacity: 0.25;
}
.hero-home .hero-overlay {
  /* background: linear-gradient(135deg, rgba(13,27,42,0.8) 0%, rgba(27,64,128,0.7) 100%); */
  background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 56, 69, 0.75) 100%);
}

.hero-orange {
  background: #1A1A2E;
  min-height: 440px;
}
.hero-orange::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?w=1400&q=80') center/cover; */
  opacity: 0.3;
}
.hero-orange .hero-overlay {
  background: linear-gradient(135deg, rgba(180,70,20,0.75) 0%, rgba(20,20,40,0.85) 100%);
}

.hero-dark-blue {
  background: #0A0E1A;
  min-height: 440px;
}
.hero-dark-blue::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1400&q=80') center/cover; */
  opacity: 0.2;
}
.hero-dark-blue .hero-overlay {
  /* background: linear-gradient(135deg, rgba(10,14,26,0.85) 0%, rgba(27,108,168,0.5) 100%); */
  background: linear-gradient(#000000b5 0%,#000000b0 100%);
}

.hero-dark {
  background: #0A0E1A;
  min-height: 440px;
}
.hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80') center/cover; */
  opacity: 0.25;
}
.hero-dark .hero-overlay {
  background: rgba(10,14,26,0.7);
}

.hero-healthcare {
  background: #1A2A3A;
  min-height: 360px;
}
.hero-healthcare::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1400&q=80') center/cover; */
  opacity: 0.3;
}
.hero-healthcare .hero-overlay {
  background: linear-gradient(135deg, rgba(180,70,20,0.6) 0%, rgba(10,14,26,0.75) 100%);
}

.hero-education {
  background: #1A2A3A;
  min-height: 800px;
}
.hero-education::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1400&q=80') center/cover; */
  opacity: 0.3;
}
.hero-education .hero-overlay {
  background: linear-gradient(135deg, rgba(180,70,20,0.6) 0%, rgba(10,14,26,0.75) 100%);
}

.hero-financial {
  background: #1A2030;
  min-height: 360px;
}
.hero-financial::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: url('https://images.unsplash.com/photo-1563986768609-322da13575f3?w=1400&q=80') center/cover; */
  opacity: 0.3;
}
.hero-financial .hero-overlay {
  background: linear-gradient(135deg, rgba(180,70,20,0.55) 0%, rgba(10,14,26,0.8) 100%);
}

.hero-enterprises {
  background: #1A2030;
  min-height: 360px;
}
.hero-enterprises::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1400&q=80') center/cover; */
  opacity: 0.25;
}
.hero-enterprises .hero-overlay {
  background: linear-gradient(135deg, rgba(10,14,26,0.8) 0%, rgba(27,108,168,0.55) 100%);
}

.hero-blue {
  /* background: linear-gradient(135deg, #0D1B5A 0%, #1B4CA8 100%); */
  background: #184fa1;
  min-height: 300px;
}
.hero-blue .hero-overlay {
  background: linear-gradient(135deg, rgba(13,27,90,0.6) 0%, rgba(27,76,168,0.5) 100%);
}

/* ===================== BUTTONS ===================== */
.btn-orange {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-weight: 600;
  font-size: 18px;
  padding: 20px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(232,105,42,0.35);
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,105,42,0.45);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 20px 30px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 20px 30px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  transition: background 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }

.btn-learn {
  font-size: 1.15rem;
    font-weight: 600;
    color: white;
    background: var(--orange);
    border: none;
    padding: 20px 30px;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
    white-space: nowrap;
}
.btn-learn:hover { background: var(--orange-dark); }

/* ===================== SECTIONS ===================== */
.container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-white { padding: 80px 0; background: #FFFFFF; }
.section-light { padding: 80px 0; background: var(--light-bg); }
.section-teal { padding: 80px 0; background: radial-gradient(50% 50%, rgb(56, 144, 171) 0.202351%, rgb(30, 99, 120) 100%); }
.text-center { text-align: center; }
.mt-3 { margin-top: 2rem; }

.section-title-dark {
  /* font-size: clamp(1.6rem, 3vw, 2.4rem); */
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}

.section-sub-dark {
  color: var(--text-dark);
  font-size: 40px;
  margin-bottom: 1.5rem;
}

.section-title-white {
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.3px;
}



.sap-desc{
  color: var(--text-mid);
  font-size: 1.1rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  font-weight: 500;
}

.sap-label{
  color: var(--text-mid);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sap-trust {
    font-size: 18px;
    color: #6b7280;
    margin: 0 auto;
    font-style: italic;
    font-weight: 500;
}

/* ===================== CERT BADGES ===================== */
.cert-row {
    display: flex;
    justify-content: center;
    gap: 200px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 140px;
}

.cert-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.cert-item strong {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    text-align: center;
    width: 185px;
}

.cert-item span {
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    text-align: center;
    line-height: 1.4;
    width: 250px;
}

/* ===================== TWO COL ===================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.col-img .img-frame {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
      height: 550px;
}

.trusted-img-caption {
position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 36px 20px 50px 40px;
    text-decoration: none;
}

.rounded-img {
width: 100%;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 1024 / 1024;
}

.col-text{
  width: 650px;
}

.col-text h2 {
  font-size: 55px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.col-text p {
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 530px;
    font-size: 18px;
    font-weight: 500;
}

.learn-more-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}
.learn-more-link:hover { color: var(--orange); }

/* ===================== SERVICES GRID ===================== */
.services-layout {
    width: 100%;
    max-width: 670px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.svc-card {
    border-radius: 10px;
    padding: 35px;
    text-align: left;
}

.svc-light {
    background: #0000001a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.svc-dark {
    background: #0000004d;
    border: 1px solid rgba(255, 255, 255, 0.1);
}


.svc-card h4 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.svc-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-card li {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.svc-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.svc-dark h4 {
    text-align: center;
}
.svc-card h4 {
font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
}





/* ===================== SUPPORT GRID ===================== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.support-card {
  background: white;
  border: 1px solid #E8EAF0;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.support-last {
  grid-column-start: 1;
    grid-column-end: 4;
}

.support-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.support-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
}
.support-icon.blue { background: var(--blue); color: #fff }

.support-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.support-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===================== CTA SECTION ===================== */
.section-cta {
  position: relative;
  padding: 100px 0;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1400&q=80') center/cover; */
}
.cta-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(180,70,20,0.85) 0%, rgba(10,14,26,0.9) 100%); */
  background: linear-gradient(rgb(186, 74, 9) 19%, rgba(0, 56, 69, 0.75) 100%);
}

.cta-overlay-about {
  background: linear-gradient(#003845 0%,#ba4a09cc 100%);
}

.cta-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.cta-content h2 {
  font-size: 75px;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.text-orange { color: var(--orange); }

/* ===================== LOOKING SECTION ===================== */
.section-looking {
  position: relative;
  padding: 150px 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.section-looking::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=1400&q=80') center/cover; */
}
.looking-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(180,70,20,0.7) 0%, rgba(10,14,26,0.85) 100%);
}

.looking-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.looking-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 2rem;
}

/* ===================== BIG INTRO ===================== */
.big-intro {
font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    max-width: 1265px;
    margin: 0 auto 3.5rem;
    line-height: 1.75;
}

/* ===================== FEATURE ROWS ===================== */
.two-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.feature-big {
  text-align: center;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 16px;
}

.feature-icon-teal {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(26,96,107,0.12);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}

.feature-big h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.feature-big p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.6; }

.three-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.feature-big-teal {
  text-align: center;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 16px;
}

.feature-icon-line {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(26,96,107,0.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.feature-big-teal h3 {
  
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.feature-big-teal p { color: var(--text-mid); font-size: 0.85rem; line-height: 1.6; }

/* ===================== ICON CARD GRIDS ===================== */
.four-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.three-by-two-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.icon-card {
  text-align: center;
  background: var(--light-bg);
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid #E8EAF0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.icon-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
}
.icon-circle.orange { background: var(--orange); color: white; }

.icon-card h4 {
  
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.icon-card p { 
  font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.5;
    font-weight: 400;
}

/* ===================== INDUSTRY LAYOUT ===================== */
.industry-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}

.industry-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1A2A3A 100%);
  border-radius: 16px;
  padding: 24px;
}

.sidebar-cta p {
  
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
}

.industry-content { display: flex; flex-direction: column; gap: 2.5rem; }

.content-section h3 {
  
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.content-section p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ===================== CONTACT ===================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-left h2 {
font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.contact-left p {
    color: var(--text-mid);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-phone i {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-img-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ===================== FOOTER ===================== */
.footer {
  /* background: #0A0E1A; */
  background: #fff;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr 0.7fr;
  gap: 3rem;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
  
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}

.footer-logo img {
      height: 72px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
}

.footer-brand p {
  color: #555;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover {
  background: var(--orange);
  color: white;
}

.footer-col{
  text-align: right;
}

.footer-col h4 {
font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-col p {
color: #555;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2px;
}

.footer-col p strong{
  color:#000;
}

.maps-link {
  color: var(--orange);
  font-size: 0.82rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.5rem;
}
.maps-link:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: white; }

/* Contact details */
.contact-details { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.kontak-color{ color: #000; font-size: 1.2rem; line-height: 1.5; font-weight: 600; }

/* Active dropdown item */
/* .dropdown-item.active-item { background: #F0F4FF; color: var(--blue); font-weight: 600; }
.dropdown-item.active-item .dropdown-icon { background: var(--blue); color: white; } */

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-center-card { grid-column: 1; }
  .four-card-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10,14,26,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.5rem;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.mobile-open { display: flex; }

  .nav-link { justify-content: space-between; padding: 12px 16px; }

  /* .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-top: 4px;
  }
  .dropdown-menu.show { display: block; }
  .dropdown-item { color: rgba(255,255,255,0.85); }
  .dropdown-item:hover { background: rgba(255,255,255,0.1); color: white; }
  .dropdown-icon { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); } */

  .btn-protected { display: none; }
  .hamburger { display: block; }

  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .three-feature-row { grid-template-columns: 1fr; }
  .two-feature-row { grid-template-columns: 1fr; }
  .four-card-grid { grid-template-columns: 1fr 1fr; }
  .three-by-two-grid { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .industry-layout { grid-template-columns: 1fr; }
  .industry-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .four-card-grid { grid-template-columns: 1fr; }
  .three-by-two-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.8rem; }
  .section-white, .section-light { padding: 50px 0; }
  .cert-badges { flex-direction: column; align-items: center; }
}

.trusted-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trusted-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.14rem;
    color: #374151;
    font-weight: 600;
}

.trusted-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(#0000 0%,#e76a2299 100%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 36px 20px 20px;
}

.dot-blue {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2563eb;
    flex-shrink: 0;
}

.services-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    margin: 0 auto;
    width: 100%;
    max-width: 560px;
}

/* .trusted-list-kontak {
    display: flex;
    flex-direction: column;
    gap: 12px;
} */

.trusted-list-kontak {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.trusted-list-kontak>div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.14rem;
    color: #374151;
    font-weight: 600;
}

.circle-list {
    width: 40px;
    height: 40px;
    background-color: #1d65d1;
    border-radius: 50%;
    display: grid;
    padding: 20px;
    align-content: center;
    justify-content: center;
}

/*ABOUT PAGE*/
/* ===== ABOUT-PAGE ADDITIONS ===== */

    /* About Company section */
    .about-company-img {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    }
    .about-company-img img {
      width: 100%;
      display: block;
      aspect-ratio: 4/3;
      object-fit: cover;
    }
    .about-since-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: rgba(10,14,26,0.75);
      backdrop-filter: blur(8px);
      color: white;
      border-radius: 10px;
      padding: 10px 18px;
      
    }
    .about-since-badge span {
      display: block;
      font-size: 0.75rem;
      font-weight: 500;
      color: rgba(255,255,255,0.7);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .about-since-badge strong {
      display: block;
      font-size: 2rem;
      font-weight: 800;
      line-height: 1.1;
    }

    .about-col-text h2 {
      
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    .about-col-text p {
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 1.75rem;
      font-size: 1rem;
    }

    /* Values checklist */
    .values-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.6rem 1.5rem;
      margin-top: 0.5rem;
    }
    .value-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--text-dark);
    }
    .value-item i {
      width: 22px;
      height: 22px;
      background: var(--blue);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      flex-shrink: 0;
    }

    /* Invest section */
    .invest-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .invest-left h2 {
      font-size: 3.48rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    }
    .invest-right p {
      color: var(--text-mid);
    line-height: 1.75;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: justify;
    }

    /* Vision / Mission cards */
    .vm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .vm-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.07);
      border: 1px solid #E8EAF0;
    }
    .vm-card-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }
    .vm-card-body {
      padding: 24px;
    }
    .vm-card-body h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    }
    .vm-card-body p {
          font-size: 1rem;
    font-weight: 400;
    color: var(--text-mid);
    line-height: 1.7;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .invest-row { grid-template-columns: 1fr; gap: 2rem; }
      .vm-grid { grid-template-columns: 1fr; }
      .values-grid { grid-template-columns: 1fr; }
    }

    .section-trusted {
      flex-flow: column;
    flex: none;
    place-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    height: min-content;
    padding: 125px 30px;
    display: flex;
    position: relative;
    overflow: hidden;
    }

    .icon-card h3 {
      padding: 12px 0;
    }

    .healthcare-content-section h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    }

        .healthcare-content-section p {
    font-size: 18px;
    color: var(--text-mid);
    line-height: 1.75;
    font-weight: 500;
    text-align: justify;
    }