/* style.css */
:root {
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --gold-dim: #8a6f32;
    --black: #050403;
    --dark: #0c0a08;
    --dark2: #141210;
    --cream: #f0ebe0;
    --text: #d4c9b0;
    --text-dim: #7a7060;
    --nav-h: 64px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--text);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

[lang="ar"] body,
body.ar {
    font-family: 'Noto Kufi Arabic', 'Josefin Sans', sans-serif;
    direction: rtl;
}

h1,
h2,
h3,
.serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.03em;
}

body.ar h1,
body.ar h2,
body.ar h3 {
    font-family: 'Noto Kufi Arabic', serif;
}

.gold {
    color: var(--gold);
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1000;
    transition: all 0.5s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(5, 4, 3, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    height: 54px;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    letter-spacing: 6px;
    color: var(--cream);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 300;
}

.logo-text span {
    color: var(--gold);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 40px;
    width: auto;
    transition: height 0.5s ease;
}

nav.scrolled .nav-logo {
    height: 32px;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 8px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-links {
    display: none;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

@media (min-width: 900px) {
    .nav-links {
        display: flex;
    }

    .menu-btn {
        display: none !important;
    }
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    padding: 5px 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.lang-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.menu-btn {
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 8px;
}

/* Mobile drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(12, 10, 8, 0.98);
    backdrop-filter: blur(30px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid rgba(201, 168, 76, 0.1);
}

body.ar .mobile-nav {
    right: auto;
    left: -100%;
    border-left: none;
    border-right: 1px solid rgba(201, 168, 76, 0.1);
    transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.open {
    right: 0;
}

body.ar .mobile-nav.open {
    left: 0;
    right: auto;
}

.mobile-nav a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: color 0.3s;
}

body.ar .mobile-nav a {
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.mobile-nav a:hover {
    color: var(--gold);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1rem;
    cursor: pointer;
}

body.ar .close-btn {
    right: auto;
    left: 20px;
}

/* ── HERO ── */
.hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(60px, 10vh, 100px);
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    filter: brightness(0.28);
}

.hero-slide.active {
    opacity: 1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(5, 4, 3, 1) 0%, rgba(5, 4, 3, 0.3) 40%, transparent 70%),
        linear-gradient(to bottom, rgba(5, 4, 3, 0.5) 0%, transparent 30%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 6%;
    max-width: 100%;
    animation: heroFadeUp 1.4s ease-out both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: heroFadeUp 1s ease-out 0.3s both;
}

body.ar .hero-eyebrow {
    letter-spacing: 2px;
    font-size: 0.75rem;
}

.hero h1 {
    font-size: clamp(2.8rem, 9vw, 6rem);
    line-height: 1;
    letter-spacing: 2px;
    color: var(--cream);
    margin-bottom: 24px;
    opacity: 0;
    animation: heroFadeUp 1s ease-out 0.5s both;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin-bottom: 24px;
    opacity: 0;
    animation: heroFadeUp 1s ease-out 0.7s both;
}

body.ar .hero-divider {
    background: linear-gradient(to left, var(--gold), transparent);
}

.hero-desc {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    letter-spacing: 2px;
    line-height: 2;
    color: var(--text-dim);
    max-width: 480px;
    margin-bottom: 40px;
    opacity: 0;
    animation: heroFadeUp 1s ease-out 0.9s both;
}

body.ar .hero-desc {
    letter-spacing: 0.5px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeUp 1s ease-out 1.1s both;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 14px 28px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.4s;
    font-weight: 400;
}

body.ar .btn-gold {
    letter-spacing: 1px;
    font-size: 0.75rem;
}

.btn-gold:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 14px 28px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.4s;
    font-weight: 400;
}

body.ar .btn-outline {
    letter-spacing: 1px;
    font-size: 0.75rem;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    animation: heroFadeUp 1s ease-out 1.5s both;
}

.hero-scroll span {
    font-size: 0.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    right: 6%;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 24px;
    height: 1px;
    background: var(--text-dim);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background: var(--gold);
    width: 40px;
}

/* ── SECTIONS COMMON ── */
section {
    padding: clamp(60px, 10vw, 120px) 6%;
}

.section-label {
    font-size: 0.55rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

body.ar .section-label {
    letter-spacing: 2px;
    font-size: 0.65rem;
}

.section-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--cream);
    margin-bottom: 16px;
    line-height: 1.1;
}

.gold-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 32px;
}

