:root {
    --green: #0c3d28;
    --green-mid: #1a5c3a;
    --green-light: #2d7a52;
    --gold: #c9a84c;
    --gold-warm: #e2c06a;
    --gold-pale: #f7edcc;
    --cream: #faf7f0;
    --cream-dark: #f0ead8;
    --white: #ffffff;
    --ink: #141414;
    --ink-mid: #383838;
    --ink-soft: #6a6a6a;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
}



.hamburger {
    display: block;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--gold);
    display: block;
}

/* ── HERO ── */
.page-hero {
    min-height: 50vh;
    background: var(--green);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 64px;
}

.hero-canvas {
    position: absolute;
    inset: 0;
}

.hero-canvas svg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0.35;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 0px 100px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 90px;
    align-items: center;
}



.page-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow-line {
    width: 36px;
    height: 1px;
    background: var(--gold);
}

.eyebrow-text {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-warm);
    font-weight: 500;
}

.hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5.5vw, 70px);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
}

.hero-h1 em {
    font-style: italic;
    color: var(--gold-warm);
    display: inline;
}

.hero-quote-block {
    margin-top: 0px;
    border-left: 2px solid var(--gold);
    padding-left: 24px;
}

.hero-quote-block blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(17px, 2.2vw, 18px);
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-weight: 400;
}

.hero-quote-block blockquote strong {
    color: var(--gold-warm);
    font-style: normal;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 12px;
    padding: 28px 32px;
    backdrop-filter: blur(6px);
    transition: all 0.3s;
}

.hero-stat-card:hover {
    background: rgba(201, 168, 76, 0.07);
    border-color: rgba(201, 168, 76, 0.45);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--gold-warm);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 6px;
    letter-spacing: 0.04em;
}

.hero-stat-card.wide {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat-card.wide .stat-icon {
    font-size: 32px;
    flex-shrink: 0;
}

/* ── SCROLL DOWN ── */
.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.scroll-hint span {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* ── SECTION COMMONS ── */
.section {
    padding: 10px 0px 50px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    
}

.eyebrow .line {
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.eyebrow .label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.sh {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.8vw, 40px);
    font-weight: 700;
    line-height: 1.18;
    color: var(--green);
}

.sh.light {
    color: var(--white);
}

.sh em {
    font-style: italic;
    color: var(--gold);
}

.sh.light em {
    color: var(--gold-warm);
}

/* ── WHY HIKMAH EXISTS ── */
.why-section {
    background: var(--cream);
}

.why-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.why-intro {
    color: var(--ink-mid);
    font-weight: 400;
}

.why-divider {
    width: 56px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 10px 0;
}

.belief-cards {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.belief-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 2px 27px;
    background: var(--white);
    border-left: 3px solid transparent;
    transition: all 0.3s;
    cursor: default;
}

.belief-card:first-child {
    border-radius: 10px 10px 0 0;
}

.belief-card:last-child {
    border-radius: 0 0 10px 10px;
}

.belief-card:hover {
    border-left-color: var(--gold);
    background: var(--gold-pale);
}

.bc-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bc-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--ink);
    line-height: 1.5;
    font-weight: 500;
}

.bc-text em {
    font-style: normal;
    font-weight: 700;
    color: var(--green-mid);
}

/* ── WHAT HIKMAH IS / IS NOT ── */
.identity-section {
    background: var(--green);
    position: relative;
    overflow: hidden;
}

.identity-section::after {
    content: 'ح';
    position: absolute;
    right: -40px;
    bottom: -80px;
    font-family: 'Playfair Display', serif;
    font-size: 400px;
    line-height: 1;
    color: rgba(201, 168, 76, 0.04);
    pointer-events: none;
}

.identity-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 5px;
}

.identity-col {}

.ic-heading {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-warm);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ic-heading .ic-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 168, 76, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.is-not-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.is-not-item {
    display: grid;
    grid-template-columns: 1fr;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 10px;
    padding: 5px 22px;
    transition: all 0.25s;
}

.is-not-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(201, 168, 76, 0.35);
}

.is-not-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-warm);
    margin-bottom: 2px;
    letter-spacing: 0.02em;
}

.is-not-desc {
    font-size: 14px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.65);
}

.stands-for-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 18px;
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    transition: all 0.25s;
}

.sf-item:hover {
    background: rgba(201, 168, 76, 0.14);
    border-color: rgba(201, 168, 76, 0.4);
}

.sf-item::before {
    content: '✦';
    color: var(--gold);
    font-size: 10px;
    flex-shrink: 0;
}

.sf-item span {
    color: var(--gold-warm);
    font-weight: 600;
}

/* ── AIM SECTION ── */
.aim-section {
    background: var(--cream);
}

.aim-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.aim-visual {
    position: relative;
}

