/* ================================================================
   MOHWAR ALJOODA — Design System
   Inspired by Tekfen Construction: https://www.tekfeninsaat.com.tr
   Colors: Navy #1a1b3c | Teal #5ec4cf | White | Light Grey
   Font: Tajawal (Arabic + Latin)
================================================================ */

/* --- CSS Custom Properties --- */
:root {
    --navy: #1a1b3c;
    --navy-dark: #0f1025;
    --navy-light: #2a2d5a;
    --teal: #5ec4cf;
    --teal-dark: #3ca8b5;
    --white: #ffffff;
    --grey-light: #f0f2f5;
    --grey-mid: #e5e7eb;
    --grey: #6b7280;
    --grey-dark: #374151;
    --text: #1f2937;
    --danger: #ef4444;
    --success: #10b981;
    --orange: #f59e0b;

    --font: 'Tajawal', sans-serif;
    --radius: 6px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
    --shadow: 0 4px 24px rgba(26, 27, 60, 0.12);
    --shadow-lg: 0 8px 48px rgba(26, 27, 60, 0.2);
    --nav-height: 80px;
    --container: 1240px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

[dir="rtl"] {
    letter-spacing: 0;
}

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ================================================================
   BUTTONS
================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 2rem;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn svg {
    width: 1rem;
    height: 1rem;
}

.btn--primary {
    background: var(--teal);
    color: var(--navy);
    border-color: var(--teal);
}

.btn--primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 196, 207, .4);
}

.btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--outline-light:hover {
    background: var(--white);
    color: var(--navy);
}

.btn--teal {
    background: transparent;
    color: var(--teal);
    border-color: var(--teal);
}

.btn--teal:hover {
    background: var(--teal);
    color: var(--navy);
}

.btn--white {
    background: var(--white);
    color: var(--navy);
}

.btn--white:hover {
    background: var(--grey-light);
}

.btn--danger {
    background: var(--danger);
    color: var(--white);
    border-color: var(--danger);
}

.btn--danger:hover {
    opacity: .9;
}

.btn--sm {
    padding: .4rem 1rem;
    font-size: .87rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: background var(--transition), box-shadow var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--navy);
    box-shadow: 0 2px 24px rgba(0, 0, 0, .2);
}

.navbar__inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 1.5rem;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}

.navbar__logo-mark {
    width: 42px;
    height: 42px;
    background: var(--teal);
    color: var(--navy);
    font-weight: 900;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.navbar__logo-name {
    display: block;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.1;
}

.navbar__logo-sub {
    display: block;
    color: var(--teal);
    font-size: .7rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: .25rem;
    margin-left: auto;
}

.navbar__link {
    color: rgba(255, 255, 255, .85);
    padding: .5rem .875rem;
    font-size: .9rem;
    font-weight: 500;
    position: relative;
    transition: color var(--transition);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: .875rem;
    right: .875rem;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--white);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    transform: scaleX(1);
}

.navbar__cta {
    margin-left: .5rem;
    padding: .5rem 1.25rem;
    background: var(--teal);
    color: var(--navy) !important;
    font-weight: 700;
    border-radius: var(--radius);
    font-size: .9rem;
    transition: all var(--transition);
}

.navbar__cta:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.navbar__cta::after {
    display: none;
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.lang-switch {
    color: var(--teal);
    font-size: .85rem;
    font-weight: 600;
    padding: .35rem .75rem;
    border: 1px solid var(--teal);
    border-radius: 20px;
    transition: all var(--transition);
}

.lang-switch:hover {
    background: var(--teal);
    color: var(--navy);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

@media (max-width: 900px) {
    .navbar__nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem 1rem 4rem 1rem;
    overflow-y: auto;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav__link {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    transition: color var(--transition);
}

.mobile-nav__link:hover {
    color: var(--teal);
}

.mobile-nav__lang {
    font-size: 1rem;
    color: var(--teal);
    border: 1px solid var(--teal);
    padding: .5rem 1.5rem;
    border-radius: 20px;
}

/* ================================================================
   HERO SECTION
================================================================ */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.hero-swiper,
.hero__slide {
    height: 100%;
}

.hero__slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 16, 37, .82) 0%, rgba(15, 16, 37, .45) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero__label {
    display: inline-block;
    color: var(--teal);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--teal);
}

[dir="rtl"] .hero__label {
    padding-left: 0;
    padding-right: 1rem;
    border-left: none;
    border-right: 3px solid var(--teal);
}

.hero__title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero__btn {
    font-size: 1rem;
}

/* Swiper overrides for hero */
.hero-pagination {
    bottom: 2rem !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, .5) !important;
    width: 10px !important;
    height: 10px !important;
}

