@font-face {
    font-family: 'Lyon Arabic Display';
    src: url('../fonts/lyon/lyon-arabic-display-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lyon Arabic Display';
    src: url('../fonts/lyon/lyon-arabic-display-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lyon Arabic Display';
    src: url('../fonts/lyon/lyon-arabic-display-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lyon Arabic Display';
    src: url('../fonts/lyon/lyon-arabic-display-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lyon Arabic Display';
    src: url('../fonts/lyon/lyon-arabic-display-black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Loew Next Arabic';
    src: url('../fonts/loew/loew-next-arabic-thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Loew Next Arabic';
    src: url('../fonts/loew/loew-next-arabic-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Loew Next Arabic';
    src: url('../fonts/loew/loew-next-arabic-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Loew Next Arabic';
    src: url('../fonts/loew/loew-next-arabic-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Loew Next Arabic';
    src: url('../fonts/loew/loew-next-arabic-black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --olive: #405136;
    --olive-dark: #69864d;
    --olive-light: #69864d;
    --harvest: #f2c300;
    --harvest-dark: #d5aa00;
    --harvest-light: #fff1a6;
    --black: #1f271b;
    --white: #FFFFFF;
    --silver: #F4F4F4;
    --silver-dark: #E8E8E8;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --font-heading: 'Lyon Arabic Display', 'Playfair Display', 'Noto Sans Arabic', Georgia, serif;
    --font-body: 'Loew Next Arabic', 'Inter', 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --nav-shadow-lg: 0 13px 10px -14px rgba(0, 0, 0, 0.15);
    --radius-sm: 6px;
    --radius: 12px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --max-width: 1440px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

html[dir="rtl"] * {
    letter-spacing: 0 !important;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: stretch;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

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

button.mobile-toggle {
    border: 0;
    padding: 0;
    background: transparent;
}

.food-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-size: 180px 180px;
    z-index: 0;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 16px;
    display: block;
}

html[dir='ltr'] .section-label {
    letter-spacing: 3px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--olive);
    margin-bottom: 20px;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--gray);
    max-width: 640px;
    line-height: 1.7;
}

.section-desc.wide {
    max-width: 780px;
}

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

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

#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--olive-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loader-bar {
    width: 160px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    overflow: hidden;
}

.loader-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: var(--harvest);
    border-radius: 100px;
    animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderSlide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(350%);
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.logo-img {
    height: 36px;
    width: auto;
    transition: var(--transition);
}

.logo-light {
    display: block;
}

.logo-primary {
    display: none;
}

header.scrolled .logo-light {
    display: none;
}

header.scrolled .logo-primary {
    display: block;
}

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

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--harvest);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--white);
}

header.scrolled .nav-links a {
    color: var(--gray);
}

header.scrolled .nav-links a:hover {
    color: var(--olive);
}

.lang-toggle {
    position: relative;
}

.lang-toggle-btn {
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-light);
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-family: var(--font-body);
    line-height: normal;
    user-select: none;
}

.lang-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

header.scrolled .lang-toggle-btn {
    line-height: normal;
    color: var(--gray);
    border-color: rgba(0, 0, 0, 0.15);
}

header.scrolled .lang-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.header-cta {
    display:flex;
    align-items:center;
    gap:8px;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--olive);
    background: var(--harvest);
    border-radius: 100px;
    transition: var(--transition);
}

html[dir='ltr'] .header-cta {
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.header-cta:hover {
    opacity: 0.85;
    color: var(--olive);
}

header.scrolled .header-cta {
    color: var(--white);
    background: var(--olive);
}

header.scrolled .header-cta:hover {
    opacity: 0.85;
    background: var(--harvest);
    color: var(--white);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

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

header.scrolled .mobile-toggle span {
    background: var(--olive);
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .food-pattern {
    opacity: 0.15;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 120px 0 60px;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(33, 32, 33, 0.7) 0%, rgba(65, 29, 100, 0.5) 50%, rgba(33, 32, 33, 0.6) 100%);
    z-index: 1;
}

.core-content {
    background: linear-gradient(180deg, var(--white) 0%, #EDEDED 100%);
    text-align: center;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.core-content .food-pattern {
    opacity: 0.02;
}

.core-inner {
    max-width: 720px;
    margin: 0 auto;
}

.core-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--olive);
    margin-bottom: 8px;
}

html[dir='ltr'] .core-title {
    letter-spacing: -0.5px;
}

html[dir="rtl"] .core-title {
    font-feature-settings: "salt";
    line-height: 1.5;    
}

.core-title .accent {
    color: var(--harvest);
}

.core-subtitle {
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.8;
    max-width: 600px;
    margin: 40px;
}

.core-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.core-cta .btn-outline {
    border-color: var(--olive);
    color: var(--olive);
}

.core-cta .btn-outline:hover {
    background: var(--olive);
    color: var(--white);
    border-color: var(--olive);
}

.core-counter-section {
    background: var(--olive);
    padding: 40px 0;
}

.core-counter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.core-counter .counter-item .num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.core-counter .counter-item .num .harvest {
    color: var(--harvest);
    font-variant-numeric: lining-nums;
}

.core-counter .counter-item .label {
    font-size: 0.85rem;
    color: var(--harvest-light);
    font-weight: 400;
    margin-top: 4px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px 6px 6px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--harvest-light);
    text-transform: uppercase;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

html[dir='ltr'] .hero-badge {
    letter-spacing: 1.5px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--harvest);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    margin-bottom: 8px;
}

html[dir='ltr'] .hero-title {
    letter-spacing: -1px;
}

.hero-title .accent {
    color: var(--harvest);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--harvest);
    color: var(--olive);
}

.btn-primary:hover {
    background: var(--harvest-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(50, 200, 203, 0.3);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-outline-olive {
    border: 2px solid var(--olive);
    color: var(--olive);
}

.btn-outline-olive:hover {
    background: var(--olive);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-counter {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-item .num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.counter-item .num .harvest {
    color: var(--harvest);
}

.counter-item .label {
    font-size: 0.8rem;
    color: var(--gray-light);
    font-weight: 400;
    margin-top: 4px;
}

.introduction {
    background: var(--white);
    position: relative;
}

.intro-wrapper {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
}

html[dir="rtl"] .intro-wrapper {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 0 0 45%;
    max-width: 45%;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.intro-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(65, 29, 100, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-content {
    flex: 1;
    min-width: 0;
}

.intro-sub {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--harvest);
    margin-bottom: 16px;
}

html[dir='ltr'] .intro-sub {
    text-transform: uppercase;
    letter-spacing: 3px;
}

.intro-lead {
    /* font-size: 1.15rem; */
    color: var(--gray);
    /* line-height: 1.9; */
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 520px;
}

.intro-connects {
    margin-bottom: 32px;
}

.intro-connect-label {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.intro-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.intro-pill {
    padding: 10px 22px;
    background: var(--silver);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--olive);
    transition: var(--transition);
    
}

html[dir='ltr'] .intro-pill {
    letter-spacing: 0.3px;
}

.intro-pill:hover {
    background: var(--olive);
    color: var(--white);
    transform: translateY(-2px);
}

.intro-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--olive);
    line-height: 1.1;
    margin-bottom: 24px;
}

.intro-body {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 2;
    max-width: 620px;
    margin: 0 auto;
}

.intro-body strong {
    color: var(--olive);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.about-card {
    padding: 36px 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-4px);
}

.about-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--olive);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

.foundations-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--olive);
    margin-top: 56px;
    margin-bottom: 28px;
}

.foundations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.foundation-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.foundation-card::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 28px;
    background: var(--harvest);
    border-radius: 2px;
}

.foundation-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.industries {
    background: var(--white);
    position: relative;
}

.industries-header {
    margin-bottom: 40px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--silver);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.industry-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--harvest);
    opacity: 0;
    transition: var(--transition);
}

