/* =========================================
   ASIA PROJECT MANAGEMENT JSC
   Corporate Website Stylesheet
   ========================================= */

:root {
  --navy: #0A2540;
  --navy-light: #1a3a5c;
  --gold: #C9A961;
  --gold-light: #d9bf7d;
  --gray-50: #F8F9FA;
  --gray-100: #E9ECEF;
  --gray-300: #CED4DA;
  --gray-500: #6C757D;
  --gray-700: #495057;
  --gray-900: #1A1A1A;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 4px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 37, 64, 0.1);
  --shadow-lg: 0 10px 30px rgba(10, 37, 64, 0.15);
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--gray-700); }

/* =========================================
   HEADER / NAVIGATION
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

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

.brand-name {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-main ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-main a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-main a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-main a:hover, .nav-main a.active { color: var(--navy); }
.nav-main a:hover::after, .nav-main a.active::after { width: 100%; }

.lang-switcher {
  display: flex;
  gap: 4px;
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  padding: 4px;
  background: var(--gray-50);
}

.lang-btn {
  background: transparent;
  border: 0;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  border-radius: 4px;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--navy);
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 span { color: var(--gold); }

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 680px;
}

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

/* page hero (smaller) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, 0.8); max-width: 700px; margin: 0; }

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

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

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* =========================================
   SECTIONS
   ========================================= */
section.block {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--gray-500);
  font-size: 1.05rem;
}

.bg-light { background: var(--gray-50); }

/* =========================================
   STATS BAR
   ========================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.stat-item { text-align: center; }
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* =========================================
   CARDS / GRIDS
   ========================================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 32px;
  transition: var(--transition);
}

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

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold);
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin: 0;
}

/* =========================================
   PROJECTS
   ========================================= */
.project-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

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

.project-image {
  height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--gold) 100%);
  position: relative;
  overflow: hidden;
}

.project-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 37, 64, 0.5), rgba(10, 37, 64, 0.7)),
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 60px);
}

.project-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 2;
}

.project-body {
  padding: 24px;
}

.project-location {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.project-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.project-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.85rem;
  color: var(--gray-500);
}

.project-meta span { display: flex; align-items: center; gap: 4px; }
.project-meta strong { color: var(--navy); }

/* =========================================
   FEATURE BLOCK (img | text)
   ========================================= */
.feature-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--gold) 100%);
  position: relative;
}

.feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 37, 64, 0.4), rgba(10, 37, 64, 0.7)),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.04) 40px, rgba(255,255,255,0.04) 80px);
}

.feature-content .eyebrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.feature-list {
  list-style: none;
  margin-top: 24px;
}

.feature-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--gray-700);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
}

/* =========================================
   TEAM
   ========================================= */
.team-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

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

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 100%);
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
}

.team-card h4 { margin-bottom: 4px; }
.team-role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* =========================================
   CTA BLOCK
   ========================================= */
.cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 64px 48px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201, 169, 97, 0.2) 0%, transparent 60%);
}

.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { color: var(--white); }
.cta-block p { color: rgba(255, 255, 255, 0.85); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* =========================================
   CONTACT
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  padding: 40px;
  border-radius: 10px;
}

.contact-info-card h3 { color: var(--white); }

.contact-list { list-style: none; margin-top: 24px; }
.contact-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-list li:last-child { border-bottom: 0; }

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 2px;
}

.contact-value { color: var(--white); font-weight: 500; word-break: break-word; }

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid var(--gray-100);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

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

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); }

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* =========================================
   VALUE BLOCK
   ========================================= */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: var(--white);
  padding: 32px;
  border-radius: 10px;
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}

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

.value-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

/* =========================================
   PROJECT FILTER
   ========================================= */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 10px 20px;
  border-radius: 99px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: var(--transition);
}

.filter-btn:hover { border-color: var(--gold); color: var(--navy); }
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* =========================================
   FORM FEEDBACK
   ========================================= */
.form-feedback {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: #E8F5E9;
  color: #2E7D32;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.92rem;
  border-left: 4px solid #4CAF50;
}

/* =========================================
   MAP EMBED
   ========================================= */
.map-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 48px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

/* =========================================
   SERVICE DETAIL
   ========================================= */
.service-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.service-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.service-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
}

.service-item h3 { margin-bottom: 8px; }
.service-item p { margin: 0; color: var(--gray-500); }

/* =========================================
   DROPDOWN NAV (Artelia-style)
   ========================================= */
.nav-main ul li.has-drop {
  position: relative;
}

.nav-main .dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 240px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 50;
  border-top: 3px solid var(--gold);
}