.swiper-pagination-bullet-active {
    background: var(--teal) !important;
    width: 30px !important;
    border-radius: 5px !important;
}

.hero-prev,
.hero-next {
    color: var(--white) !important;
    background: rgba(94, 196, 207, .2) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(94, 196, 207, .4) !important;
    transition: all var(--transition) !important;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--teal) !important;
}

.hero-prev::after,
.hero-next::after {
    font-size: 1rem !important;
}

[dir="rtl"] .hero-prev {
    right: 1rem !important;
    left: auto !important;
}

[dir="rtl"] .hero-next {
    left: 1rem !important;
    right: auto !important;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.hero__scroll-line {
    width: 1.5px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--teal));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: .4;
        transform: scaleY(.5)
    }

    50% {
        opacity: 1;
        transform: scaleY(1)
    }
}

/* ================================================================
   SECTIONS — shared
================================================================ */
.section {
    padding: 5rem 0;
}

.section--light {
    background: var(--grey-light);
}

.section--dark {
    background: var(--navy);
}

.section--navy {
    background: var(--navy-dark);
}

.section-label {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}

.accent-bar {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--teal);
    border-radius: 2px;
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.section-title--light {
    color: var(--white);
}

.section-body {
    color: var(--grey);
    max-width: 560px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header--center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label--center {
    justify-content: center;
}

.section-body--center {
    margin-left: auto;
    margin-right: auto;
}

.section--padded {
    margin-top: 6rem;
    padding-top: 5rem;
    border-top: 1px solid var(--grey-mid);
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ================================================================
   ABOUT STRIP
================================================================ */
.about-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-strip__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    border-bottom-color: var(--teal);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.feature-card__icon {
    font-size: 1.4rem;
    color: var(--teal);
}

.feature-card__label {
    font-weight: 700;
    font-size: .95rem;
    color: var(--navy);
}

@media (max-width: 768px) {
    .about-strip__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ================================================================
   SERVICES GRID
================================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    border-left: 3px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(94, 196, 207, .06), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    border-left-color: var(--teal);
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

[dir="rtl"] .service-card {
    border-left: 1px solid rgba(255, 255, 255, .08);
    border-right: 3px solid transparent;
}

[dir="rtl"] .service-card:hover {
    border-right-color: var(--teal);
    border-left-color: rgba(255, 255, 255, .08);
}

.service-card__num {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(94, 196, 207, .25);
    line-height: 1;
}

.service-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.service-card__desc {
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
    flex: 1;
    line-height: 1.7;
}

.service-card__arrow {
    color: var(--teal);
    font-size: 1.25rem;
    margin-top: .5rem;
    transition: transform var(--transition);
}

.service-card:hover .service-card__arrow {
    transform: translateX(6px);
}

[dir="rtl"] .service-card:hover .service-card__arrow {
    transform: translateX(-6px);
}

/* ================================================================
   PROJECTS SWIPER
================================================================ */
.projects-swiper {
    padding: 0 1.5rem;
}

.project-card {
    background: var(--navy-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-card__image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.project-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex: 1;
}

.project-card__category {
    font-size: .75rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.project-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

.project-card__meta {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
}

.project-card__link {
    margin-top: .5rem;
    color: var(--teal);
    font-size: .9rem;
    font-weight: 600;
    transition: gap var(--transition);
}

.project-card__link:hover {
    gap: .5rem;
}

.projects-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
}

.projects-prev,
.projects-next {
    position: static !important;
    margin: 0 !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    border: 1.5px solid rgba(94, 196, 207, .5) !important;
    color: var(--teal) !important;
    background: transparent !important;
    transition: all var(--transition) !important;
}

.projects-prev:hover,
.projects-next:hover {
    background: var(--teal) !important;
    color: var(--navy) !important;
}

.projects-prev::after,
.projects-next::after {
    font-size: 1rem !important;
}

/* ================================================================
   WHY CHOOSE US
================================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey-mid);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.why-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-card__num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--grey-mid);
    line-height: 1;
    margin-bottom: .75rem;
}

.why-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
}

.why-card__body {
    font-size: .9rem;
    color: var(--grey);
    line-height: 1.7;
}

/* ================================================================
   CLIENTS STRIP
================================================================ */
/* ================================================================
   CLIENTS GRID (Premium Redesign)
================================================================ */
.clients-section {
    background: #f8fafc;
    border-top: 1px solid var(--grey-mid);
    padding: 6rem 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.client-card {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    transition: all var(--transition);
    height: 180px;
    text-align: center;
}

.client-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--teal);
    transform: translateY(-5px);
}

.client-card__logo {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    filter: brightness(0.9);
    transition: all var(--transition);
}

.client-card:hover .client-card__logo {
    opacity: 1;
    filter: brightness(1);
    transform: scale(1.05);
}

.client-card__logo img {
    max-height: 100%;
    max-width: 85%;
    object-fit: contain;
}

.client-card__name {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
    max-width: 160px;
    min-height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================================================
   CTA SECTION
================================================================ */
.section--teal-cta {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 5rem 0;
}

.cta-inner {
    text-align: center;
}

.cta-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 2rem;
}

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.page-hero {
    padding: calc(var(--nav-height) + 4rem) 0 4rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(94, 196, 207, .12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
}

.page-hero__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: .75rem;
}

.page-hero__sub {
    color: rgba(255, 255, 255, .7);
    font-size: 1.1rem;
    max-width: 560px;
}

.page-hero__meta {
    color: rgba(255, 255, 255, .6);
    font-size: .95rem;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: .75rem;
}

/* ================================================================
   SERVICES LIST (services/index)
================================================================ */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-block {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 2rem;
    align-items: start;
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}

.service-block:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-color: var(--teal);
}

.service-block__num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--teal);
    opacity: .4;
    line-height: 1;
    padding-top: .25rem;
}