.industry-item:hover::before {
    opacity: 1;
}

.industry-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.industry-item:hover .industry-icon {
    color: var(--harvest);
}

.industry-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 8px;
    color: var(--olive);
}

.industry-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--olive);
    line-height: 1.4;
}

.insights {
    background: var(--white);
    position: relative;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.insights-header .section-title {
    margin-bottom: 16px;
}

.insights-intro {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

.insights-topics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.insight-topic {
    padding: 16px 20px;
    background: var(--silver);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--olive);
    transition: var(--transition);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    border-right: 3px solid var(--harvest);
}

.insight-topic:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.service-list {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-top: 20px;
}

.service-icon img,
.industry-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.foundation-card strong {
    display: block;
    color: var(--olive);
    margin-bottom: 6px;
}

.foundation-card strong:empty {
    display: none;
}

.foundation-card span {
    display: block;
}

.insight-topic img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.insight-topic strong {
    display: block;
}

.insight-topic p {
    margin: 7px 0 0;
    color: var(--gray);
    font-size: .82rem;
    line-height: 1.6;
}

.insight-topic p:empty { display: none; }

.who-we-are {
    background: var(--silver);
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.pillar-card {
    padding: 36px 28px;
    background: var(--silver);
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--olive);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card:hover {
    transform: translateY(-6px);
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--olive);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 12px;
}

.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--olive);
    margin-bottom: 8px;
}

