/* ===================================
   RIWAQ — Corporate Website
   Minimal Luxury Design
   =================================== */

:root {
    /* Brand palette */
    --green-deep: #2a4a3a;
    --green-dark: #1f3a2c;
    --green-darker: #14281e;
    --green-mid: #3a5a4a;
    --gold: #c9a06b;
    --gold-light: #d9b783;
    --gold-dark: #a8814d;
    --gold-pale: #e8d5b0;
    --offwhite: #f7f3ea;
    --cream: #faf7f0;
    --gray-arch: #8a8580;
    --gray-light: #e8e6e0;
    --black: #1a1a1a;
    --dark: #0f1d16;

    /* Typography */
    --font-ar: 'Cairo', 'Tajawal', sans-serif;
    --font-en: 'Montserrat', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;

    /* Spacing */
    --container-max: 1200px;
    --container-narrow: 800px;
    --section-pad: clamp(60px, 10vw, 120px);
    --gutter: clamp(16px, 4vw, 40px);
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-ar);
    color: var(--black);
    background: var(--offwhite);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== Container ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}
.container.narrow { max-width: var(--container-narrow); }

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(247, 243, 234, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    padding: 12px 0;
    background: rgba(247, 243, 234, 0.95);
    border-bottom-color: rgba(201, 160, 107, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}
.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}
.nav-logo img { height: 44px; width: 44px; object-fit: contain; border-radius: 8px; }
.nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-size: 1.1rem;
    color: var(--green-deep);
}
.nav-brand-en {
    font-family: var(--font-en);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 3px;
    margin-top: 2px;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--black);
    position: relative;
    padding: 6px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-link:hover { color: var(--green-deep); }
.nav-link:hover::after { width: 100%; }
.nav-link.active::after { width: 100%; }
.nav-cta {
    background: var(--green-deep);
    color: var(--offwhite) !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.nav-cta:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 160, 107, 0.3);
}
.nav-cta::after { display: none; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--green-deep);
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-ar);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--green-deep);
    color: var(--offwhite);
}
.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(42, 74, 58, 0.25);
}
.btn-outline {
    background: transparent;
    color: var(--green-deep);
    border: 2px solid var(--green-deep);
}
.btn-outline:hover {
    background: var(--green-deep);
    color: var(--offwhite);
    transform: translateY(-3px);
}

/* ===== Section base ===== */
.section {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}
.section-light { background: var(--offwhite); }
.section-cream { background: var(--cream); }
.section-dark {
    background: linear-gradient(135deg, var(--green-darker) 0%, var(--green-deep) 100%);
    color: var(--offwhite);
}
.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(201, 160, 107, 0.1);
    border-radius: 30px;
}
.section-eyebrow.light {
    background: rgba(201, 160, 107, 0.15);
}
.section-title {
    font-family: var(--font-ar);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--green-deep);
    margin-bottom: 20px;
}
.section-title.light { color: var(--offwhite); }
.section-title .gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
    position: relative;
}
.section-divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--gold);
}
.section-sub {
    margin-top: 18px;
    font-size: 1.05rem;
    color: rgba(247, 243, 234, 0.75);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--green-darker) 0%, var(--green-deep) 50%, var(--green-dark) 100%);
    color: var(--offwhite);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 160, 107, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(201, 160, 107, 0.1) 0%, transparent 40%);
    pointer-events: none;
}
.hero-arches {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    color: var(--gold);
    pointer-events: none;
    line-height: 0;
}
.hero-arches svg { width: 100%; height: auto; }
.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}
.hero-logo-wrap {
    margin-bottom: 30px;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-logo {
    width: clamp(180px, 30vw, 260px);
    height: clamp(180px, 30vw, 260px);
    object-fit: contain;
    margin: 0 auto;
    border-radius: 24px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    transition: transform 0.6s ease;
}
.hero-logo:hover { transform: scale(1.05); }
.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 18px;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero-title-ar {
    font-family: var(--font-ar);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    color: var(--offwhite);
    line-height: 1;
    letter-spacing: -1px;
}
.hero-title-en {
    font-family: var(--font-en);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 12px;
    margin-top: 4px;
}
.hero-tagline {
    font-family: var(--font-ar);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--gold-pale);
    margin-bottom: 30px;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto 24px;
    width: 280px;
    animation: fadeUp 1s ease 0.6s both;
}
.hero-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-divider span:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-divider i {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    display: block;
}
.hero-sub {
    font-size: 1rem;
    color: rgba(247, 243, 234, 0.75);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    animation: fadeUp 1s ease 0.8s both;
}
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 1s both;
}
.hero-cta .btn-outline {
    color: var(--offwhite);
    border-color: var(--gold);
}
.hero-cta .btn-outline:hover {
    background: var(--gold);
    color: var(--green-darker);
    border-color: var(--gold);
}
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(201, 160, 107, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 6px;
    animation: fadeIn 1s ease 1.4s both;
}
.hero-scroll span {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* ===== About ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text p {
    font-size: 1.05rem;
    color: #2a2a2a;
    margin-bottom: 18px;
    line-height: 1.9;
}
.about-text p.lead {
    font-size: 1.2rem;
    color: var(--green-deep);
    font-weight: 500;
    line-height: 1.8;
}
.about-text strong { color: var(--green-deep); font-weight: 700; }
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat-card {
    background: white;
    padding: 32px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at top right, rgba(201, 160, 107, 0.15), transparent);
}
.stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(42, 74, 58, 0.1);
}
.stat-num {
    display: block;
    font-family: var(--font-en);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 6px;
    line-height: 1;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--gray-arch);
    font-weight: 500;
}