/* Fade up observer */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: 0.1s;
}

.reveal-d2 {
    transition-delay: 0.2s;
}

.reveal-d3 {
    transition-delay: 0.3s;
}

.reveal-d4 {
    transition-delay: 0.4s;
}

.reveal-d5 {
    transition-delay: 0.5s;
}

/* ── MARQUEE ── */
.marquee-section {
    padding: 0;
    overflow: hidden;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    background: var(--dark2);
}

.marquee-track {
    display: flex;
    gap: 60px;
    padding: 20px 0;
    animation: marquee 25s linear infinite;
    width: max-content;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    font-size: 0.6rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-dim);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 20px;
}

.marquee-item::after {
    content: '◆';
    color: var(--gold);
    font-size: 0.4rem;
}

/* ── STATS ── */
.stats-strip {
    background: var(--dark2);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    padding: 40px 6%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

@media (min-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-box {
    text-align: center;
    padding: 28px 16px;
    border-right: 1px solid rgba(201, 168, 76, 0.08);
}

.stat-box:nth-child(2n) {
    border-right: none;
}

@media (min-width: 600px) {
    .stat-box:nth-child(2n) {
        border-right: 1px solid rgba(201, 168, 76, 0.08);
    }

    .stat-box:last-child {
        border-right: none;
    }
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 7vw, 3rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
}

body.ar .stat-label {
    letter-spacing: 1px;
}

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 800px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.about-image-stack {
    position: relative;
    height: 380px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85);
}

.about-img-accent {
    position: absolute;
    bottom: -24px;
    right: 0;
    width: 50%;
    height: 55%;
    object-fit: cover;
    filter: brightness(0.8);
    border: 3px solid var(--dark2);
}

.about-gold-accent {
    position: absolute;
    top: -16px;
    right: 24px;
    width: 1px;
    height: 80px;
    background: var(--gold);
}

.about-text p {
    font-size: 0.85rem;
    line-height: 2;
    color: var(--text-dim);
    margin-bottom: 20px;
}

body.ar .about-text p {
    font-size: 0.95rem;
    line-height: 1.9;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlight-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    color: var(--gold);
    font-size: 0.65rem;
}

.highlight-text {
    font-size: 0.65rem;
    letter-spacing: 1px;
    line-height: 1.6;
    color: var(--text-dim);
}

body.ar .highlight-text {
    font-size: 0.75rem;
    letter-spacing: 0;
}

/* ── SERVICES ── */
.services-section {
    background: var(--dark2);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    margin-top: 48px;
}

@media (min-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--black);
    padding: 36px 28px;
    border: 1px solid rgba(201, 168, 76, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
}

.service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: rgba(201, 168, 76, 0.1);
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 300;
}

.service-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.service-card:hover .service-icon i {
    color: var(--black);
}

.service-icon i {
    color: var(--gold);
    font-size: 0.9rem;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 12px;
    font-weight: 400;
}

body.ar .service-card h3 {
    font-family: 'Noto Kufi Arabic', serif;
    font-size: 1.1rem;
}

.service-card p {
    font-size: 0.75rem;
    line-height: 1.9;
    color: var(--text-dim);
}

body.ar .service-card p {
    font-size: 0.85rem;
}

/* ── PROCESS ── */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.3), transparent);
}

body.ar .process-steps::before {
    left: auto;
    right: 20px;
}

@media (min-width: 700px) {
    .process-steps {
        flex-direction: row;
        gap: 0;
    }

    .process-steps::before {
        left: 0;
        right: 0;
        top: 20px;
        bottom: auto;
        width: auto;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.3), transparent);
    }
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0 32px 56px;
    position: relative;
}

body.ar .process-step {
    padding: 0 56px 32px 0;
}

@media (min-width: 700px) {
    .process-step {
        padding: 48px 24px 0 24px;
    }

    body.ar .process-step {
        padding: 48px 24px 0 24px;
    }
}

.process-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    background: var(--dark2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gold);
}

body.ar .process-num {
    left: auto;
    right: 0;
}

@media (min-width: 700px) {
    .process-num {
        position: relative;
        margin-bottom: 20px;
    }

    body.ar .process-num {
        position: relative;
    }
}