.nav-main li.has-drop:hover > .dropdown,
.nav-main li.has-drop:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-main .dropdown li {
  padding: 0;
  display: block;
}

.nav-main .dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
  border-radius: 0;
}

.nav-main .dropdown a::after { display: none; }
.nav-main .dropdown a:hover {
  background: var(--gray-50);
  color: var(--navy);
  padding-left: 24px;
}

.has-drop > a::after {
  content: ' ▾';
  font-size: 0.7em;
  opacity: 0.6;
}

/* =========================================
   HERO VIDEO BACKGROUND
   ========================================= */
.hero-video {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 80px 0;
}

.hero-video video,
.hero-video .hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-bg {
  background:
    linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(10, 37, 64, 0.6) 100%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--gold) 100%);
}

.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(10, 37, 64, 0.55) 100%);
  z-index: 1;
}

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

/* =========================================
   NEWS CARDS
   ========================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.news-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--gold) 100%);
  position: relative;
  overflow: hidden;
}

.news-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 37, 64, 0.4), rgba(10, 37, 64, 0.6)),
    repeating-linear-gradient(135deg, transparent, transparent 30px, rgba(255,255,255,0.04) 30px, rgba(255,255,255,0.04) 60px);
}

.news-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 2;
}

.news-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.news-card h3 {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.news-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 16px;
  flex: 1;
}

.news-card .news-read {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =========================================
   CAREERS — Job listing
   ========================================= */
.job-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 16px;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

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

.job-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.8rem;
  color: var(--gray-500);
  flex-wrap: wrap;
}

.job-tags span {
  background: var(--gray-50);
  padding: 4px 10px;
  border-radius: 99px;
  font-weight: 600;
}

.job-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.job-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* =========================================
   PARTNERS / LOGOS
   ========================================= */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.partner-logo {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  min-height: 100px;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.partner-logo:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--gold);
}

/* =========================================
   PROJECT DETAIL
   ========================================= */
.pd-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--gold) 100%);
  color: var(--white);
  padding: 80px 0 64px;
  position: relative;
}

.pd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 37, 64, 0.6), rgba(10, 37, 64, 0.85)),
    repeating-linear-gradient(135deg, transparent, transparent 60px, rgba(255,255,255,0.04) 60px, rgba(255,255,255,0.04) 120px);
}

.pd-hero > .container { position: relative; z-index: 1; }

.pd-hero .back-link {
  display: inline-block;
  color: var(--gold-light);
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 0.9rem;
}

.pd-hero .back-link:hover { color: var(--gold); }

.pd-hero h1 { color: var(--white); margin-bottom: 16px; }

.pd-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--white);
  padding: 28px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  margin-top: -40px;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.pd-meta-item {
  border-right: 1px solid var(--gray-100);
  padding-right: 16px;
}

.pd-meta-item:last-child { border-right: 0; }

.pd-meta-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 6px;
}

.pd-meta-value {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}

.pd-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 480px;
}

.pd-gallery .tile {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--gold) 100%);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.pd-gallery .tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 37, 64, 0.3), rgba(10, 37, 64, 0.5)),
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.04) 30px, rgba(255,255,255,0.04) 60px);
}

.pd-gallery .tile:first-child {
  grid-row: span 2;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 960px) {
  .grid-3, .footer-grid, .value-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .pd-meta { grid-template-columns: repeat(2, 1fr); }
  .pd-gallery { grid-template-columns: 1fr; height: auto; }
  .pd-gallery .tile { height: 240px; grid-row: auto; }
}

@media (max-width: 720px) {
  .menu-toggle { display: block; }
  .nav-main {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav-main.open { transform: translateX(0); }
  .nav-main ul { flex-direction: column; gap: 8px; width: 100%; }
  .nav-main li { width: 100%; border-bottom: 1px solid var(--gray-100); padding: 12px 0; }
  .nav-main .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 8px 0 0 16px;
    min-width: 0;
  }
  .nav-main .dropdown a { padding: 6px 0; }
  .brand-tagline { display: none; }
  .grid-3, .footer-grid, .value-grid, .news-grid, .partners-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; padding: 24px; }
  .stat-num { font-size: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
  section.block { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
  .hero-video { min-height: 480px; padding: 64px 0; }
  .cta-block { padding: 40px 24px; }
  .contact-info-card, .contact-form { padding: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .job-card { grid-template-columns: 1fr; }
  .pd-meta { grid-template-columns: 1fr 1fr; padding: 20px; }
  .pd-meta-item { border-right: 0; border-bottom: 1px solid var(--gray-100); padding-bottom: 12px; }
  .pd-meta-item:nth-last-child(-n+2) { border-bottom: 0; }
}