.service-block__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .75rem;
}

.service-block__desc {
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-block__image img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius);
}

@media (max-width: 700px) {
    .service-block {
        grid-template-columns: 50px 1fr;
    }

    .service-block__image {
        display: none;
    }
}

/* ================================================================
   PROJECTS GRID
================================================================ */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    border: 1.5px solid var(--grey-mid);
    background: var(--white);
    color: var(--grey-dark);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    box-shadow: var(--shadow);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.project-grid-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--grey-mid);
    transition: all var(--transition);
    display: block;
    text-decoration: none;
}

.project-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--teal);
}

.project-grid-card__image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.project-grid-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26, 27, 60, 0.4) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

.project-grid-card:hover .project-grid-card__image::after {
    opacity: 1;
}

.project-grid-card__body {
    padding: 1.75rem;
}

.project-grid-card__cat {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.5rem;
}

.project-grid-card__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    transition: color var(--transition);
}

.project-grid-card:hover .project-grid-card__title {
    color: var(--teal);
}

.project-grid-card__meta {
    font-size: 0.85rem;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-wrap {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--grey-mid);
}

.pagination-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.pagination-mobile {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.pagination-desktop {
    display: none;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .pagination-mobile {
        display: none;
    }

    .pagination-desktop {
        display: flex;
    }
}

.pagination-info {
    font-size: 0.85rem;
    color: var(--grey);
}

.pagination-links {
    display: inline-flex;
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius);
    overflow: hidden;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    min-width: 40px;
    height: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--white);
    border-right: 1px solid var(--grey-mid);
    transition: all var(--transition);
    text-decoration: none;
}

.pagination-btn:last-child {
    border-right: none;
}

.pagination-btn svg {
    width: 16px;
    height: 16px;
}

/* RTL Support */
[dir="rtl"] .pagination-btn {
    border-right: none;
    border-left: 1px solid var(--grey-mid);
}

[dir="rtl"] .pagination-btn:last-child {
    border-left: none;
}

[dir="rtl"] .pagination-btn svg {
    transform: scaleX(-1);
}

.pagination-btn:hover:not(.disabled) {
    background: var(--grey-light);
    color: var(--teal);
}

.pagination-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.pagination-btn.disabled {
    color: var(--grey-mid);
    cursor: not-allowed;
    background: #fdfdfd;
}

/* Mobile specific aesthetics */
.pagination-mobile .pagination-btn {
    border: 1px solid var(--grey-mid);
    border-radius: 30px;
    flex: 1;
}