/* ===== Logo Story ===== */
.logo-story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.logo-story-visual {
    position: relative;
    text-align: center;
}
.logo-story-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(201, 160, 107, 0.25) 0%, transparent 60%);
    filter: blur(60px);
    z-index: 0;
}
.logo-story-img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    border-radius: 24px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
}
.logo-story-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 18px;
    color: rgba(247, 243, 234, 0.85);
}
.logo-story-text .lead {
    font-size: 1.18rem;
    color: var(--offwhite);
}
.logo-story-text strong { color: var(--gold-light); }
.logo-story-text em { color: var(--gold); font-style: normal; font-weight: 600; }
.light { color: var(--offwhite); }
.symbols-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0 24px;
}
.symbol {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 160, 107, 0.2);
    padding: 20px;
    border-radius: 14px;
    transition: all 0.3s ease;
}
.symbol:hover {
    background: rgba(201, 160, 107, 0.08);
    border-color: var(--gold);
    transform: translateY(-3px);
}
.symbol-icon {
    color: var(--gold);
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
}
.symbol-icon svg { width: 100%; height: 100%; }
.symbol h4 {
    font-size: 1rem;
    color: var(--offwhite);
    margin-bottom: 4px;
    font-weight: 600;
}
.symbol p { font-size: 0.88rem; color: rgba(247, 243, 234, 0.6); margin: 0; }
.logo-quote {
    margin-top: 28px;
    padding: 20px 26px;
    border-right: 3px solid var(--gold);
    background: rgba(201, 160, 107, 0.06);
    border-radius: 0 12px 12px 0;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.5;
}

/* ===== Vision & Mission ===== */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.vm-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.vm-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top right, rgba(201, 160, 107, 0.12), transparent 70%);
}
.vm-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(42, 74, 58, 0.12);
}
.vm-icon {
    width: 64px;
    height: 64px;
    color: var(--gold);
    margin-bottom: 24px;
    padding: 14px;
    background: rgba(201, 160, 107, 0.1);
    border-radius: 16px;
}
.vm-icon svg { width: 100%; height: 100%; }
.vm-label {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: 600;
}
.vm-card h3 {
    font-family: var(--font-en);
    font-size: 1.8rem;
    color: var(--green-deep);
    margin-bottom: 18px;
    font-weight: 700;
}
.vm-card p {
    font-size: 1.02rem;
    color: #2a2a2a;
    line-height: 1.9;
}
.vm-card strong { color: var(--green-deep); }

