:root {
  --bg: #f4f5f0;
  --cream: #f8f9f4;
  --olive: #7a8a5e;
  --olive-light: #9aad7a;
  --olive-dark: #5c6a44;
  --olive-pale: #e8eddd;
  --charcoal: #232820;
  --dark: #3a4030;
  --gray: #8a9280;
  --white: #ffffff;
  --weight-body: 500;
  --weight-body-ar: 700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Qahwa Arabic';
  src: url('Resources/alfont_com_zainpcv2mob300-zainpcv2.ttf') format('opentype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

body {
  background: var(--bg);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: var(--weight-body);
  overflow-x: hidden;
  background: var(--olive-pale);
}

/* â”€â”€ ARABIC / RTL â”€â”€ */
html[lang="ar"] body {
  font-family: 'Cairo', sans-serif;
  font-weight: var(--weight-body-ar);
  direction: rtl;
  text-align: right;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] .hero-headline,
html[lang="ar"] .section-title,
html[lang="ar"] .process-card h3,
html[lang="ar"] .next-card h3,
html[lang="ar"] .nav-logo,
html[lang="ar"] .mobile-menu a,
html[lang="ar"] .portfolio-card-info h4,
html[lang="ar"] .section-tag,
html[lang="ar"] .stat-num,
html[lang="ar"] .stat-label {
  font-family: 'Qahwa Arabic', 'Cairo', sans-serif;
}

html[lang="ar"] .btn-primary,
html[lang="ar"] .btn-secondary,
html[lang="ar"] .btn-white,
html[lang="ar"] .btn-ghost,
html[lang="ar"] .newsletter-btn,
html[lang="ar"] .contact-btn,
html[lang="ar"] .hero-scroll,
html[lang="ar"] .lang-btn {
  font-family: 'Cairo', sans-serif;
}

html[lang="ar"] .hero-headline {
  line-height: 1.35;
}


html[lang="ar"] .nav-links {
  flex-direction: row-reverse;
}

html[lang="ar"] .nav-right {
  flex-direction: row-reverse;
}

html[lang="ar"] .hero-scroll::before {
  display: none;
}

html[lang="ar"] .hero-btns {
  flex-direction: row;
}

html[lang="ar"] .dream-badge {
  right: auto;
  left: -20px;
  border-radius: 0 100px 100px 0;
  padding: 12px 20px 12px 32px;
}

html[lang="ar"] .meet-img-accent {
  right: auto;
  left: -20px;
}

html[lang="ar"] .stats-row {
  flex-direction: row-reverse;
}


html[lang="ar"] .portfolio-header {
  flex-direction: row;
}

html[lang="ar"] .footer-grid {
  direction: rtl;
}

html[lang="ar"] .footer-bottom {
  flex-direction: row-reverse;
}

html[lang="ar"] .footer-col ul {
  align-items: flex-start;
}

html[lang="ar"] .footer-social {
  flex-direction: row-reverse;
}

html[lang="ar"] .process-card {
  text-align: right;
}

html[lang="ar"] .next-card {
  text-align: right;
}

html[lang="ar"] .section-body {
  text-align: right;
}



/* â”€â”€ LANGUAGE BUTTON â”€â”€ */
.lang-btn {
  background: var(--olive-pale);
  color: var(--olive-dark);
  border: 1.5px solid rgba(92, 106, 68, .25);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Cairo', sans-serif;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn:hover {
  background: var(--olive-dark);
  color: var(--white);
}

.lang-btn i {
  font-size: .75rem;
}

/* â”€â”€ NAV â”€â”€ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(244, 245, 240, 0.75);
  /* --bg color */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid rgba(90, 106, 68, .08);
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, background 0.4s ease;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: .02em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--olive-dark);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: .76rem !important;
  font-weight: 600 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(35, 40, 32, 0.1);
}

.nav-cta:hover {
  background: var(--olive-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(92, 106, 68, 0.25);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(244, 245, 240, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-back {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: 8px 12px;
}

.mobile-back i {
  font-size: 0.9rem;
  transition: transform .2s ease;
}

.mobile-back:hover {
  color: var(--olive);
}

html[lang="ar"] .mobile-back {
  left: auto;
  right: 24px;
}

html[lang="ar"] .mobile-back i {
  transform: rotate(180deg);
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s;
}

.mobile-menu a:hover {
  color: var(--olive);
}

.mobile-menu .mobile-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem !important;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 100px;
  margin-top: 12px;
}

/* â”€â”€ HERO â”€â”€ */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -200px;

}

.hero-left {
  padding: 40px 60px 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 26px;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--charcoal);
}

.hero-headline em {
  font-style: italic;
  color: var(--olive);
}

/* Eyes icon beside hero heading */
.hero .mascot-eyes {
  display: block;
  width: 80px;
  height: auto;
  margin: 0 auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* RTL support */
html[lang="ar"] .hero .mascot-eyes {
  margin: 0 auto;
}



.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  box-shadow: 0 8px 24px rgba(35, 40, 32, 0.12);
}

.btn-primary:hover {
  background: var(--olive-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(92, 106, 68, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--charcoal);
  padding: 13px 30px;
  border-radius: 100px;
  border: 1.5px solid var(--charcoal);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(35, 40, 32, 0.03);
  border-color: var(--olive-dark);
  color: var(--olive-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 24px rgba(35, 40, 32, 0.08);
}

.hero-scroll {
  font-size: .72rem;
  color: var(--gray);
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.hero-scroll::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gray);
  display: block;
}

.hero-bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  opacity: 0.03;
  z-index: 1;
  pointer-events: none;
}


.hero-card-icon {
  font-size: 1.8rem;
  color: var(--olive);
}

.hero-card-text strong {
  display: block;
  font-size: .86rem;
  color: var(--charcoal);
  font-weight: 700;
}

