:root {
        --blue: #0f1e2e;
        --blue-mid: #162840;
        --blue-light: #1e3555;
        --gold: #c6a75e;
        --gold-light: #d9bf80;
        --gold-dim: rgba(198, 167, 94, 0.15);
        --white: #f4f6f8;
        --charcoal: #1a1a1a;
        --muted: rgba(244, 246, 248, 0.55);
        --radius: 14px;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Poppins", sans-serif;
        color: var(--charcoal);
        background: var(--white);
        overflow-x: hidden;
      }

      /* ── NAV ── */
      nav {
        position: fixed;
        inset: 0 0 auto;
        z-index: 100;
        padding: 1rem 2.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(15, 30, 46, 0.92);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(198, 167, 94, 0.12);
        transition: padding 0.35s;
      }
      nav.scrolled {
        padding: 0.7rem 2.5rem;
      }

      .nav-brand {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
      }
      .nav-logo {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--blue);
      }
      .nav-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
      }
      .nav-title {
        font-family: "Montserrat", sans-serif;
        font-weight: 800;
        font-size: 1.1rem;
        color: var(--white);
        letter-spacing: 0.5px;
        text-transform: uppercase;
      }
      .nav-links {
        display: flex;
        gap: 2rem;
        align-items: center;
        list-style: none;
      }
      .nav-links a {
        text-decoration: none;
        color: var(--muted);
        font-size: 0.85rem;
        font-weight: 500;
        transition: color 0.25s;
        position: relative;
      }
      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transition: transform 0.25s;
      }
      .nav-links a:hover {
        color: var(--gold);
      }
      .nav-links a:hover::after {
        transform: scaleX(1);
      }
      .nav-cta {
        background: var(--gold) !important;
        color: var(--blue) !important;
        padding: 0.5rem 1.2rem;
        border-radius: 8px;
        font-weight: 700 !important;
        font-size: 0.82rem !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition:
          opacity 0.25s,
          transform 0.25s !important;
      }
      .nav-cta:hover {
        opacity: 0.9;
        transform: translateY(-1px);
      }
      .nav-cta::after {
        display: none !important;
      }

      /* ── HERO ── */
      .hero {
        min-height: 100vh;
        background: linear-gradient(
          135deg,
          var(--blue) 0%,
          var(--blue-mid) 60%,
          var(--blue-light) 100%
        );
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
      }
      /* subtle geometric rings */
      .hero::before,
      .hero::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(198, 167, 94, 0.1);
      }
      .hero::before {
        width: 700px;
        height: 700px;
        right: -200px;
        top: -150px;
      }
      .hero::after {
        width: 400px;
        height: 400px;
        right: 50px;
        top: 80px;
        border-color: rgba(198, 167, 94, 0.07);
      }

      .hero-inner {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 9rem 2.5rem 5rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
      }

      .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--gold-dim);
        border: 1px solid rgba(198, 167, 94, 0.3);
        padding: 0.35rem 1rem;
        border-radius: 100px;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--gold-light);
        margin-bottom: 1.5rem;
        animation: up 0.7s ease both;
      }
      .hero h1 {
        font-family: "Montserrat", sans-serif;
        font-weight: 900;
        font-size: clamp(2.6rem, 5vw, 4rem);
        line-height: 1.07;
        letter-spacing: -1.5px;
        text-transform: uppercase;
        color: var(--white);
        margin-bottom: 1.5rem;
        animation: up 0.7s 0.12s ease both;
      }
      .hero h1 span {
        color: var(--gold);
      }
      .hero-sub {
        font-size: 1rem;
        line-height: 1.75;
        color: var(--muted);
        max-width: 460px;
        margin-bottom: 2.5rem;
        animation: up 0.7s 0.24s ease both;
      }
      .hero-btns {
        display: flex;
        gap: 1rem;
        animation: up 0.7s 0.36s ease both;
      }
      .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.8rem 1.6rem;
        border-radius: 10px;
        font-family: "Montserrat", sans-serif;
        font-size: 0.82rem;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        border: none;
        transition: all 0.3s;
      }
      .btn-gold {
        background: var(--gold);
        color: var(--blue);
      }
      .btn-gold:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(198, 167, 94, 0.3);
      }
      .btn-outline {
        background: transparent;
        color: var(--white);
        border: 1.5px solid rgba(255, 255, 255, 0.25);
      }
      .btn-outline:hover {
        border-color: var(--gold);
        color: var(--gold);
        transform: translateY(-2px);
      }

      /* Prayer card */
      .prayer-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(198, 167, 94, 0.15);
        border-radius: 20px;
        padding: 2rem 2.25rem;
        color: var(--white);
        animation: up 0.7s 0.5s ease both;
        backdrop-filter: blur(12px);
      }
      .pc-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.75rem;
      }
      .pc-head h3 {
        font-family: "Montserrat", sans-serif;
        font-weight: 800;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .pc-date {
        font-size: 0.75rem;
        color: var(--gold-light);
        font-weight: 500;
      }
      .pc-cta-body {
        padding: 0.5rem 0;
        text-align: center;
      }
      .pc-cta-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        opacity: 0.9;
      }
      .pc-cta-text {
        font-size: 0.95rem;
        color: var(--muted);
        line-height: 1.55;
        margin: 0 0 1.2rem;
        padding: 0 0.5rem;
      }
      .pc-cta-btn {
        display: inline-block;
        margin-bottom: 1.5rem;
        font-size: 0.85rem;
        padding: 0.7rem 1.4rem;
      }
      .pc-cta-jumuah {
        display: grid;
        grid-template-columns: 1fr auto auto auto;
        gap: 0.6rem;
        align-items: center;
        padding: 0.75rem 0.9rem;
        background: rgba(198, 167, 94, 0.08);
        border: 1px solid rgba(198, 167, 94, 0.18);
        border-radius: 10px;
        font-size: 0.85rem;
        text-align: left;
      }
      .pc-cta-jumuah .pc-jumuah-label {
        font-weight: 700;
        color: var(--gold-light);
        letter-spacing: 0.02em;
      }
      .pc-cta-jumuah span:not(.pc-jumuah-label) {
        font-variant-numeric: tabular-nums;
        color: #fff;
        font-weight: 600;
      }
      .pc-footer {
        margin-top: 1.25rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 0.75rem;
        color: rgba(244, 246, 248, 0.35);
        text-align: center;
      }

      @keyframes up {
        from {
          opacity: 0;
          transform: translateY(22px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* ── SECTION SHARED ── */
      .sec {
        max-width: 1200px;
        margin: 0 auto;
        padding: 6rem 2.5rem;
      }
      .sec-label {
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2.5px;
        color: var(--gold);
        margin-bottom: 0.6rem;
      }
      .sec-title {
        font-family: "Montserrat", sans-serif;
        font-weight: 900;
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        text-transform: uppercase;
        letter-spacing: -1px;
        color: var(--blue);
        line-height: 1.1;
        margin-bottom: 0.9rem;
      }
      .sec-sub {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.8;
        max-width: 520px;
      }

      /* ── ABOUT ── */
      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        margin-top: 3rem;
      }
      .about-img-wrap {
        position: relative;
      }
      .about-img-block {
        aspect-ratio: 4/3;
        border-radius: 18px;
        background: linear-gradient(
          135deg,
          var(--blue) 0%,
          var(--blue-light) 100%
        );
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }
      .about-img-arabic {
        font-size: 5.5rem;
        color: rgba(198, 167, 94, 0.18);
        font-weight: 900;
        letter-spacing: -2px;
      }
      .about-float {
        position: absolute;
        bottom: -1.25rem;
        right: -1.25rem;
        background: var(--white);
        border-radius: 14px;
        padding: 1rem 1.25rem;
        box-shadow: 0 12px 36px rgba(15, 30, 46, 0.12);
        display: flex;
        align-items: center;
        gap: 0.9rem;
      }
      .af-icon {
        width: 44px;
        height: 44px;
        background: var(--gold);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
      }
      .af-label {
        font-size: 0.72rem;
        color: #888;
        font-weight: 500;
      }
      .af-val {
        font-weight: 700;
        font-size: 1rem;
        color: var(--blue);
      }
      .about-text p {
        font-size: 0.95rem;
        line-height: 1.85;
        color: #444;
        margin-bottom: 1.25rem;
      }
      .pillars {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
      }
      .pillar {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        font-size: 0.88rem;
        font-weight: 500;
        color: #444;
      }
      .pillar-dot {
        width: 7px;
        height: 7px;
        background: var(--gold);
        border-radius: 50%;
        flex-shrink: 0;
      }

      /* ── PROGRAMS ── */
      .prog-section {
        background: var(--blue);
        padding: 6rem 0;
        margin: 0;
        max-width: 100%;
      }
      .prog-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2.5rem;
      }
      .prog-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 3rem;
      }
      .prog-header .sec-title {
        color: var(--white);
      }
      .prog-header .sec-sub {
        color: var(--muted);
      }
      .prog-tabs {
        display: flex;
        gap: 0.5rem;
      }
      .prog-tab {
        padding: 0.45rem 1.1rem;
        border-radius: 100px;
        border: 1.5px solid rgba(198, 167, 94, 0.25);
        background: transparent;
        font-family: "Montserrat", sans-serif;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--muted);
        cursor: pointer;
        transition: all 0.25s;
      }
      .prog-tab.active,
      .prog-tab:hover {
        background: var(--gold);
        color: var(--blue);
        border-color: var(--gold);
      }
      .prog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
      }
      .prog-card {
        background: var(--blue-mid);
        border: 1px solid rgba(198, 167, 94, 0.1);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.35s;
        cursor: pointer;
      }
      .prog-card:hover {
        transform: translateY(-6px);
        border-color: var(--gold);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
      }
      .prog-thumb {
        height: 170px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        opacity: 0.3;
      }
      .pc1 {
        background: linear-gradient(135deg, #162840, #0f1e2e);
      }
      .pc2 {
        background: linear-gradient(135deg, #1a2f1a, #0d200d);
      }
      .pc3 {
        background: linear-gradient(135deg, #2a1a00, #1a1000);
      }
      .pc4 {
        background: linear-gradient(135deg, #0f1e2e, #162840);
      }
      .pc5 {
        background: linear-gradient(135deg, #1a1000, #2a1a00);
      }
      .pc6 {
        background: linear-gradient(135deg, #0d200d, #1a2f1a);
      }
      .prog-tag {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: rgba(15, 30, 46, 0.85);
        border: 1px solid rgba(198, 167, 94, 0.3);
        padding: 0.25rem 0.7rem;
        border-radius: 100px;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--gold-light);
      }
      .prog-body {
        padding: 1.4rem;
      }
      .prog-body h4 {
        font-family: "Montserrat", sans-serif;
        font-weight: 800;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        color: var(--white);
        margin-bottom: 0.4rem;
      }
      .prog-body p {
        font-size: 0.82rem;
        color: var(--muted);
        line-height: 1.6;
        margin-bottom: 0.9rem;
      }
      .prog-meta {
        display: flex;
        gap: 1rem;
        font-size: 0.75rem;
        color: rgba(198, 167, 94, 0.6);
      }

      /* ── EVENTS ── */
      .events-banner {
        background: linear-gradient(
          135deg,
          var(--blue) 0%,
          var(--blue-light) 100%
        );
        border: 1px solid rgba(198, 167, 94, 0.15);
        border-radius: 24px;
        padding: 4rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
        align-items: center;
        margin-top: 3rem;
        position: relative;
        overflow: hidden;
        color: var(--white);
      }
      .events-banner::before {
        content: "";
        position: absolute;
        right: -60px;
        top: -60px;
        width: 320px;
        height: 320px;
        border: 1px solid rgba(198, 167, 94, 0.08);
        border-radius: 50%;
      }
      .events-banner h3 {
        font-family: "Montserrat", sans-serif;
        font-weight: 900;
        font-size: 1.9rem;
        text-transform: uppercase;
        letter-spacing: -1px;
        margin-bottom: 1rem;
      }
      .events-banner h3 span {
        color: var(--gold);
      }
      .events-banner p {
        color: var(--muted);
        line-height: 1.75;
        margin-bottom: 1.75rem;
      }
      .ev-mini-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }
      .ev-mini {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(198, 167, 94, 0.1);
        border-radius: 14px;
        padding: 1.2rem;
        transition: background 0.25s;
      }
      .ev-mini:hover {
        background: rgba(198, 167, 94, 0.08);
        border-color: rgba(198, 167, 94, 0.25);
      }
      .ev-emoji {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
      }
      .ev-name {
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        color: var(--white);
        margin-bottom: 0.2rem;
      }
      .ev-desc {
        font-size: 0.75rem;
        color: var(--muted);
      }

      /* ── CONTACT ── */
      .contact-section {
        background: #f0f2f5;
        padding: 6rem 0;
        max-width: 100%;
      }
      .contact-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2.5rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4.5rem;
        align-items: start;
      }
      .contact-info-block {
        margin-top: 2rem;
      }
      .cib {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
      }
      .ci-icon {
        width: 46px;
        height: 46px;
        background: var(--blue);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
      }
      .ci-label {
        font-size: 0.72rem;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 600;
        margin-bottom: 0.2rem;
      }
      .ci-val {
        font-size: 0.95rem;
        color: var(--blue);
        font-weight: 600;
      }
      .contact-form {
        background: var(--white);
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: 0 8px 40px rgba(15, 30, 46, 0.07);
      }
      .contact-form h3 {
        font-family: "Montserrat", sans-serif;
        font-weight: 900;
        font-size: 1.3rem;
        text-transform: uppercase;
        letter-spacing: -0.3px;
        color: var(--blue);
        margin-bottom: 1.75rem;
      }
      .fg {
        margin-bottom: 1.1rem;
      }
      .fg label {
        display: block;
        font-size: 0.75rem;
        font-weight: 600;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.4rem;
      }
      .fg input,
      .fg textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1.5px solid #dde1e7;
        border-radius: 10px;
        font-family: "Poppins", sans-serif;
        font-size: 0.88rem;
        background: var(--white);
        outline: none;
        transition: border-color 0.25s;
        color: var(--charcoal);
      }
      .fg input:focus,
      .fg textarea:focus {
        border-color: var(--blue);
      }
      .fg textarea {
        resize: vertical;
        min-height: 120px;
      }
      .form-btn {
        width: 100%;
        padding: 0.9rem;
        background: var(--blue);
        color: var(--white);
        border: none;
        border-radius: 10px;
        font-family: "Montserrat", sans-serif;
        font-size: 0.82rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s;
      }
      .form-btn:hover {
        background: var(--blue-light);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(15, 30, 46, 0.25);
      }

      /* ── FOOTER ── */
      footer {
        background: var(--blue);
        color: var(--muted);
        padding: 4rem 2.5rem 2rem;
      }
      .foot-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
        padding-bottom: 3rem;
        border-bottom: 1px solid rgba(198, 167, 94, 0.1);
      }
      .foot-brand-name {
        font-family: "Montserrat", sans-serif;
        font-weight: 900;
        font-size: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--white);
        margin-bottom: 0.5rem;
      }
      .foot-brand-sub {
        font-size: 0.82rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
      }
      .foot-socials {
        display: flex;
        gap: 0.65rem;
      }
      .fsoc {
        width: 38px;
        height: 38px;
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.06);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--muted);
        font-size: 0.78rem;
        font-weight: 700;
        transition: all 0.25s;
        font-family: "Montserrat", sans-serif;
      }
      .fsoc:hover {
        background: var(--gold);
        color: var(--blue);
      }
      .foot-col-title {
        font-family: "Montserrat", sans-serif;
        font-size: 0.68rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--white);
        margin-bottom: 1.25rem;
      }
      .foot-col a {
        display: block;
        text-decoration: none;
        color: rgba(244, 246, 248, 0.45);
        font-size: 0.83rem;
        padding: 0.3rem 0;
        transition: color 0.25s;
      }
      .foot-col a:hover {
        color: var(--gold-light);
      }
      .foot-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        display: flex;
        justify-content: space-between;
        font-size: 0.75rem;
      }
      .foot-gold {
        color: var(--gold-light);
        font-weight: 600;
      }

      /* ── RESPONSIVE ── */
      @media (max-width: 900px) {
        .hero-inner {
          grid-template-columns: 1fr;
          padding-top: 7.5rem;
        }
        .about-grid,
        .events-banner,
        .contact-inner {
          grid-template-columns: 1fr;
        }
        .prog-grid {
          grid-template-columns: 1fr 1fr;
        }
        .foot-grid {
          grid-template-columns: 1fr 1fr;
        }
        .prog-header {
          flex-direction: column;
          align-items: flex-start;
          gap: 1rem;
        }
      }
      @media (max-width: 580px) {
        .prog-grid,
        .ev-mini-grid {
          grid-template-columns: 1fr;
        }
        .foot-grid {
          grid-template-columns: 1fr;
        }
        .hero-btns {
          flex-direction: column;
        }
        .pillars {
          grid-template-columns: 1fr;
        }
        .events-banner {
          padding: 2.5rem 1.5rem;
        }
        .foot-bottom {
          flex-direction: column;
          gap: 0.4rem;
        }
      }
