/* =============================================
   PAHSRF – Main Stylesheet (Complete Final)
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #c8102e;
  --primary-dark: #a00d24;
  --blue: #4c8bd0;
  --blue-dark: #3a6fa8;
  --blue-bright: #4c90e5;
  --blue-bright-hover: #3a7bc8;
  --accent-blue: #004488;
  --dark: #0b1c2c;
  --dark-2: #07131e;
  --heading: #1b2d37;
  --text: #555555;
  --text-light: #666666;
  --muted: #777777;
  --border: #e0e0e0;
  --bg-light: #f5f5f5;
  --bg-card: #f8f8f8;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --whatsapp-header: #075e54;
  --green-dark: #1f3a12;
  --radius: 4px;
  --radius-lg: 6px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --container: 1200px;
  --transition: 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-primary-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-primary-blue:hover {
  background: var(--blue-dark);
}

.btn-dark {
  background: #000;
  color: var(--white);
}
.btn-dark:hover {
  background: #333;
}

.btn-small {
  padding: 10px 24px;
  font-size: 12px;
}

.btn-donate {
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: background var(--transition);
}
.btn-donate:hover {
  background: var(--primary-dark);
}

.btn-blue-bright {
  background: var(--blue-bright);
  color: var(--white);
}
.btn-blue-bright:hover {
  background: var(--blue-bright-hover);
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.header-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ---------- LOGO (increased size) ---------- */
.logo-wrapper .main-logo,
.main-logo {
  max-height: 85px;
  width: auto;
  height: auto;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex: 1;
}

.top-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flag-icon {
  width: 20px;
  height: auto;
}

.social-follow {
  display: flex;
  align-items: center;
  gap: 4px;
}

.social-icon {
  margin-left: 8px;
  color: #333;
  transition: color var(--transition);
}
.social-icon:hover {
  color: var(--primary);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  align-items: center;
}

.nav-links > li > a {
  color: #333;
  padding: 8px 12px;
  font-weight: 500;
  font-size: 14px;
  display: block;
  transition: color var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--primary);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-icon {
  font-size: 10px;
  margin-left: 4px;
}

/* Dropdown - FIXED */
.dropdown { position: relative; }
.dropdown-icon { font-size: 11px; margin-left: 4px; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #3b3d97 !important;
    min-width: 220px;
    display: none;
    flex-direction: column;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 0 0 6px 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    display: flex !important;
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    color: #ffffff !important;
    padding: 14px 20px !important;
    display: block !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    background: transparent !important;
    text-decoration: none !important;
}

.dropdown-menu li a:hover {
    background-color: #2a2c7a !important;
    color: #ffffff !important;
}

/* =============================================
   LANGUAGE SWITCHER
   ============================================= */
.lang-select {
  position: relative;
}

.lang-select > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  cursor: pointer;
}

.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  min-width: 160px;
  padding: 8px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 999;
  margin-top: 5px;
}

.lang-select.open .lang-menu,
.lang-menu.show {
  display: block;
}

.lang-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: 0.2s;
}

.lang-menu li:hover {
  background: #f5f5f5;
}

.lang-menu li img {
  width: 20px;
  height: auto;
}

/* Hide Google Translate branding */
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate,
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  padding: 4px 8px;
}

/* Header responsive */
@media (max-width: 992px) {
  .top-bar {
    display: none;
  }
  .header-right {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--border);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links > li > a {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
    padding-left: 12px;
    min-width: 0;
    background: var(--bg-light);
  }
  .dropdown.open .dropdown-menu {
    display: block;
  }
  .lang-menu {
    right: auto;
    left: 0;
  }
}

/* =============================================
   PAGE BANNER (inner pages)
   ============================================= */
.page-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  position: relative;
  color: var(--white);
  min-height: 300px;
  display: flex;
  align-items: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(50, 61, 151, 0.7);
}

.banner-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 60, 0.55);
}

.banner-overlay-light {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.banner-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.banner-subtitle {
  font-size: 16px;
  margin-top: 10px;
  color: var(--white);
  opacity: 0.9;
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero-section {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #06151c;
}

/* =========================================
   BACKGROUND VIDEO
   ========================================= */

.hero-video {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    z-index: 0;
    pointer-events: none;

    display: block;
}

/* =========================================
   VIDEO OVERLAY
   ========================================= */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.55);

    z-index: 1;
    pointer-events: none;
}

/* =========================================
   HERO CONTENT
   ========================================= */

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    text-align: center;

    padding: 100px 20px;
}

/* =========================================
   TEXT
   ========================================= */