.hero-card-text span {
  font-size: .73rem;
  color: var(--gray);
}

/* â”€â”€ IMAGE PLACEHOLDERS â”€â”€ */
.ph-icon {
  font-size: 4rem;
  color: rgba(92, 106, 68, .4);
  display: block;
}

.ph-desc {
  font-size: .73rem;
  color: rgba(92, 106, 68, .62);
  text-align: center;
  max-width: 210px;
  line-height: 1.65;
  font-style: italic;
  padding: 0 16px;
  border: 1px dashed rgba(92, 106, 68, .3);
  border-radius: 8px;
  padding: 8px 14px;
}

.hero-right-inner .ph-icon {
  font-size: 5rem;
}

/* â”€â”€ MARQUEE â”€â”€ */
.marquee-wrap {
  background: var(--charcoal);
  padding: 15px 0;
  overflow: hidden;
  display: flex;
  position: relative;
  margin-top: -50px;

}

.marquee-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url('Resources/hero-doodle line.webp'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;

}

.marquee-track {
  display: flex;
  animation: marqueeLeft 25s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.marquee-track.reverse {
  animation: marqueeRight 22s linear infinite;
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.marquee-item {
  font-family: 'Playfair Display', serif;
  font-style: italic !important;
  font-size: .9rem;
  color: white !important;
  letter-spacing: .08em;
  padding: 0 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.marquee-item::after {
  content: '\2729';
  color: var(--olive-light);
  font-style: normal;
  font-size: .75rem;
}

.marquee-item.dark {
  color: var(--charcoal);
}

.marquee-item.dark::after {
  color: var(--olive);
}

.marquee-wrap.light {
  background: var(--olive-pale);
  border-top: 1.5px solid rgba(122, 138, 94, .25);
  border-bottom: 1.5px solid rgba(122, 138, 94, .25);
}

/* â”€â”€ SECTION COMMON â”€â”€ */
section {
  padding: 100px 60px;
}

.section-tag {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 18px;
}

.section-title em {
  font-style: italic;
  color: var(--olive);
}

.section-body {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 540px;
  font-weight: var(--weight-body);
  margin-bottom: 32px;
}

html[lang="ar"] .section-body {
  font-weight: var(--weight-body-ar);
}

/* â”€â”€ DREAM BIG â”€â”€ */
.dream-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--cream);
}

.dream-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1024/720;
  max-width: 1020px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(35, 40, 32, .12);
}

.dream-badge {
  position: absolute;
  top: 28px;
  right: -20px;
  background: var(--olive-dark);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .85rem;
  padding: 8px 24px 8px 16px;
  border-radius: 100px 0 0 100px;
  box-shadow: 0 4px 20px rgba(92, 106, 68, .35);
}

/* â”€â”€ PORTFOLIO TICKER â”€â”€ */
.portfolio-ticker .marquee-item {
  font-size: 1.25rem;
  padding: 18px 32px;
}

.portfolio-ticker .marquee-item a {
  color: var(--olive-pale);
  text-decoration: none;
  transition: color .2s;
}

.portfolio-ticker .marquee-item a:hover {
  color: var(--olive-light);
}

.mission-section {
  text-align: center;
  background: var(--olive-dark);
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Resources/hero-doodle line.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
  filter: invert(1) brightness(1.5);
}

.mission-section>* {
  position: relative;
  z-index: 2;
}

/* .mission-section::before {
  content: '\2726';
  position: absolute;
  top: 40px;
  left: 60px;
  font-size: 4rem;
  color: rgba(255, 255, 255, .08);
}

.mission-section::after {
  content: '\2726';
  position: absolute;
  bottom: 40px;
  right: 60px;
  font-size: 6rem;
  color: rgba(255, 255, 255, .06);
} */

.mission-section .section-tag {
  color: #afb1ae;
}

.mission-section .section-title {
  color: var(--white);
  max-width: 720px;
  margin: 0 auto 22px;
}

.mission-section .section-title em {
  color: var(--olive-pale);
}

.mission-section .section-body {
  color: rgba(255, 255, 255, .72);
  max-width: 600px;
  margin: 0 auto 40px;
}

.btn-white {
  background: var(--white);
  color: var(--olive-dark);
  padding: 13px 34px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.btn-white:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

/* â”€â”€ MEET â”€â”€ */
.meet-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.meet-image-stack {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}

.meet-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(35, 40, 32, .12);
  background: linear-gradient(135deg, #e8eddd, #9aad7a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.meet-img-accent {
  position: absolute;
  bottom: -30px;
  right: -24px;
  width: 150px;
  height: 150px;
  border-radius: 18px;
  border: 5px solid var(--olive-pale);
  box-shadow: 0 8px 30px rgba(35, 40, 32, .15);
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.meet-img-accent .ph-icon {
  font-size: 2rem;
}

.meet-img-accent .ph-desc {
  font-size: .58rem;
  max-width: 110px;
  padding: 5px 8px;
}

.stats-row {
  display: flex;
  gap: 28px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1.5px solid rgba(90, 106, 68, .12);
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 80px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray);
}

/* â”€â”€ PROCESS â”€â”€ */
.process-section {
  background: var(--olive-pale);
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.process-card {
  background: var(--charcoal);
  border-radius: 22px;
  padding: 34px 26px;
  border: 1.5px solid rgba(122, 138, 94, .2);
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(35, 40, 32, 0.03);
}

.process-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 48px rgba(35, 40, 32, .12);
  border-color: rgba(122, 138, 94, 0.4);
}

.process-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--olive-light);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}

.process-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--olive-pale);
  margin-bottom: 10px;
}

.process-card p {
  font-size: .86rem;
  color: var(--olive-pale);
  line-height: 1.7;
}

/* â”€â”€ PORTFOLIO â”€â”€ */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 20px;
  flex-wrap: wrap;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 16px;
}

