:root {
  --green-950: #0c2b22;
  --green-900: #12372b;
  --green-800: #173f32;
  --green-700: #215642;
  --green-500: #4c7b5f;
  --olive: #87934d;
  --gold: #c4a35a;
  --cream: #f8f5ec;
  --sand: #e9e0c9;
  --white: #ffffff;
  --ink: #1b2722;
  --muted: #647069;
  --line: #dfe5df;
  --shadow: 0 20px 60px rgba(12, 43, 34, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Cairo", Arial, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html[lang="en"] body { font-family: "Montserrat", Arial, sans-serif; line-height: 1.65; }
html[lang="ar"] .lang-en, html[lang="en"] .lang-ar { display: none !important; }
.lang-ar, .lang-en { unicode-bidi: isolate; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 100px 0; }
.section-soft { background: var(--cream); }
.skip-link { position: fixed; inset-inline-start: 16px; top: -100px; z-index: 9999; background: var(--white); padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(18,55,43,.08); backdrop-filter: blur(12px); }
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 24px; }
.brand { flex: 0 0 auto; }
.brand img { width: 150px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 22px; margin-inline: auto; }
.main-nav a { position: relative; font-size: .92rem; font-weight: 700; color: var(--green-900); white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; inset-inline: 0; bottom: -8px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch { border: 1px solid var(--line); background: var(--white); color: var(--green-900); border-radius: 999px; min-width: 46px; height: 42px; font-weight: 800; }
.nav-toggle { display: none; width: 46px; height: 42px; padding: 9px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--green-900); }

.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 11px 24px; border-radius: 999px; border: 1px solid transparent; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 8px 18px; font-size: .88rem; }
.button-primary { color: var(--white); background: var(--green-800); box-shadow: 0 12px 30px rgba(23,63,50,.22); }
.button-primary:hover { background: var(--green-900); }
.button-outline { color: var(--green-900); border-color: var(--green-800); }
.button-outline:hover { color: var(--white); background: var(--green-800); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); }
.button-light { background: var(--white); color: var(--green-900); }
.button-whatsapp { color: var(--white); background: #208a55; }

.hero { position: relative; min-height: 760px; display: grid; align-items: center; overflow: hidden; color: var(--white); }
.hero-media, .hero-media img, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(7,31,24,.93), rgba(12,43,34,.72) 52%, rgba(12,43,34,.28)); }
html[dir="ltr"] .hero-overlay { background: linear-gradient(90deg, rgba(7,31,24,.93), rgba(12,43,34,.72) 52%, rgba(12,43,34,.28)); }
.hero-content { position: relative; z-index: 2; padding-block: 100px; }
.eyebrow, .section-kicker { margin: 0 0 14px; color: var(--gold); font-size: .86rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.hero h1 { max-width: 830px; margin: 0; font-size: clamp(2.6rem, 5.8vw, 5.3rem); line-height: 1.18; letter-spacing: -.04em; }
.hero-text { max-width: 760px; margin: 24px 0 0; color: rgba(255,255,255,.88); font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-highlights { display: flex; gap: 18px; margin-top: 64px; }
.hero-highlights div { min-width: 160px; padding-inline-start: 18px; border-inline-start: 2px solid rgba(196,163,90,.75); }
.hero-highlights strong, .hero-highlights span { display: block; }
.hero-highlights strong { color: var(--white); font-size: 1.55rem; }
.hero-highlights span { color: rgba(255,255,255,.7); font-size: .84rem; }

.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-layout.reverse .content-block { order: 2; }
.content-block h2, .section-heading h2, .quality-content h2, .cta-inner h2, .contact-details h2, .form-panel h2, .news-feature-content h2 { margin: 0 0 20px; color: var(--green-900); font-size: clamp(2rem, 3.5vw, 3.25rem); line-height: 1.25; letter-spacing: -.03em; }
.content-block p { color: var(--muted); font-size: 1.02rem; }
.text-link { display: inline-flex; gap: 8px; margin-top: 12px; color: var(--green-800); font-weight: 800; }
.image-card { position: relative; margin: 0; }
.image-card img { width: 100%; aspect-ratio: 1.25; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-card figcaption { position: absolute; inset-inline: 26px; bottom: 22px; padding: 12px 18px; border-radius: 12px; color: var(--white); background: rgba(12,43,34,.85); font-size: .88rem; }

.section-heading { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-heading p:last-child { color: var(--muted); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card { position: relative; overflow: hidden; background: var(--white); border: 1px solid rgba(18,55,43,.08); border-radius: 20px; box-shadow: 0 14px 38px rgba(12,43,34,.07); }
.process-card img { width: 100%; aspect-ratio: 1.5; object-fit: cover; }
.process-card h3 { margin: 22px 22px 8px; color: var(--green-900); font-size: 1.2rem; }
.process-card p { margin: 0 22px 26px; color: var(--muted); font-size: .92rem; }
.process-number { position: absolute; z-index: 2; top: 12px; inset-inline-start: 12px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--green-800); font-weight: 800; }

.products-section { background: linear-gradient(180deg, #fff, #f7f7f2); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 18px 45px rgba(12,43,34,.08); }
.product-image { background: #f1efe5; }
.product-image img { width: 100%; aspect-ratio: 1/1.05; object-fit: cover; }
.product-content { padding: 26px; }
.product-tag { margin: 0 0 6px; color: var(--olive); font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.product-content h3 { margin: 0 0 10px; color: var(--green-900); font-size: 1.35rem; }
.product-content p:last-child { margin: 0; color: var(--muted); }
.center-action { margin-top: 36px; text-align: center; }

.quality-section { color: var(--white); background: var(--green-900); }
.quality-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.quality-image img { width: 100%; border-radius: var(--radius); box-shadow: 0 30px 70px rgba(0,0,0,.24); }
.section-kicker.light { color: #e2c37c; }
.quality-content h2, .cta-inner h2 { color: var(--white); }
.quality-content > p { color: rgba(255,255,255,.75); }
.quality-points { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quality-points div { display: flex; gap: 12px; align-items: flex-start; padding: 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.04); }
.quality-points span { width: 26px; height: 26px; flex: 0 0 26px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--green-950); font-weight: 900; }
.quality-points p { margin: 0; color: rgba(255,255,255,.88); font-size: .92rem; }

.cta-section { padding: 70px 0; background: linear-gradient(135deg, var(--green-800), #35664d); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-inner h2 { max-width: 760px; margin-bottom: 8px; }
.cta-inner p:last-child { margin: 0; color: rgba(255,255,255,.76); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }


.awards-preview-section { background: linear-gradient(180deg, #ffffff, #fbf7eb); }
.award-summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.award-summary-card { padding: 30px; border: 1px solid rgba(196,163,90,.28); border-radius: var(--radius); background: var(--white); box-shadow: 0 18px 50px rgba(12,43,34,.08); }
.award-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 50%; font-size: 1rem; font-weight: 900; box-shadow: inset 0 0 0 6px rgba(255,255,255,.45), 0 12px 25px rgba(12,43,34,.12); }
.award-icon.gold { color: #48340a; background: linear-gradient(145deg, #f6de8a, #b68d31); }
.award-icon.silver { color: #354047; background: linear-gradient(145deg, #f2f4f5, #aeb7bc); }
.award-year { margin: 0 0 6px; color: var(--olive); font-weight: 800; }
.award-summary-card h3 { margin: 0 0 10px; color: var(--green-900); font-size: 1.35rem; }
.award-summary-card p:last-child { margin: 0; color: var(--muted); }

.news-preview-section { background: var(--cream); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 16px 45px rgba(12,43,34,.08); transition: transform .25s ease, box-shadow .25s ease; }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 24px 55px rgba(12,43,34,.14); }
.news-image { display: block; overflow: hidden; background: #e8eee8; }
.news-image img { width: 100%; aspect-ratio: 1.5; object-fit: cover; transition: transform .35s ease; }
.news-card:hover .news-image img { transform: scale(1.03); }
.news-content { padding: 25px; }
.news-meta, .award-location { margin: 0 0 8px; color: var(--olive); font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.news-content h3 { margin: 0 0 10px; color: var(--green-900); font-size: 1.3rem; line-height: 1.35; }
.news-content p:last-child { margin: 0; color: var(--muted); }

.page-hero.awards-hero { background: linear-gradient(rgba(12,43,34,.72), rgba(12,43,34,.88)), url('../images/awards-hero.svg') center/cover no-repeat; }
.page-hero.news-hero { background: linear-gradient(rgba(12,43,34,.68), rgba(12,43,34,.88)), url('../images/news-hero.svg') center/cover no-repeat; }
.awards-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.awards-intro-image { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.award-year-heading { display: flex; gap: 24px; align-items: center; margin-bottom: 34px; }
.award-year-heading > span { min-width: 100px; color: var(--gold); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1; }
.award-year-heading h2 { margin: 0 0 4px; color: var(--green-900); font-size: clamp(1.8rem, 3vw, 2.7rem); }
.award-year-heading p { margin: 0; color: var(--muted); }
.medal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.medal-card { min-height: 275px; display: flex; flex-direction: column; gap: 22px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 15px 40px rgba(12,43,34,.07); }
.medal-badge { width: 78px; height: 78px; display: grid; place-items: center; border-radius: 50%; font-size: .68rem; font-weight: 900; letter-spacing: .08em; box-shadow: inset 0 0 0 7px rgba(255,255,255,.46), 0 12px 25px rgba(12,43,34,.12); }
.medal-badge.gold { color: #48340a; background: linear-gradient(145deg, #f7df8d, #b3882d); }
.medal-badge.silver { color: #39454c; background: linear-gradient(145deg, #f6f7f8, #a8b1b7); }
.medal-card h3 { margin: 0 0 10px; color: var(--green-900); font-size: 1.2rem; line-height: 1.4; }
.medal-card p:last-child { margin: 0; color: var(--muted); }

.news-feature-section { background: #fff; }
.news-feature { display: grid; grid-template-columns: 1.12fr .88fr; gap: 60px; align-items: center; }
.news-feature-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.news-feature-content h2, .event-detail-content h2 { margin: 0 0 18px; color: var(--green-900); font-size: clamp(2rem, 3.7vw, 3.2rem); line-height: 1.25; }
.news-feature-content > p:not(.news-meta), .event-detail-content > p:not(.news-meta) { color: var(--muted); }
.event-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.event-detail-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 18px 45px rgba(12,43,34,.08); }
.event-detail-card > img { width: 100%; aspect-ratio: 1.5; object-fit: cover; }
.event-detail-content { padding: 30px; }
.event-detail-content h2 { font-size: clamp(1.6rem, 2.5vw, 2.25rem); }
.event-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.event-tags > span { padding: 7px 12px; border-radius: 999px; color: var(--green-800); background: #eef3ef; font-size: .78rem; font-weight: 800; }
.inline-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.page-hero { padding: 120px 0 90px; color: var(--white); background: linear-gradient(rgba(12,43,34,.72), rgba(12,43,34,.82)), url('../images/contact-bg.svg') center/cover no-repeat; }
.page-hero h1 { margin: 0; font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.15; }
.page-hero p:last-child { max-width: 680px; color: rgba(255,255,255,.82); font-size: 1.08rem; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.contact-card { display: flex; gap: 16px; align-items: center; margin-bottom: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; transition: transform .2s ease, border-color .2s ease; }
.contact-card:hover { transform: translateY(-2px); border-color: var(--olive); }
.contact-icon { width: 48px; height: 48px; display: grid; place-items: center; flex: 0 0 48px; border-radius: 14px; color: var(--white); background: var(--green-800); font-size: .86rem; font-weight: 900; }
.contact-card small, .contact-card strong { display: block; }
.contact-card small { color: var(--muted); }
.contact-card strong { color: var(--green-900); direction: ltr; text-align: start; }
.contact-social { margin-top: 30px; }
.form-panel { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); box-shadow: var(--shadow); }
.form-note { margin-top: -8px; color: var(--muted); font-size: .9rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form label { display: block; margin-bottom: 16px; font-weight: 700; color: var(--green-900); font-size: .92rem; }
form label > span { display: block; margin-bottom: 7px; }
input, select, textarea { width: 100%; border: 1px solid #ced8d1; border-radius: 12px; background: var(--white); color: var(--ink); padding: 13px 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
input:focus, select:focus, textarea:focus { border-color: var(--green-700); box-shadow: 0 0 0 4px rgba(33,86,66,.1); }
textarea { resize: vertical; min-height: 150px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.form-status { min-height: 28px; margin-bottom: 0; color: var(--green-800); font-weight: 700; }

.site-footer { padding-top: 70px; color: rgba(255,255,255,.75); background: var(--green-950); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr .8fr; gap: 46px; padding-bottom: 50px; }
.footer-brand img { width: 160px; margin-bottom: 20px; }
.footer-brand p { max-width: 320px; }
.site-footer h3 { margin: 0 0 18px; color: var(--white); font-size: 1rem; }
.site-footer a { display: block; margin: 8px 0; }
.site-footer a:hover { color: var(--white); }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 42px; height: 42px; display: grid; place-items: center; margin: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: var(--white); font-weight: 800; }
.social-links.large a { width: 48px; height: 48px; color: var(--green-900); border-color: var(--line); }
.footer-bottom { min-height: 72px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; }
.floating-whatsapp { position: fixed; z-index: 900; inset-inline-end: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border: 3px solid var(--white); border-radius: 50%; color: var(--white); background: #208a55; box-shadow: 0 14px 35px rgba(0,0,0,.24); font-size: .76rem; font-weight: 900; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .main-nav { gap: 14px; }
  .main-nav a { font-size: .82rem; }
  .header-actions .button { display: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .medal-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .section { padding: 76px 0; }
  .nav-toggle { display: block; margin-inline-start: auto; }
  .header-actions { margin-inline-start: 0; }
  .main-nav { position: absolute; top: 82px; inset-inline: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 8px; }
  .main-nav a::after { display: none; }
  .hero { min-height: 690px; }
  .hero-overlay { background: rgba(8,34,26,.78); }
  .split-layout, .quality-layout, .contact-layout, .awards-intro-grid, .news-feature { grid-template-columns: 1fr; gap: 44px; }
  .split-layout.reverse .content-block { order: initial; }
  .product-grid, .award-summary-grid, .news-grid, .event-detail-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 72px; gap: 10px; }
  .brand img { width: 124px; }
  .main-nav { top: 72px; inset-inline: 14px; }
  .lang-switch { min-width: 42px; height: 40px; }
  .hero { min-height: 680px; }
  .hero-content { padding-block: 80px; }
  .hero h1 { font-size: 2.55rem; }
  .hero-highlights { gap: 10px; overflow-x: auto; padding-bottom: 8px; }
  .hero-highlights div { min-width: 135px; }
  .process-grid, .product-grid, .quality-points, .form-grid, .award-summary-grid, .news-grid, .medal-grid, .event-detail-grid { grid-template-columns: 1fr; }
  .award-year-heading { align-items: flex-start; flex-direction: column; }
  .award-year-heading > span { min-width: 0; }
  .form-panel { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 20px 0; }
  .button { width: 100%; }
  .hero-actions .button, .cta-actions .button { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
