:root {
    --g900: #071f17;
    --g800: #0d2e22;
    --g700: #14503d;
    --g600: #1a6b52;
    --gold500: #b8923a;
    --gold400: #c9a84c;
    --gold300: #d4bc7a;
    --cream100: #faf5ef;
    --cream200: #f3ebe0;
    --cream300: #e8ddd0;
    --white: #fff;
    --tdark: #1a1a1a;
    --tmid: #4a4a4a;
    --tlight: #8a8a8a;
    --sh-sm: 0 2px 12px rgba(13, 46, 34, .08);
    --sh-md: 0 8px 32px rgba(13, 46, 34, .14);
    --sh-lg: 0 20px 60px rgba(13, 46, 34, .2);
    --sh-gold: 0 8px 28px rgba(184, 146, 58, .28);
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --ease: cubic-bezier(.4, 0, .2, 1)
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--cream100);
    color: var(--tdark);
    overflow-x: hidden;
    line-height: 1.7
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-thumb {
    background: var(--g700);
    border-radius: 3px
}

/* ANIMATIONS */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.12)
    }
}

@keyframes ticker {
    0% {
        transform: translateX(100%)
    }

    100% {
        transform: translateX(-100%)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(.94) translateY(18px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-14px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.97)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg)
    }
}

.anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.anim.al {
    transform: translateX(-28px)
}

.anim.ar {
    transform: translateX(28px)
}

.anim.as {
    transform: scale(.93)
}

.anim.show {
    opacity: 1 !important;
    transform: none !important
}

/* TOP BAR */
#topbar {
    background: var(--g900);
    color: rgba(255, 255, 255, .72);
    font-size: .77rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(201, 168, 76, .18);
    z-index: 1001;
    position: relative
}

.wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 44px)
}

#topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px
}

.tb-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.tb-left span {
    display: flex;
    align-items: center;
    gap: 5px
}

.tb-left i {
    color: var(--gold400);
    font-size: .7rem
}

.tb-date {
    color: var(--gold300) !important;
    font-weight: 700
}

.tb-right {
    display: flex;
    align-items: center;
    gap: 5px
}

.tb-soc {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold300);
    font-size: .65rem;
    transition: all .3s var(--ease)
}

.tb-soc:hover {
    background: var(--gold500);
    color: var(--g900);
    transform: translateY(-2px)
}

/* NAVBAR */
#navbar {
    background: rgba(250, 245, 239, .97);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--sh-sm);
    transition: box-shadow .3s
}

#navbar.scrolled {
    box-shadow: var(--sh-md)
}

#navbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--cream100);
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 0 0 3px var(--gold400), var(--sh-sm); */
    flex-shrink: 0;
    transition: transform .4s var(--ease)
}

.logo:hover .logo-badge {
    transform: rotate(8deg) scale(2.06);
    -webkit-transform: rotate(8deg) scale(2.06);
    -moz-transform: rotate(8deg) scale(2.06);
    -ms-transform: rotate(8deg) scale(2.06);
    -o-transform: rotate(8deg) scale(2.06);
}

.logo-badge svg {
    width: 32px;
    height: 32px
}

.logo-txt .ar {
    font-size: 1rem;
    font-weight: 800;
    color: var(--g800);
    line-height: 1.25
}

.logo-txt .en {
    font-size: .6rem;
    font-weight: 600;
    color: #8b6914
}

.logo-txt .est {
    font-size: .57rem;
    color: var(--tlight)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px
}

.nav-links>li {
    position: relative
}

.nav-links>li>a {
    padding: 8px 14px;
    border-radius: var(--r-sm);
    font-size: .86rem;
    font-weight: 600;
    color: var(--g800);
    position: relative;
    transition: all .3s var(--ease);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    right: 14px;
    left: 14px;
    height: 2px;
    background: var(--gold500);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform .3s var(--ease);
    transform-origin: right
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    color: #8b6914;
    background: rgba(184, 146, 58, .07)
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
    transform: scaleX(1)
}

.nav-links>li>a .fa-chevron-down {
    font-size: .45rem;
    opacity: .5;
    transition: transform .3s
}

.nav-links>li:hover>a .fa-chevron-down {
    transform: rotate(180deg)
}

/* submenu */
.submenu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(12px);
    min-width: 200px;
    border-radius: var(--r-md);
    box-shadow: var(--sh-md);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .3s var(--ease);
    border: 1px solid rgba(201, 168, 76, .12);
    z-index: 100
}

.nav-links>li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.submenu li a {
    display: block;
    padding: 9px 18px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--g800);
    transition: all .25s var(--ease);
    border-right: 2px solid transparent
}

.submenu li a:hover {
    background: rgba(201, 168, 76, .06);
    color: #8b6914;
    border-right-color: var(--gold400)
}

.submenu li a i {
    width: 20px;
    color: var(--gold400);
    font-size: .7rem
}

.nav-acts {
    display: flex;
    align-items: center;
    gap: 8px
}

.btn-icon {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: var(--cream200);
    color: var(--g700);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease);
    font-size: .88rem
}

.btn-icon:hover {
    background: var(--g700);
    color: var(--gold400);
    transform: scale(1.1)
}