.portfolio-card {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto;
}

.portfolio-card-bg {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
  background: var(--olive-pale);
  box-shadow: 0 10px 30px rgba(35, 40, 32, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-card-bg {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(35, 40, 32, 0.15);
}

.portfolio-card:hover .portfolio-card-bg img {
  transform: scale(1.05);
}

.portfolio-card-info {
  position: relative;
  padding: 0 4px;
}

.portfolio-card-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 6px;
}

.portfolio-card-info p {
  font-size: .95rem;
  color: rgba(35, 40, 32, .7);
  line-height: 1.4;
}

html[lang="ar"] .portfolio-card-info {
  text-align: right;
}

html[lang="ar"] .mascot-eyes {
  text-align: center;
}

html[lang="ar"] .portfolio-grid {
  direction: ltr;
}

html[lang="ar"] .portfolio-card {
  direction: ltr;
}

html[lang="ar"] .mascot-eyes {
  direction: ltr;
}

.mascot-eyes {
  display: none;
  text-align: center;
  padding: 18px;
}

.mascot-eyes img {
  width: 350px;
  height: auto;
  margin-bottom: 10px;
}

.mascot-eyes p {
  font-size: .85rem;
  color: var(--gray);
  margin: 0;
}

/* â”€â”€ SHOP â”€â”€ */
.shop-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--olive-pale);
}

.freebies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.freebie-card {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  border: 1.5px solid rgba(122, 138, 94, .2);
  transition: transform .2s;
}

.freebie-card:hover {
  transform: translateY(-4px);
}

.freebie-icon {
  font-size: 1.5rem;
  color: var(--olive);
  margin-bottom: 9px;
  display: block;
}

.freebie-card h5 {
  font-size: .86rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.freebie-card p {
  font-size: .74rem;
  color: var(--gray);
}

.freebie-badge {
  display: inline-block;
  background: var(--olive-pale);
  color: var(--olive-dark);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 7px;
}

/* â”€â”€ TESTIMONIALS â”€â”€ */
.testimonials-section {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: var(--charcoal);
  border-radius: 22px;
  padding: 34px 28px;
  border: 1.5px solid rgba(122, 138, 94, .2);
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(35, 40, 32, 0.03);
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 48px rgba(35, 40, 32, .12);
  border-color: rgba(122, 138, 94, 0.4);
}

.testimonial-quote {
  font-size: 3.8rem;
  color: var(--olive-light);
  font-family: 'Playfair Display', serif;
  line-height: .8;
  margin-bottom: 14px;
  display: block;
}

.stars {
  color: var(--olive-light);
  font-size: .82rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}

.testimonial-card p {
  font-size: .88rem;
  color: var(--olive-pale);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(122, 138, 94, 0.15);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--olive-light);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: .83rem;
  color: var(--white);
  font-weight: 600;
}

.testimonial-author span {
  font-size: .73rem;
  color: var(--olive-light);
  font-weight: 500;
}

/* â”€â”€ WHAT'S NEXT â”€â”€ */
.next-section {
  background: var(--charcoal);
  text-align: center;
}

.next-section .section-tag {
  color: #afb1ae;
}

.next-section .section-title {
  color: var(--white);
  max-width: 580px;
  margin: 0 auto 14px;
}

.next-section .section-title em {
  color: var(--olive-light);
}

.next-section>p {
  color: rgba(255, 255, 255, .45);
  font-size: .98rem;
  max-width: 420px;
  margin: 0 auto;
}

.next-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 56px auto 0;
}

.next-card {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, .09);
  border-radius: 20px;
  padding: 34px 26px;
  text-align: left;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}

.next-card:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.next-card-icon {
  font-size: 1.5rem;
  color: var(--olive-light);
  margin-bottom: 14px;
  display: block;
}

.next-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
}

.next-card p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.65;
  margin-bottom: 22px;
}

.btn-ghost {
  background: transparent;
  color: var(--olive-light);
  border: 1.5px solid var(--olive-light);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.btn-ghost:hover {
  background: var(--olive-light);
  color: var(--white);
}

/* â”€â”€ INSTAGRAM â”€â”€ */
.instagram-section {
  background: var(--bg);
  text-align: center;
}

.ig-handle {
  font-size: .88rem;
  color: var(--olive);
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 42px;
  display: block;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 840px;
  margin: 0 auto 38px;
}

.ig-item {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  transition: transform .2s;
}

.ig-item:hover {
  transform: scale(1.04);
}

.ig-item .ph-icon {
  font-size: 1.8rem;
}

.ig-item .ph-desc {
  font-size: .6rem;
  max-width: 92px;
}

/* â”€â”€ NEWSLETTER â”€â”€ */
.newsletter-section {
  background: var(--olive);
  text-align: center;
  padding: 80px 60px;
}

.newsletter-section .section-tag {
  color: #afb1ae;
}

.newsletter-section .section-title {
  color: var(--white);
  max-width: 480px;
  margin: 0 auto 10px;
}

.newsletter-sub {
  color: rgba(255, 255, 255, .7);
  font-size: .98rem;
  margin-bottom: 34px;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 13px 20px;
  border-radius: 100px;
  border: none;
  background: rgba(255, 255, 255, .2);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, .3);
}

.newsletter-btn {
  padding: 13px 26px;
  background: var(--white);
  color: var(--olive-dark);
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

/* â”€â”€ FOOTER (NEW STYLE) â”€â”€ */
.footer-new {
  position: relative;
  background: #0d0e0c;
  color: #fff;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.footer-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  pointer-events: none;
  z-index: 1;
}

.footer-grid-lines div {
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid-lines div:last-child {
  border-right: none;
}

.footer-new-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.footer-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}

.footer-subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 400;
  color: var(--olive-light);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 50px;
}

.footer-title span {
  display: block;
}

