@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&family=Tajawal:wght@400;500;700;800;900&display=swap');

/*
  Cafo / Arctic Harvest style:
  Contemporary editorial packaging design; #071A33 navy is the trust anchor,
  #F36A21 orange is the action accent, #FFD523 yellow is appetite and warmth.
*/

:root {
  --cafo-navy: #071a33;
  --cafo-navy-soft: #102b4e;
  --cafo-blue: #dceff4;
  --cafo-ice: #f3fafb;
  --cafo-orange: #f36a21;
  --cafo-orange-dark: #ce4c0f;
  --cafo-yellow: #ffd523;
  --cafo-green: #5e9f58;
  --cafo-cream: #f7f5ef;
  --cafo-ink: #122238;
  --cafo-muted: #607084;
  --radius: 0.6rem;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cafo-cream);
  color: var(--cafo-ink);
  font-family: 'Cairo', sans-serif;
  -webkit-font-smoothing: antialiased;
  direction: rtl;
}

button, input, textarea {
  font: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
  cursor: pointer;
  background: transparent;
  padding: 0;
}

:focus-visible {
  outline: 3px solid var(--cafo-yellow);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 36px;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

/* Header */
.site-header {
  height: 84px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: #fff;
  transition: background 220ms var(--ease-out), box-shadow 220ms var(--ease-out), color 220ms var(--ease-out);
}

.site-header--scrolled {
  background: rgba(7, 26, 51, 0.95);
  box-shadow: 0 8px 28px rgba(7, 26, 51, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  max-width: 1280px;
  height: 100%;
  padding-inline: 36px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-logo-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 5px 16px rgba(0,0,0,.14);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  font-family: 'Tajawal', sans-serif;
  font-size: 21px;
  letter-spacing: .13em;
  font-weight: 900;
}

.brand-copy small {
  font-size: 9px;
  font-weight: 600;
  opacity: .7;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-inline: auto;
  font-size: 13px;
  font-weight: 600;
}

.main-nav a {
  opacity: .8;
  transition: opacity 180ms var(--ease-out), color 180ms var(--ease-out);
}

.main-nav a:hover {
  opacity: 1;
  color: var(--cafo-yellow);
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  opacity: .84;
  white-space: nowrap;
}

.header-phone svg {
  color: var(--cafo-yellow);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  padding: 12px 21px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms var(--ease-out), background 180ms var(--ease-out), color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.button:active {
  transform: scale(.97);
}

.button--nav {
  background: var(--cafo-orange);
  color: #fff;
  min-height: 41px;
  padding: 9px 16px;
  box-shadow: 0 7px 16px rgba(243,106,33,.18);
}

.button--nav:hover, .button--orange:hover {
  background: #ff7d32;
  box-shadow: 0 11px 22px rgba(243,106,33,.24);
  transform: translateY(-2px);
}

.button--orange {
  background: var(--cafo-orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(243,106,33,.2);
}

.button--outline-light {
  border: 1px solid rgba(255,255,255,.36);
  color: #fff;
  background: transparent;
}

.button--outline-light:hover {
  background: #fff;
  color: var(--cafo-navy);
}

.button--full {
  width: 100%;
}

.menu-toggle, .nav-mobile-cta {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 760px;
  height: min(100vh, 860px);
  position: relative;
  background: var(--cafo-navy);
  color: #fff;
  display: flex;
  align-items: stretch;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .82;
}

.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,26,51,.96) 0%, rgba(7,26,51,.78) 30%, rgba(7,26,51,.18) 69%, rgba(7,26,51,.32) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 100px;
}

.hero-copy {
  width: min(610px, 64%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cafo-navy);
  font-family: 'Tajawal', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255,255,255,.84);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--cafo-green);
  box-shadow: 0 0 0 4px rgba(94,159,88,.14);
}

.eyebrow-dot--orange {
  background: var(--cafo-orange);
  box-shadow: 0 0 0 4px rgba(243,106,33,.12);
}

.eyebrow-dot--yellow {
  background: var(--cafo-yellow);
  box-shadow: 0 0 0 4px rgba(255,213,35,.15);
}

