/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-story { background: var(--navy-800); }
.about-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.about-story__text p { color: var(--text-400); font-size: 0.95rem; line-height: 1.82; margin-bottom: 16px; }
.highlight-card {
  padding: 30px 28px;
  background: rgba(26,47,94,0.2);
  border: 1px solid rgba(184,146,42,0.12);
  margin-bottom: 18px; position: relative;
  border-left: 3px solid var(--gold-500);
}
.highlight-card__icon {
  width: 44px; height: 44px;
  background: rgba(184,146,42,0.08);
  border: 1px solid rgba(184,146,42,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400); margin-bottom: 14px;
}
.highlight-card h3 { font-family: var(--font-heading); color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.highlight-card p { color: var(--text-400); font-size: 0.87rem; line-height: 1.7; }

.values-section { background: linear-gradient(180deg, rgba(26,47,94,0.1) 0%, var(--navy-800) 100%); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  padding: 34px 26px; position: relative;
  background: rgba(26,47,94,0.22);
  border: 1px solid rgba(184,146,42,0.1);
  transition: var(--transition); overflow: hidden;
}
.value-card:hover { border-color: rgba(184,146,42,0.35); transform: translateY(-4px); }
.value-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  transform: scaleX(0); transition: transform var(--transition);
}
.value-card:hover::after { transform: scaleX(1); }
.value-card__num {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-display); font-size: 3rem;
  color: rgba(184,146,42,0.07); line-height: 1;
}
.value-card__check { color: var(--gold-400); font-size: 1.3rem; margin-bottom: 14px; }
.value-card h3 { font-family: var(--font-heading); color: var(--white); font-size: 1.05rem; margin-bottom: 10px; }
.value-card p { color: var(--text-400); font-size: 0.84rem; line-height: 1.65; }

.team-section { background: var(--navy-800); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card {
  background: rgba(26,47,94,0.2);
  border: 1px solid rgba(184,146,42,0.1);
  overflow: hidden; transition: var(--transition);
}
.team-card:hover { border-color: rgba(184,146,42,0.4); transform: translateY(-5px); }
.team-card__img-wrap { position: relative; height: 250px; overflow: hidden; }
.team-card__img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
.team-card:hover .team-card__img { transform: scale(1.05); }
.team-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,14,31,0.96) 0%, rgba(6,14,31,0.5) 60%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 18px;
  opacity: 0; transition: opacity var(--transition);
}
.team-card:hover .team-card__overlay { opacity: 1; }
.team-card__bio { color: var(--text-200); font-size: 0.76rem; line-height: 1.5; margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.team-card__socials { display: flex; gap: 8px; }
.team-card__social {
  width: 30px; height: 30px;
  background: rgba(184,146,42,0.15); border: 1px solid var(--gold-500);
  color: var(--gold-400); display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; transition: var(--transition); text-decoration: none;
}
.team-card__social:hover { background: var(--gold-500); color: var(--navy-900); }
.team-card__info { padding: 18px 20px; }
.team-card__name { font-family: var(--font-heading); color: var(--white); font-size: 0.98rem; font-weight: 700; margin-bottom: 4px; }
.team-card__role { color: var(--gold-500); font-size: 0.78rem; margin-bottom: 12px; }
.team-card__line { width: 28px; height: 2px; background: linear-gradient(90deg, var(--gold-500), var(--gold-400)); }

/* ══════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════ */
.services-page { background: var(--navy-800); }
.services-category { margin-bottom: 60px; }
.services-category__header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(184,146,42,0.15);
}
.services-category__icon {
  width: 48px; height: 48px;
  background: rgba(184,146,42,0.1);
  border: 1px solid rgba(184,146,42,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400); font-size: 1.2rem;
}
.services-category__title { font-family: var(--font-heading); color: var(--white); font-size: 1.4rem; }
.services-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-full-card { padding: 30px 26px; transition: var(--transition); }
.service-full-card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(184,146,42,0.08); border: 1px solid rgba(184,146,42,0.18);
  color: var(--gold-400); margin-bottom: 18px;
  clip-path: var(--clip-badge); transition: var(--transition);
}
.service-full-card:hover .service-full-card__icon { background: rgba(184,146,42,0.18); }
.service-full-card__title { font-family: var(--font-heading); color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.service-full-card__desc { color: var(--text-400); font-size: 0.84rem; line-height: 1.65; margin-bottom: 16px; }
.service-full-card__detail { color: var(--text-400); font-size: 0.82rem; line-height: 1.7; display: none; }
.service-full-card.expanded .service-full-card__detail { display: block; }
.service-full-card__toggle {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-400); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; background: none; border: none; padding: 0;
  transition: gap var(--transition);
}
.service-full-card__toggle:hover { gap: 10px; }

/* ══════════════════════════════════════
   PROJECTS PAGE
══════════════════════════════════════ */
.projects-page { background: var(--navy-800); }
.projects-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 48px; justify-content: center;
}
.filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-400); font-size: 0.82rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold-500); border-color: var(--gold-500);
  color: var(--navy-900); font-weight: 700;
}
.projects-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-page { background: var(--navy-800); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 68px; }
.contact-info__intro { color: var(--text-400); font-size: 0.95rem; line-height: 1.75; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-item__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(184,146,42,0.08);
  border: 1px solid rgba(184,146,42,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500); font-size: 0.95rem;
}
.contact-item__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 4px; }
.contact-item__value { color: var(--text-400); font-size: 0.87rem; line-height: 1.7; }
.contact-item__value a { color: var(--text-400); transition: color var(--transition); display: block; }
.contact-item__value a:hover { color: var(--gold-400); }
.contact-regions h4 { font-family: var(--font-heading); color: var(--white); margin-bottom: 12px; }
.contact-regions__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-region-tag {
  padding: 5px 14px;
  background: rgba(184,146,42,0.06);
  border: 1px solid rgba(184,146,42,0.18);
  color: var(--gold-500); font-size: 0.76rem; font-weight: 600;
  clip-path: var(--clip-badge);
}
.contact-form-wrap {
  background: rgba(26,47,94,0.28);
  border: 1px solid rgba(184,146,42,0.12);
  clip-path: var(--clip-card);
}
.contact-form-inner { padding: 44px; }
.contact-form-title { font-family: var(--font-heading); color: var(--white); font-size: 1.4rem; margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form__success {
  text-align: center; padding: 32px;
  background: rgba(58,175,106,0.08);
  border: 1px solid rgba(58,175,106,0.25);
}
.contact-form__success-icon { font-size: 2.5rem; color: var(--success); margin-bottom: 12px; }
.contact-form__success h3 { font-family: var(--font-heading); color: var(--white); margin-bottom: 8px; }
.contact-form__success p { color: var(--text-400); font-size: 0.88rem; }

/* Responsive */
@media (max-width: 1024px) {
  .about-story__grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-full-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .projects-full-grid { grid-template-columns: 1fr; }
  .contact-form-inner { padding: 28px; }
}