.footer-title em {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 46px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.footer-btn:hover {
  background: #fff;
  color: #000;
}

.footer-bottom-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-row a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-row a:hover {
  color: #fff;
}

.fb-item {
  padding: 24px;
  display: flex;
  align-items: center;
}

.fb-item:nth-child(1) {
  padding-left: 40px;
}

.fb-item:last-child {
  padding-right: 40px;
}

.d-flex-between {
  justify-content: space-between;
  width: 100%;
}

/* â”€â”€ FADE IN â”€â”€ */
.fade-in {
  opacity: 0;
  transform: translateY(35px) scale(0.98);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* â•â• RESPONSIVE â€” TABLET â•â• */
@media (max-width: 1024px) {
  nav {
    padding: 14px 28px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: .75rem;
  }

  section {
    padding: 80px 40px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-bottom: 20px;
  }

  .hero-left {
    padding: 100px 40px 50px;
  }

  .hero-right {
    margin: 40px 40px 40px 0;
    min-height: 420px;
  }


  .dream-section {
    gap: 48px;
  }

  .meet-section {
    gap: 48px;
  }

  .shop-section {
    gap: 48px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mascot-eyes {
    display: none;
  }

  .portfolio-card:first-child {
    grid-row: span 1;
    min-height: 0;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
  }

  .next-cards {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (min-width: 1025px) {
  .mascot-eyes {
    display: block;
  }
}

/* â•â• RESPONSIVE â€” MOBILE â•â• */
@media (max-width: 768px) {
  nav {
    padding: 14px 22px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .lang-btn {
    font-size: .7rem;
    padding: 7px 13px;
  }

  section {
    padding: 64px 22px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 90px 22px 48px;
    gap: 20px;
  }

  .hero-headline {
    margin-top: 55px;
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-btns {
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: .76rem;
  }

  .hero-right {
    display: none;
  }

  .dream-section {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 64px 22px;
  }

  .dream-image-wrap {
    aspect-ratio: 1024/720;
    max-height: 300px;
  }

  .dream-badge {
    font-size: .88rem;
    top: 20px;
  }

  .marquee-item {
    font-size: .78rem;
    padding: 0 18px;
  }

  .marquee-wrap::before {
    display: none;
  }

  .portfolio-ticker .marquee-item {
    font-size: 1rem;
    padding: 14px 22px;
  }

  .mission-section {
    padding: 64px 22px;
  }

  .mission-section::before,
  .mission-section::after {
    display: none;
  }

  .meet-section {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 64px 22px;
  }

  .meet-img-accent {
    width: 110px;
    height: 110px;
    bottom: -20px;
    right: -8px;
  }

  .stats-row {
    gap: 20px;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .shop-section {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 64px 22px;
  }

  .freebies-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .process-section {
    padding: 64px 22px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .process-card {
    padding: 24px 18px;
  }

  .process-num {
    font-size: 2.5rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .mascot-eyes {
    display: none;
  }

  .portfolio-card:first-child {
    grid-row: span 1;
  }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
  }

  .next-section {
    padding: 64px 22px;
  }

  .next-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 40px;
  }

  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .instagram-section {
    padding: 64px 22px;
  }

  .newsletter-section {
    padding: 64px 22px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input,
  .newsletter-btn {
    width: 100%;
    text-align: center;
  }

  .footer-grid-lines {
    display: none;
  }

  .footer-bottom-row {
    grid-template-columns: 1fr;
  }

  .fb-item {
    justify-content: center;
    padding: 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .fb-item:last-child {
    border-bottom: none;
  }

  .footer-new {
    min-height: auto;
  }

  .footer-center {
    padding: 80px 20px;
  }

  .footer-subtitle {
    font-size: 0.55rem;
  }

  .section-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }
}

/* â•â• RESPONSIVE â€” SMALL â•â• */
@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .freebies-grid {
    grid-template-columns: 1fr;
  }

  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
  }
}

/* â”€â”€ FLOATING CONTACT WIDGET â”€â”€ */
.contact-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--charcoal);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(35, 40, 32, 0.4);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-widget:hover {
  transform: scale(1.1) translateY(-5px);
  color: white;
}

.contact-widget::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid var(--charcoal);
  animation: waPulse 2s infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

html[lang="ar"] .contact-widget {
  right: auto;
  left: 30px;
}

@media (max-width: 768px) {
  .contact-widget {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  html[lang="ar"] .contact-widget {
    left: 20px;
  }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* ADHD OPTIMIZATION: FOCUS, ENGAGEMENT & ACCESSIBILITY */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Enhanced focus states for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--olive);
  outline-offset: 2px;
}

/* Button improvements - clear hover states */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:active::after {
  width: 300px;
  height: 300px;
}

.btn-secondary {
  position: relative;
  overflow: hidden;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(122, 138, 94, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-secondary:active::after {
  width: 300px;
  height: 300px;
}

/* Service cards - clear interactive feedback */
.service-row {
  position: relative;
}

.service-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(122, 138, 94, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
  pointer-events: none;
}

.service-row:hover::before {
  opacity: 1;
}

/* Enhanced readability - text spacing */
.service-desc {
  letter-spacing: 0.3px;
  word-spacing: 0.1em;
}

/* Improve icon visibility */
.service-icon {
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-row:hover .service-icon {
  transform: scale(1.1);
  color: var(--olive-dark);
}

/* Link focus states for better navigation flow */
a {
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

a:hover {
  transition-duration: 0.1s;
}

/* Fade-in animation - smooth but not distracting */
.fade-in {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  animation: none;
}

.fade-in.visible {
  animation: slideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Clear visual hierarchy for text */
.section-title {
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-title em {
  font-style: normal;
  color: var(--olive);
  font-weight: 700;
}

/* Body text weight & readability */
p,
li,
span {
  line-height: 1.6;
}

p {
  font-weight: var(--weight-body);
}

html[lang="ar"] p {
  font-weight: var(--weight-body-ar);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

/* Increased touch target sizes on mobile */
@media (max-width: 768px) {

  a,
  button {
    min-height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .service-row {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .service-row:active {
    transform: scale(0.98);
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   EXTRACTED INLINE STYLES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ FROM SERVICES.HTML â”€â”€ */

/* PREMIUM EDITORIAL Services Page */
.services-page-hero {
  padding: 160px 60px 80px;
  text-align: center;
  background: var(--bg);
}

.editorial-section {
  position: relative;
  padding: 140px 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.editorial-light {
  background: var(--cream);
  color: var(--charcoal);
}

.editorial-dark {
  background: var(--charcoal);
  color: var(--white);
}

.editorial-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  position: relative;
  z-index: 2;
  align-items: center;
}

.editorial-section:nth-child(even) .editorial-container {
  grid-template-columns: 1.2fr 1fr;
}

.editorial-section:nth-child(even) .editorial-content {
  order: -1;
  /* Flips the content to the left */
}

html[lang="ar"] .editorial-section:nth-child(even) .editorial-content {
  order: 1;
  /* In RTL, default flows right to left. Overriding order to keep visual consistency */
}

.editorial-bg-number {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 35vw;
  font-weight: 900;
  line-height: 0.8;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.03;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.editorial-light .editorial-bg-number {
  color: var(--charcoal);
  left: -5%;
}

.editorial-dark .editorial-bg-number {
  color: var(--white);
  right: -5%;
}

html[lang="ar"] .editorial-light .editorial-bg-number {
  left: auto;
  right: -5%;
}

html[lang="ar"] .editorial-dark .editorial-bg-number {
  right: auto;
  left: -5%;
}

.editorial-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.editorial-orb {
  position: absolute;
  width: 250px;
  height: 250px;
  background: var(--olive);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: -1;
  animation: orbPulse 8s ease-in-out infinite alternate;
  mix-blend-mode: multiply;
}

.editorial-dark .editorial-orb {
  background: var(--olive-light);
  opacity: 0.2;
  mix-blend-mode: screen;
}

.editorial-icon {
  font-size: 10rem;
  color: var(--olive);
  animation: floatIcon 6s ease-in-out infinite;
  text-shadow: 0 20px 40px rgba(35, 40, 32, 0.1);
  position: relative;
  z-index: 2;
}

.editorial-dark .editorial-icon {
  color: var(--olive-light);
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

@keyframes orbPulse {
  0% {
    transform: scale(0.8) translate(10%, 10%);
  }

  100% {
    transform: scale(1.3) translate(-10%, -10%);
  }
}

.editorial-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.editorial-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.02em;
}

.editorial-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.85;
  margin: 0;
  max-width: 520px;
}

.editorial-deliverables {
  margin-top: 16px;
  padding: 36px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.editorial-deliverables:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.editorial-light .editorial-deliverables {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(122, 138, 94, 0.2);
  border-left: 5px solid var(--olive);
}

.editorial-dark .editorial-deliverables {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  border-left: 5px solid var(--olive-light);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

html[lang="ar"] .editorial-deliverables {
  border-left: none;
}

html[lang="ar"] .editorial-light .editorial-deliverables {
  border-right: 5px solid var(--olive);
}

html[lang="ar"] .editorial-dark .editorial-deliverables {
  border-right: 5px solid var(--olive-light);
}

html[lang="ar"] .editorial-deliverables h4 {
  font-weight: 400;
}

.editorial-deliverables h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.editorial-light .editorial-deliverables h4 {
  color: var(--olive-dark);
}

.editorial-dark .editorial-deliverables h4 {
  color: var(--olive-light);
}

.deliverables-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.deliverables-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
}

.deliverables-list li i {
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.editorial-light .deliverables-list li i {
  color: var(--olive);
}

.editorial-dark .deliverables-list li i {
  color: var(--olive-light);
}

.editorial-cta {
  margin-top: 16px;
  align-self: flex-start;
}

html[lang="ar"] .editorial-title {
  font-family: 'Cairo', sans-serif;
}

html[lang="ar"] .editorial-cta {
  align-self: flex-start;
  /* in RTL flex-start is right */
}

html[lang="ar"] .editorial-content {
  text-align: right;
}

@media (max-width: 900px) {
  .editorial-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .editorial-section:nth-child(even) .editorial-container {
    grid-template-columns: 1fr;
  }

  .editorial-section:nth-child(even) .editorial-content {
    order: 0;
  }

  .editorial-bg-number {
    font-size: 80vw;
    top: 10%;
  }

  .editorial-icon {
    font-size: 7rem;
  }

  .deliverables-list {
    grid-template-columns: 1fr;
  }

  .services-page-hero {
    padding: 140px 22px 60px;
  }

  .editorial-section {
    padding: 80px 26px;
  }
}

/* â”€â”€ FROM PORTFOLIO.HTML â”€â”€ */

/* â”€â”€ PAGE HERO â”€â”€ */
.pf-hero {
  padding: 180px 60px 60px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.pf-hero::before {
  content: 'WORK';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: clamp(120px, 20vw, 260px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.pf-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pf-hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.pf-hero-left .section-tag {
  color: #afb1ae;
  margin-bottom: 20px;
  display: block;
}

.pf-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  font-weight: 900;
  line-height: 1.08;
  margin: 0 auto 20px;
}

.pf-hero-title em {
  font-style: italic;
  color: var(--olive-light);
}

.pf-hero-body {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  max-width: 480px;
  line-height: 1.7;
  margin: 0 auto;
}

.pf-hero-stats {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}

.pf-stat {
  text-align: center;
}

.pf-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--olive-light);
  line-height: 1;
  display: block;
}

.pf-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
  display: block;
}

html[lang="ar"] .pf-hero-title {
  font-family: 'Qahwa Arabic', 'Cairo', sans-serif;
}

html[lang="ar"] .pf-hero-inner {
  justify-content: center;
}

html[lang="ar"] .pf-hero-left {
  text-align: center;
  align-items: center;
}

/* â”€â”€ FILTER BAR â”€â”€ */
.pf-filters {
  background: var(--cream);
  padding: 24px 60px;
  position: sticky;
  top: 74px;
  z-index: 90;
  border-bottom: 1px solid rgba(35, 40, 32, 0.08);
  backdrop-filter: blur(12px);
}

.pf-filters-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.pf-filter-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-right: 8px;
}

.pf-pill {
  border: 1.5px solid rgba(35, 40, 32, 0.18);
  background: transparent;
  color: var(--charcoal);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  letter-spacing: 0.3px;
}

.pf-pill:hover {
  border-color: var(--olive);
  color: var(--olive);
}

.pf-pill.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

html[lang="ar"] .pf-filters-inner {
  flex-direction: row-reverse;
}

html[lang="ar"] .pf-filter-label {
  margin-right: 0;
  margin-left: 8px;
}

/* â”€â”€ BENTO GRID â”€â”€ */
.pf-grid-wrap {
  padding: 60px 60px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.pf-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 20px;
}

/* Card sizes via grid spans */
.pf-card {
  grid-column: span 6;
  grid-row: span 5;
}

.pf-card--lg {
  grid-column: span 7;
  grid-row: span 4;
}

.pf-card--sm {
  grid-column: span 5;
  grid-row: span 4;
}

.pf-card--wide {
  grid-column: span 8;
  grid-row: span 5;
}

.pf-card--thin {
  grid-column: span 4;
  grid-row: span 5;
}

.pf-card--full {
  grid-column: span 12;
  grid-row: span 4;
}

/* Base card styles */
.pf-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  background: var(--olive-pale);
}

.pf-card-img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.pf-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

/* Hover overlay */
.pf-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(35, 40, 32, 0.95) 0%,
      rgba(35, 40, 32, 0.6) 40%,
      rgba(35, 40, 32, 0) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.pf-card:hover .pf-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.pf-card:hover .pf-card-img img {
  transform: scale(1.06);
}

/* Always-visible bottom gradient for card info */
.pf-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 24px 20px;
  background: linear-gradient(to top, rgba(35, 40, 32, 0.75) 0%, transparent 100%);
  transition: opacity 0.4s ease;
}

.pf-card:hover .pf-card-info {
  opacity: 0;
}

.pf-card-info h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.2;
}

.pf-card-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin: 0;
}

.pf-cat {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--olive-light);
  font-weight: 700;
  margin-bottom: 10px;
}

.pf-card-overlay h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
}

.pf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--olive-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: gap 0.25s ease;
}

.pf-card:hover .pf-link {
  gap: 14px;
}

/* Number badge */
.pf-num {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(35, 40, 32, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 4px 10px;
  backdrop-filter: blur(6px);
  letter-spacing: 1px;
  z-index: 10;
}

html[lang="ar"] .pf-num {
  right: auto;
  left: 18px;
}

html[lang="ar"] .pf-card-overlay {
  align-items: flex-end;
  text-align: right;
}

html[lang="ar"] .pf-card-info {
  text-align: right;
}

html[lang="ar"] .pf-card-overlay h3,
html[lang="ar"] .pf-card-info h3 {
  font-family: 'Qahwa Arabic', 'Cairo', sans-serif;
}

/* Hidden cards (filtered out) */
.pf-card.hidden {
  display: none;
}

/* â”€â”€ EMPTY FILTER STATE â”€â”€ */
.pf-empty {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
  font-size: 1rem;
}

/* â”€â”€ CTA BAND â”€â”€ */
.pf-cta {
  background: var(--charcoal);
  text-align: center;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.pf-cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--olive);
  opacity: 0.07;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.pf-cta .section-tag {
  color: #afb1ae;
}

.pf-cta .section-title {
  color: var(--white);
  margin: 16px 0 28px;
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1024px) {
  .pf-bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 70px;
  }

  .pf-card,
  .pf-card--lg,
  .pf-card--sm,
  .pf-card--wide,
  .pf-card--thin {
    grid-column: span 3;
    grid-row: span 5;
  }

  .pf-card--full {
    grid-column: span 6;
    grid-row: span 5;
  }
}

@media (max-width: 768px) {
  .pf-hero {
    padding: 140px 24px 50px;
  }

  .pf-hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  html[lang="ar"] .pf-hero-inner {
    align-items: center;
  }

  .pf-hero-stats {
    gap: 28px;
  }

  .pf-filters {
    padding: 16px 24px;
    top: 64px;
  }

  .pf-grid-wrap {
    padding: 32px 16px 70px;
  }

  .pf-bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .pf-card,
  .pf-card--lg,
  .pf-card--sm,
  .pf-card--wide,
  .pf-card--thin,
  .pf-card--full {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 3/4;
    position: relative;
  }

  .pf-card:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }

  .pf-cta {
    padding: 70px 24px;
  }
}

@media (max-width: 420px) {
  .pf-bento {
    grid-template-columns: 1fr;
  }

  .pf-card:first-child {
    grid-column: span 1;
  }
}

/* â”€â”€ FROM PROJECT-TEMPLATE.HTML â”€â”€ */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       PROJECT CASE STUDY TEMPLATE STYLES
       â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ HERO â”€â”€ */
.cs-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.cs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* EDIT: Replace the gradient with your project hero image */
.cs-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay for text legibility */
.cs-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(35, 40, 32, 0.95) 0%,
      rgba(35, 40, 32, 0.5) 40%,
      rgba(35, 40, 32, 0.1) 100%);
}

.cs-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.cs-hero-cat {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--olive-light);
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid rgba(154, 173, 122, 0.4);
  padding: 6px 16px;
  border-radius: 100px;
}

.cs-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 20px;
}

.cs-hero-title em {
  font-style: italic;
  color: var(--olive-light);
}

.cs-hero-tagline {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.65;
  margin: 0;
}

/* Scroll hint */
.cs-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounceDown 2.4s ease-in-out infinite;
}

.cs-scroll-hint i {
  font-size: 0.9rem;
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

html[lang="ar"] .cs-hero-content {
  text-align: right;
}

html[lang="ar"] .cs-hero-title {
  font-family: 'Qahwa Arabic', 'Cairo', sans-serif;
}

/* â”€â”€ INFO STRIP â”€â”€ */
.cs-info-strip {
  background: var(--charcoal);
  padding: 0 60px;
}

.cs-info-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-info-item {
  padding: 32px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 32px;
}

.cs-info-item:last-child {
  border-right: none;
}

.cs-info-item:not(:first-child) {
  padding-left: 32px;
}

.cs-info-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-bottom: 8px;
}

.cs-info-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}

html[lang="ar"] .cs-info-strip-inner {
  direction: rtl;
}

html[lang="ar"] .cs-info-item {
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 0;
  padding-left: 32px;
  text-align: right;
}

html[lang="ar"] .cs-info-item:last-child {
  border-left: none;
}

html[lang="ar"] .cs-info-item:not(:first-child) {
  padding-right: 32px;
}

/* â”€â”€ CONTENT CONTAINER â”€â”€ */
.cs-section {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.cs-section--cream {
  max-width: 100%;
  background: var(--cream);
  padding: 100px 60px;
}

.cs-section--cream .cs-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cs-section--dark {
  max-width: 100%;
  background: var(--charcoal);
  padding: 100px 60px;
  color: var(--white);
}

.cs-section--dark .cs-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cs-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--olive);
  display: block;
  margin-bottom: 20px;
}

.cs-section--dark .cs-label {
  color: var(--olive-light);
}

.cs-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px;
  color: var(--charcoal);
}

.cs-section--dark .cs-heading {
  color: var(--white);
}

.cs-heading em {
  font-style: italic;
  color: var(--olive);
}

.cs-section--dark .cs-heading em {
  color: var(--olive-light);
}

.cs-body-text {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(35, 40, 32, 0.75);
  max-width: 640px;
}

.cs-section--dark .cs-body-text {
  color: rgba(255, 255, 255, 0.65);
}

html[lang="ar"] .cs-heading {
  font-family: 'Qahwa Arabic', 'Cairo', sans-serif;
}

html[lang="ar"] .cs-section {
  text-align: right;
}

html[lang="ar"] .cs-section--cream .cs-section-inner {
  text-align: right;
}

html[lang="ar"] .cs-section--dark .cs-section-inner {
  text-align: right;
}

/* â”€â”€ OVERVIEW (two-col) â”€â”€ */
.cs-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

html[lang="ar"] .cs-overview-grid {
  direction: rtl;
}

/* â”€â”€ PROCESS STEPS â”€â”€ */
.cs-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.cs-process-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid rgba(35, 40, 32, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cs-process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(35, 40, 32, 0.1);
}

.cs-process-card::before {
  content: attr(data-step);
  position: absolute;
  top: -10px;
  right: -4px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--olive-pale);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

html[lang="ar"] .cs-process-card::before {
  right: auto;
  left: -4px;
}

.cs-process-icon {
  width: 48px;
  height: 48px;
  background: var(--olive-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--olive);
}

.cs-process-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 12px;
}