.pillar-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.services {
    background: var(--olive);
    position: relative;
    overflow: hidden;
}

.services .food-pattern {
    opacity: 0.03;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: var(--harvest);
    opacity: 0.04;
    border-radius: 50%;
    transform: translate(30%, 30%);
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(50, 200, 203, 0.3);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: translate(30%, 30%) scale(2);
    opacity: 0.06;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(50, 200, 203, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--harvest);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(50, 200, 203, 0.25);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

html[dir="rtl"] .service-card h3 {
    font-feature-settings: "salt";
    margin-bottom: 14px;
}

.service-card .tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--harvest);
    margin-bottom: 12px;
}

html[dir='ltr'] .service-card .tag {
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-light);
}

.methodology {
    background: var(--olive);
}

.methodology .section-label {
    color: var(--harvest);
}

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

.method-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 48px;
    position: relative;
}

.method-step {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: var(--transition);
    overflow: hidden;
}

.method-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(50, 200, 203, 0.3);
    transform: translateY(-4px);
}

.method-step .step-num {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    background: rgba(50, 200, 203, 0.15);
    color: var(--harvest);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    transition: var(--transition);
    font-variant-numeric: lining-nums;
}

.method-step:hover .step-num {
    background: rgba(50, 200, 203, 0.25);
}

.method-step h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.method-step p {
    font-size: 0.85rem;
    color: var(--silver);
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

.method-cta {
    text-align: center;
    margin-top: 48px;
}

.case-studies {
    background: var(--white);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.case-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--olive), var(--harvest));
    z-index: 2;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(65, 29, 100, 0.12);
}

.case-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-card:hover .case-img img {
    transform: scale(1.05);
}

.case-img .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.case-img .overlay .industry {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--harvest);
}

html[dir='ltr'] .case-img .overlay .industry {
    letter-spacing: 1.5px;
}

.case-body {
    padding: 24px;
}

.case-body h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--olive);
    margin-bottom: 8px;
    line-height: 1.4;
}

.case-body p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-metrics {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(65, 29, 100, 0.08);
}

.case-metrics .metric {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--olive);
    display: flex;
    align-items: center;
    gap: 4px;
}

.case-metrics .metric span {
    color: var(--harvest);
    font-weight: 700;
}

.tech {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.tech .food-pattern {
    opacity: 0.03;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tech-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tech-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.tech-visual-glow {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: var(--harvest);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.tech-features {
    display: grid;
    gap: 24px;
    margin-top: 32px;
}

.tech-feature {
    display: flex;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--harvest);
}

.tech-feature .icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--harvest);
}

.tech-feature .text h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.tech-feature .text p {
    font-size: 0.82rem;
    color: var(--gray-light);
}

.team {
    background: var(--silver);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    border-radius: 50%;
    padding: 4px;
    background: conic-gradient(var(--harvest), var(--olive), var(--harvest));
    position: relative;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--olive);
}

.team-card .role {
    font-size: 0.8rem;
    color: var(--harvest);
    font-weight: 500;
}

.team-card .bio {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 8px;
    line-height: 1.5;
}

.cta-section {
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.cta-section .food-pattern {
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
}

html[dir='rtl'] .cta-content h2 {
    font-feature-settings: "salt" 1;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 40px;
}

.contact-form {
    text-align: right;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
}

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--harvest);
    text-transform: uppercase;
}

html[dir='ltr'] .contact-form label {
    letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    outline: none;
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--harvest);
    background: rgba(255, 255, 255, 0.12);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