.btn-lang {
    padding: 5px 12px;
    border-radius: 20px;
    border: 1.5px solid var(--gold400);
    color: #8b6914;
    font-size: .76rem;
    font-weight: 700;
    transition: all .3s var(--ease)
}

.btn-lang:hover {
    background: var(--gold500);
    color: #fff
}

.btn-nav-cta {
    padding: 9px 19px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--g700), var(--g600));
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(20, 80, 61, .28);
    transition: all .3s var(--ease)
}

.btn-nav-cta:hover {
    transform: translateY(-2px)
}

.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px
}

.ham span {
    display: block;
    width: 23px;
    height: 2.5px;
    background: var(--g800);
    border-radius: 2px
}

/* ===== SEARCH MODAL ===== */
#searchOverlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(7, 31, 23, .88);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: clamp(60px, 12vh, 130px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease)
}

#searchOverlay.open {
    opacity: 1;
    pointer-events: all
}

#searchOverlay.open .search-box {
    animation: modalIn .4s var(--ease) forwards
}

.search-box {
    background: #fff;
    border-radius: 24px;
    width: min(680px, 94vw);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    overflow: hidden;
    border: 1.5px solid rgba(201, 168, 76, .25);
    transform: scale(.94) translateY(18px)
}

.search-header {
    background: linear-gradient(135deg, var(--g800), var(--g700));
    padding: 20px 26px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.search-header h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 9px
}

.search-header h3 i {
    color: var(--gold400)
}

.search-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: all .3s var(--ease)
}

.search-close:hover {
    background: rgba(255, 255, 255, .2);
    border-color: var(--gold400);
    color: var(--gold400);
    transform: rotate(90deg)
}

.search-input-wrap {
    padding: 20px 26px 0;
    position: relative
}

.search-input-wrap .si {
    position: absolute;
    right: 42px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold500);
    font-size: 1rem;
    pointer-events: none;
    margin-top: 10px
}

#searchInput {
    width: 100%;
    padding: 14px 44px 14px 18px;
    border: 2px solid var(--cream300);
    border-radius: 14px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    color: var(--tdark);
    background: var(--cream100);
    outline: none;
    direction: rtl;
    transition: border-color .3s, box-shadow .3s
}

#searchInput:focus {
    border-color: var(--gold400);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, .15);
    background: #fff
}

#searchInput::placeholder {
    color: var(--tlight)
}

.search-hints {
    padding: 12px 26px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.search-hint {
    padding: 5px 13px;
    border-radius: 20px;
    background: var(--cream200);
    color: var(--tmid);
    font-size: .76rem;
    font-weight: 600;
    border: 1px solid var(--cream300);
    transition: all .25s var(--ease);
    cursor: pointer
}

.search-hint:hover {
    background: var(--g700);
    color: #fff;
    border-color: var(--g700)
}

.search-results {
    padding: 16px 26px 24px;
    max-height: clamp(200px, 40vh, 380px);
    overflow-y: auto
}

.search-results::-webkit-scrollbar {
    width: 4px
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--gold400);
    border-radius: 2px
}

.sr-count {
    font-size: .78rem;
    color: var(--tlight);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px
}

.sr-count strong {
    color: #8b6914
}

.sr-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px;
    border-radius: 12px;
    transition: background .25s var(--ease);
    cursor: pointer;
    border: 1px solid transparent;
    margin-bottom: 6px
}

.sr-item:hover {
    background: var(--cream100);
    border-color: var(--cream300)
}

.sr-item-img {
    width: 64px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--cream200)
}

.sr-item-body {
    flex: 1;
    min-width: 0
}

.sr-item-cat {
    font-size: .67rem;
    font-weight: 700;
    color: #8b6914;
    margin-bottom: 3px;
    display: inline-block;
    padding: 2px 8px;
    background: rgba(184, 146, 58, .1);
    border-radius: 10px
}

.sr-item-title {
    font-size: .87rem;
    font-weight: 700;
    color: var(--g800);
    line-height: 1.45;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.sr-item-meta {
    font-size: .72rem;
    color: var(--tlight);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.sr-item-meta i {
    color: var(--gold500);
    font-size: .65rem
}

mark {
    background: rgba(201, 168, 76, .28);
    color: var(--g800);
    border-radius: 3px;
    padding: 0 2px;
    font-weight: 700
}

.sr-empty {
    text-align: center;
    padding: 32px 16px;
    color: var(--tlight)
}

.sr-empty i {
    font-size: 2.2rem;
    color: var(--cream300);
    margin-bottom: 10px;
    display: block
}

/* MOBILE MENU */
#mmenu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(7, 31, 23, .97);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease)
}

#mmenu.open {
    opacity: 1;
    pointer-events: all
}

#mmenu a {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    padding: 13px 32px;
    border-radius: var(--r-md);
    transition: all .3s;
    opacity: 0;
    transform: translateY(18px)
}

#mmenu.open a {
    opacity: 1;
    transform: translateY(0)
}

#mmenu.open a:nth-child(2) {
    transition-delay: .08s
}

#mmenu.open a:nth-child(3) {
    transition-delay: .14s
}

#mmenu.open a:nth-child(4) {
    transition-delay: .2s
}

#mmenu.open a:nth-child(5) {
    transition-delay: .26s
}

#mmenu.open a:nth-child(6) {
    transition-delay: .32s
}

