:root {
  --brand-navy: #142943;
  --brand-navy-2: #0d1f35;
  --brand-blue: #243b55;
  --brand-gold: #d99a2b;
  --brand-gold-2: #f2b84b;
  --text: #1f2937;
  --muted: #64748b;
  --surface: #ffffff;
  --soft: #f5f7fa;
  --line: #e5e7eb;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--soft);
  line-height: 1.65;
}

a { color: inherit; }

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


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(20, 41, 67, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.navbar { padding: 12px 0; }

.navbar-brand img {
  height: 84px;
  width: auto;
  display: block;
}

.navbar .nav-link {
  color: rgba(255,255,255,0.82);
  font-weight: 700;
  letter-spacing: .01em;
  padding: 10px 13px !important;
  border-radius: 999px;
  transition: .2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

.lang-select {
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
}

.lang-select option { color: #111827; }

.btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  background: var(--brand-gold);
  color: #151515;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(217, 154, 43, .28);
  transition: .2s ease;
}

.btn-brand:hover {
  transform: translateY(-1px);
  background: var(--brand-gold-2);
  color: #111;
}

.btn-outline-light-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  transition: .2s ease;
}

.btn-outline-light-soft:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--brand-navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,31,53,.78) 0%, rgba(20,41,67,.50) 43%, rgba(20,41,67,.08) 100%),
    url('../images/anth1.jpg') center/cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 170px;
  background: linear-gradient(0deg, var(--soft), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 98px 0 140px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffe0a4;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--brand-gold);
}

.hero h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.02;
  font-weight: 900;
  margin: 0 0 18px;
}

.hero p {
  max-width: 650px;
  font-size: 20px;
  color: rgba(255,255,255,.84);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stats-strip {
  position: relative;
  z-index: 2;
  margin-top: -92px;
}

.stats-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  padding: 10px 18px;
  border-right: 1px solid var(--line);
}

.stat:last-child { border-right: 0; }

.stat strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.stat span { color: var(--muted); font-weight: 700; }

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title h2 {
  color: var(--brand-navy);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 12px;
}

.section-title p { color: var(--muted); font-size: 18px; margin: 0; }

.service-card,
.info-card,
.contact-card,
.financial-card {
  background: var(--surface);
  border: 1px solid rgba(226,232,240,.75);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
  height: 100%;
}

.service-card { padding: 28px; transition: .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(217,154,43,.14);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.service-card h3 { font-size: 21px; color: var(--brand-navy); font-weight: 900; margin-bottom: 10px; }
.service-card p { color: var(--muted); margin: 0; }

.split-panel {
  background: var(--surface);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-panel .photo {
  min-height: 430px;
  background: url('../images/06.jpg') center/cover no-repeat;
}

.split-panel .content { padding: clamp(28px, 5vw, 56px); }

.timeline { position: relative; padding-left: 24px; }
.timeline::before { content: ""; position: absolute; top: 7px; bottom: 7px; left: 4px; width: 2px; background: var(--line); }
.timeline-item { position: relative; margin-bottom: 22px; }
.timeline-item::before { content: ""; position: absolute; left: -25px; top: 7px; width: 12px; height: 12px; border-radius: 50%; background: var(--brand-gold); box-shadow: 0 0 0 5px rgba(217,154,43,.15); }
.timeline-item strong { color: var(--brand-navy); font-weight: 900; }
.timeline-item p { color: var(--muted); margin: 4px 0 0; }

.page-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13,31,53,.94), rgba(20,41,67,.72)),
    url('../images/06.jpg') center/cover no-repeat;
  padding: 92px 0;
}

.page-hero h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 900; margin: 0 0 12px; }
.page-hero p { max-width: 700px; color: rgba(255,255,255,.84); font-size: 19px; margin: 0; }

