/* ======================================================================
   GEMS OF THE NILE -- Extra Styles (vps-deploy additions)
   ====================================================================== */

/* -- Calendly Embed ---------------------------------------------------- */
.calendly-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.calendly-wrap iframe {
  width: 100%;
  border: none;
  border-radius: 8px;
}

/* -- About: People Grid ----------------------------------------------- */
.about-people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.person-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.person-card .person-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(184,150,78,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
}
.person-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.person-card p {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* -- About: Founders -------------------------------------------------- */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.founder-card {
  text-align: center;
  padding: 32px 20px;
}
.founder-card h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.founder-card .founder-role {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.founder-card p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* -- Contact Form Success --------------------------------------------- */
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-gold);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 12px;
  color: #fff;
}
.form-success p {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

/* -- Contact Info Grid ------------------------------------------------ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.contact-info-item h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin: 12px 0 8px;
}
.contact-info-item p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.contact-info-item svg {
  display: inline-block;
}

/* -- Contact Form ----------------------------------------------------- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.3);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-gold);
}
.form-group select option {
  background: #1c1c1c;
  color: #fff;
}
.form-submit {
  display: inline-block;
  background: var(--c-gold);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.form-submit:hover {
  background: var(--c-gold-light);
}
.form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

/* -- Legal Content ---------------------------------------------------- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.legal-content h1 {
  font-size: 28px;
  margin-bottom: 8px;
}
.legal-content .legal-date {
  color: var(--c-text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}
.legal-content h2 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}
.legal-content h3 {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 8px;
}
.legal-content p,
.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text);
}
.legal-content ul {
  padding-left: 20px;
  list-style: disc;
}
.legal-content li {
  margin-bottom: 4px;
}
.legal-content a {
  color: var(--c-gold);
}

/* -- 404 Page --------------------------------------------------------- */
.page-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.page-404 h1 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 8px;
}
.page-404 h2 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: 16px;
}
.page-404 p {
  font-size: 15px;
  color: var(--c-text-muted);
  margin-bottom: 32px;
}

/* -- About: Values Grid (on light bg) -------------------------------- */
.values-grid-light {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.value-card-light {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
}
.value-card-light h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.value-card-light p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* -- Journey Steps (about page, light bg) ----------------------------- */
.journey-steps-light {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}
.journey-step-light {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.journey-step-light .step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 2px solid var(--c-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-gold);
}
.journey-step-light h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.journey-step-light p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* -- Header Logo (SVG) ----------------------------------------------- */
.hdr-logo-img {
  height: 40px;
  width: auto;
  display: block;
  transition: height .3s ease;
}
.site-header.scrolled .hdr-logo-img {
  height: 32px;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}

/* -- Language Switcher ------------------------------------------------ */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s;
  background: none;
  border: none;
  color: var(--c-text);
}
.lang-btn:hover { background: rgba(0,0,0,.05); }
.lang-flag { font-size: 20px; line-height: 1; }
.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  min-width: 160px;
  z-index: 300;
  overflow: hidden;
  margin-top: 4px;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: background .15s;
  font-family: var(--font-body);
  text-align: left;
}
.lang-option:hover { background: var(--c-bg); }
.lang-option.active { color: var(--c-gold); font-weight: 600; }
.lang-option span { font-size: 18px; }

/* -- Legal Notice (multi-lang) ---------------------------------------- */
.legal-lang-notice {
  background: rgba(184,150,78,.08);
  border: 1px solid rgba(184,150,78,.2);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
