/* ============================================================
   GATEWAY REHABILITATION CENTRE — UNIFIED THEME STYLESHEET
   Version 4.0.0
   ============================================================ */


  :root {
    --navy: #1e4080;
    --teal: #4a9c2f;
    --teal-light: #72c44a;
    --gold: #6ab04c;
    --gold-light: #90d46a;
    --cream: #f0f7ec;
    --white: #ffffff;
    --gray: #5a6472;
    --gray-light: #f4f8f2;
    --text: #1a2a4a;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── TOPBAR ── */
  .topbar {
    background: var(--navy);
    color: var(--cream);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    padding: 8px 0;
  }
  .topbar-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 32px;
    display: flex;
    justify-content: flex-end;
    gap: 32px;
    align-items: center;
  }
  .topbar a { color: var(--gold-light); text-decoration: none; }
  .topbar span { opacity: 0.7; }

  /* ── HEADER ── */
  header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  }
  .header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }
  .logo-icon {
    width: 52px; height: 52px;
    background: var(--navy);
    border-radius: 12px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
  }
  .logo-icon::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 55%;
    background: var(--teal);
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
  }
  .logo-icon svg { position: relative; z-index: 1; }
  .logo-text { line-height: 1.1; }
  .logo-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--navy);
    font-weight: 700;
  }
  .logo-text span {
    font-size: 0.7rem;
    color: var(--teal);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
  }
  nav { display: flex; gap: 6px; align-items: center; }
  nav a {
    padding: 8px 16px;
    text-decoration: none;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
  }
  nav a:hover { background: var(--cream); color: var(--teal); }
  .btn-primary {
    background: var(--teal);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.15s !important;
  }
  .btn-primary:hover { background: var(--navy) !important; transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 92vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 70% at 80% 50%, rgba(74,156,47,0.3) 0%, transparent 70%),
      radial-gradient(ellipse 40% 50% at 20% 80%, rgba(106,176,76,0.12) 0%, transparent 60%);
  }
  .hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 36px 36px;
  }
  /* Decorative arc */
  .hero-arc {
    position: absolute;
    right: -120px; top: 50%;
    transform: translateY(-50%);
    width: 700px; height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(74,156,47,0.25);
  }
  .hero-arc::before {
    content: '';
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    border: 1px solid rgba(106,176,76,0.15);
  }
  .hero-arc::after {
    content: '';
    position: absolute;
    inset: 120px;
    border-radius: 50%;
    border: 1px solid rgba(74,156,47,0.1);
  }
  .hero-inner {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 80px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(106,176,76,0.15);
    border: 1px solid rgba(106,176,76,0.35);
    color: var(--gold-light);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 24px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--teal-light);
    position: relative;
  }
  .hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 480px;
  }
  .hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-hero-primary {
    background: var(--teal);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(74,156,47,0.35);
  }
  .btn-hero-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(74,156,47,0.45); }
  .btn-hero-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.18);
    transition: background 0.2s, transform 0.15s;
  }
  .btn-hero-secondary:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
  /* Hero stats */
  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .hero-stat { }
  .hero-stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold-light);
    font-weight: 700;
    line-height: 1;
  }
  .hero-stat span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  /* Hero visual card */
  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .hero-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 28px 32px;
  }
  .hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-card-title .dot {
    width: 8px; height: 8px;
    background: var(--teal-light);
    border-radius: 50%;
  }
  .hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .hero-tag {
    background: rgba(74,156,47,0.2);
    border: 1px solid rgba(74,156,47,0.3);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 500;
  }
  .hero-contact-card {
    background: linear-gradient(135deg, rgba(106,176,76,0.15), rgba(74,156,47,0.15));
    border: 1px solid rgba(106,176,76,0.2);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .hero-contact-icon {
    width: 44px; height: 44px;
    background: var(--gold);
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1.2rem;
  }
  .hero-contact-text strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
  }
  .hero-contact-text span { color: rgba(255,255,255,0.55); font-size: 0.78rem; }

  /* ── SECTION SHARED ── */
  section { padding: 96px 0; }
  .section-inner { max-width: 1200px; margin: auto; padding: 0 32px; }
  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 18px;
  }
  .section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 600px;
  }

  /* ── MISSION STRIP ── */
  .mission-strip {
    background: var(--cream);
    padding: 56px 0;
    border-top: 3px solid var(--teal);
    border-bottom: 3px solid var(--navy);
  }
  .mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .mission-card { }
  .mission-card-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
  }
  .mission-card-label.vision { color: var(--teal); }
  .mission-card-label.mission-l { color: var(--gold); }
  .mission-card-label .line { flex: 1; height: 1px; width: 32px; }
  .mission-card-label.vision .line { background: var(--teal); }
  .mission-card-label.mission-l .line { background: var(--gold); }
  .mission-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
  }
  .mission-card strong { font-weight: 600; }

  /* ── ABOUT ── */
  .about { background: var(--white); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-main-box {
    background: linear-gradient(135deg, var(--navy) 0%, #163570 100%);
    border-radius: 24px;
    padding: 48px;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .about-main-box::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(74,156,47,0.4), transparent 70%);
    border-radius: 50%;
  }
  .about-main-box::after {
    content: '';
    position: absolute;
    bottom: -20px; left: -20px;
    width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(106,176,76,0.25), transparent 70%);
    border-radius: 50%;
  }
  .about-reg {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
  }
  .about-main-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
  }
  .about-main-box p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    position: relative;
  }
  .about-badge-strip {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    position: relative;
    flex-wrap: wrap;
  }
  .about-badge {
    background: rgba(74,156,47,0.3);
    border: 1px solid rgba(74,156,47,0.5);
    color: var(--teal-light);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    letter-spacing: 0.05em;
  }
  .about-floating {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--teal);
    color: var(--white);
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    line-height: 1.4;
  }
  .about-floating strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
  }
  .about-content { }
  .about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
  }
  .about-highlight {
    background: var(--cream);
    border-left: 4px solid var(--teal);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 24px 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--navy);
    font-style: italic;
    font-family: 'Playfair Display', serif;
  }

  /* ── OBJECTIVES ── */
  .objectives { background: var(--gray-light); }
  .objectives-header { margin-bottom: 56px; }
  .objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .obj-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
  }
  .obj-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .obj-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); border-color: transparent; }
  .obj-card:hover::before { transform: scaleX(1); }
  .obj-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 16px;
    position: absolute;
    top: 16px; right: 20px;
  }
  .obj-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .obj-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.45;
  }

  /* ── FOCUS AREAS ── */
  .focus { background: var(--navy); }
  .focus .section-title { color: var(--white); }
  .focus .section-label { color: var(--teal-light); }
  .focus .section-subtitle { color: rgba(255,255,255,0.6); }
  .focus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 56px;
  }
  .focus-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    cursor: default;
  }
  .focus-card:hover {
    background: rgba(74,156,47,0.2);
    border-color: rgba(74,156,47,0.4);
    transform: translateY(-6px);
  }
  .focus-emoji { font-size: 2rem; margin-bottom: 16px; display: block; }
  .focus-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    font-family: 'Playfair Display', serif;
  }
  .focus-card p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    line-height: 1.5;
  }

  /* ── TAGLINE BANNER ── */
  .tagline-banner {
    background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .tagline-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.02) 40px,
      rgba(255,255,255,0.02) 80px
    );
  }
  .tagline-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.02em;
    position: relative;
  }
  .tagline-banner h2 span { color: var(--gold-light); }
  .tagline-banner p {
    color: rgba(255,255,255,0.65);
    margin-top: 16px;
    font-size: 1rem;
    position: relative;
  }
  .tagline-cta {
    display: inline-block;
    margin-top: 32px;
    background: var(--white);
    color: var(--navy);
    padding: 14px 36px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
    position: relative;
  }
  .tagline-cta:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); }

  /* ── CONTACT / FOOTER ── */
  footer {
    background: #0f2558;
    padding: 64px 0 32px;
    color: rgba(255,255,255,0.6);
  }
  .footer-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-logo { margin-bottom: 16px; }
  .footer-logo strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    display: block;
  }
  .footer-logo span { font-size: 0.7rem; color: var(--teal-light); letter-spacing: 0.1em; text-transform: uppercase; }
  .footer-tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.5);
  }
  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.88rem;
  }
  .footer-contact-item .icon {
    width: 30px; height: 30px;
    background: rgba(74,156,47,0.2);
    border-radius: 6px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 0.85rem;
  }
  .footer-contact-item a { color: var(--teal-light); text-decoration: none; }
  .footer-contact-item span { color: rgba(255,255,255,0.55); }
  .footer-col h5 {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom span { color: rgba(255,255,255,0.3); }
  .reg-badge {
    background: rgba(74,156,47,0.2);
    border: 1px solid rgba(74,156,47,0.3);
    color: var(--teal-light);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  /* ── ABOUT EXTENDED ── */
  .about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
  .about-value-card {
    background: var(--gray-light); border-radius: 14px; padding: 20px 18px;
    border: 1px solid rgba(74,156,47,0.1); transition: border-color 0.2s, transform 0.2s;
  }
  .about-value-card:hover { border-color: rgba(74,156,47,0.35); transform: translateY(-3px); }
  .about-value-icon { font-size: 1.5rem; margin-bottom: 10px; }
  .about-value-card h5 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .about-value-card p { font-size: 0.8rem; color: var(--gray); line-height: 1.55; margin: 0; }
  .about-team-strip {
    background: var(--gray-light); padding: 80px 0;
  }
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
  .team-card {
    background: var(--white); border-radius: 18px; overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06); text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .team-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.09); }
  .team-avatar {
    width: 100%; height: 180px;
    background: linear-gradient(135deg, var(--navy), #163570);
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; position: relative; overflow: hidden;
  }
  .team-avatar::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 80%, rgba(74,156,47,0.3), transparent 60%);
  }
  .team-body { padding: 24px 20px; }
  .team-body h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .team-body .role { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--teal); margin-bottom: 10px; }
  .team-body p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

  /* ── OUR WORK EXTENDED ── */
  .services-section { background: var(--white); padding: 96px 0; }
  .services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
  .service-card {
    border-radius: 18px; padding: 36px 32px;
    border: 1px solid rgba(0,0,0,0.07);
    position: relative; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.09); }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
  }
  .service-icon { font-size: 2rem; margin-bottom: 18px; }
  .service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
  .service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 18px; }
  .service-features { list-style: none; display: flex; flex-direction: column; gap: 7px; }
  .service-features li { font-size: 0.82rem; color: var(--text); display: flex; align-items: flex-start; gap: 8px; }
  .service-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
  .process-section { background: var(--navy); padding: 96px 0; }
  .process-section .section-title { color: var(--white); }
  .process-section .section-label { color: var(--gold-light); }
  .process-section .section-subtitle { color: rgba(255,255,255,0.6); }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; position: relative; }
  .process-steps::before {
    content: ''; position: absolute;
    top: 28px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, rgba(74,156,47,0.4), rgba(74,156,47,0.1));
    z-index: 0;
  }
  .process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
  .step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--teal); color: var(--white);
    font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; border: 3px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 0 6px rgba(74,156,47,0.15);
  }
  .process-step h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .process-step p { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

  /* ── CONTACT EXTENDED ── */
  .contact-section { background: var(--gray-light); padding: 96px 0; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; margin-top: 56px; }
  .contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
  .contact-info-card {
    background: var(--white); border-radius: 16px; padding: 24px 24px;
    display: flex; align-items: flex-start; gap: 18px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .contact-info-card:hover { transform: translateX(4px); box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
  .contact-info-icon {
    width: 50px; height: 50px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 12px; display: grid; place-items: center; font-size: 1.3rem;
  }
  .contact-info-card h5 { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--teal); margin-bottom: 5px; }
  .contact-info-card p, .contact-info-card a { font-size: 0.95rem; color: var(--text); text-decoration: none; line-height: 1.5; font-weight: 500; }
  .contact-info-card a:hover { color: var(--teal); }
  .contact-info-card span { font-size: 0.8rem; color: var(--gray); display: block; margin-top: 2px; }
  .contact-form-card {
    background: var(--white); border-radius: 20px; padding: 40px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  }
  .contact-form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .contact-form-card .sub { font-size: 0.87rem; color: var(--gray); margin-bottom: 28px; line-height: 1.6; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .form-group label { font-size: 0.78rem; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; }
  .form-group input, .form-group select, .form-group textarea {
    padding: 11px 14px; border-radius: 9px;
    border: 1px solid rgba(0,0,0,0.12); font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; color: var(--text); outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--teal); box-shadow: 0 0 0 3px rgba(74,156,47,0.1);
  }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-submit {
    width: 100%; padding: 14px; background: var(--teal); color: var(--white);
    border: none; border-radius: 10px; font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; font-weight: 600; cursor: pointer;
    transition: background 0.2s, transform 0.15s; margin-top: 4px;
  }
  .form-submit:hover { background: var(--navy); transform: translateY(-1px); }
  .map-section { background: var(--white); padding: 0 0 96px; }
  .map-embed {
    border-radius: 20px; overflow: hidden; height: 380px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, var(--navy), #163570);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .map-placeholder {
    text-align: center; color: rgba(255,255,255,0.7);
  }
  .map-placeholder .map-icon { font-size: 3rem; margin-bottom: 16px; }
  .map-placeholder h4 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 8px; }
  .map-placeholder p { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
  .map-placeholder a { color: var(--gold-light); text-decoration: none; font-weight: 600; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate { animation: fadeUp 0.7s ease both; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-arc { display: none; }
    .about-grid, .mission-grid, .contact-grid { grid-template-columns: 1fr; }
    .objectives-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
    .focus-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-values { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process-steps::before { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-floating { position: static; margin-top: 16px; display: inline-block; }
  }
  @media (max-width: 600px) {
    .objectives-grid, .services-grid, .focus-grid, .team-grid, .about-values, .process-steps { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 20px; }
    nav { display: none; }
    .form-row { grid-template-columns: 1fr; }
  }


/* EVENTS LISTING */

  :root {
    --navy: #1e4080;
    --navy-dark: #0f2558;
    --green: #4a9c2f;
    --green-light: #72c44a;
    --green-pale: #90d46a;
    --cream: #f0f7ec;
    --white: #ffffff;
    --gray: #5a6472;
    --gray-light: #f4f8f2;
    --text: #1a2a4a;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

  /* ── TOPBAR ── */
  .topbar { background: var(--navy); color: rgba(255,255,255,0.7); font-size: 0.78rem; letter-spacing: 0.04em; padding: 8px 0; }
  .topbar-inner { max-width: 1200px; margin: auto; padding: 0 32px; display: flex; justify-content: flex-end; gap: 32px; align-items: center; }
  .topbar a { color: var(--green-pale); text-decoration: none; }
  .reg-badge { background: rgba(74,156,47,0.2); border: 1px solid rgba(74,156,47,0.35); color: var(--green-pale); padding: 4px 12px; border-radius: 6px; font-size: 0.72rem; letter-spacing: 0.06em; }

  /* ── HEADER ── */
  header { background: var(--white); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 0 rgba(0,0,0,0.07); }
  .header-inner { max-width: 1200px; margin: auto; padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; }
  .logo { display: flex; align-items: center; text-decoration: none; }
  nav { display: flex; gap: 6px; align-items: center; }
  nav a { padding: 8px 16px; text-decoration: none; color: var(--navy); font-size: 0.9rem; font-weight: 500; border-radius: 6px; transition: background 0.2s, color 0.2s; }
  nav a:hover { background: var(--cream); color: var(--green); }
  nav a.active { background: var(--green); color: var(--white) !important; }
  .btn-primary { background: var(--green) !important; color: var(--white) !important; padding: 10px 22px !important; border-radius: 8px !important; font-weight: 600 !important; }
  .btn-primary:hover { background: var(--navy) !important; }

  /* ── PAGE HERO ── */
  .page-hero {
    background: var(--navy);
    position: relative;
    padding: 80px 0 64px;
    overflow: hidden;
  }
  .page-hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 80% at 90% 50%, rgba(74,156,47,0.25) 0%, transparent 65%),
                radial-gradient(ellipse 40% 60% at 10% 80%, rgba(106,176,76,0.1) 0%, transparent 60%);
  }
  .page-hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 36px 36px;
  }
  .page-hero-inner { position: relative; max-width: 1200px; margin: auto; padding: 0 32px; }
  .page-breadcrumb {
    font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
    color: var(--green-pale); margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
  }
  .page-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
  .page-breadcrumb span { color: rgba(255,255,255,0.3); }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 16px;
  }
  .page-hero h1 em { font-style: normal; color: var(--green-light); }
  .page-hero p { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 600px; line-height: 1.7; }

  /* ── FILTER BAR ── */
  .filter-bar { background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.07); padding: 0; position: sticky; top: 73px; z-index: 90; }
  .filter-inner { max-width: 1200px; margin: auto; padding: 0 32px; display: flex; gap: 4px; align-items: center; overflow-x: auto; }
  .filter-btn {
    padding: 14px 20px; font-size: 0.85rem; font-weight: 500; white-space: nowrap;
    color: var(--gray); background: none; border: none; cursor: pointer;
    border-bottom: 3px solid transparent; transition: all 0.2s; font-family: 'DM Sans', sans-serif;
  }
  .filter-btn:hover { color: var(--navy); }
  .filter-btn.active { color: var(--green); border-bottom-color: var(--green); font-weight: 600; }

  /* ── SECTION ── */
  section { padding: 80px 0; }
  .section-inner { max-width: 1200px; margin: auto; padding: 0 32px; }
  .section-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; color: var(--green); margin-bottom: 10px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 12px; }
  .section-sub { font-size: 0.95rem; color: var(--gray); line-height: 1.7; max-width: 560px; }

  /* ── FEATURED EVENT ── */
  .featured-event {
    background: var(--navy);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    margin-bottom: 64px;
    position: relative;
  }
  .featured-event-visual {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-color: var(--navy-dark);
  }
  /* Always-on dark gradient from bottom (makes text readable over any image) */
  .featured-event-visual::before {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
      to top,
      rgba(10,20,55,0.96) 0%,
      rgba(10,20,55,0.6)  45%,
      rgba(10,20,55,0.15) 100%
    );
  }
  /* Emoji fallback — large watermark centred, shown when no image set */
  .featured-visual-emoji {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -58%);
    font-size: 9rem;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
    filter: saturate(0.6);
  }
  /* Full overlay when image IS set — slightly stronger darkening */
  .featured-img-overlay {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(
      to top,
      rgba(10,20,55,0.85) 0%,
      rgba(10,20,55,0.3)  60%,
      transparent 100%
    );
  }
  /* Bottom content: badge + date — sits above overlay */
  .featured-visual-bottom {
    position: relative; z-index: 2;
  }

  /* Large centred emoji when no featured image */
  .featured-visual-emoji {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -58%);
    font-size: 7rem;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
  }
  /* Dark scrim when there IS a featured image */
  .featured-img-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(10,20,55,0.88) 0%, rgba(10,20,55,0.45) 55%, rgba(10,20,55,0.15) 100%);
  }
  /* Bottom content (badge + date) always on top */
  .featured-visual-bottom {
    position: relative; z-index: 2;
    margin-top: auto;
  }
  .featured-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--green); color: var(--white);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 100px; margin-bottom: 16px;
    position: relative; z-index: 1; width: fit-content;
  }
  .featured-badge::before { content: ''; width: 6px; height: 6px; background: var(--white); border-radius: 50%; animation: pulse 1.5s infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
  .featured-date-display { position: relative; z-index: 1; }
  .featured-date-display .day { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 900; color: var(--white); line-height: 1; }
  .featured-date-display .month-year { font-size: 0.85rem; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
  .featured-event-content { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
  .featured-event-content .tag { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--green-pale); margin-bottom: 14px; }
  .featured-event-content h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 16px; }
  .featured-event-content p { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 28px; }
  .event-meta-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
  .event-meta-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
  .event-meta-item .icon { font-size: 1rem; width: 24px; }
  .btn-event-primary {
    display: inline-block; background: var(--green); color: var(--white);
    padding: 13px 28px; border-radius: 10px; text-decoration: none;
    font-weight: 600; font-size: 0.9rem; transition: background 0.2s, transform 0.15s;
    width: fit-content;
  }
  .btn-event-primary:hover { background: var(--green-light); transform: translateY(-2px); }
  .btn-event-outline {
    display: inline-block; background: rgba(255,255,255,0.08); color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 13px 28px; border-radius: 10px; text-decoration: none;
    font-weight: 500; font-size: 0.9rem; transition: background 0.2s;
  }
  .btn-event-outline:hover { background: rgba(255,255,255,0.14); }
  .featured-cta { display: flex; gap: 12px; flex-wrap: wrap; }

  /* ── EVENTS GRID ── */
  .events-section { background: var(--gray-light); padding: 80px 0; }
  .events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; align-items: start; }
  .event-card {
    background: var(--white); border-radius: 18px; overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.25s ease;
    display: flex; flex-direction: column;
    will-change: opacity, transform;
  }
  .event-card:hover { transform: translateY(-5px) scale(1) !important; box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
  .event-card-header {
    padding: 28px; background: var(--navy);
    position: relative; overflow: hidden; min-height: 160px;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .event-card-header::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 80% 100%, rgba(74,156,47,0.3), transparent);
  }
  .event-card-date-badge {
    background: var(--white); border-radius: 10px; padding: 10px 14px;
    display: inline-flex; flex-direction: column; align-items: center;
    width: fit-content; position: relative; z-index: 1;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }
  .event-card-date-badge .day { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--navy); line-height: 1; }
  .event-card-date-badge .month { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
  .event-card-emoji { font-size: 2.2rem; position: relative; z-index: 1; }
  .event-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
  .event-card-category {
    font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
    color: var(--green); margin-bottom: 10px;
    display: flex; align-items: center; gap: 6px;
  }
  .event-card-category::before { content: ''; width: 16px; height: 2px; background: var(--green); border-radius: 2px; }
  .event-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
  .event-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.65; margin-bottom: 18px; flex: 1; }
  .event-card-footer { border-top: 1px solid rgba(0,0,0,0.06); padding-top: 16px; display: flex; flex-direction: column; gap: 6px; }
  .event-card-info { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: var(--gray); }
  .event-card-info .icon { font-size: 0.85rem; }
  .event-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--green); font-size: 0.82rem; font-weight: 600;
    text-decoration: none; margin-top: 14px; transition: gap 0.2s;
  }
  .event-card-link:hover { gap: 10px; }

  /* ── PAST EVENTS / GALLERY ── */
  .past-section { background: var(--white); }
  .past-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
  .past-card {
    background: var(--navy);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    min-height: 200px;
    display: flex; flex-direction: column; justify-content: flex-end;
    cursor: default;
    transition: transform 0.2s;
  }
  .past-card:hover { transform: scale(1.02); }
  .past-card-bg {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; opacity: 0.15;
  }
  .past-card-overlay {
    position: relative; z-index: 1;
    padding: 20px 18px;
    background: linear-gradient(to top, rgba(15,37,88,0.95) 0%, transparent 100%);
  }
  .past-card-year { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-pale); font-weight: 600; margin-bottom: 4px; }
  .past-card h4 { font-family: 'Playfair Display', serif; font-size: 0.92rem; font-weight: 700; color: var(--white); line-height: 1.3; }

  /* ── NEWSLETTER ── */
  .newsletter { background: var(--navy); padding: 72px 0; }
  .newsletter-inner { max-width: 680px; margin: auto; padding: 0 32px; text-align: center; }
  .newsletter h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
  .newsletter h2 span { color: var(--green-light); }
  .newsletter p { color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 32px; }
  .newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: auto; flex-wrap: wrap; }
  .newsletter-form input {
    flex: 1; padding: 13px 18px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.08);
    color: var(--white); font-size: 0.9rem; font-family: 'DM Sans', sans-serif;
    outline: none; transition: border-color 0.2s;
    min-width: 200px;
  }
  .newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
  .newsletter-form input:focus { border-color: var(--green); }
  .newsletter-form button {
    background: var(--green); color: var(--white);
    padding: 13px 24px; border-radius: 10px;
    border: none; font-weight: 600; font-size: 0.9rem;
    cursor: pointer; font-family: 'DM Sans', sans-serif;
    transition: background 0.2s, transform 0.15s;
  }
  .newsletter-form button:hover { background: var(--green-light); transform: translateY(-1px); }

  /* ── FOOTER ── */
  footer { background: #0f2558; padding: 56px 0 28px; color: rgba(255,255,255,0.6); }
  .footer-inner { max-width: 1200px; margin: auto; padding: 0 32px; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
  .footer-logo-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); }
  .footer-logo-text span { font-size: 0.7rem; color: var(--green-pale); letter-spacing: 0.1em; text-transform: uppercase; }
  .footer-tagline { font-size: 0.87rem; line-height: 1.7; margin: 14px 0 18px; color: rgba(255,255,255,0.5); }
  .footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.85rem; }
  .footer-contact-item .icon { width: 28px; height: 28px; background: rgba(74,156,47,0.2); border-radius: 6px; display: grid; place-items: center; flex-shrink: 0; font-size: 0.82rem; }
  .footer-contact-item a { color: var(--green-pale); text-decoration: none; }
  .footer-contact-item span { color: rgba(255,255,255,0.5); }
  .footer-col h5 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-pale); font-weight: 700; margin-bottom: 18px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 9px; }
  .footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--white); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.77rem; flex-wrap: wrap; gap: 10px; }
  .footer-bottom span { color: rgba(255,255,255,0.3); }
  .footer-reg { background: rgba(74,156,47,0.2); border: 1px solid rgba(74,156,47,0.3); color: var(--green-pale); padding: 4px 12px; border-radius: 6px; font-size: 0.7rem; letter-spacing: 0.06em; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .animate { animation: fadeUp 0.65s ease both; }
  .d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.2s; } .d3 { animation-delay: 0.3s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .featured-event { grid-template-columns: 1fr; }
    .featured-event-visual { min-height: 200px; }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .past-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .events-grid { grid-template-columns: 1fr; }
    .past-grid { grid-template-columns: 1fr; }
    nav { display: none; }
  }