.process-step h4 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 8px;
}

body.ar .process-step h4 {
    letter-spacing: 0;
    font-size: 0.85rem;
}

.process-step p {
    font-size: 0.7rem;
    line-height: 1.8;
    color: var(--text-dim);
}

body.ar .process-step p {
    font-size: 0.8rem;
}

/* ── PORTFOLIO ── */
.portfolio-section {
    background: var(--dark2);
}

.filter-bar {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.filter-btn {
    background: none;
    border: 1px solid rgba(201, 168, 76, 0.15);
    color: var(--text-dim);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s;
}

body.ar .filter-btn {
    letter-spacing: 1px;
    font-size: 0.65rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.portfolio-grid {
    columns: 1;
    gap: 3px;
}

@media (min-width: 500px) {
    .portfolio-grid {
        columns: 2;
    }
}

@media (min-width: 900px) {
    .portfolio-grid {
        columns: 3;
    }
}

.portfolio-item {
    break-inside: avoid;
    margin-bottom: 3px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.portfolio-item img {
    width: 100%;
    display: block;
    filter: brightness(0.7) grayscale(20%);
    transition: all 0.6s ease;
    aspect-ratio: auto;
}

.portfolio-item:hover img {
    filter: brightness(0.85) grayscale(0%);
    transform: scale(1.03);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 4, 3, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 16px;
    opacity: 0;
    transition: opacity 0.4s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 4px;
}

.portfolio-overlay p {
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ── PRODUCT CATEGORIES ── */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 40px;
}

@media (min-width: 700px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
}

@media (min-width: 700px) {
    .category-card {
        aspect-ratio: 2/3;
    }
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
    transition: all 0.6s;
}

.category-card:hover img {
    filter: brightness(0.6);
    transform: scale(1.05);
}

.category-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 16px;
}

.category-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 4px;
}

body.ar .category-content h3 {
    font-family: 'Noto Kufi Arabic';
    font-size: 1rem;
}

.category-content p {
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

body.ar .category-content p {
    letter-spacing: 0;
    font-size: 0.65rem;
}

.category-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.6rem;
    opacity: 0;
    transition: opacity 0.3s;
}

body.ar .category-arrow {
    right: auto;
    left: 16px;
}

.category-card:hover .category-arrow {
    opacity: 1;
}

/* ── PROJECTS COUNTRIES ── */
.countries-section {
    background: var(--dark);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 40px;
}

@media (min-width: 600px) {
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .countries-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.country-card {
    background: rgba(201, 168, 76, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.06);
    padding: 28px 16px;
    text-align: center;
    transition: all 0.3s;
}

.country-card:hover {
    background: rgba(201, 168, 76, 0.06);
    border-color: rgba(201, 168, 76, 0.2);
}

.country-flag {
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: block;
}

.country-name {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
}

body.ar .country-name {
    letter-spacing: 0;
    font-size: 0.7rem;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    background: var(--dark2);
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 min(340px, 85vw);
    background: rgba(201, 168, 76, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.1);
    padding: 32px 28px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: rgba(201, 168, 76, 0.15);
    position: absolute;
    top: 8px;
    left: 20px;
    line-height: 1;
}

body.ar .testimonial-card::before {
    left: auto;
    right: 20px;
    content: '"';
}

.testimonial-text {
    font-size: 0.8rem;
    line-height: 1.9;
    color: var(--text-dim);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

body.ar .testimonial-text {
    font-size: 0.9rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: var(--gold);
    flex-shrink: 0;
}

.author-info h5 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream);
    font-weight: 300;
}

body.ar .author-info h5 {
    font-family: 'Noto Kufi Arabic';
    letter-spacing: 0;
    font-size: 0.75rem;
}

.author-info p {
    font-size: 0.55rem;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
}

body.ar .author-info p {
    letter-spacing: 0;
    font-size: 0.65rem;
}

.testimonials-nav {
    display: flex;
    gap: 8px;
    margin-top: 32px;
}

.testi-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    background: none;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* ── WHY US ── */
.whyus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    margin-top: 48px;
}

@media (min-width: 600px) {
    .whyus-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .whyus-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.whyus-card {
    background: var(--dark2);
    padding: 32px 24px;
    border: 1px solid rgba(201, 168, 76, 0.06);
    text-align: center;
    transition: all 0.4s;
}

.whyus-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    background: rgba(201, 168, 76, 0.03);
}