#mmenu.open a:nth-child(7) {
    transition-delay: .38s
}

#mmenu a:hover {
    color: var(--gold400);
    background: rgba(201, 168, 76, .1)
}

.mm-x {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all .3s
}

.mm-x:hover {
    background: rgba(255, 255, 255, .1);
    border-color: var(--gold400);
    color: var(--gold400)
}

/* HERO */
#hero {
    position: relative
}

.hero-sw {
    height: clamp(460px, 70vh, 700px)
}

.hero-sl {
    position: relative;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.07);
    transition: transform 7s ease
}

.swiper-slide-active .hero-bg {
    transform: scale(1)
}

.hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(7, 31, 23, .93) 0%, rgba(13, 46, 34, .74) 55%, rgba(20, 80, 61, .3) 100%)
}

.hero-pat {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(201, 168, 76, .07) 1px, transparent 0);
    background-size: 32px 32px
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 clamp(20px, 6vw, 90px);
    max-width: 740px
}

.h-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(201, 168, 76, .16);
    border: 1px solid rgba(201, 168, 76, .4);
    color: var(--gold300);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 16px;
    width: fit-content;
    backdrop-filter: blur(6px);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s .18s var(--ease), transform .6s .18s var(--ease)
}

.swiper-slide-active .h-badge {
    opacity: 1;
    transform: translateY(0)
}

.h-badge i {
    font-size: .55rem;
    animation: pulse 1.8s infinite
}

.h-title {
    font-size: clamp(1.5rem, 3.6vw, 2.85rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s .32s var(--ease), transform .7s .32s var(--ease)
}

.swiper-slide-active .h-title {
    opacity: 1;
    transform: translateY(0)
}

.h-title em {
    font-style: normal;
    color: var(--gold400)
}

.h-excerpt {
    font-size: clamp(.87rem, 1.3vw, 1rem);
    color: rgba(255, 255, 255, .78);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 540px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s .46s var(--ease), transform .7s .46s var(--ease)
}

.swiper-slide-active .h-excerpt {
    opacity: 1;
    transform: translateY(0)
}

.h-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s .58s var(--ease), transform .6s .58s var(--ease)
}

.swiper-slide-active .h-meta {
    opacity: 1;
    transform: translateY(0)
}

.h-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .6);
    font-size: .79rem
}

.h-meta i {
    color: var(--gold400);
    font-size: .7rem
}

.h-btns {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s .7s var(--ease), transform .6s .7s var(--ease)
}

.swiper-slide-active .h-btns {
    opacity: 1;
    transform: translateY(0)
}

.btn-hp {
    padding: 12px 28px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--gold500), var(--gold400));
    color: var(--g900);
    font-weight: 800;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: var(--sh-gold);
    transition: all .3s var(--ease)
}

.btn-hp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(184, 146, 58, .42)
}

.btn-ho {
    padding: 12px 28px;
    border-radius: 26px;
    border: 2px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all .3s var(--ease);
    backdrop-filter: blur(4px)
}

.btn-ho:hover {
    background: rgba(255, 255, 255, .1);
    border-color: var(--gold400);
    color: var(--gold300)
}

.hero-sw .swiper-pagination {
    bottom: 26px !important
}

.hero-sw .swiper-pagination-bullet {
    width: 26px;
    height: 4px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .3);
    opacity: 1;
    transition: all .4s var(--ease);
    margin: 0 3px !important
}

.hero-sw .swiper-pagination-bullet-active {
    width: 42px;
    background: var(--gold400)
}

.hnav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1.5px solid rgba(255, 255, 255, .22);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all .3s var(--ease);
    font-size: .95rem
}

.hnav:hover {
    background: var(--gold500);
    border-color: var(--gold500);
    color: var(--g900);
    transform: translateY(-50%) scale(1.1)
}

.hprev {
    right: 20px
}

.hnext {
    left: 20px
}

.hero-stats {
    position: absolute;
    left: clamp(18px, 3.5vw, 52px);
    bottom: 75px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.hs-item {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(201, 168, 76, .22);
    border-radius: var(--r-md);
    padding: 11px 16px;
    backdrop-filter: blur(10px);
    min-width: 138px;
    transition: all .3s var(--ease)
}

.hs-item:hover {
    background: rgba(201, 168, 76, .13);
    transform: translateX(-4px)
}

.hs-num {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold400);
    line-height: 1;
    font-family: 'Playfair Display', serif
}

.hs-lbl {
    font-size: .67rem;
    color: rgba(255, 255, 255, .6);
    margin-top: 3px
}

/* TICKER */
#ticker {
    background: var(--g800);
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 2px solid var(--gold500)
}

.tk-label {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    padding: 11px 22px 11px 28px;
    font-size: .77rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    clip-path: polygon(0 0, 100% 0, calc(100% - 13px) 50%, 100% 100%, 0 100%);
    z-index: 2;
    flex-shrink: 0
}

.tk-label i {
    animation: pulse 1.2s infinite
}

.tk-track {
    flex: 1;
    overflow: hidden;
    padding: 11px 0
}

.tk-inner {
    display: flex;
    gap: 50px;
    animation: ticker 36s linear infinite;
    white-space: nowrap
}