/* EVENT DETAIL PAGES */

  :root {
    --navy: #1e4080; --navy-dark: #0f2558;
    --green: #4a9c2f; --green-light: #72c44a; --green-pale: #90d46a;
    --cream: #f0f7ec; --white: #ffffff; --gray: #5a6472;
    --gray-light: #f4f8f2; --text: #1a2a4a;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
  .topbar { background: var(--navy); color: rgba(255,255,255,0.7); font-size: 0.78rem; padding: 8px 0; }
  .topbar-inner { max-width: 1200px; margin: auto; padding: 0 32px; display: flex; justify-content: flex-end; gap: 32px; align-items: center; }
  .topbar a { color: var(--green-pale); text-decoration: none; }
  .reg-badge { background: rgba(74,156,47,0.2); border: 1px solid rgba(74,156,47,0.35); color: var(--green-pale); padding: 4px 12px; border-radius: 6px; font-size: 0.72rem; letter-spacing: 0.06em; }
  header { background: var(--white); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 0 rgba(0,0,0,0.07); }
  .header-inner { max-width: 1200px; margin: auto; padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; }
  .logo { display: flex; align-items: center; text-decoration: none; }
  nav { display: flex; gap: 6px; align-items: center; }
  nav a { padding: 8px 16px; text-decoration: none; color: var(--navy); font-size: 0.9rem; font-weight: 500; border-radius: 6px; transition: background 0.2s, color 0.2s; }
  nav a:hover { background: var(--cream); color: var(--green); }
  nav a.active { background: var(--green); color: var(--white) !important; }
  .btn-primary { background: var(--green) !important; color: var(--white) !important; padding: 10px 22px !important; border-radius: 8px !important; font-weight: 600 !important; }
  /* Hero */
  /* ══════════════════════════════════════════
     EVENT DETAIL HERO — v4 Redesign
     Full-width two-column: visual left, content right
  ══════════════════════════════════════════ */
  /* ══ EVENT HERO — Compact Banner Design ══ */
  .event-hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 0;
  }
  .event-hero-bg { position: absolute; inset: 0; z-index: 0; }
  .event-hero-pattern {
    position: absolute; inset: 0; z-index: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 28px 28px;
  }

  /* Single-row wrap — max-width container */
  .event-hero-wrap {
    position: relative; z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 32px 40px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
  }

  /* LEFT — Compact date+emoji badge */
  .event-hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 24px 28px;
    text-align: center;
    min-width: 150px;
    position: relative;
    overflow: hidden;
  }
  .event-hero-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(74,156,47,0.25), transparent 70%);
    pointer-events: none;
  }
  .event-visual-emoji {
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 12px;
    position: relative; z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  }
  @keyframes floatEmoji {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }
  .event-visual-date-block {
    position: relative; z-index: 1;
    text-align: center;
  }
  .event-visual-date-block .v-day {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    display: block;
  }
  .event-visual-date-block .v-month {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 700;
    margin-top: 4px;
    margin-bottom: 14px;
    display: block;
  }
  .event-visual-meta { display: flex; flex-direction: column; gap: 6px; text-align: left; }
  .event-visual-meta-item {
    display: flex; align-items: flex-start; gap: 7px;
    font-size: 0.75rem; color: rgba(255,255,255,0.68); line-height: 1.35;
  }
  .event-visual-meta-item .mi { font-size: 0.85rem; flex-shrink: 0; margin-top: 1px; }

  /* RIGHT — Content */
  .event-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 0;
  }
  .breadcrumb {
    font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
    font-weight: 600; color: rgba(255,255,255,0.4); margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  }
  .breadcrumb a { color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--white); }
  .breadcrumb span { color: rgba(255,255,255,0.2); }
  .event-category-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(74,156,47,0.18); border: 1px solid rgba(74,156,47,0.35);
    color: var(--gold-light); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 100px; margin-bottom: 14px;
    width: fit-content;
  }
  .event-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 12px;
  }
  .event-hero h1 em { font-style: normal; color: var(--teal-light); }
  .event-hero-desc {
    font-size: 0.95rem; color: rgba(255,255,255,0.6);
    line-height: 1.7; max-width: 620px; margin-bottom: 24px;
  }
  .hero-cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
  .btn-green {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--teal); color: var(--white); padding: 11px 24px;
    border-radius: 9px; text-decoration: none; font-weight: 600; font-size: 0.88rem;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 3px 16px rgba(74,156,47,0.35);
  }
  .btn-green:hover { background: var(--teal-light); transform: translateY(-2px); }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.07); color: var(--white);
    border: 1px solid rgba(255,255,255,0.2); padding: 11px 24px;
    border-radius: 9px; text-decoration: none; font-weight: 500; font-size: 0.88rem;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-outline:hover { background: rgba(255,255,255,0.13); transform: translateY(-2px); }

  /* Info strip */
  .event-hero-info-strip {
    display: flex; flex-wrap: wrap; gap: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .event-hero-info-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.8rem; color: rgba(255,255,255,0.6);
  }
  .event-hero-info-item .icon { font-size: 0.9rem; }

  /* Legacy date card — kept for any remaining uses */
  .event-date-card { display: none; }
  .date-day, .date-month, .date-meta, .date-meta-item { display: none; }
  /* Body */
  .event-body { max-width: 1200px; margin: auto; padding: 0 32px; }
  .event-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; padding: 64px 0; }
  .event-content h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--navy); margin: 36px 0 14px; }
  .event-content h2:first-child { margin-top: 0; }
  .event-content p { font-size: 0.95rem; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
  .event-content ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
  .event-content ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text); line-height: 1.55; }
  .event-content ul li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
  .event-content .highlight-box { background: var(--cream); border-left: 4px solid var(--green); border-radius: 0 12px 12px 0; padding: 20px 24px; margin: 24px 0; }
  .event-content .highlight-box p { margin: 0; color: var(--navy); font-style: italic; font-family: 'Playfair Display', serif; font-size: 1rem; }
  .schedule-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; }
  .schedule-table th { background: var(--navy); color: var(--white); padding: 10px 16px; text-align: left; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
  .schedule-table td { padding: 10px 16px; font-size: 0.88rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .schedule-table tr:nth-child(even) td { background: var(--gray-light); }
  .schedule-table td:first-child { font-weight: 600; color: var(--green); white-space: nowrap; }
  /* Sidebar */
  .event-sidebar { display: flex; flex-direction: column; gap: 20px; }
  .sidebar-card { background: var(--white); border-radius: 16px; padding: 24px; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
  .sidebar-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--cream); }
  .sidebar-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
  .sidebar-detail:last-child { margin-bottom: 0; }
  .sidebar-icon { width: 36px; height: 36px; background: var(--cream); border-radius: 8px; display: grid; place-items: center; font-size: 1rem; flex-shrink: 0; }
  .sidebar-detail-text strong { display: block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: var(--green); margin-bottom: 2px; }
  .sidebar-detail-text span { font-size: 0.88rem; color: var(--text); line-height: 1.4; }
  .register-card { background: linear-gradient(135deg, var(--navy), #163570); border-radius: 16px; padding: 28px; }
  .register-card h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
  .register-card p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; line-height: 1.6; }
  .btn-register { display: block; background: var(--green); color: var(--white); padding: 12px 20px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 0.9rem; text-align: center; margin-bottom: 10px; transition: background 0.2s; }
  .btn-register:hover { background: var(--green-light); }
  .btn-register-outline { display: block; background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.2); padding: 12px 20px; border-radius: 10px; text-decoration: none; font-weight: 500; font-size: 0.9rem; text-align: center; transition: background 0.2s; }
  .btn-register-outline:hover { background: rgba(255,255,255,0.15); }
  .tags-list { display: flex; flex-wrap: wrap; gap: 8px; }
  .tag-pill { background: var(--cream); color: var(--green); font-size: 0.75rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; border: 1px solid rgba(74,156,47,0.2); }
  /* Related events */
  .related-section { background: var(--gray-light); padding: 72px 0; }
  .related-inner { max-width: 1200px; margin: auto; padding: 0 32px; }
  .related-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; color: var(--green); margin-bottom: 10px; }
  .related-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 36px; }
  .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .related-card { background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid rgba(0,0,0,0.06); text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; display: block; }
  .related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.09); }
  .related-card-top { background: var(--navy); padding: 24px; display: flex; justify-content: space-between; align-items: flex-start; position: relative; overflow: hidden; min-height: 110px; }
  .related-card-top::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 100%, rgba(74,156,47,0.3), transparent 60%); }
  .related-date { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; position: relative; z-index: 1; }
  .related-date span { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-pale); font-weight: 600; margin-top: 2px; }
  .related-emoji { font-size: 2rem; position: relative; z-index: 1; }
  .related-card-body { padding: 18px 20px; }
  .related-cat { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--green); margin-bottom: 6px; }
  .related-card-body h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 8px; }
  .related-link { font-size: 0.78rem; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 4px; }
  /* Footer */
  footer { background: #0f2558; padding: 56px 0 28px; color: rgba(255,255,255,0.6); }
  .footer-inner { max-width: 1200px; margin: auto; padding: 0 32px; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
  .footer-tagline { font-size: 0.87rem; line-height: 1.7; margin: 14px 0 18px; color: rgba(255,255,255,0.5); }
  .footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.85rem; }
  .footer-contact-item .icon { width: 28px; height: 28px; background: rgba(74,156,47,0.2); border-radius: 6px; display: grid; place-items: center; flex-shrink: 0; font-size: 0.82rem; }
  .footer-contact-item a { color: var(--green-pale); text-decoration: none; }
  .footer-contact-item span { color: rgba(255,255,255,0.5); }
  .footer-col h5 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-pale); font-weight: 700; margin-bottom: 18px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 9px; }
  .footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--white); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.77rem; flex-wrap: wrap; gap: 10px; }
  .footer-bottom span { color: rgba(255,255,255,0.3); }
  .footer-reg { background: rgba(74,156,47,0.2); border: 1px solid rgba(74,156,47,0.3); color: var(--green-pale); padding: 4px 12px; border-radius: 6px; font-size: 0.7rem; }
  @media (max-width: 900px) {
    .event-hero-grid { grid-template-columns: 1fr; }
    .event-layout { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    nav { display: none; }
    .related-grid { grid-template-columns: 1fr; }
  }


/* ── MOBILE HAMBURGER ── */
.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.mobile-menu-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--navy, #1e4080); border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1e4080; z-index: 9999;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: #fff; text-decoration: none;
  font-size: 1.3rem; font-family: 'Playfair Display', serif; font-weight: 700;
  padding: 12px 40px; border-radius: 10px; transition: background 0.2s;
  width: 280px; text-align: center;
}
.mobile-nav a:hover { background: rgba(74,156,47,0.2); }
.mobile-nav a.grc-active, .mobile-nav a.mobile-cta {
  background: #4a9c2f !important; color: #fff !important;
}
.mobile-nav-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: #fff;
  font-size: 2rem; cursor: pointer; line-height: 1;
}