.hero h1, h2, h3 {
  font-family: 'Tajawal', sans-serif;
  margin: 0;
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(52px, 6.2vw, 86px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 900;
}

h1 em, h2 em {
  color: var(--cafo-yellow);
  font-style: normal;
}

.hero-copy > p {
  max-width: 460px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 2;
  margin: 28px 0 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 31px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--cafo-navy);
  border-bottom: 1px solid rgba(7,26,51,.24);
  padding-bottom: 5px;
  transition: color 180ms var(--ease-out), gap 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.text-link:hover {
  color: var(--cafo-orange);
  gap: 14px;
  border-color: currentColor;
}

.text-link--light {
  color: #fff;
  border-color: rgba(255,255,255,.3);
}

.text-link--light:hover {
  color: var(--cafo-yellow);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 67px;
}

.proof-avatars {
  display: flex;
  direction: ltr;
}

.proof-avatar {
  width: 28px;
  height: 28px;
  border: 2px solid var(--cafo-navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-left: -6px;
  color: var(--cafo-navy);
  font-family: 'Tajawal', sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.proof-avatar:first-child {
  margin-left: 0;
}

.proof-avatar--one { background: var(--cafo-yellow); }
.proof-avatar--two { background: var(--cafo-green); }
.proof-avatar--three { background: var(--cafo-blue); }

.hero-proof p {
  font-size: 11px;
  line-height: 1.8;
  color: rgba(255,255,255,.74);
  margin: 0;
}

.hero-proof strong {
  color: #fff;
  font-size: 12px;
}

.hero-side-note {
  position: absolute;
  left: 36px;
  bottom: 139px;
  display: flex;
  align-items: center;
  gap: 11px;
  direction: ltr;
  color: rgba(255,255,255,.56);
  font-family: 'Tajawal', sans-serif;
  font-size: 9px;
  letter-spacing: .12em;
  line-height: 1.8;
}

.side-note-line {
  width: 34px;
  height: 1px;
  background: var(--cafo-orange);
}

.hero-bottom-bar {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 74px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.hero-bottom-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scroll-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--cafo-yellow);
}

.hero-metric {
  display: flex;
  direction: ltr;
  align-items: baseline;
  gap: 8px;
  font-family: 'Tajawal', sans-serif;
}

.hero-metric strong {
  color: var(--cafo-yellow);
  font-size: 22px;
}

.hero-metric span {
  color: rgba(255,255,255,.48);
  font-size: 11px;
}

/* Trust Strip */
.trust-strip {
  position: relative;
  background: var(--cafo-blue);
  color: var(--cafo-navy);
  border-bottom: 1px solid rgba(7,26,51,.1);
  overflow: hidden;
}

.cold-chain-label {
  position: absolute;
  top: 10px;
  left: 22px;
  color: rgba(7,26,51,.35);
  font: 800 8px 'Tajawal', sans-serif;
  letter-spacing: .16em;
  direction: ltr;
}

.trust-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 29px;
  padding-top: 8px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-item svg {
  color: var(--cafo-orange);
  flex: 0 0 auto;
}

.trust-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust-item strong {
  font-family: 'Tajawal', sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.trust-item span {
  font-size: 11px;
  color: rgba(7,26,51,.64);
}

.trust-item strong::after {
  content: '  /  QC';
  color: rgba(7,26,51,.32);
  font: 700 9px 'Tajawal', sans-serif;
  letter-spacing: .08em;
}

.trust-divider {
  height: 37px;
  width: 1px;
  background: rgba(7,26,51,.2);
}

/* Sections Common */
.section-pad {
  padding: 124px 0;
}

.products-section {
  background: var(--cafo-cream);
  position: relative;
}

.products-section::before {
  content: 'FRESH / FROZEN / READY';
  position: absolute;
  left: 30px;
  top: 142px;
  color: rgba(7,26,51,.09);
  font: 800 11px 'Tajawal', sans-serif;
  letter-spacing: .24em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.section-heading--split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-top: 17px;
  color: var(--cafo-navy);
  font-size: clamp(39px, 4.3vw, 61px);
  letter-spacing: -.065em;
  line-height: .98;
  font-weight: 900;
}

.section-heading h2 em {
  color: var(--cafo-orange);
}

.heading-aside {
  max-width: 340px;
  margin-bottom: 4px;
}

.heading-aside p {
  color: var(--cafo-muted);
  font-size: 13px;
  line-height: 1.9;
  margin: 0 0 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.product-card {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(7,26,51,.08);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 38px rgba(7,26,51,.12);
}

.product-card:nth-child(2) {
  margin-top: 38px;
}

.product-image-wrap {
  height: 310px;
  position: relative;
  overflow: hidden;
  background: var(--cafo-blue);
}

.product-card--sun .product-image-wrap {
  background: #fff2c2;
}

.product-card--navy .product-image-wrap {
  background: #dce9e1;
}

.product-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.product-card:hover .product-image {
  transform: scale(1.045);
}

.product-number {
  position: absolute;
  top: 17px;
  right: 19px;
  color: rgba(7,26,51,.58);
  font: 800 12px 'Tajawal', sans-serif;
  letter-spacing: .08em;
}

.product-stamp {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: rgba(255,255,255,.76);
  color: var(--cafo-navy);
  font: 800 10px 'Tajawal', sans-serif;
  letter-spacing: .1em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.product-body {
  min-height: 185px;
  position: relative;
  padding: 22px 23px 22px;
}

.product-english {
  color: var(--cafo-green);
  font: 800 10px 'Tajawal', sans-serif;
  letter-spacing: .15em;
}

.product-card--sun .product-english {
  color: var(--cafo-orange-dark);
}

.product-card--navy .product-english {
  color: var(--cafo-navy-soft);
}

.product-body h3 {
  color: var(--cafo-navy);
  font-size: 23px;
  font-weight: 900;
  margin-top: 9px;
}

.product-body p {
  max-width: 260px;
  color: var(--cafo-muted);
  font-size: 12px;
  line-height: 1.8;
  margin: 8px 0 0;
}

.card-arrow {
  position: absolute;
  bottom: 22px;
  left: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7,26,51,.16);
  color: var(--cafo-navy);
  transition: color 180ms var(--ease-out), background 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.card-arrow:hover {
  color: #fff;
  background: var(--cafo-orange);
  border-color: var(--cafo-orange);
  transform: translateX(-3px);
}

/* Bean CSS Art for 3rd product */
.bean-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: radial-gradient(circle at 73% 22%, #e9f7c5 0 8%, transparent 9%), linear-gradient(135deg, #b7d993, #579559);
}

.bean-art::before {
  content: '';
  position: absolute;
  width: 330px;
  height: 210px;
  bottom: -55px;
  right: -20px;
  border-radius: 50%;
  background: rgba(7,26,51,.18);
  transform: rotate(-21deg);
}

.bean {
  position: absolute;
  width: 112px;
  height: 32px;
  border-radius: 100% 10% 100% 10%;
  background: linear-gradient(180deg, #8fc65b 0%, #3f7c4d 100%);
  box-shadow: inset -6px -4px 0 rgba(20,71,45,.18), 0 7px 10px rgba(10,55,35,.18);
  transform: rotate(-26deg);
}

.bean--one { top: 84px; right: 60px; }
.bean--two { top: 130px; right: 152px; transform: rotate(8deg); }
.bean--three { top: 188px; right: 45px; transform: rotate(11deg); }
.bean--four { top: 52px; right: 204px; transform: rotate(42deg); }
.bean--five { top: 235px; right: 168px; transform: rotate(-33deg); }

.bean-leaf {
  position: absolute;
  width: 120px;
  height: 36px;
  border-radius: 100% 0 100% 0;
  background: rgba(220,239,244,.78);
  transform: rotate(21deg);
}
.bean-leaf--one { top: 22px; left: 45px; }
.bean-leaf--two { bottom: 19px; left: 30px; transform: rotate(-23deg); }

/* Quality Section */
.quality-section {
  position: relative;
  background: var(--cafo-navy);
  color: #fff;
}

.quality-section::after {
  content: 'CAFCO / COLD CHAIN';
  position: absolute;
  left: -6px;
  bottom: -66px;
  color: rgba(255,255,255,.035);
  font: 900 170px/1 'Tajawal', sans-serif;
  letter-spacing: -.1em;
  pointer-events: none;
  direction: ltr;
}

.quality-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(70px, 11vw, 170px);
  align-items: center;
}

.quality-intro {
  max-width: 450px;
}

.quality-intro h2 {
  color: #fff;
  font-size: clamp(43px, 4.9vw, 67px);
  letter-spacing: -.075em;
  line-height: .98;
  margin: 22px 0 28px;
}

.quality-intro p {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 2;
  margin: 0;
}

.quality-intro .button {
  margin-top: 32px;
}

.quality-list {
  border-top: 1px solid rgba(255,255,255,.2);
}

.quality-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 25px 0 27px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.quality-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--cafo-yellow);
  border: 1px solid rgba(255,213,35,.5);
  border-radius: 50%;
}

.quality-index {
  color: var(--cafo-orange);
  font: 800 10px 'Tajawal', sans-serif;
  letter-spacing: .08em;
}

.quality-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 7px 0 4px;
}

.quality-card p {
  color: rgba(255,255,255,.57);
  font-size: 12px;
  margin: 0;
  line-height: 1.8;
}

/* About Section */
.about-section {
  background: var(--cafo-blue);
}

.about-layout {
  display: grid;
  grid-template-columns: .75fr 1.5fr .55fr;
  gap: 50px;
  align-items: center;
}

.about-number {
  color: var(--cafo-orange);
  font: 900 clamp(73px, 9vw, 130px)/.75 'Tajawal', sans-serif;
  letter-spacing: -.1em;
}

.about-number span {
  display: block;
  color: var(--cafo-navy);
  font: 800 12px 'Cairo', sans-serif;
  letter-spacing: 0;
  margin-top: 18px;
}

.about-copy {
  max-width: 560px;
}

.about-copy h2 {
  color: var(--cafo-navy);
  font-size: clamp(42px, 4.8vw, 63px);
  letter-spacing: -.075em;
  line-height: .96;
  margin: 20px 0 27px;
}

.about-copy h2 em {
  color: var(--cafo-orange);
}

.about-copy > p {
  color: #445c70;
  font-size: 14px;
  line-height: 2;
  max-width: 480px;
  margin: 0;
}

.about-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.about-facts div {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 11px;
  color: var(--cafo-navy);
}

.about-facts strong {
  color: var(--cafo-orange);
  font: 900 16px 'Tajawal', sans-serif;
}

.about-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--cafo-navy);
  font: 800 9px/1.6 'Tajawal', sans-serif;
  text-align: center;
  letter-spacing: .17em;
}