.tk-inner:hover {
    animation-play-state: paused
}

.tk-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .82);
    font-size: .82rem;
    cursor: pointer;
    transition: color .3s
}

.tk-item::before {
    content: '\2B50';
    font-size: .52rem
}

.tk-item:hover {
    color: var(--gold400)
}

/* SECTIONS */
section {
    padding: clamp(48px, 6.5vw, 85px) 0
}

.sec-hd {
    text-align: center;
    margin-bottom: 48px
}

.sec-eye {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8b6914;
    font-size: .77rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 11px
}

.sec-eye::before,
.sec-eye::after {
    content: '';
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--gold400);
    border-radius: 2px
}

.sec-title {
    font-size: clamp(1.45rem, 2.8vw, 2.3rem);
    font-weight: 900;
    color: var(--g800);
    line-height: 1.25;
    margin-bottom: 12px
}

.sec-title em {
    font-style: normal;
    color: #8b6914
}

.sec-desc {
    font-size: .93rem;
    color: var(--tmid);
    max-width: 520px;
    margin: 0 auto
}

.star-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 14px 0
}

.star-sep::before,
.star-sep::after {
    content: '';
    height: 1px;
    width: 50px;
    background: linear-gradient(90deg, transparent, var(--gold400), transparent)
}

.star-sep i {
    color: var(--gold500);
    font-size: .68rem
}

/* NEWS */
#news {
    background: var(--cream100)
}

.news-tabs {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-bottom: 36px;
    flex-wrap: wrap
}

.ntab {
    padding: 8px 18px;
    border-radius: 24px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--tmid);
    border: 1.5px solid var(--cream300);
    background: #fff;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 5px
}

.ntab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--g700), var(--g600));
    opacity: 0;
    transition: opacity .3s var(--ease);
    border-radius: 24px
}

.ntab:hover::before,
.ntab.active::before {
    opacity: 1
}

.ntab:hover,
.ntab.active {
    color: #fff;
    border-color: var(--g700);
    box-shadow: 0 4px 14px rgba(20, 80, 61, .22)
}

.ntab>* {
    position: relative;
    z-index: 1
}

.tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    background: var(--cream200);
    color: var(--tlight);
    font-size: .65rem;
    font-weight: 800;
    padding: 0 4px;
    transition: all .3s var(--ease)
}

.ntab.active .tab-count,
.ntab:hover .tab-count {
    background: rgba(255, 255, 255, .22);
    color: #fff
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px
}

.nc {
    background: #fff;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    border: 1px solid rgba(20, 80, 61, .06);
    transition: all .45s var(--ease);
    position: relative
}

.nc:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: rgba(201, 168, 76, .28)
}

.nc-img {
    position: relative;
    overflow: hidden
}

.nc-img img {
    width: 100%;
    object-fit: cover;
    transition: transform .65s var(--ease);
    display: block
}

.nc:hover .nc-img img {
    transform: scale(1.06)
}

.nc-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 31, 23, .6) 0%, transparent 55%)
}

.nc-cat {
    position: absolute;
    top: 13px;
    right: 13px;
    background: linear-gradient(135deg, var(--gold500), var(--gold400));
    color: var(--g900);
    padding: 4px 12px;
    border-radius: 18px;
    font-size: .69rem;
    font-weight: 800;
    z-index: 2
}

.nc-body {
    padding: 18px
}

.nc-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 9px;
    flex-wrap: wrap
}

.nc-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .73rem;
    color: var(--tlight)
}

.nc-meta i {
    color: var(--gold500);
    font-size: .64rem
}

.nc-title {
    font-size: .97rem;
    font-weight: 800;
    color: var(--g800);
    line-height: 1.5;
    margin-bottom: 9px;
    transition: color .3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.nc:hover .nc-title {
    color: #8b6914
}

.nc-ex {
    font-size: .82rem;
    color: var(--tmid);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px
}

.nc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 13px;
    border-top: 1px solid var(--cream200)
}

.nc-auth {
    display: flex;
    align-items: center;
    gap: 7px
}

.nc-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--g600), var(--g700));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold400);
    font-size: .62rem;
    font-weight: 800;
    flex-shrink: 0
}

.nc-an {
    font-size: .74rem;
    font-weight: 600;
    color: var(--tmid)
}

.nc-link {
    font-size: .77rem;
    font-weight: 700;
    color: #8b6914;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap .3s
}

.nc-link:hover {
    gap: 8px
}

.nc.feat {
    grid-column: span 7
}

.nc.feat .nc-img img {
    height: 300px
}

.nc.feat .nc-title {
    font-size: 1.22rem
}

.nc.side {
    grid-column: span 5
}

.nc.side .nc-img img {
    height: 178px
}

.nc.reg {
    grid-column: span 4
}

.nc.reg .nc-img img {
    height: 188px
}

.nc.horiz {
    grid-column: span 12;
    display: grid;
    grid-template-columns: 270px 1fr
}

.nc.horiz .nc-img img {
    height: 100%;
    min-height: 168px
}

.nc.horiz .nc-body {
    display: flex;
    flex-direction: column;
    justify-content: center
}

#noResults {
    display: none;
    grid-column: span 12;
    text-align: center;
    padding: 52px 20px;
    background: #fff;
    border-radius: var(--r-lg);
    border: 2px dashed var(--cream300)
}