/* ── RESPONSIVE TABLET (1024px) ── */
@media (max-width: 1024px) {
  .objectives-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .event-hero-wrap { gap: 28px; padding: 40px 24px; }
  .event-layout { grid-template-columns: 1fr 300px; gap: 32px; }
  .contact-grid { gap: 36px; }
}

/* ── RESPONSIVE MOBILE (768px) ── */
@media (max-width: 768px) {
  nav { display: none !important; }
  .mobile-menu-toggle { display: flex; }

  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr !important; gap: 28px; padding: 40px 20px 60px; }
  .hero h1 { font-size: clamp(1.7rem, 5vw, 2.2rem); }
  .hero-arc, .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; padding-top: 28px; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .btn-hero-primary, .btn-hero-secondary { text-align: center; }

  .section-inner { padding: 0 18px; }
  section { padding: 56px 0; }

  .about-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .about-floating { position: static !important; display: inline-block; margin-top: 14px; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr !important; }
  .about-team-strip { padding: 56px 0; }

  .objectives-grid { grid-template-columns: 1fr !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-steps::before { display: none; }
  .focus-grid { grid-template-columns: 1fr 1fr !important; }
  .mission-grid { grid-template-columns: 1fr !important; }

  .events-grid { grid-template-columns: 1fr !important; }
  .past-grid { grid-template-columns: 1fr 1fr !important; }
  .featured-event { grid-template-columns: 1fr !important; }
  .featured-event-visual { min-height: 160px; }
  .featured-event-content { padding: 28px 22px; }
  .featured-cta { flex-direction: column; gap: 10px; }

  /* Event hero mobile */
  .event-hero-wrap { grid-template-columns: 1fr !important; gap: 20px; padding: 28px 18px; }
  .event-hero-visual { min-width: auto !important; width: 100%; flex-direction: row; align-items: center; gap: 16px; padding: 16px 20px !important; border-radius: 12px; }
  .event-visual-emoji { font-size: 2rem !important; margin-bottom: 0 !important; flex-shrink: 0; }
  .event-visual-date-block { text-align: left; }
  .event-visual-date-block .v-day { font-size: 2rem !important; }
  .event-hero h1 { font-size: clamp(1.4rem, 5vw, 1.9rem) !important; }
  .event-hero-content { padding: 0 !important; }
  .event-layout { grid-template-columns: 1fr !important; padding: 40px 0; }
  .event-sidebar { order: -1; }

  .contact-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .form-row { grid-template-columns: 1fr !important; }

  .related-grid { grid-template-columns: 1fr 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { width: 100%; }

  .header-inner { padding: 14px 18px; }
  .topbar-inner { padding: 0 18px; gap: 14px; flex-wrap: wrap; font-size: 0.72rem; }
  .page-hero { padding: 48px 0 36px; }
  .hero-inner { padding: 0 18px; }

  .filter-bar { top: 66px; }
  .filter-inner { padding: 0 18px; gap: 0; }
  .filter-btn { padding: 12px 14px; font-size: 0.8rem; }

  .schedule-table { font-size: 0.82rem; }
  .schedule-table th, .schedule-table td { padding: 8px 10px; }

  .map-embed { height: 260px; }
}

/* ── RESPONSIVE SMALL MOBILE (480px) ── */
@media (max-width: 480px) {
  .about-values { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr !important; }
  .past-grid { grid-template-columns: 1fr !important; }
  .process-steps { grid-template-columns: 1fr !important; }
  .related-grid { grid-template-columns: 1fr !important; }
  .hero h1 { font-size: 1.65rem; }
  .section-title { font-size: 1.4rem; }
  .date-day { font-size: 2.5rem; }
  .featured-date-display .day { font-size: 3rem; }
  .hero-cta-row { flex-direction: column; }
  .btn-green, .btn-outline { text-align: center; }
  .event-hero-grid { gap: 16px; }
  .topbar-inner { justify-content: center; }
  img { max-width: 100%; height: auto; }
}

/* ── EVENT CONTENT TABLES ── */
.event-content table,
.event-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 28px;
    font-size: 0.9rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.event-content table thead tr,
.event-body table thead tr {
    background: #1e4080;
    color: #fff;
}
.event-content table th,
.event-body table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.event-content table td,
.event-body table td {
    padding: 11px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: #3a4555;
    vertical-align: top;
}
.event-content table tr:nth-child(even) td,
.event-body table tr:nth-child(even) td {
    background: #f8fbf6;
}
.event-content table tr:last-child td,
.event-body table tr:last-child td {
    border-bottom: none;
}
.event-content table td:first-child,
.event-body table td:first-child {
    font-weight: 600;
    color: #1e4080;
    white-space: nowrap;
    width: 110px;
}
.event-content h2,
.event-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e4080;
    margin: 32px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f7ec;
}
.event-content h2:first-child,
.event-body h2:first-child { margin-top: 0; }
.event-content p, .event-body p {
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}
.event-content ul, .event-body ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
.event-content ul li, .event-body ul li {
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 6px;
    position: relative;
}
.event-content ul li::marker, .event-body ul li::marker {
    color: #4a9c2f;
}
.event-content blockquote, .event-body blockquote {
    border-left: 4px solid #4a9c2f;
    padding: 14px 20px;
    margin: 20px 0;
    background: #f0f7ec;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #2a6e1a;
}