.prose-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(26px, 4vw, 48px); }
.prose-card p { color: #3f4a5a; text-align: justify; margin-bottom: 16px; }
.prose-card h2, .prose-card h3 { color: var(--brand-navy); font-weight: 900; }

.gallery-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.gallery-card img { aspect-ratio: 16 / 10; object-fit: cover; }

.contact-card { padding: 28px; }
.contact-card h3 { color: var(--brand-navy); font-weight: 900; }
.contact-line { display: flex; gap: 14px; margin: 16px 0; align-items: flex-start; }
.contact-line .mark { width: 38px; height: 38px; border-radius: 14px; background: rgba(217,154,43,.14); display: grid; place-items: center; flex: 0 0 auto; }
.map-box { border-radius: 20px; overflow: hidden; min-height: 320px; border: 1px solid var(--line); background: #eef2f7; }
.map-box iframe { width: 100%; height: 320px; border: 0; display: block; }

.financial-card { padding: 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.financial-year { font-size: 28px; font-weight: 900; color: var(--brand-navy); }
.financial-desc { color: var(--muted); }

.site-footer {
  background: var(--brand-navy-2);
  color: rgba(255,255,255,.78);
  padding: 58px 0 26px;
  margin-top: 40px;
}

.footer-brand img { height: 60px; margin-bottom: 18px; }
.footer-brand p { max-width: 330px; }
.footer-col h4 { color: #fff; font-size: 17px; font-weight: 900; margin-bottom: 18px; text-transform: uppercase; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: 9px 0; }
.footer-col a { color: rgba(255,255,255,.68); text-decoration: none; font-weight: 650; }
.footer-col a:hover { color: #fff; }
.footer-details { margin: 0; }
.footer-details summary { list-style: none; cursor: pointer; color: rgba(255,255,255,.78); font-weight: 750; margin-bottom: 8px; }
.footer-details summary::-webkit-details-marker { display: none; }
.footer-details summary::after { content: "▾"; margin-left: 8px; font-size: 11px; }
.footer-details[open] summary::after { content: "▴"; }
.footer-submenu { padding-left: 16px !important; border-left: 2px solid rgba(217,154,43,.55); margin: 8px 0 14px !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); margin-top: 34px; padding-top: 20px; font-size: 14px; color: rgba(255,255,255,.55); display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; }

@media (min-width: 992px) {
  .footer-details summary { pointer-events: auto; }
}

@media (max-width: 991px) {
  .hero { min-height: auto; }
  .hero-content { padding: 78px 0 130px; }
  .stats-card { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .navbar-collapse { padding-top: 16px; }
  .lang-select { margin-top: 8px; }
}

@media (max-width: 576px) {
  .stats-card { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .hero p { font-size: 18px; }
  .section { padding: 62px 0; }
  .financial-card { align-items: flex-start; flex-direction: column; }
}

/* Map privacy placeholder - loads OpenStreetMap only after user action */
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
}

.map-placeholder-content {
  max-width: 430px;
  margin: 0 auto;
}

.map-placeholder .map-icon {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: rgba(217,154,43,.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 14px;
}

.map-placeholder p {
  color: var(--muted);
  margin-bottom: 18px;
}

.map-load-btn {
  border: 0;
}


/* Company profile additions */
.company-profile-card p {
    text-align: justify;
}

.company-facts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.company-fact {
    background: rgba(20, 41, 67, 0.06);
    border: 1px solid rgba(20, 41, 67, 0.08);
    border-radius: 16px;
    padding: 16px;
}

.company-fact strong {
    display: block;
    color: #142943;
    font-size: 1.35rem;
    line-height: 1.15;
    margin-bottom: 6px;
}

.company-fact span {
    display: block;
    color: #5f6f82;
    font-size: 0.92rem;
    line-height: 1.35;
}


.index-photo-carousel,
.index-photo-carousel .carousel-inner,
.index-photo-carousel .carousel-item {
    height: 100%;
    min-height: 420px;
}

.index-photo-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-photo-carousel .carousel-control-prev,
.index-photo-carousel .carousel-control-next {
    width: 12%;
}

.index-photo-carousel .carousel-control-prev-icon,
.index-photo-carousel .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    padding: 18px;
}


.company-hero {
    background:
        linear-gradient(90deg, rgba(13,31,53,.65), rgba(20,41,67,.35)),
        url('../images/02.jpg') center/cover no-repeat;
}

.contact-hero {
    background:
        linear-gradient(90deg, rgba(13,31,53,.65), rgba(20,41,67,.35)),
        url('../images/04.jpg') center/cover no-repeat;
}

.financial-hero {
    background:
        linear-gradient(90deg, rgba(13,31,53,.65), rgba(20,41,67,.35)),
        url('../images/05.jpg') center/cover no-repeat;
}

@media (max-width: 575px) {
    .company-facts-grid {
        grid-template-columns: 1fr;
    }
}