#noResults i {
    font-size: 2.8rem;
    color: var(--cream300);
    margin-bottom: 14px;
    display: block
}

#noResults h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--g800);
    margin-bottom: 8px
}

#noResults p {
    font-size: .88rem;
    color: var(--tlight)
}

#noResults button {
    margin-top: 18px;
    padding: 10px 26px;
    border-radius: 24px;
    background: var(--g700);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    transition: all .3s var(--ease)
}

#noResults button:hover {
    background: var(--gold500);
    color: var(--g900)
}

.load-wrap {
    text-align: center;
    margin-top: 40px
}

.btn-load {
    padding: 12px 36px;
    border-radius: 26px;
    border: 2px solid var(--g700);
    color: var(--g700);
    font-size: .88rem;
    font-weight: 700;
    transition: all .3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 7px
}

.btn-load:hover {
    background: var(--g700);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--sh-md)
}

/* STATS */
#stats {
    background: linear-gradient(135deg, var(--g900), var(--g700));
    padding: clamp(38px, 5vw, 62px) 0;
    position: relative;
    overflow: hidden
}

#stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, .1), transparent 65%)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1
}

.st-card {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(201, 168, 76, .17);
    transition: all .4s var(--ease)
}

.st-card:hover {
    background: rgba(201, 168, 76, .1);
    transform: translateY(-5px);
    border-color: rgba(201, 168, 76, .38)
}

.st-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, .2), rgba(201, 168, 76, .07));
    border: 1.5px solid rgba(201, 168, 76, .32);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 13px;
    font-size: 1.25rem;
    color: var(--gold400)
}

.st-num {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    font-weight: 900;
    color: var(--gold400);
    line-height: 1;
    font-family: 'Playfair Display', serif
}

.st-suf {
    font-size: .58em
}

.st-lbl {
    font-size: .8rem;
    color: rgba(255, 255, 255, .62);
    margin-top: 6px
}

/* SERVICES */
#services {
    background: var(--cream200)
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
    gap: 20px
}

.svc {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--sh-sm);
    border: 1px solid rgba(20, 80, 61, .06);
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden
}

.svc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold500), var(--g600));
    transform: scaleX(0);
    transition: transform .4s var(--ease);
    transform-origin: right
}

.svc:hover::before {
    transform: scaleX(1);
    transform-origin: left
}

.svc:hover {
    transform: translateY(-7px);
    box-shadow: var(--sh-lg)
}

.svc-ico {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--cream200), var(--cream300));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--g700);
    transition: all .4s var(--ease)
}

.svc:hover .svc-ico {
    background: linear-gradient(135deg, var(--g700), var(--g600));
    color: var(--gold400);
    transform: scale(1.1) rotate(-5deg)
}

.svc-title {
    font-size: .97rem;
    font-weight: 800;
    color: var(--g800);
    margin-bottom: 9px
}

.svc-desc {
    font-size: .82rem;
    color: var(--tmid);
    line-height: 1.7;
    margin-bottom: 16px
}

.svc-link {
    font-size: .79rem;
    font-weight: 700;
    color: #8b6914;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .3s
}

.svc-link:hover {
    gap: 8px
}

/* EVENTS */
#events {
    background: var(--cream100)
}

.ev-sw {
    padding-bottom: 52px !important
}

.evc {
    background: #fff;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    border: 1px solid rgba(20, 80, 61, .06);
    transition: all .4s var(--ease);
    height: 100%
}

.evc:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-lg)
}

.evc-img {
    position: relative;
    overflow: hidden
}

.evc-img img {
    width: 100%;
    height: 188px;
    object-fit: cover;
    transition: transform .6s var(--ease);
    display: block
}

.evc:hover .evc-img img {
    transform: scale(1.06)
}

.evc-db {
    position: absolute;
    top: 13px;
    right: 13px;
    background: linear-gradient(135deg, var(--g700), var(--g600));
    color: #fff;
    border-radius: var(--r-md);
    padding: 8px 12px;
    text-align: center;
    line-height: 1;
    box-shadow: var(--sh-md)
}

.evc-db .d {
    font-size: 1.3rem;
    font-weight: 900;
    display: block;
    color: var(--gold400)
}

.evc-db .m {
    font-size: .6rem;
    font-weight: 600;
    opacity: .82;
    margin-top: 2px;
    display: block
}

.evc-type {
    position: absolute;
    bottom: 11px;
    right: 11px;
    background: rgba(201, 168, 76, .9);
    color: var(--g900);
    padding: 3px 10px;
    border-radius: 18px;
    font-size: .67rem;
    font-weight: 800
}

.evc-body {
    padding: 18px
}

.evc-title {
    font-size: .94rem;
    font-weight: 800;
    color: var(--g800);
    line-height: 1.5;
    margin-bottom: 11px;
    transition: color .3s
}

.evc:hover .evc-title {
    color: #8b6914
}

.evc-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px
}

.evc-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .77rem;
    color: var(--tmid)
}

.evc-info i {
    color: var(--gold500);
    width: 13px;
    font-size: .7rem
}

.btn-ev {
    width: 100%;
    padding: 9px;
    border-radius: var(--r-sm);
    background: var(--cream200);
    color: var(--g700);
    font-size: .82rem;
    font-weight: 700;
    transition: all .3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px
}