.hero-welcome {
    margin: 0 0 12px;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;

    color: #ffffff;

    text-transform: uppercase;

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-title {
    margin: 0 auto 22px;

    color: #ffffff;

    font-size: clamp(30px, 5vw, 60px);
    line-height: 1.08;
    font-weight: 800;

    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    max-width: 900px;

    margin: 0 auto 22px;

    color: #ffffff;

    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.65;
    font-weight: 500;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* =========================================
   SECTION 42 NOTICE
   ========================================= */

.legal-notice {
    display: inline-block;

    margin: 18px auto 30px;
    padding: 13px 24px;

    color: #ffffff;

    font-size: clamp(20px, 2.5vw, 30px);
    line-height: 1.4;

    font-weight: 800;
    letter-spacing: 0.4px;

    text-align: center;

    border-top: 2px solid rgba(255, 255, 255, 0.55);
    border-bottom: 2px solid rgba(255, 255, 255, 0.55);

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* =========================================
   BUTTONS
   ========================================= */

.hero-buttons {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 15px;
    flex-wrap: wrap;

    position: relative;
    z-index: 3;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    .hero-section {
        min-height: 680px;
    }

    .hero-video {
        object-position: center center;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.60);
    }

    .hero-content {
        padding: 90px 18px;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.12;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.55;
    }

    .hero-subtitle br {
        display: none;
    }

    .legal-notice {
        display: block;

        font-size: 20px;
        line-height: 1.45;

        padding: 12px 15px;
        margin: 20px auto 28px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {

    .hero-section {
        min-height: 650px;
    }

    .hero-content {
        padding: 80px 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .legal-notice {
        font-size: 18px;
    }
}


/* =============================================
   HOME – STATS
   ============================================= */
.stats-section {
  margin-top: -80px;
  position: relative;
  z-index: 5;
  padding-bottom: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.stat-card {
  background: var(--bg-light);
  padding: 40px 20px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-card h3 {
  font-size: 42px;
  font-weight: 400;
  color: #333;
  margin-bottom: 10px;
}

.stat-card p {
  color: var(--muted);
  font-size: 14px;
}

/* =============================================
   HOME – ABOUT
   ============================================= */
.about-section {
  padding: 60px 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: start;
}

.about-title {
  font-size: 32px;
  color: #000;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-text-col p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.link-underline {
  color: var(--heading);
  text-decoration: underline;
}

.about-main-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-small-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-small-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-values {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-icon {
  width: 50px;
  height: 50px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 20px;
  flex-shrink: 0;
}

.value-content h4 {
  color: var(--green-dark);
  font-size: 18px;
  margin-bottom: 6px;
}

.value-content p {
  color: var(--text-light);
  font-size: 14px;
}

.about-values .btn {
  align-self: flex-start;
  margin-top: 10px;
}

/* =============================================
   CTA BANNER
   ============================================= */

.cta-banner {
  position: relative;
  overflow: hidden;

  width: 100%;
  min-height: 420px;

  padding: 100px 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--white);
  text-align: center;
}


/* =============================================
   CTA BACKGROUND IMAGE
   ============================================= */

.cta-background {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  z-index: 0;
}


/* =============================================
   CTA OVERLAY
   ============================================= */

.cta-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.55);

  z-index: 1;
}


/* =============================================
   CTA CONTENT
   ============================================= */

.cta-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 850px;

  margin: 0 auto;
}


/* =============================================
   CTA HEADING
   ============================================= */

.cta-content h2 {
  margin: 0 0 18px;

  color: #ffffff;

  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}


/* =============================================
   CTA DESCRIPTION
   ============================================= */

.cta-content p {
  max-width: 680px;

  margin: 0 auto 32px;

  color: #ffffff;

  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;

  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}


/* =============================================
   CTA BUTTONS
   ============================================= */

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 15px;

  flex-wrap: wrap;
}


/* =============================================
   CTA BUTTON
   ============================================= */

.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 160px;
  min-height: 50px;

  padding: 13px 28px;

  text-decoration: none;

  font-size: 14px;
  line-height: 1;
  font-weight: 700;

  border-radius: 5px;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}


/* =============================================
   PRIMARY BLUE BUTTON
   ============================================= */

.cta-buttons .btn-primary-blue {
  background: var(--primary-blue);
  color: #ffffff;

  border: 2px solid var(--primary-blue);

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}


/* =============================================
   BUTTON HOVER
   ============================================= */

.cta-buttons .btn-primary-blue:hover {
  background: var(--primary-blue-dark, #155a96);
  border-color: var(--primary-blue-dark, #155a96);

  color: #ffffff;

  transform: translateY(-2px);

  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.25);
}


/* =============================================
   TABLET
   ============================================= */

@media (max-width: 768px) {

  .cta-banner {
    min-height: 380px;
    padding: 75px 20px;
  }

  .cta-content h2 {
    font-size: 32px;
    line-height: 1.25;
  }

  .cta-content p {
    font-size: 15px;
    line-height: 1.7;
  }

}


/* =============================================
   MOBILE
   ============================================= */

@media (max-width: 480px) {

  .cta-banner {
    min-height: 420px;
    padding: 60px 18px;
  }

  .cta-background {
    object-position: center center;
  }

  .cta-content h2 {
    font-size: 27px;
    line-height: 1.3;
  }

  .cta-content p {
    font-size: 14px;
    line-height: 1.65;

    margin-bottom: 25px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 220px;
  }

}
/* =============================================
   SERVICES (home cards)
   ============================================= */
.services-section {
  padding: 80px 20px;
  background: var(--white);
}

.section-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  padding: 30px 25px;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  font-size: 36px;
  color: #333;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.service-card.highlight-card {
  background: var(--blue);
  color: var(--white);
}

.highlight-card .service-icon,
.highlight-card h4,
.highlight-card p {
  color: var(--white);
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-section {
  padding: 60px 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: var(--container);
  margin: 0 auto;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

/* =============================================
   NEWS
   ============================================= */
.news-section {
  padding: 60px 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.news-card {
  background: var(--heading);
  color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid var(--heading);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-content p {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.read-more:hover {
  text-decoration: underline;
}

/* =============================================
   TEAM
   ============================================= */
.team-section {
  padding: 60px 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
}

/* Image wrapper keeps a perfect square */
.team-card .team-image,
.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;          /* matches 1200×1200 */
  height: auto;                 /* override old fixed 260px */
  object-fit: cover;
  object-position: center top;  /* keep faces in frame */
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: block;
}

.team-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.team-role {
  color: #888;
  font-size: 13px;
  margin-bottom: 15px;
}

.team-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Tablet / mobile */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 30px;
  }
}

/* =============================================
   CEO MESSAGE
   ============================================= */
.ceo-section {
  padding: 40px 20px;
}

.ceo-box {
  background: var(--heading);
  color: var(--white);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  padding: 30px;
  border-radius: var(--radius);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.ceo-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

.ceo-message h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.ceo-message p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.95;
}

.ceo-signature {
  margin-top: 15px;
  font-size: 14px;
}

.ceo-signature span {
  opacity: 0.85;
}

/* =============================================
   CONTACT FORM (home)
   ============================================= */
.contact-form-section {
  padding: 80px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}

.contact-label {
  font-size: 12px;
  color: #000;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-text h2 {
  font-size: 36px;
  color: #000;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  color: #000;
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  background: transparent;
  font-size: 15px;
  color: #333;
  outline: none;
  font-family: inherit;
  transition: border-color var(--transition);
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--blue);
}

.phone-input {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #ccc;
}

.phone-input input {
  border: none;
}

.country-code-img {
  display: block;
  width: 24px;
  flex-shrink: 0;
}

/* =============================================
   ROOT VARIABLES & GLOBAL DEFAULTS
   ============================================= */
:root {
  --white: #ffffff;
  --bg-light: #f8f9fa;
  --text-dark: #333333;
  --text-light: #666666;
  --heading: #2b56ad;
  --blue: #2b56ad;
  --green-dark: #1b7340;
  --radius: 6px;
  --container: 1200px;
}

/* =============================================
   ABOUT PAGE – DETAIL
   ============================================= */
.about-detail-section {
  padding: 80px 20px;
  background: var(--white);
}

.about-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.small-label {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about-detail-text h2 {
  font-size: 38px;
  color: #000000;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.line-accent {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: var(--blue);
  flex-shrink: 0;
}

.about-detail-text p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.pahsrf-signature {
  color: var(--text-dark) !important;
  font-size: 14px !important;
  letter-spacing: 2px;
  font-weight: 700;
}

.about-detail-image img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* =============================================
   STATS CARDS
   ============================================= */
.about-stats-section {
  padding: 20px 20px 80px;
}

.about-stats-box {
  background: var(--bg-light);
  padding: 50px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-radius: var(--radius);
  max-width: var(--container);
  margin: 0 auto;
}

.about-stat-item h3 {
  font-size: 40px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 15px;
}

.stat-line {
  width: 40px;
  height: 2px;
  background: var(--blue);
  margin-bottom: 15px;
}

.about-stat-item p {
  color: #000000;
  font-size: 14px;
  font-weight: 700;
}

/* =============================================
   CEO VIDEO SECTION
   ============================================= */
.ceo-video-section {
  padding: 60px 20px;
  text-align: center;
}

.ceo-video-text {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

.ceo-video-wrapper {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 42%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.ceo-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
}

/* =============================================
   REGISTRATION SECTION
   ============================================= */
.registration-section {
  background: var(--blue);
  padding: 60px 20px;
  color: var(--white);
  margin-top: 40px;
}

.registration-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

.registration-text h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.registration-text p {
  font-size: 15px;
  margin-bottom: 25px;
  opacity: 0.95;
  line-height: 1.6;
}

.certificate-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.certificate-images img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  background: var(--white);
  padding: 8px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* =============================================
   INFO IMAGES
   ============================================= */
.info-images-section {
  padding: 60px 20px;
  background: var(--white);
}

.info-images-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}

.info-image-box img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: var(--radius);
}

/* =============================================
   DONATE CTA BAR
   ============================================= */
.donate-cta-bar {
  background: var(--blue);
  padding: 35px 20px;
  color: var(--white);
}

.donate-cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: var(--container);
  margin: 0 auto;
}

.donate-cta-flex p {
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
  max-width: 700px;
  margin: 0;
}

/* =============================================
   BUTTONS & RESPONSIVE
   ============================================= */
.btn-dark {
  display: inline-block;
  background-color: #000000;
  color: var(--white);
  padding: 12px 28px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.btn-dark:hover {
  background-color: #222222;
}

@media (max-width: 992px) {
  .about-detail-grid,
  .registration-grid,
  .info-images-grid,
  .donate-cta-flex {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .about-stats-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-stats-box {
    grid-template-columns: 1fr;
  }

  .certificate-images {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   INTRO PARAGRAPH
   ============================================= */
.intro-para-section {
  padding: 50px 20px 30px;
}

.intro-para {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--heading);
  font-size: 15px;
  line-height: 1.7;
}

/* =============================================
   BENEFITS + FORM (Volunteer & Internship)
   ============================================= */
.benefits-form-section {
  padding: 40px 20px 80px;
}

.benefits-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: var(--container);
  margin: 0 auto;
}

.benefits-column h3 {
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
  font-weight: 700;
}

.benefits-list {
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-light);
  list-style: disc;
}

.benefits-list > li {
  margin-bottom: 15px;
}

.benefits-list strong {
  color: #000;
  display: block;
  margin-bottom: 5px;
}

.benefits-list ul {
  padding-left: 20px;
  list-style: disc;
  margin-top: 6px;
}

.how-to-heading {
  margin-top: 30px;
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
}

.how-to-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 10px;
}

/* Application form */
.form-column h2 {
  font-size: 32px;
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-sub {
  color: var(--green-dark);
  font-size: 14px;
  margin-bottom: 30px;
}

.app-form .form-group {
  margin-bottom: 20px;
}

.app-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.app-form label {
  display: block;
  font-size: 13px;
  color: #333;
  margin-bottom: 6px;
  font-weight: 500;
}

.app-form input,
.app-form select,
.app-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-size: 14px;
  color: #333;
  border-radius: 3px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.app-form input:focus,
.app-form select:focus,
.app-form textarea:focus {
  border-color: var(--heading);
  background: var(--white);
}

/* Alerts */
.alert-success {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 14px;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 14px;
}

/* =============================================
   REGISTRATION FORM (child)
   ============================================= */
.registration-form-section {
  padding: 50px 20px 80px;
}

.reg-form {
  max-width: 900px;
  margin: 0 auto;
}

.reg-form .form-group {
  margin-bottom: 18px;
}

.reg-form label {
  display: block;
  font-size: 12px;
  color: #555;
  margin-bottom: 5px;
  font-weight: 500;
}

.reg-form input,
.reg-form select,
.reg-form textarea {
  width: 100%;
  padding: 12px;
  background: #f2f2f2;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  color: #333;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.reg-form input:focus,
.reg-form select:focus,
.reg-form textarea:focus {
  background: var(--white);
  border-color: var(--heading);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.form-panel {
  background: #f0f0f0;
  padding: 20px;
  border-left: 3px solid #ddd;
  margin-bottom: 18px;
}

.panel-label {
  font-weight: 600;
  color: #000 !important;
  margin-bottom: 15px !important;
  display: block;
}

.form-panel input,
.form-panel select {
  background: var(--white);
}

.checkbox-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px !important;
  color: var(--heading) !important;
  font-weight: 500 !important;
  cursor: pointer;
}

.check-item input {
  width: auto !important;
  margin-top: 3px;
}

.form-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 25px 0;
}

.section-mini-title {
  font-size: 13px;
  color: #333;
  font-weight: 600;
  margin: 15px 0 10px;
}

.consent-block {
  background: #f9f9f9;
  padding: 20px;
  border-radius: var(--radius);
}

.consent-block ul {
  padding-left: 20px;
  margin: 10px 0;
  list-style: disc;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

.consent-block .check-item {
  align-items: flex-start;
  color: #333 !important;
  font-weight: normal !important;
}

.link-blue {
  color: var(--heading);
  text-decoration: underline;
}

.upload-box {
  background: #f2f2f2;
  padding: 30px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px dashed #ccc;
}

.upload-box i {
  font-size: 24px;
  color: #999;
  margin-bottom: 10px;
  display: block;
}

.upload-box p {
  font-size: 13px;
  color: var(--text-light);
}

.upload-btn {
  color: var(--green-dark);
  text-decoration: underline;
  cursor: pointer;
  display: inline !important;
  margin: 0 !important;
  font-weight: normal !important;
}

/* =============================================
   PRIVACY POLICY PAGE
   ============================================= */
.privacy-banner {
  min-height: 400px;
}

.privacy-content-section {
  padding: 60px 20px 80px;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content p {
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.privacy-content p strong {
  color: #000;
  font-weight: 700;
  display: inline;
}

.privacy-content p span {
  color: var(--heading);
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-banner {
  min-height: 400px;
}

.services-list-section {
  padding: 60px 20px;
  background: var(--white);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.service-row.reverse .service-img {
  order: 2;
}

.service-row.reverse .service-info {
  order: 1;
}

.service-img img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  border-radius: var(--radius);
}

.service-info-icon {
  font-size: 14px;
  color: var(--heading);
  margin-bottom: 15px;
}

.service-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.service-info p {
  color: var(--heading);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 420px;
}

/* =============================================
   HISTORY PAGE
   ============================================= */
.our-story-section {
  padding: 60px 20px;
}

.story-heading {
  font-size: 32px;
  color: #000;
  font-weight: 700;
  margin-bottom: 25px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.story-text {
  max-width: 1000px;
  margin: 0 auto 25px;
}

.story-text p {
  color: var(--heading);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.story-quote {
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
  font-family: "Brush Script MT", cursive;
  font-size: 26px;
  color: #333;
  font-style: italic;
  line-height: 1.5;
}

/* Updated for 100% full-width single image display */
.story-images {
  max-width: 1000px;
  margin: 40px auto;
  border: 2px solid #333;
  padding: 5px;
  background-color: #fff;
}

.story-images img {
  width: 100%;
  height: auto;
  display: block;
}

.story-highlight {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: center;
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.5;
}

.history-bottom-grid {
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.history-bottom-text p {
  color: var(--heading);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.history-bottom-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 6px;
}

.history-bottom-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 6px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .history-bottom-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .story-heading {
    font-size: 26px;
  }
}

/* =============================================
   COURSES PAGE
   ============================================= */
.courses-top-section {
  padding: 40px 20px 60px;
  min-height: 400px;
}

.courses-top-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.dashboard-btn {
  background: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: var(--container);
  margin: 0 auto;
}

.course-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 12px;
}

.course-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
}

.course-body {
  padding: 15px 5px;
}

.course-body h4 {
  font-size: 14px;
  color: #000;
  font-weight: 700;
  margin-bottom: 12px;
}

.course-btn {
  display: block;
  text-align: center;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  color: var(--heading);
  font-size: 12px;
  transition: 0.3s;
}

.course-btn:hover {
  background: var(--heading);
  color: var(--white);
  border-color: var(--heading);
}

/* ============================================
   CONTACT PAGE HERO - FIX
   ============================================ */

/* Contact page banner */
.page-banner {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #1a2744; /* fallback if image missing */
    min-height: 380px !important;
    padding: 140px 20px !important;
    position: relative;
    display: flex;
    align-items: center;
}

/* Dark overlay so white title is readable */
.page-banner .banner-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 30, 60, 0.55) !important; /* was too light before */
    z-index: 1;
}

.page-banner .banner-content {
    position: relative;
    z-index: 2;
}

.page-banner .banner-content h1 {
    font-size: 52px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Contact form section spacing */
.contact-page-section {
    padding: 70px 20px 60px;
    background: #fff;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.small-label-2 {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.line-accent-small {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #2ecc71;
}

.contact-page-text h2 {
    font-size: 38px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
}

/* Contact form fields */
.contact-page-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-page-form .form-group {
    margin-bottom: 22px;
}

.contact-page-form label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid #ddd;
    padding: 10px 0;
    font-size: 15px;
    color: #333;
    background: transparent;
    outline: none;
    font-family: inherit;
}

.contact-page-form textarea {
    border: 1.5px solid #ddd;
    padding: 12px;
    border-radius: 4px;
    resize: vertical;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
    border-bottom-color: #3b3d97;
}

.contact-page-form textarea:focus {
    border-color: #3b3d97;
}

.phone-group input {
    border-bottom: 1.5px solid #ddd;
}

.btn-primary-blue {
    background: #2b6cb0;
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-primary-blue:hover {
    background: #1a4f8b;
}

/* =============================================
   OFFICES & MAPS (SIDE BY SIDE)
   ============================================= */
.offices-section {
  padding: 50px 20px;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.office-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid #eef2f5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.office-info {
  text-align: center;
  padding: 30px 20px 20px;
}

.office-icon {
  font-size: 32px;
  color: #111111;
  margin-bottom: 12px;
}

.office-info h2 {
  font-size: 22px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 10px;
}

.office-info p {
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
}

.map-wrapper {
  width: 100%;
  line-height: 0;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* Responsive adjustment for tablets & mobile */
@media (max-width: 991px) {
  .offices-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-wrapper iframe {
    height: 320px;
  }
}

/* Mobile */
@media (max-width: 991px) {
    .page-banner {
        min-height: 260px !important;
        padding: 100px 20px !important;
    }
    .page-banner .banner-content h1 {
        font-size: 36px !important;
    }
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .contact-page-text h2 {
        font-size: 28px;
    }
    .contact-page-form .form-row {
        grid-template-columns: 1fr;
    }
}
/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  color: var(--white);
  margin-top: 60px;
  font-size: 15px;
}

.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 50px 20px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

/* ---------- FOOTER LOGO (increased size) ---------- */
.footer-logo {
  max-height: 80px;
  width: auto;
  height: auto;
  margin-bottom: 15px;
}

.contact-email {
  color: #cfd8e3;
  margin: 0;
  font-size: 14px;
}

.contact-email a {
  color: #4fc3f7;
}

.contact-email a:hover {
  text-decoration: underline;
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin: 0 0 18px;
  font-weight: 600;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cfd8e3;
  font-size: 14px;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-contact-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  font-size: 13px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
}

.footer-bottom {
  background: var(--dark-2);
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bottom-bar-flex {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9eb0c3;
  font-size: 13px;
}

/* =============================================
   WHATSAPP WIDGET
   ============================================= */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 32px;
  cursor: pointer;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.1);
}

.wa-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: none;
}

.wa-box.open {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wa-header {
  background: var(--whatsapp-header);
  color: var(--white);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wa-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.wa-header strong {
  display: block;
  font-size: 15px;
}

.wa-header p {
  font-size: 11px;
  opacity: 0.85;
  margin: 0;
  line-height: 1;
}

.wa-close {
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  color: var(--white);
  opacity: 0.85;
}

.wa-close:hover {
  opacity: 1;
}

.wa-body {
  background: #e5ddd5;
  padding: 20px;
  min-height: 120px;
}

.wa-message {
  background: var(--white);
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  max-width: 85%;
  color: #333;
}

.wa-message p {
  margin: 0;
}

.wa-footer {
  padding: 15px;
  background: var(--white);
}

.wa-start-chat {
  display: block;
  background: var(--whatsapp);
  color: var(--white) !important;
  text-align: center;
  padding: 12px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: background var(--transition);
}

.wa-start-chat i {
  margin-right: 8px;
}

.wa-start-chat:hover {
  background: var(--whatsapp-dark);
}

/* =============================================
   ACCESSIBILITY WIDGET (same bottom as WhatsApp)
   ============================================= */
.accessibility-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
}

.accessibility-float {
  width: 50px;
  height: 50px;
  background: var(--accent-blue);
  color: var(--white);
  border: 3px solid var(--white);
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.accessibility-float:hover {
  background: #003366;
}

.acc-panel {
  position: absolute;
  bottom: 65px;
  left: 0;
  width: 340px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  padding: 15px;
  display: none;
  max-height: 80vh;
  overflow-y: auto;
}

.acc-panel.open {
  display: block;
}

.acc-panel.oversized {
  width: 440px;
  font-size: 1.15em;
}

.acc-header {
  margin-bottom: 15px;
}

.acc-help-btn {
  width: 100%;
  background: var(--accent-blue);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.acc-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 13px;
  color: #333;
  margin-bottom: 10px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

.switch input {
  display: none;
}

.slider-round {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  border-radius: 22px;
  transition: 0.3s;
}

.slider-round::before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: 0.3s;
}

.switch input:checked + .slider-round {
  background: var(--accent-blue);
}

.switch input:checked + .slider-round::before {
  transform: translateX(18px);
}

.acc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 15px;
}

.acc-item {
  background: #f5f5f5;
  padding: 20px 10px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
  border: 2px solid transparent;
}

.acc-item:hover {
  background: #e8e8e8;
}

.acc-item.active {
  border-color: var(--accent-blue);
}

.acc-item i {
  font-size: 22px;
  color: var(--accent-blue);
  display: block;
  margin-bottom: 8px;
}

.acc-item span {
  font-size: 12px;
  color: #333;
  font-weight: 500;
}

.acc-reset {
  width: 100%;
  background: var(--accent-blue);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.acc-reset:hover {
  background: #003366;
}

/* Accessibility mode styles (applied to body) */
body.acc-contrast {
  filter: contrast(1.5);
}

body.acc-highlight-links a {
  background: yellow !important;
  color: black !important;
  text-decoration: underline !important;
}

body.acc-bigger-text {
  font-size: 118% !important;
}

body.acc-text-spacing {
  letter-spacing: 2px !important;
  word-spacing: 5px !important;
}

body.acc-pause-animations *,
body.acc-pause-animations *::before,
body.acc-pause-animations *::after {
  animation: none !important;
  transition: none !important;
}

body.acc-hide-images img {
  visibility: hidden;
}

body.acc-dyslexia {
  font-family: "Comic Sans MS", "OpenDyslexic", cursive !important;
}

body.acc-cursor,
body.acc-cursor * {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'><polygon points='8,4 8,40 18,32 24,44 30,42 24,30 36,30' fill='black' stroke='white' stroke-width='2'/></svg>") 4 4, auto !important;
}

body.acc-tooltips [title]:hover::after {
  content: attr(title);
  position: absolute;
  background: #000;
  color: var(--white);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  z-index: 99999;
}

body.acc-line-height {
  line-height: 2 !important;
}

body.acc-text-align {
  text-align: left !important;
}

body.acc-saturation {
  filter: saturate(2);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .hero-title { font-size: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .ceo-box { grid-template-columns: 1fr; }
  .ceo-image img { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-content h2 { font-size: 28px; }
  .contact-text h2 { font-size: 28px; }
  .section-heading { font-size: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }

  .banner-content h1 { font-size: 32px; }
  .about-detail-grid { grid-template-columns: 1fr; }
  .about-detail-image img { height: 300px; }
  .about-stats-box { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .registration-grid { grid-template-columns: 1fr; }
  .certificate-images { grid-template-columns: 1fr; }
  .info-images-grid { grid-template-columns: 1fr; }

  .benefits-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .form-row-4 { grid-template-columns: 1fr 1fr; }
  .app-form .form-row { grid-template-columns: 1fr; }

  .service-row {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 60px;
  }
  .service-row.reverse .service-img { order: 1; }
  .service-row.reverse .service-info { order: 2; }
  .service-info p { max-width: 100%; }

  .history-bottom-grid { grid-template-columns: 1fr; }
  .story-quote { font-size: 22px; }
  .story-heading { font-size: 26px; text-align: center; }

  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-simple-form .form-row { grid-template-columns: 1fr; }
  .contact-page-text h2 { font-size: 32px; }

  .wa-box { width: 280px; }
  .acc-panel { width: 300px; }
  .acc-panel.oversized { width: 320px; }
}

@media (max-width: 575px) {
  .stats-grid,
  .services-grid,
  .gallery-grid,
  .courses-grid {
    grid-template-columns: 1fr;
  }

  .main-logo { max-height: 65px; }
  .footer-logo { max-height: 65px; }

  .hero-title { font-size: 26px; }
  .hero-buttons .btn { width: 100%; }
  .about-small-images { grid-template-columns: 1fr; }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-socials { justify-content: center; }
  .bottom-bar-flex {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .donate-cta-flex {
    flex-direction: column;
    text-align: center;
  }

  .page-banner {
    min-height: 200px;
    padding: 70px 20px;
  }
  .banner-content h1 { font-size: 26px; }
  .about-detail-text h2 { font-size: 26px; }
  .about-stats-box { grid-template-columns: 1fr; }
  .registration-text h2 { font-size: 28px; }

  .form-row-4 { grid-template-columns: 1fr; }
  .checkbox-row { flex-direction: column; gap: 10px; }

  .privacy-banner,
  .services-banner { min-height: 280px; }
  .story-images { grid-template-columns: 1fr; }
  .story-images img { height: 180px; }

  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }
  .accessibility-widget {
    bottom: 20px;
    left: 20px;
  }
  .whatsapp-float { width: 55px; height: 55px; font-size: 28px; }
  .accessibility-float { width: 46px; height: 46px; font-size: 20px; }
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #333; background-color: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============================================
   HEADER & NAVBAR
   ============================================ */
.site-header { background: #fff; border-bottom: 1px solid #eee; padding: 10px 0; }
.header-container { display: flex; align-items: center; justify-content: space-between; }
.main-logo { max-height: 90px; border-radius: 50%; }

.header-right { flex: 1; display: flex; flex-direction: column; align-items: flex-end; padding-left: 20px; }
.top-bar { display: flex; align-items: center; gap: 20px; margin-bottom: 12px; font-size: 14px; }
.contact-info { display: flex; align-items: center; gap: 8px; }
.flag-icon { width: 20px; border-radius: 2px; }
.social-follow { display: flex; align-items: center; gap: 10px; }

.social-icon { 
    width: 30px; 
    height: 30px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    color: white; 
    font-size: 14px; 
}

/* Official Brand Colors */
.social-icon.fb { background: #1877f2; } /* Facebook */
.social-icon.in { background: #0077b5; } /* LinkedIn */
.social-icon.yt { background: #ff0000; } /* YouTube */
.social-icon.ig { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); 
} /* Instagram */

.btn-donate { background: #c8102e; color: #fff; padding: 8px 20px; font-weight: bold; border-radius: 4px; font-size: 14px; transition: 0.3s; }
.btn-donate:hover { background: #a00c24; }

.nav-links { display: flex; align-items: center; gap: 20px; font-size: 15px; color: #333366; }
.nav-links a { padding: 5px 0; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: #3b5998; font-weight: 600; }

.dropdown { position: relative; }
.dropdown-icon { font-size: 11px; margin-left: 4px; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0;
    background-color: #3b3d97;
    min-width: 220px; display: none; flex-direction: column;
    z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.15); border-radius: 4px;
}
.dropdown:hover .dropdown-menu { display: flex; }
.dropdown-menu li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.dropdown-menu li:last-child { border-bottom: none; }
.dropdown-menu a { color: #fff !important; padding: 12px 18px !important; display: block; font-weight: normal !important; font-size: 14px; }
.dropdown-menu a:hover { background-color: #2e307e; }

.hamburger { display: none; font-size: 24px; cursor: pointer; color: #333366; }

/* ============================================
   PAGE BANNERS
   ============================================ */
.page-banner {
    background-size: cover; background-position: center; background-repeat: no-repeat;
    padding: 90px 20px; position: relative; color: #fff; min-height: 280px; display: flex; align-items: center;
}
.donate-hero-banner { background-color: #f2f4f8; min-height: 250px; }
.page-title-dark {
    font-size: 52px !important;
    font-weight: 800 !important;
    color: #111111 !important;
}
.donate-hero-banner {
    background-color: #f2f4f8 !important;
    min-height: 250px;
}
.donate-hero-banner .banner-content h1,
.donate-hero-banner h1 {
    color: #111111 !important;
}

.ceo-banner-bg { background-color: #3b3d97; min-height: 240px; }
.ceo-banner-bg h1 { font-size: 52px; font-weight: 800; color: #fff; }

.banner-overlay-dark { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,20,60,0.5); }
.banner-overlay-light { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.1); }
.banner-content { position: relative; z-index: 2; }
.banner-content h1 { font-size: 48px; font-weight: 800; }

/* ============================================
   DONATION PAGE STYLES
   ============================================ */
.donate-section { padding: 60px 20px 90px; text-align: center; background: #fff; }
.donate-intro { max-width: 750px; margin: 0 auto 50px; color: #333; font-size: 18px; line-height: 1.6; }

.donate-contacts-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
    max-width: 850px; margin: 0 auto 60px;
}
.donate-card { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.donate-icon-circle {
    width: 75px; height: 75px; border: 2px solid #555; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #444; font-size: 28px; transition: all 0.3s ease; background: #fff;
}
.donate-icon-circle:hover { background: #3b3d97; color: #fff; border-color: #3b3d97; transform: translateY(-3px); }
.donate-link { color: #222; font-size: 16px; font-weight: 600; }

.easypaisa-box { margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.easypaisa-logo-wrapper { height: 70px; display: flex; align-items: center; justify-content: center; }
.easypaisa-img { max-height: 60px; width: auto; }
.ep-text-logo { font-size: 36px; font-weight: 900; color: #00a859; font-style: italic; letter-spacing: -1px; }
.easypaisa-phone { font-size: 26px; color: #111; font-weight: 800; }

/* ============================================
   DR. SANA AZHAR PAGE STYLES
   ============================================ */
.ceo-block { padding: 70px 20px; background: #fff; }
.ceo-block.bg-light { background: #f9fbfd; }
.ceo-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: flex-start; max-width: 1100px; margin: 0 auto; }
.ceo-grid.reverse-grid { grid-template-columns: 1fr 1.2fr; }

.block-heading { font-size: 38px; color: #111; font-weight: 800; margin-bottom: 8px; }
.heading-line { width: 60px; height: 3px; background: #3b3d97; margin-bottom: 25px; }

.ceo-text p { color: #444; font-size: 15px; line-height: 1.8; margin-bottom: 18px; }
.ceo-text strong { color: #111; }

.styled-list { padding-left: 20px; list-style: disc; color: #444; }
.styled-list li { font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
.styled-list ul { padding-left: 20px; list-style: circle; margin-top: 8px; }
.styled-list strong { color: #111; }

.ceo-img-col { width: 100%; }
.ceo-img { width: 100%; border-radius: 6px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); background: #eee; min-height: 250px; object-fit: cover; }
.multi-img-col { display: flex; flex-direction: column; gap: 20px; }
.ceo-img-stacked { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; box-shadow: 0 3px 10px rgba(0,0,0,0.08); background: #eee; }

/* =========================================================
   WORKSHOPS SECTION (FULL-POSTER INTEGRATION)
   ========================================================= */

.workshops-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

.workshops-section .section-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 35px;
}

.workshop-featured-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Side-by-Side Card Frame */
.workshop-featured-card {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 900px;
    background-color: #1f2d3d; /* Matching site dark theme */
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Full Poster Area (No Clipping) */
.workshop-poster-container {
    flex: 0 0 42%;
    max-width: 42%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.workshop-poster-container img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain; /* Keeps entire poster visible */
    border-radius: 6px;
}

/* Details Area */
.workshop-info-container {
    flex: 0 0 58%;
    max-width: 58%;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.workshop-badge {
    align-self: flex-start;
    background-color: #f59e0b;
    color: #0f172a;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.workshop-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 6px;
}

.workshop-subtitle {
    font-size: 0.95rem;
    color: #38bdf8;
    font-weight: 600;
    margin-bottom: 14px;
}

.workshop-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #cbd5e1;
    margin-bottom: 20px;
}

/* 2-Column Meta Details */
.workshop-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 22px;
}

.detail-item {
    font-size: 0.85rem;
    color: #e2e8f0;
}

.detail-item strong {
    color: #38bdf8;
}

.register-btn {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #0284c7;
    padding: 10px 22px;
    border-radius: 6px;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.workshop-featured-card:hover .register-btn {
    background-color: #0369a1;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 768px) {
    .workshop-featured-card {
        flex-direction: column;
        max-width: 450px;
    }

    .workshop-poster-container,
    .workshop-info-container {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .workshop-poster-container {
        padding: 16px;
    }

    .workshop-info-container {
        padding: 24px 20px;
    }

    .workshop-details-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   DONATE CTA BAR
   ============================================ */
.donate-cta-bar { background: #3b3d97; padding: 35px 20px; color: #fff; }
.donate-cta-flex { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.donate-cta-flex p { font-size: 16px; line-height: 1.6; flex: 1; max-width: 800px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #0c1a2d; color: #a0aec0; padding-top: 60px; position: relative; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { max-height: 90px; margin-bottom: 20px; border-radius: 50%; }
.contact-email a { color: #63b3ed; }

.footer-col h4 { font-size: 18px; color: #fff; margin-bottom: 20px; font-weight: 700; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: #a0aec0; font-size: 14px; transition: color 0.3s; }
.footer-col ul a:hover { color: #fff; }

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    color: #fff; background: rgba(255,255,255,0.1); width: 36px; height: 36px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.footer-socials a:hover { background: #3b3d97; }

.footer-bottom { background: #071120; color: #718096; padding: 18px 0; font-size: 14px; border-top: 1px solid rgba(255,255,255,0.05); }
.bottom-bar-flex { display: flex; justify-content: space-between; align-items: center; }

/* Floating Icons */
.whatsapp-float {
    position: fixed; bottom: 25px; right: 25px; width: 55px; height: 55px;
    background-color: #25d366; color: #fff; border-radius: 50%; border: none;
    display: flex; align-items: center; justify-content: center; font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25); z-index: 9999; cursor: pointer; transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

.accessibility-float {
    position: fixed; bottom: 25px; left: 25px; width: 45px; height: 45px;
    background-color: #004488; color: #fff; border-radius: 50%; border: 2px solid #fff;
    display: flex; align-items: center; justify-content: center; font-size: 20px; z-index: 9999; cursor: pointer;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .header-right { flex-direction: column; align-items: flex-end; }
    .top-bar { display: none; }
    .nav-links {
        display: none; position: absolute; top: 80px; left: 0; right: 0;
        background: #fff; flex-direction: column; width: 100%;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1); padding: 20px; z-index: 999;
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    
    .donate-contacts-grid { grid-template-columns: 1fr; gap: 30px; }
    .ceo-grid, .ceo-grid.reverse-grid { grid-template-columns: 1fr; gap: 35px; }
    .event-card-box { grid-template-columns: 1fr; gap: 25px; }
    .form-row-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .page-title-dark, .ceo-banner-bg h1 { font-size: 36px; }
    .block-heading, .main-page-title, .form-title-centered { font-size: 28px; }
    .footer-top { grid-template-columns: 1fr; }
    .donate-cta-flex { flex-direction: column; text-align: center; }
}