.cs-process-card p {
  font-size: 0.95rem;
  color: rgba(35, 40, 32, 0.65);
  line-height: 1.65;
  margin: 0;
}

html[lang="ar"] .cs-process-card {
  text-align: right;
}

html[lang="ar"] .cs-process-card h3 {
  font-family: 'Qahwa Arabic', 'Cairo', sans-serif;
}

/* â”€â”€ VISUAL ROW (wide image strip) â”€â”€ */
.cs-visual-row {
  width: 100%;
  padding: 0;
}

.cs-visual-row img {
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 700px;
  object-fit: cover;
  display: block;
}

.cs-visual-caption {
  padding: 24px 60px;
  background: var(--cream);
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.5px;
  max-width: 1200px;
  margin: 0 auto;
}

html[lang="ar"] .cs-visual-caption {
  text-align: right;
}

/* Image duo (two side by side) */
.cs-visual-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px 60px;
  background: var(--bg);
  max-width: 100%;
}

.cs-visual-duo img {
  width: 100%;
  height: 50vh;
  min-height: 280px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* â”€â”€ RESULTS / STATS â”€â”€ */
.cs-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.cs-stat-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.cs-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--olive-light);
  display: block;
  line-height: 1;
}

.cs-stat-desc {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 12px;
  display: block;
}