/* ===== Values ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.value-card {
    background: white;
    padding: 36px 28px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}
.value-card > * { position: relative; z-index: 1; }
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(42, 74, 58, 0.2);
}
.value-card:hover::before { opacity: 1; }
.value-card:hover .value-num { color: rgba(201, 160, 107, 0.5); }
.value-card:hover h3 { color: var(--offwhite); }
.value-card:hover p { color: rgba(247, 243, 234, 0.8); }
.value-num {
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(201, 160, 107, 0.3);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.5s ease;
}
.value-card h3 {
    font-size: 1.35rem;
    color: var(--green-deep);
    margin-bottom: 12px;
    font-weight: 700;
    transition: color 0.5s ease;
}
.value-card p {
    font-size: 0.98rem;
    color: #4a4a4a;
    line-height: 1.7;
    transition: color 0.5s ease;
}

/* ===== Sectors ===== */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.sector-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--gray-light);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.sector-card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}
.sector-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(42, 74, 58, 0.12);
}
.sector-card:hover::after { transform: scaleX(1); }
.sector-card:hover .sector-icon {
    background: var(--green-deep);
    color: var(--gold);
    transform: scale(1.05) rotate(-5deg);
}
.sector-icon {
    width: 70px;
    height: 70px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(201, 160, 107, 0.1), rgba(42, 74, 58, 0.05));
    color: var(--green-deep);
    border-radius: 18px;
    margin-bottom: 22px;
    transition: all 0.5s ease;
}
.sector-icon svg { width: 100%; height: 100%; }
.sector-card h3 {
    font-size: 1.3rem;
    color: var(--green-deep);
    margin-bottom: 12px;
    font-weight: 700;
}
.sector-card p {
    font-size: 0.98rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* ===== Why ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}
.why-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 160, 107, 0.2);
    border-radius: 14px;
    transition: all 0.4s ease;
}
.why-item:hover {
    background: rgba(201, 160, 107, 0.08);
    border-color: var(--gold);
    transform: translateX(-6px);
}
.why-item i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.why-item i::after {
    content: '';
    width: 8px;
    height: 14px;
    border: solid var(--green-darker);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translateY(-2px);
}
.why-item span {
    font-size: 1.02rem;
    color: var(--offwhite);
    font-weight: 500;
}

/* ===== Goals ===== */
.goals-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.goal-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    background: white;
    border-radius: 14px;
    border-right: 4px solid var(--gold);
    transition: all 0.4s ease;
}
.goal-row:hover {
    transform: translateX(-8px);
    box-shadow: 0 15px 30px rgba(42, 74, 58, 0.1);
    border-right-color: var(--green-deep);
}
.goal-num {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    min-width: 50px;
}
.goal-row p {
    font-size: 1.05rem;
    color: var(--black);
    margin: 0;
    font-weight: 500;
}

/* ===== Management Quote ===== */
.quote-card {
    background: white;
    padding: 60px 50px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 30px 80px rgba(42, 74, 58, 0.1);
    border: 1px solid var(--gray-light);
}
.quote-mark {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    color: var(--gold);
    opacity: 0.15;
}
.quote-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #2a2a2a;
    margin-bottom: 18px;
}
.quote-text strong { color: var(--green-deep); }
.quote-sig {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.sig-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
}
.sig-name {
    font-weight: 600;
    color: var(--green-deep);
    font-size: 1.05rem;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: stretch;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 160, 107, 0.2);
    border-radius: 16px;
    transition: all 0.4s ease;
    color: var(--offwhite);
}
.info-card[href]:hover {
    background: rgba(201, 160, 107, 0.1);
    border-color: var(--gold);
    transform: translateX(-4px);
}
.info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    padding: 12px;
    background: rgba(201, 160, 107, 0.15);
    color: var(--gold);
    border-radius: 12px;
}
.info-icon svg { width: 100%; height: 100%; }
.info-text { display: flex; flex-direction: column; gap: 2px; }
.info-label {
    font-size: 0.8rem;
    color: rgba(247, 243, 234, 0.6);
    letter-spacing: 1px;
}
.info-value {
    font-size: 1.05rem;
    color: var(--offwhite);
    font-weight: 500;
}
.social-row {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 160, 107, 0.2);
    border-radius: 50%;
    color: var(--gold-light);
    transition: all 0.3s ease;
}
.social-btn:hover {
    background: var(--gold);
    color: var(--green-darker);
    transform: translateY(-3px);
}
.social-btn svg { width: 18px; height: 18px; }

.contact-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 160, 107, 0.2);
    padding: 40px 36px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}
