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

:root {
  --navy: #0d2140;
  --navy-mid: #1a3a6a;
  --gold: #c9a44a;
  --gold-light: #e8c97a;
  --green: #6abf47;
  --light: #f5f4f0;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #555;
  --font: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --radius: 10px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.18);
  --transition: 0.22s ease;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.75;
  background: var(--white);
  -webkit-text-size-adjust: 100%;
}

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

a {
  color: inherit;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  gap: 1rem;
}

/* Logo — bigger */
.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 62px;
  width: auto;
}

.logo-img--footer {
  height: 44px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-dunia {
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
}

.logo-sub {
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--transition);
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.nav-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.lang-toggle {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 5px;
  padding: 0.32rem 0.9rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: background var(--transition);
}

.lang-toggle:hover {
  background: var(--gold-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== FILMSTRIP HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #111;
  display: flex;
  align-items: center;
}

/* 4 images side by side — photographic film layout */
.film-strip {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
}

.film-frame {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.film-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Film perforations — top and bottom */
.film-perfs {
  position: absolute;
  left: 0;
  right: 0;
  height: 26px;
  background-color: rgba(0, 0, 0, 0.85);
  background-image: repeating-linear-gradient(90deg,
      transparent 0px, transparent 14px,
      rgba(255, 255, 255, 0.18) 14px, rgba(255, 255, 255, 0.18) 34px,
      transparent 34px, transparent 48px);
  z-index: 2;
}

.film-perfs--top {
  top: 0;
}

.film-perfs--bottom {
  bottom: 0;
}

/* Dark gradient overlay for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 33, 64, 0.82) 0%,
      rgba(13, 33, 64, 0.65) 50%,
      rgba(13, 33, 64, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  padding: 5rem 0 4.5rem;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(201, 164, 74, 0.2);
  border: 1px solid rgba(201, 164, 74, 0.5);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.25rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 2.1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform 0.15s, box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(201, 164, 74, 0.35);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 164, 74, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-weight: 600;
  padding: 0.83rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 164, 74, 0.08);
}

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--navy-mid);
  padding: 1.5rem 0;
  border-bottom: 3px solid var(--gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 1rem;
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--light);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-accent {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  color: var(--white);
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.section-label--light {
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  display: block;
}

.section-title::after {
  content: '';
  display: block;
  width: 2.8rem;
  height: 4px;
  background: var(--gold);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.section-intro {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.section-header .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.section-header--left {
  text-align: left;
}

.section-header--left .section-title::after {
  margin-left: 0;
}

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

.about-image {
  position: relative;
}

.about-photo {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.about-body p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.positioning-quote {
  border-left: 4px solid var(--gold);
  padding: 0.9rem 1.25rem;
  background: rgba(13, 33, 64, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1.5rem;
}

.positioning-quote p {
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  margin: 0;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 164, 74, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.service-card--featured {
  border-color: var(--gold);
  background: rgba(201, 164, 74, 0.07);
}

/* Priority hero card — spans 2 columns, taller image */
.service-card--hero {
  grid-column: span 2;
}

.service-card--hero .service-card-body {
  padding: 1.75rem;
}

.service-card-img--tall {
  height: 260px;
}

/* Plain cards (no image) — need padding */
.service-card--plain {
  padding: 1.75rem;
}

/* Cards WITHOUT image: add padding */
.service-card:not(:has(.service-card-img)):not(.service-card--featured) {
  padding: 1.75rem;
}

/* Cards WITH image */
.service-card-img {
  width: 100%;
  height: 185px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-card-body {
  padding: 1.5rem;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.service-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.service-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-list li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  padding-left: 1.1rem;
  position: relative;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== QUALITY ===== */
.quality-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.quality-text p {
  margin-bottom: 1.1rem;
  color: var(--text-muted);
}

.quality-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.pillar:hover {
  transform: translateX(4px);
}

.pillar-icon {
  font-size: 1rem;
}

/* ===== WHY US ===== */
.why-text {
  max-width: 820px;
  margin: 0 auto 2.25rem;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.why-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.badge {
  background: rgba(201, 164, 74, 0.1);
  border: 2px solid var(--gold);
  color: var(--gold-light);
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: background var(--transition);
}

.badge:hover {
  background: rgba(201, 164, 74, 0.22);
}

.cta-block {
  text-align: center;
}

/* ===== PAGE HERO (Contact) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

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

.contact-info .section-title {
  margin-bottom: 1.5rem;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.info-block strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.info-block span,
.info-block a {
  font-size: 0.95rem;
  color: var(--text);
}

.info-link {
  color: var(--navy-mid);
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
}

.info-link:hover {
  text-decoration: underline;
  color: var(--gold);
}

.postal-address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
}

.qr-block {
  margin-top: 2.25rem;
}

.qr-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.qr-img {
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 6px;
  background: white;
}

/* Contact Form */
.contact-form-wrap .section-title {
  margin-bottom: 1.5rem;
}

.form-status {
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--navy);
  font-weight: 600;
  line-height: 1.5;
}

.form-status--sent {
  background: #e7f5df;
  border-color: #3f8a25;
  color: #1f5a11;
}

.form-status--error,
.form-status--invalid {
  background: #fff0ed;
  border-color: #bb3c2d;
  color: #7c1f16;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 2px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-mid);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  align-self: flex-start;
  transition: background var(--transition), transform 0.15s;
  letter-spacing: 0.03em;
}

.btn-submit:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background: #060f1e;
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-logo .logo-dunia {
  font-size: 1.3rem;
}

.footer-logo .logo-sub {
  font-size: 0.6rem;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-contact-mini a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition);
  word-break: break-all;
}

.footer-contact-mini a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
}

.footer-tagline {
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}

.footer-copy {
  font-size: 0.72rem;
}

/* ===== RESPONSIVE — Tablet ≤ 900px ===== */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image::before {
    display: none;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    display: none;
  }
}

/* ===== RESPONSIVE — Mobile ≤ 640px ===== */
@media (max-width: 640px) {
  .hamburger {
    display: flex;
  }

  #nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(290px, 85vw);
    background: var(--navy);
    padding: 5.5rem 2rem 2rem;
    box-shadow: -4px 0 28px rgba(0, 0, 0, 0.4);
    z-index: 199;
    overflow-y: auto;
  }

  #nav-menu.open {
    display: flex;
  }

  #nav-menu a {
    width: 100%;
    padding: 0.9rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .lang-toggle {
    margin-top: 1.5rem;
    align-self: flex-start;
  }

  .header-inner {
    padding: 0.65rem 1rem;
  }

  .logo-img {
    height: 50px;
  }

  .logo-dunia {
    font-size: 1.3rem;
  }

  .hero {
    min-height: 400px;
  }

  .hero-content {
    padding: 3.5rem 0 3rem;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .film-perfs {
    height: 18px;
  }

  .section {
    padding: 3rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card--hero {
    grid-column: span 1;
  }

  .service-card-img--tall {
    height: 200px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    width: 100%;
    align-self: stretch;
  }
}

/* ===== RESPONSIVE — Small phones ≤ 380px ===== */
@media (max-width: 380px) {
  .logo-sub {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== PRINT ===== */
@media print {

  header,
  .hamburger,
  .lang-toggle,
  .hero-actions,
  .btn-primary,
  .btn-outline,
  .btn-submit {
    display: none !important;
  }

  body {
    font-size: 11pt;
    color: #000;
  }

  .hero {
    min-height: auto;
    background: none;
    padding: 1rem 0;
  }

  .hero-title,
  .hero-tagline {
    color: #000;
    text-shadow: none;
  }

  .film-strip,
  .hero-overlay,
  .film-perfs {
    display: none;
  }
}