label:has(.contact-message-counter) {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-message-counter {
    align-self: flex-end;
    color: var(--gray);
    direction: ltr;
    font-size: 0.8rem;
}

.website-field {
    position: absolute !important;
    inset-inline-start: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-status {
    min-height: 24px;
    margin-bottom: 8px;
    font-size: .9rem;
    font-weight: 600;
}

.form-status.success { color: #8ef0d8; }
.form-status.error { color: #ffb6bd; }
.contact-form button[disabled] { opacity: .65; cursor: wait; }

.hero-video > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LTR override */
html[dir="ltr"] .contact-form,
html[dir="ltr"] .contact-form .form-group {
    text-align: left;
}

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

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

footer {
    background: var(--black);
    padding: 80px 0 32px;
    color: var(--gray-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    justify-content: flex-start;
    margin-bottom: 16px;
    width: fit-content;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--harvest);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.footer-contact .icon {
    color: var(--harvest);
    flex-shrink: 0;
}

html[dir="rtl"] .footer-contact .mobile {
    direction: rtl;
    unicode-bidi: plaintext;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.8rem;
}

a.footer-developed {
    font-size: 0.625rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--harvest);
    color: var(--harvest);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

html[dir="rtl"] .hero-title {
    line-height: 1.5;
    margin-bottom: 32px;
}

html[dir="rtl"] .section-title {
    font-feature-settings: "salt";
}

html[dir="rtl"] .tech-feature {
    border-left: none;
    border-right: 3px solid var(--harvest);
}

html[dir="rtl"] .tech-feature {
    border-right: none;
    border-left: 3px solid var(--harvest);
}

html[dir="ltr"] .industry-item::before {
    right: auto;
    left: 0;
}

html[dir="ltr"] .insight-topic {
    border-right: none;
    border-left: 3px solid var(--harvest);
}

html[dir="rtl"] .foundation-card {
    padding-right: 28px;
}

html[dir="rtl"] .foundation-card::before {
    right: 0;
    left: auto;
}

html[dir="ltr"] .foundation-card {
    padding-left: 28px;
}

html[dir="ltr"] .foundation-card::before {
    left: 0;
    right: auto;
}

html[dir="rtl"] .hero-badge {
    padding: 6px 6px 6px 16px;
}

::selection {
    background: var(--harvest);
    color: var(--olive);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--silver);
}

::-webkit-scrollbar-thumb {
    background: var(--olive);
    border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--olive-light);
}

/* ===== RESPONSIVE ===== */

@media (max-width:1024px) {
    .mobile-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tech-visual {
        order: -1;
    }
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .method-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content {
        padding: 100px 0 40px;
    }
    .hero-counter {
        gap: 32px;
        flex-wrap: wrap;
    }
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .nav-links.open {
        display: flex;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--nav-shadow-lg);
        gap: 16px;
        align-items: stretch;
    }
    .nav-links.open a {
        color: var(--olive);
        padding: 8px 0;
    }
    .nav-links.open a::after {
        display: none;
    }
}

@media (max-width:768px) {
    .industries,
    .methodology,
    .services,
    .who-we-are,
    .intro-content,
    footer {
        text-align: center;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .foundations-grid {
        grid-template-columns: 1fr;
    }
    html[dir="rtl"] .foundation-card::before {
        right: auto !important;
        left: 50% !important;
    }
    .foundation-card::before {
        bottom: 0;
        left: 50% !important;
        transform: translateX(-50%);
        height: 4px;
        width: 48px;
        top: auto;
        right: auto !important;
    }
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .industry-item {
        flex-direction: column;
    }
    .service-icon {
        margin-inline: auto;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .insights {
        text-align: center;
    }
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .insights-topics {
        grid-template-columns: 1fr;
    }
    .insight-topic {
        border-right: none !important;
        border-left: none !important;
        border-bottom: 3px solid var(--harvest);
    }
    .intro-wrapper {
        flex-direction: column !important;
        gap: 32px;
    }
    .intro-image {
        flex: none;
        max-width: 100%;
        width: 100%;
        aspect-ratio: 16 / 10;
    }
    .intro-image img {
        height: 100%;
        object-fit: cover;
    }
    .intro-pill-grid {
        justify-content: center;
    }
    .core-content {
        padding: 60px 0;
    }
    .core-counter {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .core-counter-section {
        padding: 28px 0;
    }
}

@media (max-width:640px) {
    .header-cta {
        padding: 8px 12px;
    }
    .header-cta-text {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand .logo {
        justify-content: center;
        width: auto;
    }
    .footer-brand p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-contact li {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-contact .mobile {
        display: inline;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .cases-grid {
        grid-template-columns: 1fr;
    }
    .method-flow {
        grid-template-columns: 1fr;
    }
    .pillar-grid {
        grid-template-columns: 1fr;
    }
    .who-grid {
        grid-template-columns: 1fr;
    }
}

/* Rakaez food company redesign */
:root {
    --olive: #405136;
    --olive-dark: #69864d;
    --olive-light: #69864d;
    --harvest: #f2c300;
    --harvest-dark: #d5aa00;
    --harvest-light: #fff1a6;
    --black: #1f271b;
    --silver: #f7f5ec;
    --silver-dark: #ebe7d7;
    --gray: #68705f;
    --gray-light: #9ba38f;
    --font-heading: 'Loew Next Arabic', 'Noto Sans Arabic', 'Segoe UI', sans-serif;
    --font-body: 'Loew Next Arabic', 'Inter', 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 8px;
    --radius-md: 8px;
    --radius-lg: 18px;
}

body {
    background: #fffdf7;
}

.logo-img {
    height: 54px;
    max-width: 150px;
    object-fit: contain;
}

header {
    background: rgba(255, 253, 247, .94);
    border-bottom: 1px solid rgba(64, 81, 54, .08);
}

header.scrolled {
    background: rgba(255, 253, 247, .98);
}

.logo-light,
header.scrolled .logo-light {
    display: none;
}

.logo-primary,
header.scrolled .logo-primary {
    display: block;
}

.nav-links a,
header.scrolled .nav-links a,
.lang-toggle-btn,
header.scrolled .lang-toggle-btn {
    color: var(--olive-dark);
}

.lang-toggle-btn,
header.scrolled .lang-toggle-btn {
    border-color: rgba(64, 81, 54, .18);
    background: #fff;
}

.mobile-toggle span,
header.scrolled .mobile-toggle span {
    background: var(--olive-dark);
}

.section-kicker {
    max-width: 760px;
    margin-bottom: 44px;
}

.section-kicker.center {
    margin-inline: auto;
    text-align: center;
}

.rakaez-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 72px;
    background:
        radial-gradient(circle at 22% 20%, rgba(242, 195, 0, .22), transparent 28%),
        linear-gradient(135deg, #fffdf7 0%, #f1f5e8 50%, #e8efe0 100%);
}

.rakaez-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 140px;
    background: linear-gradient(180deg, transparent, rgba(255, 253, 247, .92));
    pointer-events: none;
}

.rakaez-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: 42px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.rakaez-hero-copy {
    max-width: 650px;
}

.hero-badge {
    background: rgba(64, 81, 54, .08);
    color: var(--olive);
    border: 1px solid rgba(64, 81, 54, .14);
    border-radius: 100px;
    padding: 8px 18px;
    display: inline-flex;
    margin-bottom: 22px;
}

.hero-title {
    color: var(--olive-dark);
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    line-height: 1.04;
    margin-bottom: 24px;
    letter-spacing: 0;
}

.hero-subtitle {
    color: #526047;
    font-size: clamp(1rem, 1.35vw, 1.22rem);
    max-width: 620px;
}

.rakaez-hero-products {
    min-height: 560px;
    position: relative;
}

.rakaez-product-float {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(64, 81, 54, .1);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(31, 39, 27, .13);
    overflow: hidden;
}

.rakaez-product-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-float-1 {
    inset: 34px 0 auto 12%;
    width: 76%;
    height: 310px;
    z-index: 3;
}

.product-float-2 {
    right: 4%;
    bottom: 42px;
    width: 48%;
    height: 210px;
    z-index: 4;
}

.product-float-3 {
    left: 0;
    bottom: 18px;
    width: 42%;
    height: 190px;
    z-index: 2;
}

.btn-primary {
    background: var(--olive);
    color: #fff;
}

.btn-primary:hover {
    background: var(--olive-dark);
    box-shadow: 0 10px 28px rgba(64, 81, 54, .22);
}

.btn-outline {
    border-color: rgba(64, 81, 54, .24);
    color: var(--olive-dark);
    background: rgba(255, 255, 255, .55);
}

.btn-outline:hover {
    background: #fff;
    border-color: var(--olive);
}

.rakaez-intro {
    background: #fffdf7;
}

.rakaez-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
    gap: 52px;
    align-items: start;
}

.rakaez-intro-panel {
    background: #fff;
    border: 1px solid rgba(64, 81, 54, .1);
    border-radius: 8px;
    padding: 34px;
    box-shadow: var(--shadow-sm);
}

.intro-sub,
.section-label {
    color: var(--olive);
}

.intro-heading,
.section-title {
    color: var(--olive-dark);
}

.intro-pill {
    background: #eef4e5;
    color: var(--olive);
    border-radius: 8px;
}

.intro-pill:hover {
    background: var(--olive);
    color: #fff;
}

.core-content {
    background: #eef4e5;
}

.core-counter-section {
    background: var(--olive-dark);
}

.core-counter {
    justify-content: space-between;
}

.services.rakaez-advantages {
    background: var(--olive-dark);
}

.rakaez-advantage-grid {
    grid-template-columns: repeat(4, 1fr);
}

.service-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    border-radius: 8px;
    box-shadow: none;
}

.service-card h3,
.service-card p,
.service-list {
    color: #fff;
}

.service-icon {
    background: rgba(242, 195, 0, .16);
    color: var(--harvest);
}

.industries {
    background: #fffdf7;
}

.industry-item {
    background: #fff;
    border: 1px solid rgba(64, 81, 54, .1);
}

.industry-icon {
    color: var(--olive);
    background: #eef4e5;
}

.methodology {
    background: #f7f5ec;
    text-align: center;
}

.methodology .section-label {
    color: var(--olive);
}

.methodology .section-title {
    color: var(--olive-dark);
    max-width: 900px;
    margin-inline: auto;
}

.method-flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1120px;
    margin: 46px auto 0;
}

.method-step {
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(64, 81, 54, .1);
    box-shadow: 0 14px 34px rgba(31, 39, 27, .06);
    min-height: 238px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.method-step .step-num,
.step-num {
    color: var(--olive);
    background: #eef4e5;
}

.method-step h3 {
    color: var(--olive-dark);
}

.method-step p {
    color: var(--gray);
    max-width: 230px;
}

.rakaez-products {
    background: #fffdf7;
}

.rakaez-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.rakaez-product-card {
    background: #fff;
    border: 1px solid rgba(64, 81, 54, .1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.rakaez-product-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: linear-gradient(135deg, #fbfaf4, #eef4e5);
    padding: 12px;
}

.rakaez-product-card-body {
    padding: 22px;
}

.rakaez-product-card strong {
    color: var(--olive-dark);
    display: block;
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.rakaez-product-card p {
    color: var(--gray);
    line-height: 1.75;
}

.cta-section {
    background:
        linear-gradient(135deg, rgba(38, 52, 31, .94), rgba(64, 81, 54, .92)),
        url('../images/rakaez/sidic-ahmed-tuna-natural.webp') center/cover;
}

.footer-social a {
    background: rgba(242, 195, 0, .14);
}

@media (max-width: 1024px) {
    .rakaez-hero-grid,
    .rakaez-intro-grid {
        grid-template-columns: 1fr;
    }

    .rakaez-hero-products {
        min-height: 430px;
    }

    .rakaez-advantage-grid,
    .rakaez-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .logo-img {
        height: 44px;
        max-width: 122px;
    }

    .rakaez-hero {
        min-height: auto;
        padding-top: 112px;
    }

    .rakaez-hero-products {
        min-height: 330px;
    }

    .product-float-1 {
        width: 92%;
        height: 190px;
        left: 4%;
        right: auto;
    }

    .product-float-2,
    .product-float-3 {
        width: 48%;
        height: 130px;
    }

    .rakaez-advantage-grid,
    .rakaez-product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .method-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rakaez-advantage-grid,
    .rakaez-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    section {
        padding-block: 72px;
    }

    .section-title,
    .hero-title,
    .intro-heading {
        overflow-wrap: anywhere;
    }

    .method-flow {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 28px;
    }

    .method-step {
        min-height: auto;
        padding: 22px 18px;
        align-items: center;
    }

    .method-step h3 {
        font-size: 1.25rem;
        line-height: 1.35;
    }

    .method-step p {
        max-width: none;
        font-size: .98rem;
        line-height: 1.75;
    }

    .rakaez-advantage-grid,
    .rakaez-product-grid,
    .core-counter {
        grid-template-columns: 1fr;
    }

    .rakaez-product-card-body,
    .service-card {
        padding: 20px;
    }
}