/* ================================================================
   PROJECT DETAIL
================================================================ */
.project-detail {
    max-width: 860px;
}

.project-detail__cover {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.project-gallery {
    margin-top: 3rem;
}

.project-gallery__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.gallery-swiper {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* ================================================================
   CONTENT BODY & PROSE
================================================================ */
.content-body {
    max-width: 800px;
}

.content-body__hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.prose {
    font-size: 1.05rem;
    color: var(--grey-dark);
    line-height: 1.9;
}

.prose p {
    margin-bottom: 1rem;
}

.prose strong {
    color: var(--navy);
}

/* ================================================================
   STATS STRIP
================================================================ */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--grey-mid);
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-card__num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy);
}

.stat-card__label {
    display: block;
    font-size: .85rem;
    color: var(--grey);
    margin-top: .25rem;
}

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding-top: .5rem;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info__icon {
    width: 44px;
    height: 44px;
    background: var(--teal);
    color: var(--navy);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info__icon svg {
    width: 20px;
    height: 20px;
}

.contact-info__label {
    display: block;
    font-size: .8rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .2rem;
}

.contact-info__value {
    display: block;
    font-weight: 600;
    color: var(--navy);
    transition: color var(--transition);
}

.contact-info__value:hover {
    color: var(--teal);
}

/* ================================================================
   FORMS
================================================================ */
.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1.25rem;
}

.form-label {
    font-size: .87rem;
    font-weight: 600;
    color: var(--grey-dark);
}

.form-input {
    width: 100%;
    padding: .8rem 1rem;
    border: 1.5px solid var(--grey-mid);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: .95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(94, 196, 207, .2);
}

.form-input.is-error {
    border-color: var(--danger);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-error {
    font-size: .82rem;
    color: var(--danger);
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert--success {
    background: rgba(16, 185, 129, .1);
    border: 1px solid rgba(16, 185, 129, .3);
    color: var(--success);
}

/* ================================================================
   TEAM GRID
================================================================ */
/* ================================================================
   TEAM GRID
================================================================ */
.team-section {
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem 3rem;
    margin-top: 5rem;
    justify-content: center;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
    border: none;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card__image-wrapper {
    width: 160px;
    height: 160px;
    margin-bottom: 2rem;
    position: relative;
}

.team-card__image-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 27, 60, 0.08);
    border: 6px solid var(--white);
    background: var(--grey-light);
    transition: all var(--transition);
}

.team-card:hover .team-card__image-container {
    box-shadow: 0 15px 40px rgba(94, 196, 207, 0.2);
    border-color: var(--teal);
}

.team-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-card__image {
    transform: scale(1.1);
}

.team-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.team-card__name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0;
    letter-spacing: -0.01em;
}