.aim-big-quote {
    background: var(--green);
    border-radius: 16px;
    padding: 22px 22px;
    position: relative;
    overflow: hidden;
}   

.aim-big-quote::before {
    content: '❝';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 140px;
    line-height: 1;
    color: rgba(201, 168, 76, 0.07);
    font-family: Georgia, serif;
    pointer-events: none;
}

.aim-q-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0px;
}

.aim-q-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-warm);
    line-height: 0.9;
    margin-bottom: 5px;
}

.aim-q-body {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}


.aim-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-mid);
    margin-top: 5px;
    margin-bottom: 10px;
}

.world-needs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-bottom: 16px;
}

.wn-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--ink-mid);
    transition: all 0.25s;
}

.wn-item:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
}

.wn-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.aim-footer-note {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.75;
    color: var(--ink-mid);
    font-style: italic;
    border-left: 2px solid var(--gold);
    padding-left: 20px;
}

/* ── MADRASA HISTORY ── */
.madrasa-section {
    background: var(--cream-dark);
    position: relative;
    overflow: hidden;
}

.madrasa-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;

}

.madrasa-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0;
}

.city-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green);
    color: var(--gold-warm);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.city-tag::before {
    content: '🕌';
    font-size: 12px;
}

.tradition-card {
    background: var(--green);
    border-radius: 16px;
    padding: 18px 20px;
    position: relative;
}
.tc-gold-accent {
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 28px;
}

.tc-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    /* margin-bottom: 20px; */
}

.tc-body {
    color: rgba(255, 255, 255, 0.68);
}

.tc-subjects {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tc-subject {
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold-warm);
    padding: 1px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* ── FORWARD SECTION ── */
.forward-section {
    background: var(--green);
    position: relative;
    overflow: hidden;
}

.forward-inner {
    position: relative;
    z-index: 2;
}

.forward-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    align-items: center;
    margin-top: 44px;
}

.fl-body {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

.fl-body p+p {
    margin-top: 20px;
}

.fl-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.forward-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    padding: 10px 26px;
    transition: all 0.3s;
    height: calc(100% - 0px);
}

.forward-card:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateX(6px);
}

.fc-icon {
    font-size: 26px;
    margin-bottom: 12px;
}

.fc-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1px;
}

.fc-desc {
    font-size: 14px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.6);
}

/* ── CLOSING STATEMENT ── */
.closing {
    background: var(--cream);
    padding: 10px 6% 50px;
    text-align: center;
}
.closing-inner {
    max-width: 820px;
    margin: 0 auto;
}

.closing-ornament {
    font-size: 32px;
    margin-bottom: 5px;
    color: var(--gold);
    letter-spacing: 12px;
}
.closing h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.0;
    color: var(--green);
    margin-bottom: 5px;
}
.closing h2 em {
    font-style: italic;
    color: var(--gold);
}

.closing p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-mid);
    margin-bottom: 0px;
}
.closing-cta {
    margin-top: 52px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none;
    border: none;
    display: inline-block;
    transition: all 0.25s;
}

.btn-gold {
    background: var(--gold);
    color: var(--green);
}

.btn-gold:hover {
    background: var(--gold-warm);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 168, 76, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--green);
    border: 1.5px solid var(--gold);
}

.btn-ghost:hover {
    background: var(--gold-pale);
    transform: translateY(-2px);
}



/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 1;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.up {
    opacity: 1;
    transform: translateY(0);
}

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

.d4 {
    transition-delay: 0.4s;
}

.learning-one_image img {
    position: relative;
    width: 100%;
    display: block;
    height: 400px;
    object-fit: cover;
}
/* ── RESPONSIVE ── */
@media (max-width: 1024px) {


    .why-layout,
    .identity-layout,
    .aim-layout,
    .madrasa-layout,
    .forward-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section {
        padding: 80px 6%;
    }
}

@media (max-width: 768px) {


    .hamburger {
        display: flex;
    }

    .section {
        padding: 64px 5%;
    }

    .world-needs {
        grid-template-columns: 1fr;
    }


    .hero-right {
        display: none;
    }

    .hero-h1 {
        font-size: 36px;
    }

    .ic-heading {
        font-size: 18px;
    }

    .identity-layout {
        gap: 40px;
    }

    .hero-content {
        padding: 0px 0px 30px;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .page-hero {
        min-height: auto;
    }

    section#aim {
        padding: 0px 15px 40px;
    }

    section#madrasa {
        padding: 30px 15px 50px;
    }

    .why-layout,
    .identity-layout,
    .aim-layout,
    .madrasa-layout,
    .forward-layout {
        gap: 10px;
    }

    .closing {
        padding: 30px 15px 50px;
        text-align: center;
    }
    section#identity {
    padding: 30px 15px 60px;
}
}
