/* =============================================
   ABOUT US PAGE – STYLESHEET
   Matches the screenshot layout 1-to-1
   ============================================= */

/* ── Body override for About page ───────────── */
.about-page {
  background: #fff;
}

/* Force plain text styling – prevent any inherited link colours */
.about-para,
.mv-text,
.about-tagline,
.about-footer-info-row p {
  color: #555;
  text-decoration: none;
}

.about-split-left a,
.about-split-left p {
  color: inherit;
  text-decoration: none;
}

/* ── Vertical Contact Tab (right side) ──────── */
.vertical-contact-tab {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  z-index: 999;
  background: var(--dark);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.55rem 1.4rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.vertical-contact-tab:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* =============================================
   ABOUT SPLIT SECTION
   Left: text content | Right: full-height image
   ============================================= */
.about-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 80px; /* offset for fixed navbar */
}

/* ── LEFT COLUMN ───────────────────────────── */
.about-split-left {
  padding: 4rem 3.5rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #fff;
}

/* ── Pill badge (About Us / Mission / Values / Contact Us) */
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  width: fit-content;
  cursor: default;
}

.pill-dot {
  font-size: 0.55rem;
  color: var(--dark);
}

/* ── About body text ───────────────────────── */
.about-body-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-para {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.85;
  font-family: 'Poppins', sans-serif;
}

.about-tagline {
  font-size: 0.85rem;
  color: #444;
  font-style: italic;
  font-family: 'Poppins', sans-serif;
  margin-top: 0.25rem;
}

/* ── Mission & Values row ──────────────────── */
.mv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.mv-box {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.mv-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
}

.mv-pill {
  pointer-events: none;
}

.mv-text {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.85;
  font-family: 'Poppins', sans-serif;
}

/* ── Contact Us pill CTA ───────────────────── */
.contact-pill-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.contact-pill {
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-pill:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-pill:hover .pill-dot {
  color: var(--gold);
}

/* ── RIGHT COLUMN: Image ───────────────────── */
.about-split-right {
  position: relative;
  overflow: hidden;
}

.about-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.about-split-right:hover .about-split-img {
  transform: scale(1.03);
}

/* ── Reveal animation ──────────────────────── */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   FOOTER – About page variant
   ============================================= */
.about-page .footer {
  background: #111;
}

.about-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── Head Quarters ─────────────────────────── */
.about-footer-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.about-footer-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.about-footer-icon {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.about-footer-info-row p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  font-family: 'Poppins', sans-serif;
}

.about-footer-sub-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin: 1rem 0 0.5rem;
}

/* ── Contact Form ──────────────────────────── */
.about-footer-contact {
  background: #1a1a1a;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 16px;
  padding: 2rem 2rem 2.25rem;
}

.about-footer-form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

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

.about-form-input {
  width: 100%;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  resize: none;
}

.about-form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.about-form-input:focus {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(201, 168, 76, 0.04);
}

.about-form-textarea {
  min-height: 100px;
}

.about-form-submit {
  width: 100%;
  padding: 0.8rem;
  background: var(--dark);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
  margin-top: 0.25rem;
}

.about-form-submit:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-split-section {
    grid-template-columns: 55% 45%;
  }
  .about-split-left {
    padding: 3.5rem 2.5rem 3.5rem 3rem;
  }
}

@media (max-width: 860px) {
  .about-split-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .about-split-right {
    height: 55vw;
    min-height: 280px;
    max-height: 420px;
  }
  .about-split-left {
    padding: 3rem 2rem;
    order: 2;
  }
  .about-split-right {
    order: 1;
  }
  .about-footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .vertical-contact-tab {
    display: none;
  }
}

@media (max-width: 600px) {
  .mv-row {
    grid-template-columns: 1fr;
  }
  .about-split-left {
    padding: 2.5rem 1.25rem;
  }
}

/* ── Mobile menu override for light navbar ── */
@media (max-width: 900px) {
  .vertical-contact-tab {
    display: none;
  }
}

/* =============================================
   ABOUT – MOBILE OPTIMIZATIONS (≤480px)
   ============================================= */
@media (max-width: 480px) {
  .about-hero { padding: 7rem 1.25rem 3rem; }
  .about-hero-title { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .about-hero-subtitle { font-size: 0.88rem; }

  .about-split-section { grid-template-columns: 1fr; }
  .about-split-left { padding: 2rem 1.25rem; }
  .about-split-right { height: 52vw; min-height: 220px; }

  .mv-row { grid-template-columns: 1fr; gap: 1rem; }
  .mv-card { padding: 1.5rem 1.1rem; }

  .team-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .team-card-img { height: 140px; }

  .about-footer-container { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-form { padding: 1.5rem 1.1rem; }
  .about-form-row { grid-template-columns: 1fr; }
  .about-form-input, .about-form-select { font-size: 16px; }
}

@media (max-width: 900px) {
  .about-hero { padding-top: 80px !important; }
}
@media (max-width: 480px) {
  .about-hero { padding-top: 72px !important; }
}
