/* ============================================
   ABOUT PAGE - HERO
   ============================================ */
.about-page .about-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=2071&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
  font-family: "DM Sans", sans-serif;
}

.about-page .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.about-page .hero-container {
  position: relative;
  z-index: 2;
  text-align: left-;
}

.about-page .hero-pill {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

.about-page .hero-title {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
  color: #fff;
  text-align: left;
}

/* ============================================
   MISSION / VISION / FOCUS BENTO
   ============================================ */
.about-page .about-bento-section {
  padding: 100px 0;
  background-color: #fff;
}

.about-page .bento-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 40px;
}

.about-page .bento-header .header-left {
  flex: 1;
}
.about-page .bento-header .header-right {
  flex: 1;
}

.about-page .bento-title {
  font-size: 35px;
  color: var(--dark);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}

.about-page .cta-link {
  color: var(--azure);
  font-weight: 700;
  text-decoration: underline;
  font-size: 1rem;
}

.about-page .bento-intro {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  max-width: 500px;
}

.about-page .bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.about-page .bento-grid .card {
  border-radius: 30px;
  padding: 30px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.about-page .bento-grid .card:hover {
  transform: translateY(-5px);
}

.about-page .bento-grid .card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-page .bento-grid .card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.about-page .card-feature {
  background-color: #f1f5f9;
  color: var(--dark);
}

.about-page .card-feature::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 220px;
  height: 220px;
  background: var(--warm-orange);
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(50px);
  z-index: 1;
}

.about-page .card-navy {
  background-color: var(--azure);
  color: #fff;
}

.about-page .card-dark {
  background-color: var(--warm-orange);
  color: var(--dark);
}

/* ============================================
   DHD FOUNDATION SECTION
   ============================================ */
.about-page .fdn-section {
  padding: 100px 0;
  background-color: #f8f9fb;
}

.about-page .fdn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-page .fdn-content {
  border-radius: 20px;
  padding: 40px;
  background-color: #fff;
  box-shadow: 3px 4px 10px #d3d3d3;
}

.about-page .fdn-title {
  font-size: 35px;
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 25px;
}

.about-page .fdn-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 20px;
}

/* Hidden by default — toggled by JS */
.about-page .more-content {
  display: none;
}

.about-page .fdn-btn {
  background-color: var(--white);
  color: #000;
  border: 1px solid var(--dark);
  border-radius: 20px;
  padding: 12px 35px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 5px;
  transition: background-color 0.3s ease;
}

.about-page .fdn-btn:hover {
  background-color: var(--warm-orange);
  border-color: var(--warm-orange);
}

.about-page .fdn-image-side {
  width: 100%;
}

.about-page .img-wrapper {
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 20px;
}

.about-page .img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.about-page .img-wrapper:hover img {
  transform: scale(1.03);
}

.about-page .zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 33, 71, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.about-page .img-wrapper:hover .zoom-overlay {
  opacity: 1;
}

.about-page .zoom-overlay span {
  color: white;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
}

/* Zoom Modal */
.about-page .modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.about-page .modal-content {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  animation: zoomAni 0.3s ease;
}

@keyframes zoomAni {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}

.about-page .close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 50px;
  cursor: pointer;
  line-height: 1;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.about-page .services-section {
  padding: 80px 0;
  background-color: rgb(230, 230, 230);
}

.about-page .services-inner-box {
  background-color: #f6f3f0;
  padding: 70px 60px;
  border-radius: 40px;
}

.about-page .section-header-center {
  text-align: center;
  margin-bottom: 50px;
}

.about-page .section-header-center .highlight-title,
.about-page .highlight-title {
  font-size: 35px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  display: inline-block;
}

.about-page .section-header-center p,
.about-page .section-subtitle {
  color: #666;
  line-height: 1.6;
  margin-top: 5px;
  font-size: 16px;
  max-width: 600px;
  margin: 5px auto 0;
}

