/* ===================== AMSM L.L.C-FZ — Global Styles ===================== */

:root {
  --navy-950: #050c1a;
  --navy-900: #0a1830;
  --navy-800: #0f2247;
  --navy-700: #16305f;
  --gold: #d4af37;
  --gold-light: #ecd487;
  --gold-dark: #a9832a;
  --white: #f7f6f2;
  --white-dim: rgba(247, 246, 242, 0.72);
  --white-faint: rgba(247, 246, 242, 0.45);
  --border-gold: rgba(212, 175, 55, 0.35);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --max-width: 1180px;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: radial-gradient(1200px 700px at 15% -10%, var(--navy-800) 0%, var(--navy-950) 55%), var(--navy-950);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--white);
  margin: 0 0 16px;
  letter-spacing: 0.3px;
  line-height: 1.25;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-lead {
  color: var(--white-dim);
  max-width: 680px;
  font-size: 1.05rem;
}

.gold-divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px 0 26px;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  font-family: var(--font-sans);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: var(--navy-950);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(212, 175, 55, 0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border-gold);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 12, 26, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-mark {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--gold-light);
}
.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--white-faint);
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(212,175,55,0.16), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; }
.hero-content .eyebrow { justify-content: center; }
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-subtitle {
  color: var(--white-dim);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badges {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  color: var(--white-faint);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-badges span { display: flex; align-items: center; gap: 10px; }
.hero-badges strong { color: var(--gold-light); font-family: var(--font-serif); font-size: 1.4rem; letter-spacing: 0; text-transform: none; }

/* ---------- Sections ---------- */
section { padding: 90px 0; position: relative; }
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(212,175,55,0.03) 20%, rgba(212,175,55,0.03) 80%, transparent);
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
}
.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-head .gold-divider { margin-left: auto; margin-right: auto; }
.section-head .section-lead { margin: 0 auto; }

/* ---------- Vision & Mission ---------- */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.vm-card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 44px 38px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.vm-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.vm-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--gold);
}
.vm-card h3 { font-size: 1.5rem; }
.vm-card p { color: var(--white-dim); margin: 0; }

/* ---------- About strip ---------- */
.about-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-strip p { color: var(--white-dim); margin-bottom: 16px; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.stat-card {
  background: var(--navy-800);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.stat-card .num {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 6px;
}
.stat-card .label {
  color: var(--white-faint);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: flex-start;
}
.contact-info {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 40px 34px;
}
.contact-info h3 { font-size: 1.3rem; margin-bottom: 8px; }
.contact-info p { color: var(--white-dim); margin-bottom: 28px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(212,175,55,0.14);
}
.contact-detail:first-of-type { border-top: none; }
.contact-detail .icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail h4 { margin: 0 0 4px; font-family: var(--font-sans); font-size: 0.95rem; color: var(--white); }
.contact-detail span, .contact-detail a { color: var(--white-dim); font-size: 0.92rem; }
.contact-detail a:hover { color: var(--gold-light); }

.contact-form-card {
  background: var(--navy-800);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.method-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  background: var(--navy-950);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--border-gold);
}
.method-toggle button {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--white-dim);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.25s ease;
}
.method-toggle button.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-950);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  background: var(--navy-950);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--white-faint); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note {
  font-size: 0.8rem;
  color: var(--white-faint);
  margin-top: 14px;
}
.form-note.hidden, .method-panel.hidden { display: none; }

/* ---------- Activities ---------- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.activity-card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.activity-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.activity-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-950));
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(212,175,55,0.18);
  overflow: hidden;
}
.activity-media svg { width: 46%; height: 46%; color: var(--gold); opacity: 0.9; }
.activity-media .ph-tag {
  position: absolute;
  bottom: 10px; right: 10px;
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(5,12,26,0.7);
  color: var(--white-faint);
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.25);
}
.activity-body { padding: 24px 22px 28px; }
.activity-index {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 600;
}
.activity-body h3 { font-size: 1.18rem; margin: 8px 0 10px; }
.activity-body p { color: var(--white-dim); font-size: 0.92rem; margin: 0; }

/* ---------- Group companies ---------- */
.group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.group-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow);
}
.group-logo {
  height: 90px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.group-logo img { max-height: 100%; max-width: 100%; object-fit: contain; }
.group-card h3 {
  color: var(--navy-950);
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.group-card p { color: #4a4a4a; font-size: 0.85rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  text-align: center;
}
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { color: var(--white-dim); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand-mark { font-size: 1.4rem; }
.footer-brand p { color: var(--white-faint); font-size: 0.88rem; max-width: 320px; margin-top: 14px; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--white-faint); font-size: 0.9rem; transition: color 0.2s ease; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--white-faint);
  font-size: 0.82rem;
}

/* ---------- Page header (activities page) ---------- */
.page-header {
  padding: 150px 0 70px;
  text-align: center;
}
.page-header .section-lead { margin: 0 auto; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .vm-grid, .about-strip, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .group-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip { gap: 36px; }
}
@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 28px 20px;
    border-bottom: 1px solid rgba(212,175,55,0.15);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(212,175,55,0.08); }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .group-grid { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 70px; }
  section { padding: 64px 0; }
}