/* â”€â”€ NEXT PROJECT â”€â”€ */
.cs-next {
  background: var(--cream);
  padding: 80px 60px;
}

.cs-next-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cs-next-left .cs-label {
  color: var(--gray);
}

.cs-next-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--charcoal);
  margin: 8px 0 0;
}

.cs-next-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.cs-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.25s;
}

.cs-back-btn:hover {
  color: var(--charcoal);
}

html[lang="ar"] .cs-next-inner {
  direction: rtl;
}

html[lang="ar"] .cs-next-title {
  font-family: 'Qahwa Arabic', 'Cairo', sans-serif;
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 900px) {
  .cs-hero-content {
    padding: 40px 24px;
  }

  .cs-info-strip {
    padding: 0 24px;
  }

  .cs-info-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .cs-info-item:nth-child(2) {
    border-right: none;
  }

  .cs-info-item:nth-child(odd):not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cs-section {
    padding: 70px 24px;
  }

  .cs-section--cream {
    padding: 70px 24px;
  }

  .cs-section--dark {
    padding: 70px 24px;
  }

  .cs-visual-caption {
    padding: 20px 24px;
  }

  .cs-visual-duo {
    padding: 16px 24px;
    gap: 12px;
  }

  .cs-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cs-process-grid {
    grid-template-columns: 1fr;
  }

  .cs-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cs-visual-row img {
    height: 45vh;
  }

  .cs-visual-duo img {
    height: 35vh;
  }

  .cs-next {
    padding: 60px 24px;
  }

  .cs-next-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  html[lang="ar"] .cs-next-inner {
    align-items: flex-end;
  }
}