.about-page .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-page .service-card {
  background-color: var(--white);
  padding: 30px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.about-page .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.about-page .service-icon {
  width: 50px;
  height: 50px;
  background-color: #f1ede9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--azure);
  margin-bottom: 25px;
}

.about-page .service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.about-page .service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.about-page .why-choose-us {
  padding: 100px 0;
  background-color: #fff;
}

.about-page .benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.about-page .benefit-card {
  background: rgb(245, 245, 245);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.about-page .benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(26, 54, 93, 0.1);
}

.about-page .benefit-icon-box {
  width: 70px;
  height: 70px;
  background-color: var(--cyan-blue);
  color: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 28px;
  transition: 0.3s;
}

.about-page .benefit-card:hover .benefit-icon-box {
  background-color: var(--warm-orange);
  transform: rotate(5deg);
}

.about-page .benefit-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.about-page .benefit-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ============================================
   DIRECTOR PROFILE SECTION
   ============================================ */
.about-page .director-profile-section {
  padding: 80px 0 60px;
  background: #f8f9fb;
}

.about-page .director-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 70px;
  padding-bottom: 70px;
  border-bottom: 1px solid #e5e7eb;
}

.about-page .director-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.about-page .director-row-alt {
  grid-template-columns: 1fr 340px;
}

.about-page .director-row-alt .director-img-col {
  order: 2;
}
.about-page .director-row-alt .director-content-col {
  order: 1;
}

.about-page .director-img-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.about-page .director-img-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  border: 4px solid #fff;
}

.about-page .director-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.about-page .director-img-wrap:hover img {
  transform: scale(1.04);
}

.about-page .director-img-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-page .director-img-meta strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.about-page .director-img-meta span {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.about-page .director-content-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 6px;
}

.about-page .director-label {
  display: inline-block;
  background: rgba(14, 116, 188, 0.1);
  color: var(--azure);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  align-self: flex-start;
}

.about-page .director-name {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin: 0;
}

.about-page .director-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--azure);
  margin: 0;
}

.about-page .director-bio {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin: 0;
}

.about-page .director-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.about-page .dir-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-page .dir-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-page .dir-social-btn.whatsapp {
  background: #25d366;
}
.about-page .dir-social-btn.linkedin {
  background: #0a66c2;
}

.about-page .dir-social-btn.instagram {
  background: #e1306c;
}
.about-page .dir-social-btn.youtube {
  background: #ff0000;
}

/* ============================================
   RESPONSIVE — TABLET (≤1024px) — desktop untouched
   ============================================ */
@media (max-width: 1024px) {
  .about-page .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-page .services-inner-box {
    padding: 50px 20px;
  }
  .about-page .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-page .why-choose-us {
    padding: 60px 0;
  }
}

/* ============================================
   RESPONSIVE — SMALL TABLET (≤900px)
   ============================================ */