/* ══════════════════════════════════════════
   V4 IMPROVEMENTS — Services 3-column grid
══════════════════════════════════════════ */
.services-grid { grid-template-columns: repeat(3, 1fr) !important; }
.service-card {
  background: var(--gray-light) !important;
  border-radius: 20px !important;
  padding: 32px 28px !important;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}
.service-card:hover { background: var(--white) !important; }

/* V4: Events teaser on homepage */
.events-teaser { background: var(--gray-light); padding: 96px 0; }
.events-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.event-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.event-mini-card { background: var(--navy); border-radius: 16px; padding: 26px 20px; position: relative; overflow: hidden; transition: transform 0.2s; text-decoration: none; display: block; }
.event-mini-card:hover { transform: translateY(-4px); }
.event-mini-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 100%, rgba(74,156,47,0.28), transparent); }
.event-mini-card .emoji { font-size: 1.7rem; margin-bottom: 12px; position: relative; z-index: 1; display: block; }
.event-mini-card .date { font-size: 0.63rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--gold-light); margin-bottom: 6px; position: relative; z-index: 1; display: block; }
.event-mini-card .title { font-family: 'Playfair Display', serif; font-size: 0.92rem; font-weight: 700; color: var(--white); line-height: 1.35; position: relative; z-index: 1; }
.event-mini-more { background: linear-gradient(135deg, var(--teal), var(--navy)); border-radius: 16px; padding: 26px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-height: 130px; transition: transform 0.2s; text-decoration: none; }
.event-mini-more:hover { transform: translateY(-4px); }
.event-mini-more .emoji { font-size: 1.5rem; margin-bottom: 8px; display: block; }
.event-mini-more .title { font-family: 'Playfair Display', serif; font-size: 0.88rem; font-weight: 700; color: var(--white); line-height: 1.4; }