.about-seal img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

/* Contact Section */
.contact-section {
  color: #fff;
  background: var(--cafo-navy-soft);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  width: 40vw;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--cafo-navy);
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(80px, 13vw, 190px);
  padding-top: 110px;
  padding-bottom: 110px;
}

.contact-copy {
  max-width: 500px;
}

.contact-copy h2 {
  color: #fff;
  font-size: clamp(45px, 5.2vw, 72px);
  letter-spacing: -.08em;
  line-height: .96;
  margin: 21px 0 27px;
}

.contact-copy p {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 2;
  max-width: 405px;
  margin: 0;
}

.contact-direct {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 48px;
}

.contact-direct svg {
  color: var(--cafo-yellow);
}

.contact-direct div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-direct span {
  color: rgba(255,255,255,.53);
  font-size: 10px;
}

.contact-direct a {
  color: #fff;
  font: 800 18px 'Tajawal', sans-serif;
  direction: ltr;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding-top: 10px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.contact-form label > span {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 700;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 13px;
  padding: 10px 0 12px;
  border-radius: 0;
  transition: border-color 180ms var(--ease-out);
  resize: vertical;
}

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

.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--cafo-yellow);
}

.contact-form small {
  color: rgba(255,255,255,.42);
  font-size: 9px;
  line-height: 1.7;
}