.whyus-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s;
}

.whyus-card:hover .whyus-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.whyus-card:hover .whyus-icon i {
    color: var(--black);
}

.whyus-icon i {
    color: var(--gold);
    font-size: 1rem;
}

.whyus-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 10px;
}

body.ar .whyus-card h4 {
    font-family: 'Noto Kufi Arabic';
    font-size: 1rem;
}

.whyus-card p {
    font-size: 0.7rem;
    line-height: 1.8;
    color: var(--text-dim);
}

body.ar .whyus-card p {
    font-size: 0.8rem;
}

/* ── CONTACT ── */
.contact-section {
    background: var(--dark2);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 800px) {
    .contact-inner {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.contact-row-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-row-icon i {
    color: var(--gold);
    font-size: 0.75rem;
}

.contact-row-text span {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

body.ar .contact-row-text span {
    letter-spacing: 1px;
}

.contact-row-text p {
    font-size: 0.8rem;
    color: var(--text);
    line-height: 1.6;
}

body.ar .contact-row-text p {
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
}

body.ar .form-field label {
    letter-spacing: 1px;
    font-size: 0.65rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.15);
    color: var(--cream);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
    -webkit-appearance: none;
}

body.ar .form-field input,
body.ar .form-field select,
body.ar .form-field textarea {
    font-family: 'Noto Kufi Arabic', sans-serif;
    font-size: 0.9rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--gold);
}

.form-field select option {
    background: var(--dark2);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 48px 6% 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 700px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand p {
    font-size: 0.72rem;
    line-height: 1.9;
    color: var(--text-dim);
    margin: 16px 0 24px;
    max-width: 320px;
}

body.ar .footer-brand p {
    font-size: 0.82rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h5 {
    font-size: 0.55rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

body.ar .footer-col h5 {
    letter-spacing: 1px;
    font-size: 0.65rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 1px;
}

body.ar .footer-col ul li a {
    font-size: 0.8rem;
    letter-spacing: 0;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(201, 168, 76, 0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

@media (min-width: 600px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-bottom p {
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: var(--text-dim);
}

body.ar .footer-bottom p {
    font-size: 0.7rem;
    letter-spacing: 0;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

body.ar .wa-float {
    right: auto;
    left: 20px;
    align-items: flex-start;
}

.wa-btn {
    width: 52px;
    height: 52px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
}

.wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
}

.wa-label {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--gold);
    font-size: 0.55rem;
    letter-spacing: 2px;
    padding: 6px 12px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    pointer-events: none;
}

body.ar .wa-label {
    transform: translateX(-10px);
}

.wa-float:hover .wa-label {
    opacity: 1;
    transform: translateX(0);
}

/* ── BACK TO TOP ── */
.back-top {
    position: fixed;
    bottom: 84px;
    right: 20px;
    z-index: 999;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    background: rgba(12, 10, 8, 0.9);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s;
    font-size: 0.7rem;
}

body.ar .back-top {
    right: auto;
    left: 20px;
}

.back-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-top:hover {
    background: var(--gold);
    color: var(--black);
}

/* ── SECTION DIVIDER ── */
.divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
    margin: 0 6%;
}

/* ── UTILITY ── */
.text-center {
    text-align: center;
}

.text-center .gold-line {
    margin-left: auto;
    margin-right: auto;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    padding-bottom: 4px;
    transition: all 0.3s;
    margin-top: 32px;
}

body.ar .view-all {
    letter-spacing: 1px;
}

.view-all:hover {
    color: var(--cream);
    border-color: var(--cream);
}

/* ── LIGHTBOX ── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 4, 3, 0.96);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--black);
}

/* ── BANNER (gold strip) ── */
.golden-strip {
    background: linear-gradient(135deg, #1a1308 0%, #2a1f0a 50%, #1a1308 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 48px 6%;
    text-align: center;
}

.golden-strip h2 {
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    color: var(--cream);
    margin-bottom: 16px;
}

.golden-strip p {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 32px;
}

body.ar .golden-strip p {
    letter-spacing: 0;
    font-size: 0.9rem;
}

/* ── HIDDEN ── */
.hidden {
    display: none !important;
}

/* ── Counter animation ── */
@keyframes countUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}