@media (max-width: 520px) {
  .cs-info-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .cs-stats-grid {
    grid-template-columns: 1fr;
  }

  .cs-visual-duo {
    grid-template-columns: 1fr;
  }

  .cs-process-grid {
    gap: 16px;
  }
}

.minimal-contact-section {
  background: var(--charcoal);
  padding: 64px 60px;
  position: relative;
  overflow: hidden;
}

.minimal-contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(154, 173, 122, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Inner wrapper â€” horizontal split */
.popup-card {
  max-width: 1100px;
  width: 100%;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  /* remove old card styling */
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  text-align: left;
}

/* Left: icon + text */
.popup-card-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.popup-icon {
  font-size: 2.2rem;
  color: var(--olive-light);
  margin-top: 4px;
  flex-shrink: 0;
}

.popup-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.popup-title em {
  font-style: italic;
  color: var(--olive-light);
}

.popup-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
  max-width: 480px;
}

/* Right: action buttons */
.popup-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  min-width: 300px;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--olive-light);
  transform: translateX(4px);
}

.contact-btn-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.contact-btn-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--olive-light);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.contact-btn:hover .contact-btn-icon {
  background: var(--olive-light);
  color: var(--charcoal);
}

.contact-btn-text {
  text-align: left;
}

.contact-btn-title {
  font-size: 1.05rem;
  font-weight: 600;
  display: block;
  line-height: 1.2;
}