/* Toast alert */
.toast-msg {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: #071a33;
  color: #fff;
  border: 1px solid var(--cafo-orange);
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 300ms var(--ease-out), opacity 300ms var(--ease-out);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast-msg.toast-msg--show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Footer */
.site-footer {
  background: #041326;
  color: #fff;
}

.footer-top {
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-lockup--footer .brand-logo-wrap {
  width: 40px;
  height: 40px;
}

.brand-lockup--footer .brand-copy strong {
  font-size: 18px;
}

.footer-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.54);
  font-size: 11px;
}

.footer-note svg {
  color: var(--cafo-orange);
}

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cafo-yellow);
  font-size: 11px;
  border-bottom: 1px solid rgba(255,213,35,.4);
  padding-bottom: 5px;
}

.footer-bottom {
  min-height: 57px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.42);
  font-size: 10px;
}

.footer-code {
  direction: ltr;
  color: rgba(255,255,255,.25);
  font-family: 'Tajawal', sans-serif;
  letter-spacing: .13em;
}

.reveal-up {
  animation: reveal-up 760ms var(--ease-out) both;
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Rules */
@media (max-width: 960px) {
  .container, .header-inner { padding-inline: 24px; }
  .header-inner { gap: 20px; }
  .main-nav { gap: 17px; }
  .header-phone span { display: none; }
  .quality-layout { gap: 60px; }
  .about-layout { grid-template-columns: .5fr 1.5fr; }
  .about-seal { display: none; }
  .contact-layout { gap: 70px; }
}

@media (max-width: 720px) {
  .container, .header-inner { padding-inline: 18px; }
  .site-header { height: 74px; }
  .brand-logo-wrap { width: 39px; height: 39px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { display: none; }
  .header-actions { margin-right: auto; gap: 11px; }
  .header-phone, .button--nav { display: none; }
  .menu-toggle { width: 40px; height: 40px; display: grid; place-items: center; color: #fff; background: rgba(255,255,255,.1); border-radius: 4px; }
  .main-nav { position: absolute; top: 74px; right: 18px; left: 18px; display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 9px 0; background: var(--cafo-navy); box-shadow: 0 20px 30px rgba(7,26,51,.22); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out); }
  .main-nav--open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 14px 19px; border-bottom: 1px solid rgba(255,255,255,.1); opacity: .9; }
  .main-nav .nav-mobile-cta { display: flex; align-items: center; justify-content: space-between; color: var(--cafo-yellow); border-bottom: 0; }
  .hero { min-height: 710px; height: 100svh; max-height: 820px; }
  .hero-background { background-position: 62% center; }
  .hero-tint { background: linear-gradient(90deg, rgba(7,26,51,.96), rgba(7,26,51,.7) 72%, rgba(7,26,51,.3)); }
  .hero-content { padding-top: 100px; padding-bottom: 100px; align-items: flex-start; }
  .hero-copy { width: 100%; padding-top: 58px; }
  .hero h1 { font-size: clamp(49px, 15vw, 70px); }
  .hero-copy > p { font-size: 14px; line-height: 1.9; max-width: 355px; }
  .hero-actions { gap: 20px; flex-wrap: wrap; }
  .hero-proof { margin-top: 44px; }
  .hero-side-note { display: none; }
  .hero-bottom-bar { height: 61px; }
  .trust-grid { grid-template-columns: 1fr; gap: 0; padding-block: 10px; }
  .trust-item { padding: 13px 0; }
  .trust-divider { display: none; }
  .trust-item strong { font-size: 14px; }
  .trust-item span { font-size: 10px; }
  .section-pad { padding: 78px 0; }
  .products-section::before { display: none; }
  .section-heading--split { display: block; margin-bottom: 31px; }
  .section-heading h2 { font-size: 45px; }
  .heading-aside { margin-top: 23px; }
  .product-grid { grid-template-columns: 1fr; gap: 18px; }
  .product-card:nth-child(2) { margin-top: 0; }
  .product-image-wrap { height: min(80vw, 320px); }
  .quality-layout, .contact-layout { grid-template-columns: 1fr; gap: 54px; }
  .quality-intro { max-width: none; }
  .quality-section::after { font-size: 130px; bottom: -28px; }
  .quality-card { gap: 15px; }
  .quality-card h3 { font-size: 20px; }
  .about-layout { grid-template-columns: 1fr; gap: 31px; }
  .about-number { font-size: 85px; }
  .about-number span { margin-top: 11px; }
  .about-copy h2 { font-size: 48px; }
  .about-facts { flex-direction: column; gap: 14px; }
  .contact-section::before { width: 100%; height: 47%; clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%); }
  .contact-layout { padding-top: 78px; padding-bottom: 78px; }
  .contact-copy h2 { font-size: 52px; }
  .contact-form { padding-top: 0; }
  .footer-top { min-height: 105px; flex-wrap: wrap; padding-block: 20px; }
  .footer-note { order: 3; width: 100%; }
  .footer-bottom { min-height: 75px; padding-block: 16px; align-items: flex-start; flex-direction: column; gap: 6px; }
}

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

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), background-color 220ms var(--ease-out);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  background-color: #20ba5a;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 720px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