/* V4: Enhanced event date card */
.event-date-card {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-radius: 22px !important;
  padding: 32px 24px !important;
  min-width: 210px !important;
}
.date-day { font-size: 4.5rem !important; }
.date-month { font-size: 0.82rem !important; letter-spacing: 0.14em !important; color: var(--gold-light) !important; font-weight: 700 !important; margin-bottom: 22px !important; }
.date-meta-item { font-size: 0.82rem !important; }

/* V4: Hero improvements */
.hero { min-height: 94vh !important; }
.hero-inner { padding: 80px 32px !important; }
.logo-icon::before { clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%); }

/* V4: About value cards */
.about-value-card { transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s !important; }
.about-value-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.07) !important; }

/* V4: Focus grid improvements */
.focus { background: linear-gradient(135deg, #0f2558, var(--navy)) !important; }

/* V4: Sidebar card spacing */
.sidebar-detail { margin-bottom: 16px !important; }
.sidebar-icon { width: 38px !important; height: 38px !important; border-radius: 9px !important; }
.sidebar-detail-text strong { font-size: 0.7rem !important; }

/* V4: Related card improvements */
.related-card-top { min-height: 110px !important; }
.related-card { border-radius: 16px !important; }

/* V4: Process steps connector line */
.process-steps::before {
  left: 12.5% !important; right: 12.5% !important;
  background: linear-gradient(90deg, rgba(74,156,47,0.5), rgba(74,156,47,0.15)) !important;
}

/* V4: Elementor compatibility */
.elementor-widget-html > .elementor-widget-container { padding: 0 !important; }
.elementor-section.elementor-section-full_width .elementor-container { max-width: 100% !important; }
.elementor-widget-html .event-hero,
.elementor-widget-html .hero { display: flex !important; }

/* V4: Newsletter form improvements */
.newsletter-form { gap: 0 !important; }
.newsletter-form input { border-radius: 10px 0 0 10px !important; }
.newsletter-form button { border-radius: 0 10px 10px 0 !important; }

/* V4: Mobile events teaser */
@media (max-width: 768px) {
  .events-teaser-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .services-grid { grid-template-columns: 1fr !important; }
  .event-mini-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .event-mini-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════
   COMPANY PROFILE DOWNLOAD SECTION
══════════════════════════════════════════ */
.profile-download-section {
  background: linear-gradient(135deg, #f0f7ec 0%, #e8f5e0 100%);
  border-top: 1px solid #cde8b8;
  border-bottom: 1px solid #cde8b8;
  padding: 64px 0;
}
.profile-download-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.profile-download-text {
  flex: 1;
  min-width: 280px;
}
.profile-download-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin: 8px 0 12px;
  font-weight: 700;
  line-height: 1.25;
}
.profile-download-intro {
  color: #3c5a3c;
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}
.profile-download-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.profile-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: #fff;
  padding: 16px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(30,64,128,0.22);
  min-width: 260px;
}
.profile-download-btn:hover {
  background: #162f62;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30,64,128,0.30);
}
.profile-btn-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}
.profile-btn-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.profile-btn-label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.profile-btn-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}
.profile-download-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #5a7a5a;
}
@media (max-width: 768px) {
  .profile-download-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .profile-download-cta {
    align-items: flex-start;
    width: 100%;
  }
  .profile-download-btn {
    width: 100%;
    justify-content: center;
    min-width: unset;
  }
}