.btn-ev:hover {
    background: var(--g700);
    color: #fff
}

.ev-sw .swiper-pagination-bullet {
    background: var(--g700);
    opacity: .28
}

.ev-sw .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold500);
    width: 20px;
    border-radius: 4px
}

.ev-navs {
    display: flex;
    justify-content: center;
    gap: 11px;
    margin-top: 6px
}

.evnb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--cream300);
    color: var(--g700);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease);
    box-shadow: var(--sh-sm)
}

.evnb:hover {
    background: var(--g700);
    color: var(--gold400);
    border-color: var(--g700)
}

/* PARTNERS */
#partners {
    background: var(--cream200);
    padding: clamp(34px, 4.5vw, 56px) 0
}

.ptn-sl {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 184px;
    background: #fff;
    border-radius: var(--r-md);
    border: 1px solid var(--cream300);
    transition: all .3s var(--ease);
    padding: 12px;
    flex-direction: column;
    gap: 5px
}

.ptn-sl:hover {
    border-color: var(--gold400);
    box-shadow: var(--sh-sm);
    transform: scale(1.04)
}

.ptn-sl i {
    font-size: 1.7rem;
    color: var(--g700);
    opacity: .5;
    transition: all .3s
}

.ptn-sl:hover i {
    opacity: 1;
    color: #8b6914
}

.ptn-sl span {
    font-size: .68rem;
    font-weight: 700;
    color: var(--tlight);
    text-align: center;
    line-height: 1.3
}

/* NEWSLETTER */
#nl {
    background: linear-gradient(135deg, var(--g800), var(--g700));
    padding: clamp(48px, 6.5vw, 80px) 0;
    position: relative;
    overflow: hidden
}

#nl::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, .11), transparent 70%)
}

.nl-w {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto
}

.nl-ico {
    font-size: 2.1rem;
    color: var(--gold400);
    margin-bottom: 14px;
    animation: float 3s ease-in-out infinite
}

.nl-title {
    font-size: clamp(1.35rem, 2.6vw, 1.9rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 11px
}

.nl-desc {
    font-size: .9rem;
    color: rgba(255, 255, 255, .68);
    margin-bottom: 28px
}

.nl-form {
    display: flex;
    gap: 9px;
    max-width: 460px;
    margin: 0 auto
}

.nl-inp {
    flex: 1;
    padding: 13px 18px;
    border-radius: 26px;
    border: 1.5px solid rgba(201, 168, 76, .28);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: .88rem;
    font-family: 'Cairo', sans-serif;
    outline: none;
    transition: all .3s;
    direction: rtl
}

.nl-inp::placeholder {
    color: rgba(255, 255, 255, .38)
}

.nl-inp:focus {
    border-color: var(--gold400);
    background: rgba(255, 255, 255, .12)
}

.btn-nl {
    padding: 13px 26px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--gold500), var(--gold400));
    color: var(--g900);
    font-size: .87rem;
    font-weight: 800;
    white-space: nowrap;
    transition: all .3s var(--ease);
    box-shadow: var(--sh-gold)
}

.btn-nl:hover {
    transform: translateY(-2px)
}

#testimonials {


}
/* FOOTER */
#footer {
    background: var(--g900);
    color: rgba(255, 255, 255, .68)
}

.ft-wave {
    display: block;
    width: 100%;
    height: 50px;
    background: var(--cream200)
}

.ft-main {
    padding: clamp(38px, 5.5vw, 65px) 0 clamp(28px, 4vw, 46px)
}

.ft-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 32px
}

.ft-logo-row {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 16px
}

.ft-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--g700);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px var(--gold500);
    flex-shrink: 0
}

.ft-badge svg {
    width: 28px;
    height: 28px
}

.ft-bname {
    font-size: .95rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3
}

.ft-bsub {
    font-size: .64rem;
    color: var(--gold400)
}

.ft-about {
    font-size: .82rem;
    line-height: 1.8;
    margin-bottom: 18px
}

.ft-socs {
    display: flex;
    gap: 7px
}

.ft-soc {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(201, 168, 76, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold300);
    font-size: .8rem;
    transition: all .3s var(--ease)
}

.ft-soc:hover {
    background: var(--gold500);
    color: var(--g900);
    border-color: var(--gold500);
    transform: translateY(-3px)
}

.ft-col-t {
    font-size: .9rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    padding-bottom: 9px;
    border-bottom: 2px solid var(--gold500);
    display: inline-block
}

.ft-links li {
    margin-bottom: 9px
}

.ft-links a {
    font-size: .82rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all .3s
}

.ft-links a::before {
    content: '\25C4';
    font-size: .48rem;
    color: var(--gold500)
}

.ft-links a:hover {
    color: var(--gold400);
    padding-right: 3px
}

.ft-cont li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 13px;
    font-size: .82rem
}

.ft-cont li i {
    color: var(--gold400);
    margin-top: 3px;
    width: 14px;
    font-size: .76rem;
    flex-shrink: 0
}

.ft-bot {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 17px 0
}

.ft-bot .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 9px
}

.ft-copy {
    font-size: .77rem
}

.ft-copy strong {
    color: var(--gold400)
}