.team-card__position {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.team-card__bio {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.8;
    max-width: 260px;
    margin: 0 auto;
}

/* ================================================================
   FOOTER
================================================================ */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .7);
    padding-top: 4rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer__logo-mark {
    width: 38px;
    height: 38px;
    background: var(--teal);
    color: var(--navy);
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.footer__tagline {
    font-size: .9rem;
    margin-bottom: .5rem;
    line-height: 1.6;
}

.footer__cr {
    font-size: .8rem;
    opacity: .5;
}

.footer__heading {
    color: var(--white);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

/* ================================================================
   AT A GLANCE STATISTICS
================================================================ */
.at-a-glance {
    padding: 6rem 0;
    background: #fdfdfd;
    border-bottom: 1px solid var(--grey-mid);
}

.at-a-glance-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.at-a-glance .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

@media (max-width: 1024px) {
    .at-a-glance .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .at-a-glance .stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.at-a-glance .stat-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    text-align: left;
}

[dir="rtl"] .at-a-glance .stat-card {
    text-align: right;
}

.at-a-glance .stat-number {
    font-size: 4rem;
    font-weight: 300;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.at-a-glance .stat-label {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 400;
    max-width: 250px;
}

.at-a-glance .stat-decorator {
    height: 1px;
    background: #d1d5db;
    width: 100%;
}

.footer__link {
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
    transition: color var(--transition);
}

.footer__link:hover {
    color: var(--teal);
}

.footer__contact {
    gap: 1rem;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.footer__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: .25rem;
    color: var(--teal);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 1.25rem 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .85rem;
}

.footer__langs {
    display: flex;
    gap: .5rem;
}

.footer__lang {
    padding: .25rem .6rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    transition: all var(--transition);
}

.footer__lang.active {
    border-color: var(--teal);
    color: var(--teal);
}

.footer__lang:hover {
    color: var(--white);
    border-color: var(--white);
}

/* ================================================================
   ██████████████ ADMIN PANEL ████████████████████████████████████
================================================================ */
.admin-body {
    font-family: var(--font);
    background: #f3f4f6;
    color: var(--text);
    margin: 0;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
    width: 260px;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    transition: width var(--transition);
}

.admin-sidebar.collapsed {
    width: 64px;
    overflow: visible;
}

.admin-sidebar.collapsed .admin-sidebar__brand span:last-child,
.admin-sidebar.collapsed .admin-nav__item span,
.admin-sidebar.collapsed .admin-nav__group,
.admin-sidebar.collapsed .admin-nav__badge {
    display: none;
}

.admin-sidebar.collapsed .admin-nav__item {
    justify-content: center;
    padding: .75rem;
}

.admin-sidebar.collapsed .admin-nav__item svg {
    margin: 0;
}

.admin-sidebar__brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: var(--white);
    font-weight: 700;
    font-size: .95rem;
    flex-shrink: 0;
}

.admin-sidebar__brand-letter {
    width: 36px;
    height: 36px;
    background: var(--teal);
    color: var(--navy);
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.admin-nav {
    padding: 1rem 0;
    flex: 1;
}

.admin-nav__group {
    padding: .6rem 1.25rem .3rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .3);
}

.admin-nav__item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.25rem;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    font-weight: 500;
    transition: all var(--transition);
    position: relative;
}

.admin-nav__item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.admin-nav__item:hover,
.admin-nav__item.active {
    color: var(--white);
    background: rgba(255, 255, 255, .06);
}

.admin-nav__item.active {
    border-left: 3px solid var(--teal);
    padding-left: calc(1.25rem - 3px);
}

.admin-nav__badge {
    background: var(--teal);
    color: var(--navy);
    font-size: .7rem;
    font-weight: 700;
    padding: .15rem .45rem;
    border-radius: 10px;
    margin-left: auto;
}

/* Content Area */
.admin-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.admin-topbar {
    background: var(--white);
    border-bottom: 1px solid var(--grey-mid);
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    flex-shrink: 0;
}

.admin-topbar__toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--grey);
    padding: .4rem;
    border-radius: var(--radius);
}

.admin-topbar__toggle svg {
    width: 20px;
    height: 20px;
    display: block;
}

.admin-topbar__toggle:hover {
    background: var(--grey-light);
}

.admin-topbar__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    flex: 1;
}

.admin-topbar__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-topbar__site-link {
    font-size: .85rem;
    color: var(--teal);
    font-weight: 600;
}

.admin-topbar__logout {
    background: none;
    border: 1.5px solid var(--grey-mid);
    border-radius: var(--radius);
    padding: .4rem .9rem;
    font-family: var(--font);
    font-size: .85rem;
    cursor: pointer;
    color: var(--grey);
    transition: all var(--transition);
}

.admin-topbar__logout:hover {
    border-color: var(--danger);
    color: var(--danger);
}

.admin-main {
    padding: 2rem;
    flex: 1;
}

/* Admin alerts */
.admin-alert {
    padding: .875rem 1.25rem;
    border-radius: var(--radius);
    margin: .75rem 2rem 0;
    font-weight: 500;
    font-size: .92rem;
}

.admin-alert--success {
    background: rgba(16, 185, 129, .1);
    border-left: 3px solid var(--success);
    color: #065f46;
}

.admin-alert--error {
    background: rgba(239, 68, 68, .08);
    border-left: 3px solid var(--danger);
    color: #991b1b;
}

