/* ============================================
   Keeera — Who Are We Page
   ============================================ */

.who-page {
  font-family: "Tajawal", "Cairo", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  padding: 6rem 2rem;

}

/* ======= HEADER ======= */
.who-header {
  background: var(--tank-hero-bg);
  text-align: center;
  padding: 6rem 2rem;
  border-bottom: 2px solid rgba(246, 172, 80, 0.25);
  box-shadow: inset 0 -10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
}

.who-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent1);
  margin-bottom: 1rem;
}

.who-header p {
  max-width: 750px;
  margin: auto;
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 2;
}

/* ======= SECTIONS ======= */
.who-section {
  padding: 4rem 2rem;
  margin: 0 auto;
  max-width: 1100px;
  margin-top:10px;
  margin-bottom:10px;
}

.who-section h2 {
  color: var(--accent1);
  font-size: 2.1rem;
  margin-bottom: 1.2rem;
  text-align: right;
  position: relative;
}

.who-section h2::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 160px;
  height: 3px;
  background: var(--accent1);
  border-radius: 5px;
}

.who-section p {
  color: var(--text);
  line-height: 1.9;
  font-size: 1.05rem;
  text-align: right;
  opacity: 0.9;
}

/* ======= Mission ======= */
.who-mission {
  background: linear-gradient(135deg, #1e252e, #161b21);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* ======= Vision ======= */
.who-vision {
  background: var(--confirmation-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

/* ======= Values ======= */
.who-values {
  background: linear-gradient(145deg, #1b2129, #161b21);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.who-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.who-value {
  background: var(--card-bg-dark);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(246, 172, 80, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.who-value:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(246, 172, 80, 0.3);
}

.who-value h3 {
  color: var(--accent1);
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  text-align: right;
}

.who-value p {
  color: var(--text);
  line-height: 1.8;
  opacity: 0.85;
  text-align: right;
}

/* ======= Contact ======= */
.who-contact {
  text-align: center;
  background: linear-gradient(135deg, #1a2028, #161b21);
  border-radius: var(--border-radius);
  padding: 4rem 2rem;
  margin: 5rem auto;
  box-shadow: var(--shadow);
}

.who-contact h2 {
  color: var(--accent1);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.who-contact-text {
  color: var(--text);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.9;
}

.who-btn {
  display: inline-block;
  background: var(--accent1);
  color: var(--bg);
  font-weight: 700;
  padding: 0.9rem 2.6rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}

.who-btn:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
}

/* =========================================================
   LIGHT MODE — new design
   ========================================================= */

body.light-mode .who-page {
  background: linear-gradient(160deg, #0f1317 0%, #11151a33 100%);
  color: var(--bg);
}

body.light-mode .who-header {
  background: linear-gradient(135deg, #e0c8a8, #f0d8b5, #d8c5a0);
  color: var(--bg);
  box-shadow: inset 0 -8px 20px rgba(0, 0, 0, 0.2);
}

body.light-mode .who-header h1 {
  color: #2b2e33;
  text-shadow: 0 0 10px rgba(246, 172, 80, 0.3);
}

body.light-mode .who-header p {
  color: #2b2e33;
  opacity: 0.85;
}

body.light-mode .who-mission {
  background: linear-gradient(145deg, #f6e9cf, #f0dcb9);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

body.light-mode .who-vision {
  background: linear-gradient(145deg, #e4d6bd, #e8dec7);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

body.light-mode .who-values {
  background: linear-gradient(145deg, #f3e5ca, #eadbbd);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

body.light-mode .who-values .who-value {
  background: #f0e3c9;
  border: 1px solid rgba(246, 172, 80, 0.4);
}

body.light-mode .who-value h3 {
  color: #3a3c42;
}

body.light-mode .who-value p {
  color: #3a3c42;
}

body.light-mode .who-contact {
  background: linear-gradient(135deg, #f7e9cc, #f0d8b5);
  box-shadow: 0 0 25px rgba(246, 172, 80, 0.25);
}

body.light-mode .who-contact-text {
  color: #3a3c42;
}

body.light-mode .who-btn {
  background: var(--accent1);
  color: #2b2e33;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {
  .who-header h1 {
    font-size: 2.2rem;
  }

  .who-section {
    padding: 3rem 1.5rem;
  }

  .who-values-grid {
    grid-template-columns: 1fr;
  }
}