.ft-leg {
    display: flex;
    gap: 16px
}

.ft-leg a {
    font-size: .76rem;
    transition: color .3s
}

.ft-leg a:hover {
    color: var(--gold400)
}

#btt {
    position: fixed;
    bottom: 26px;
    left: 26px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--g700), var(--g600));
    color: var(--gold400);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sh-md);
    border: 1.5px solid rgba(201, 168, 76, .28);
    opacity: 0;
    transform: translateY(10px);
    transition: all .4s var(--ease);
    font-size: .9rem
}

#btt.show {
    opacity: 1;
    transform: translateY(0)
}

#btt:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-gold)
}

#toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 4000;
    background: var(--g800);
    color: #fff;
    padding: 14px 22px;
    border-radius: 14px;
    font-size: .85rem;
    font-weight: 600;
    box-shadow: var(--sh-lg);
    border: 1px solid rgba(201, 168, 76, .3);
    display: flex;
    align-items: center;
    gap: 9px;
    transform: translateY(80px);
    opacity: 0;
    transition: all .4s var(--ease);
    pointer-events: none
}

#toast.show {
    transform: translateY(0);
    opacity: 1
}

#toast i {
    color: var(--gold400)
}

@media(max-width:1024px) {
    .nc.feat {
        grid-column: span 12
    }

    .nc.side {
        grid-column: span 6
    }

    .nc.reg {
        grid-column: span 6
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ft-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero-stats {
        display: none
    }
}

@media(max-width:768px) {

    .nav-links,
    .nav-acts .btn-nav-cta,
    .nav-acts .btn-lang {
        display: none
    }

    .ham {
        display: flex
    }

    .nc.side,
    .nc.reg {
        grid-column: span 12
    }

    .nc.horiz {
        grid-template-columns: 1fr
    }

    .nc.horiz .nc-img img {
        height: 188px
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }

    .ft-grid {
        grid-template-columns: 1fr
    }

    .nl-form {
        flex-direction: column
    }

    .hnav {
        display: none
    }

    .tb-left span:not(:first-child) {
        display: none
    }

    .ft-bot .wrap {
        flex-direction: column;
        text-align: center
    }

    /* ===== BOARD OF DIRECTORS ===== */
    #board {
        background: linear-gradient(160deg, var(--cream200) 0%, var(--cream100) 100%);
        position: relative;
        overflow: hidden
    }

    #board::before {
        content: '';
        position: absolute;
        top: -120px;
        right: -120px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201, 168, 76, .07), transparent 70%);
        pointer-events: none
    }

    .board-intro {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
        margin-bottom: 52px
    }

    .board-intro-text .sec-eye {
        justify-content: flex-start
    }

    .board-intro-text .sec-title {
        text-align: right;
        margin-bottom: 14px
    }

    .board-intro-text .star-sep {
        justify-content: flex-start
    }

    .board-intro-desc {
        font-size: .92rem;
        color: var(--tmid);
        line-height: 1.85;
        margin-bottom: 22px
    }

    .board-intro-stats {
        display: flex;
        gap: 16px;
        flex-wrap: wrap
    }

    .bi-stat {
        background: #fff;
        border-radius: var(--r-md);
        padding: 14px 20px;
        border: 1px solid var(--cream300);
        box-shadow: var(--sh-sm);
        transition: all .3s var(--ease)
    }

    .bi-stat:hover {
        border-color: var(--gold400);
        transform: translateY(-3px);
        box-shadow: var(--sh-md)
    }

    .bi-stat-num {
        font-size: 1.5rem;
        font-weight: 900;
        color: var(--gold500);
        font-family: 'Playfair Display', serif;
        line-height: 1
    }

    .bi-stat-lbl {
        font-size: .72rem;
        color: var(--tlight);
        margin-top: 3px
    }

    .board-intro-img {
        position: relative;
        border-radius: var(--r-lg);
        overflow: hidden;
        box-shadow: var(--sh-lg)
    }

    .board-intro-img img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
        transition: transform .6s var(--ease)
    }

    .board-intro-img:hover img {
        transform: scale(1.04)
    }

    .board-intro-img-ov {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(7, 31, 23, .55) 0%, transparent 60%)
    }

    .board-intro-img-badge {
        position: absolute;
        bottom: 18px;
        right: 18px;
        background: linear-gradient(135deg, var(--gold500), var(--gold400));
        color: var(--g900);
        padding: 8px 18px;
        border-radius: 20px;
        font-size: .78rem;
        font-weight: 800;
        display: flex;
        align-items: center;
        gap: 7px;
        box-shadow: var(--sh-gold)
    }

    .board-sw {
        padding-bottom: 60px !important
    }

    .board-card {
        background: #fff;
        border-radius: var(--r-lg);
        overflow: hidden;
        box-shadow: var(--sh-sm);
        border: 1px solid rgba(20, 80, 61, .06);
        transition: all .45s var(--ease);
        height: 100%;
        position: relative
    }

    .board-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--sh-lg);
        border-color: rgba(201, 168, 76, .3)
    }

    .board-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--gold500), var(--g600));
        z-index: 2;
        transform: scaleX(0);
        transition: transform .4s var(--ease);
        transform-origin: right
    }

    .board-card:hover::before {
        transform: scaleX(1);
        transform-origin: left
    }

    .bc-img-wrap {
        position: relative;
        overflow: hidden;
        height: 260px
    }

    .bc-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        display: block;
        transition: transform .65s var(--ease);
        filter: grayscale(15%)
    }

    .board-card:hover .bc-img-wrap img {
        transform: scale(1.06);
        filter: grayscale(0%)
    }

    .bc-img-ov {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(7, 31, 23, .7) 0%, rgba(7, 31, 23, .05) 55%, transparent 100%)
    }

    .bc-role-badge {
        position: absolute;
        top: 14px;
        right: 14px;
        padding: 5px 13px;
        border-radius: 20px;
        font-size: .68rem;
        font-weight: 800;
        z-index: 2;
        backdrop-filter: blur(6px)
    }

    .bc-role-badge.president {
        background: linear-gradient(135deg, var(--gold500), var(--gold400));
        color: var(--g900)
    }

    .bc-role-badge.vice {
        background: rgba(20, 80, 61, .85);
        color: var(--gold300);
        border: 1px solid rgba(201, 168, 76, .3)
    }

    .bc-role-badge.member {
        background: rgba(255, 255, 255, .15);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, .25)
    }

    .bc-socials {
        position: absolute;
        bottom: 14px;
        left: 14px;
        display: flex;
        gap: 6px;
        z-index: 2;
        opacity: 0;
        transform: translateY(8px);
        transition: all .35s var(--ease)
    }

    .board-card:hover .bc-socials {
        opacity: 1;
        transform: translateY(0)
    }

    .bc-soc {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .15);
        border: 1px solid rgba(255, 255, 255, .25);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: .7rem;
        backdrop-filter: blur(6px);
        transition: all .25s var(--ease)
    }

    .bc-soc:hover {
        background: var(--gold500);
        color: var(--g900);
        border-color: var(--gold500);
        transform: scale(1.15)
    }

    .bc-body {
        padding: 20px
    }

    .bc-name {
        font-size: 1rem;
        font-weight: 800;
        color: var(--g800);
        margin-bottom: 4px;
        line-height: 1.35
    }

    .bc-title {
        font-size: .78rem;
        font-weight: 700;
        color: var(--gold600);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 5px
    }

    .bc-title i {
        font-size: .65rem
    }

    .bc-divider {
        height: 1px;
        background: linear-gradient(90deg, var(--gold400), transparent);
        margin-bottom: 12px;
        opacity: .4
    }

    .bc-desc {
        font-size: .8rem;
        color: var(--tmid);
        line-height: 1.75;
        margin-bottom: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .bc-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 14px
    }

    .bc-tag {
        padding: 3px 10px;
        border-radius: 12px;
        background: var(--cream200);
        color: var(--g700);
        font-size: .67rem;
        font-weight: 700;
        border: 1px solid var(--cream300);
        transition: all .25s var(--ease)
    }

    .bc-tag:hover {
        background: var(--g700);
        color: var(--gold400);
        border-color: var(--g700)
    }

    .bc-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 13px;
        border-top: 1px solid var(--cream200)
    }

    .bc-since {
        font-size: .72rem;
        color: var(--tlight);
        display: flex;
        align-items: center;
        gap: 5px
    }

    .bc-since i {
        color: var(--gold500);
        font-size: .65rem
    }

    .bc-link {
        font-size: .77rem;
        font-weight: 700;
        color: var(--gold600);
        display: flex;
        align-items: center;
        gap: 4px;
        transition: gap .3s
    }

    .bc-link:hover {
        gap: 8px
    }

    .board-sw .swiper-pagination-bullet {
        background: var(--g700);
        opacity: .25;
        width: 8px;
        height: 8px
    }

    .board-sw .swiper-pagination-bullet-active {
        opacity: 1;
        background: var(--gold500);
        width: 24px;
        border-radius: 4px
    }

    .board-navs {
        display: flex;
        justify-content: center;
        gap: 11px;
        margin-top: 4px
    }

    .bnb {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #fff;
        border: 1.5px solid var(--cream300);
        color: var(--g700);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .3s var(--ease);
        box-shadow: var(--sh-sm);
        font-size: .9rem
    }

    .bnb:hover {
        background: var(--g700);
        color: var(--gold400);
        border-color: var(--g700);
        transform: scale(1.08)
    }

    .board-cta {
        text-align: center;
        margin-top: 36px
    }

    .btn-board {
        padding: 13px 34px;
        border-radius: 26px;
        background: linear-gradient(135deg, var(--g700), var(--g600));
        color: #fff;
        font-size: .88rem;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 18px rgba(20, 80, 61, .28);
        transition: all .3s var(--ease)
    }

    .btn-board:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(20, 80, 61, .38)
    }

    @media(max-width:900px) {
        .board-intro {
            grid-template-columns: 1fr
        }

        .board-intro-text .sec-title,
        .board-intro-text .sec-eye,
        .board-intro-text .star-sep {
            text-align: center;
            justify-content: center
        }
    }
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr !important;
    }

    .contact-form {
        padding: 30px 20px !important;
    }
}

@media (max-width: 600px) {

    .contact-wrapper>div:first-child .form-group,
    .contact-wrapper>div:last-child .form-group[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}