/* Admin Stats Widgets */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.stat-widget {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-widget:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.stat-widget__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-widget__icon svg {
    width: 24px;
    height: 24px;
}

.stat-widget__icon--blue {
    background: rgba(59, 130, 246, .12);
    color: #3b82f6;
}

.stat-widget__icon--teal {
    background: rgba(94, 196, 207, .12);
    color: var(--teal);
}

.stat-widget__icon--navy {
    background: rgba(26, 27, 60, .08);
    color: var(--navy);
}

.stat-widget__icon--orange {
    background: rgba(245, 158, 11, .12);
    color: var(--orange);
}

.stat-widget__body {
    flex: 1;
}

.stat-widget__num {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.stat-widget__label {
    font-size: .8rem;
    color: var(--grey);
    margin-top: .2rem;
}

.stat-widget__link {
    position: absolute;
    bottom: .75rem;
    right: 1rem;
    font-size: .8rem;
    color: var(--teal);
    font-weight: 600;
}

/* Admin Cards */
.admin-card {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.admin-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--grey-mid);
}

.admin-card__header h3 {
    font-size: .98rem;
    font-weight: 700;
    color: var(--navy);
}

.admin-card__header-link {
    font-size: .85rem;
    color: var(--teal);
    font-weight: 600;
}

/* Admin Table */
.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.admin-table th {
    padding: .875rem 1.25rem;
    background: var(--grey-light);
    color: var(--grey-dark);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    text-align: left;
}

.admin-table td {
    padding: .875rem 1.25rem;
    border-bottom: 1px solid var(--grey-mid);
    vertical-align: middle;
}

[dir="rtl"] .admin-table th,
[dir="rtl"] .admin-table td {
    text-align: right;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: rgba(94, 196, 207, .04);
}

.table-row--unread td {
    font-weight: 600;
}

.table-empty {
    text-align: center;
    color: var(--grey);
    padding: 2rem !important;
}

.table-thumb {
    width: 60px;
    height: 40px;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    background-color: var(--grey-mid);
}

.table-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: .2rem .7rem;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
}

.badge--teal {
    background: rgba(94, 196, 207, .15);
    color: var(--teal-dark);
}

.badge--gray {
    background: var(--grey-light);
    color: var(--grey);
}

.badge--orange {
    background: rgba(245, 158, 11, .12);
    color: #d97706;
}

.badge--success {
    background: rgba(16, 185, 129, .15);
    color: #059669;
}

.badge--danger {
    background: rgba(239, 68, 68, .15);
    color: #dc2626;
}

/* Icon Buttons */
.btn-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid var(--grey-mid);
    background: var(--white);
    color: var(--grey);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-icon svg {
    width: 16px;
    height: 16px;
}

.btn-icon:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--grey-light);
}

.btn-icon--edit:hover {
    background: rgba(59, 130, 246, .1);
    color: #3b82f6;
    border-color: #3b82f6;
}

.btn-icon--delete:hover {
    background: rgba(239, 68, 68, .1);
    color: #ef4444;
    border-color: #ef4444;
}

.admin-table__actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* Admin Form */
.admin-form {
    padding: 1.5rem;
}

.form-section-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--navy);
    margin: 1.5rem 0 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--grey-mid);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.form-group--checkbox {
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    margin-bottom: .75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--grey-mid);
    margin-top: .5rem;
}

/* Gallery thumbs */
.gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.gallery-thumb {
    position: relative;
}

.gallery-thumb img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 2px solid var(--grey-mid);
}

.gallery-thumb__remove {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: var(--danger);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: .85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Detail list */
.detail-list {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: .75rem 1rem;
}

.detail-list dt {
    font-size: .83rem;
    font-weight: 700;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: .06em;
    padding-top: .1rem;
}

.detail-list dd {
    font-size: .95rem;
    color: var(--text);
}

/* Admin Login */
.admin-login-body {
    background: var(--grey-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-login-wrap {
    width: 100%;
    max-width: 420px;
    padding: 1rem;
}

.admin-login-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
}

.admin-login-brand {
    display: flex;
    align-items: center;
    gap: .875rem;
    margin-bottom: 2rem;
}

.admin-login-brand__letter {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--teal);
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.admin-login-brand__name {
    font-weight: 800;
    color: var(--navy);
    font-size: 1rem;
}

.admin-login-brand__sub {
    font-size: .78rem;
    color: var(--grey);
}

.admin-login-form .form-group {
    margin-bottom: 1.25rem;
}

/* ================================================================
   AOS CUSTOM DURATIONS
================================================================ */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ================================================================
   DROPDOWN MENUS
================================================================ */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    top: 100%;
    left: 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.dropdown-content.show {
    display: block !important;
}

.dropdown-content a {
    color: var(--navy);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: var(--grey-light);
    color: var(--teal) !important;
}