.contact-btn-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 4px;
}

.contact-btn-arrow {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.25s ease, color 0.25s ease;
  margin-left: auto;
}

.contact-btn:hover .contact-btn-arrow {
  transform: translateX(4px);
  color: var(--olive-light);
}

/* Expandable social icons */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  justify-content: flex-start;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, height 0.3s ease, margin-top 0.3s ease;
}

.social-links.active {
  opacity: 1;
  height: 50px;
  margin-top: 10px;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-icon-btn:hover {
  background: var(--olive-light);
  color: var(--charcoal);
  border-color: var(--olive-light);
  transform: translateY(-2px);
}



/* RTL Support */
html[lang="ar"] .popup-card {
  text-align: right;
}

html[lang="ar"] .popup-card-left {
  /* Natural RTL flow places the icon on the right and text on the left */
}

html[lang="ar"] .popup-icon {
  transform: scaleX(-1);
}

html[lang="ar"] .popup-title,
html[lang="ar"] .contact-btn-title {
  font-family: 'Qahwa Arabic', 'Cairo', sans-serif;
}

html[lang="ar"] .contact-btn {
  flex-direction: row-reverse;
}

html[lang="ar"] .contact-btn-text {
  text-align: right;
}

html[lang="ar"] .contact-btn-arrow {
  transform: scaleX(-1);
  margin-left: 0;
  margin-right: auto;
}

html[lang="ar"] .contact-btn:hover .contact-btn-arrow {
  transform: scaleX(-1) translateX(4px);
}

html[lang="ar"] .social-links {
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .minimal-contact-section {
    padding: 52px 24px;
  }

  .popup-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }


  .contact-btn {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .minimal-contact-section {
    padding: 40px 20px;
  }
}
.sv-cta-title {
  font-family: 'Playfair Display', serif;
}

html[lang="ar"] .sv-cta-title {
  font-family: 'Qahwa Arabic', 'Cairo', sans-serif;
}

/* -- PROJECT NAVIGATION -- */
.project-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 60px 80px;
  background: transparent;
}

.project-nav-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--charcoal);
  transition: transform 0.3s ease;
  flex: 1;
}

.project-nav-link:hover {
  transform: translateY(-4px);
}

.project-nav-link.prev {
  text-align: left;
  align-items: flex-start;
}

.project-nav-link.next {
  text-align: right;
  align-items: flex-end;
}

.project-nav-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--olive);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.project-nav-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.1;
  transition: color 0.3s ease;
}

.project-nav-link:hover .project-nav-title {
  color: var(--olive);
}

.project-nav-home {
  flex: 0 0 auto;
  text-align: center;
  color: var(--charcoal);
  font-size: 2rem;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 0 40px;
}

.project-nav-home:hover {
  color: var(--olive);
  transform: scale(1.1);
}

html[lang="ar"] .project-nav-title {
  font-family: 'Qahwa Arabic', 'Cairo', sans-serif;
}

html[lang="ar"] .project-nav {
  flex-direction: row-reverse;
}

html[lang="ar"] .project-nav-link.prev {
  text-align: right;
  align-items: flex-end;
}

html[lang="ar"] .project-nav-link.next {
  text-align: left;
  align-items: flex-start;
}

html[lang="ar"] .project-nav-label {
  flex-direction: row-reverse;
}

html[lang="ar"] .project-nav-link.prev i {
  transform: none;
}

html[lang="ar"] .project-nav-link.next i {
  transform: none;
}

@media (max-width: 768px) {
  .project-nav {
    padding: 80px 24px 60px;
  }
  .project-nav-home {
    padding: 0 20px;
    font-size: 1.6rem;
  }
}