@media (max-width: 900px) {
  .about-page .fdn-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-page .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-page .bento-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .about-page .director-row,
  .about-page .director-row-alt {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-page .director-row-alt .director-img-col,
  .about-page .director-row-alt .director-content-col {
    order: unset;
  }
  .about-page .director-img-col {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
  .about-page .director-img-wrap img {
    height: 300px;
  }
  .about-page .director-name {
    font-size: 1.5rem;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
  /* ── HERO ── */
  .about-page .about-hero {
    min-height: 45vh;
  }
  .about-page .hero-container {
    text-align: center;
  }
  .about-page .hero-pill {
    font-size: 11px;
    padding: 5px 14px;
    margin-bottom: 16px;
  }
  .about-page .hero-title {
    font-size: 26px !important;
    line-height: 1.2;
    margin-bottom: 0;
    text-align: center;
  }

  /* ── BENTO / OVERVIEW ── */
  .about-page .about-bento-section {
    padding: 56px 0 48px;
  }
  .about-page .bento-header {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
  }
  .about-page .bento-title {
    font-size: 24px;
    margin-bottom: 6px;
  }
  .about-page .bento-intro {
    font-size: 14px;
    line-height: 1.6;
  }
  .about-page .bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-page .bento-grid .card {
    border-radius: 20px;
    padding: 24px 20px;
    min-height: auto;
  }
  .about-page .bento-grid .card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  .about-page .bento-grid .card p {
    font-size: 14px;
  }

  /* ── DHD FOUNDATION SECTION ── */
  .about-page .fdn-section {
    padding: 48px 0;
  }
  .about-page .fdn-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-page .fdn-content {
    padding: 24px 20px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }
  .about-page .fdn-title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  .about-page .fdn-text {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 14px;
  }
  .about-page .fdn-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 14px;
    margin-top: 8px;
  }
  /* Image side: image first on mobile, content below */
  .about-page .fdn-row {
    display: flex;
    flex-direction: column-reverse;
  }
  .about-page .img-wrapper img {
    height: 220px;
    border-radius: 16px;
  }
  .about-page .zoom-overlay {
    border-radius: 16px;
  }

  /* ── WHY CHOOSE US ── */
  .about-page .why-choose-us {
    padding: 52px 0;
  }
  .about-page .highlight-title,
  .about-page .section-header-center .highlight-title {
    font-size: 24px;
  }
  .about-page .section-subtitle {
    font-size: 14px;
  }
  .about-page .section-header-center {
    margin-bottom: 32px;
  }
  .about-page .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .about-page .benefit-card {
    padding: 22px 14px;
    border-radius: 16px;
  }
  .about-page .benefit-icon-box {
    width: 54px;
    height: 54px;
    font-size: 22px;
    border-radius: 12px;
    margin-bottom: 12px;
  }
  .about-page .benefit-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .about-page .benefit-card p {
    font-size: 13px;
    line-height: 1.55;
  }

  /* ── DIRECTOR SECTION ── */
  .about-page .director-profile-section {
    padding: 52px 0 40px;
  }
  .about-page .director-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 48px;
  }
  .about-page .director-img-col {
    max-width: 100%;
    margin: 0 auto;
  }
  .about-page .director-img-wrap img {
    height: auto;
    max-height: 340px;
    object-fit: contain;
    object-position: top center;
    background-color: #f1f5f9;
  }

  /* Advisor image — full width, natural aspect ratio */
  .about-page .advisor-section .director-img-wrap img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
    object-position: center;
    background-color: transparent;
  }
  .about-page .director-img-meta strong {
    font-size: 15px;
  }
  .about-page .director-img-meta span {
    font-size: 12px;
  }
  .about-page .director-content-col {
    gap: 12px;
    padding-top: 0;
  }
  .about-page .director-name {
    font-size: 1.35rem;
  }
  .about-page .director-bio {
    font-size: 14px;
    line-height: 1.7;
  }
  .about-page .director-social {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .about-page .dir-social-btn {
    flex: 1;
    justify-content: center;
    min-width: 120px;
    padding: 10px 16px;
    font-size: 13px;
  }

  /* ── SERVICES SECTION ── */
  .about-page .services-section {
    padding: 48px 0;
  }
  .about-page .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-page .services-inner-box {
    padding: 32px 16px;
    border-radius: 24px;
  }
  .about-page .service-card {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .about-page .service-card h3 {
    font-size: 17px;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
  /* ── HERO ── */
  .about-page .hero-title {
    font-size: 22px !important;
  }
  .about-page .about-hero {
    min-height: 38vh;
  }

  /* ── BENTO ── */
  .about-page .about-bento-section {
    padding: 40px 0 36px;
  }
  .about-page .bento-title {
    font-size: 21px;
  }

  /* ── FOUNDATION ── */
  .about-page .fdn-title {
    font-size: 20px;
  }
  .about-page .img-wrapper img {
    height: 195px;
  }

  /* ── WHY CHOOSE US — single column on very small screens ── */
  .about-page .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .about-page .benefit-card {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 18px 16px;
  }
  .about-page .benefit-icon-box {
    flex-shrink: 0;
    margin: 0;
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .about-page .benefit-card h3 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  /* ── DIRECTOR ── */
  .about-page .director-img-wrap img {
    height: auto;
    max-height: 320px;
    object-fit: cover;
    object-position: top center;
    background-color: #f1f5f9;
  }
  .about-page .director-name {
    font-size: 1.2rem;
  }
  .about-page .director-social {
    flex-direction: column;
  }
  .about-page .dir-social-btn {
    width: 100%;
  }

  /* ── CLOSE BUTTON (zoom modal) ── */
  .about-page .close-btn {
    top: 12px;
    right: 16px;
    font-size: 38px;
  }
}