.form-title {
    font-size: 1.4rem;
    color: var(--offwhite);
    margin-bottom: 24px;
    font-weight: 700;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.9rem;
    color: rgba(247, 243, 234, 0.75);
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 160, 107, 0.2);
    border-radius: 12px;
    color: var(--offwhite);
    font-family: var(--font-ar);
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(247, 243, 234, 0.35);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.07);
}
.form-submit {
    width: 100%;
    margin-top: 8px;
    background: var(--gold);
    color: var(--green-darker);
}
.form-submit:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 160, 107, 0.3);
}
.form-submit svg { width: 18px; height: 18px; transform: rotate(180deg); }
.form-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.95rem;
    display: none;
}
.form-status.show { display: block; }
.form-status.success {
    background: rgba(76, 175, 80, 0.15);
    color: #a8e0ab;
    border: 1px solid rgba(76, 175, 80, 0.4);
}
.form-status.error {
    background: rgba(244, 67, 54, 0.15);
    color: #f5a8a3;
    border: 1px solid rgba(244, 67, 54, 0.4);
}

/* ===== Footer ===== */
.footer {
    background: var(--green-darker);
    color: rgba(247, 243, 234, 0.7);
    padding: 70px 0 30px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { width: 80px; height: 80px; object-fit: contain; border-radius: 12px; }
.footer-tagline {
    color: var(--gold-pale);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer-links,
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4,
.footer-contact h4 {
    color: var(--offwhite);
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 700;
}
.footer-links a {
    color: rgba(247, 243, 234, 0.65);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact a,
.footer-contact p {
    color: rgba(247, 243, 234, 0.65);
    font-size: 0.95rem;
}
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(201, 160, 107, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(247, 243, 234, 0.45);
}
.footer-meta {
    font-family: var(--font-en);
    letter-spacing: 2px;
    font-size: 0.78rem;
}

/* ===== Scroll to top ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: var(--green-deep);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(42, 74, 58, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 99;
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    background: var(--gold);
    color: var(--green-darker);
    transform: translateY(-3px);
}
.scroll-top svg { width: 22px; height: 22px; }

/* ===== Reveal animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .about-grid,
    .logo-story-grid,
    .vision-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-grid,
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--offwhite);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 16px;
        align-items: flex-start;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
    }
    .nav-menu.active { right: 0; }
    .nav-toggle { display: flex; }
    .nav-link { font-size: 1.1rem; }
    .nav-cta { width: 100%; text-align: center; margin-top: 12px; }
}

@media (max-width: 640px) {
    .values-grid,
    .sectors-grid,
    .why-grid,
    .about-stats { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .quote-card { padding: 40px 26px; }
    .vm-card { padding: 36px 26px; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-brand { align-items: center; }
    .footer-tagline { text-align: center; }
    .footer-links,
    .footer-contact { align-items: center; }
    .footer-bottom { justify-content: center; text-align: center; }
    .hero-cta { flex-direction: column; align-items: stretch; max-width: 280px; margin: 0 auto; }
    .scroll-top { bottom: 20px; left: 20px; width: 42px; height: 42px; }
    .quote-mark { width: 40px; height: 40px; top: 20px; right: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ===== Vision Toward KSA ===== */
.section-ksa {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 100%);
    color: var(--offwhite);
    position: relative;
}
.ksa-arches {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    color: var(--gold);
    pointer-events: none;
    line-height: 0;
}
.ksa-arches svg { width: 100%; height: auto; }
.ksa-content {
    text-align: center;
    position: relative;
    z-index: 2;
}
.ksa-content p {
    font-size: 1.15rem;
    line-height: 2;
    color: rgba(247, 243, 234, 0.88);
    margin-bottom: 20px;
}
.ksa-content strong { color: var(--gold-light); }
.vision2030-badge {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
    padding: 20px 36px;
    background: rgba(201, 160, 107, 0.08);
    border: 1px solid rgba(201, 160, 107, 0.3);
    border-radius: 60px;
    backdrop-filter: blur(10px);
}
.badge-num {
    font-family: var(--font-en);
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.badge-text {
    font-size: 1rem;
    color: var(--gold-pale);
    font-weight: 500;
    text-align: right;
}
@media (max-width: 480px) {
    .vision2030-badge { flex-direction: column; gap: 8px; padding: 20px 28px; }
    .badge-text { text-align: center; }
}
