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

:root {
  --orange: #ff7606;
  --orange-dim: rgba(255, 118, 6, 0.15);
  --dark: #000000;
  --dark-accent: #050505;
  --bg-gradient: linear-gradient(180deg, #000000 0%, #050505 50%, #000000 100%);
  --white: #FFFFFF;
  --gray: #999;
  --font-display: 'Tajawal', sans-serif;
  --font-body: 'Tajawal', sans-serif;
  --radius: 12px;
  --radius-lg: 24px;
  --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  background-attachment: fixed;
}

/* ── SCROLLBAR ─────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

/* ── NAV ────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.4rem 2.5rem;
  background: transparent;
  transition: var(--transition);
}

.nav.scrolled {
  padding: 0.3rem 2.5rem;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav .nav-logo img {
  height: 45px !important;
  width: auto !important;
  max-height: 45px;
  display: block;
  object-fit: contain;
}

.footer .footer-brand-name img {
  height: 35px !important;
  width: auto !important;
  max-height: 35px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  justify-content: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

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

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

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

.nav-right {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-self: end;
}

.nav-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.nav-social:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  color: #000;
  background: var(--orange);
}

.nav-social.wa:hover {
  border-color: var(--orange);
  color: #000;
  background: var(--orange);
}

.nav-social.ig:hover {
  border-color: var(--orange);
  color: #000;
  background: var(--orange);
}

.cart-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  cursor: pointer;
  padding: 0.5rem 1.2rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform var(--transition), background var(--transition);
}

.cart-btn:hover {
  background: var(--red);
  transform: scale(1.05);
}

.cart-count {
  background: var(--white);
  color: var(--orange);
  border-radius: 99px;
  padding: 0 6px;
  font-size: 0.7rem;
  font-weight: 700;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

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

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0000 0%, #0a0f1a 50%, #001a10 100%);
}

.hero-bg-base,
.hero-bg-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-base {
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
  z-index: 1;
}

.hero-bg-text {
  object-fit: contain;
  object-position: center;
  opacity: 1;
  z-index: 2;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(255, 118, 6, 0.18) 0%, transparent 70%);
}


.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--orange);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--teal);
  bottom: -80px;
  right: -80px;
  animation-delay: -4s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 118, 6, 0.15);
  border: 1px solid rgba(255, 118, 6, 0.4);
  color: var(--orange);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.04em;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-title .accent {
  color: var(--orange);
  -webkit-text-stroke: 0px;
}

.hero-title .outline {
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.9s ease 0.4s both;
  line-height: 1.7;
}

.hero-buttons {
  position: absolute;
  bottom: 22vh;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.6s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: #e66a00;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark2);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: #145e38;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: fadeUp 1s ease 1s both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ── MARQUEE / TICKER ─────────────────────────────── */
.marquee-wrap {
  background: var(--orange);
  padding: 0.9rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee-dot {
  color: rgba(255, 255, 255, 0.5);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.clients-marquee {
  background: #050505;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 118, 6, 0.1);
  border-bottom: 1px solid rgba(255, 118, 6, 0.1);
  overflow: hidden;
  position: relative;
  display: flex;
  gap: 2rem;
  user-select: none;
}

.clients-marquee::before,
.clients-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  pointer-events: none;
  z-index: 2;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, #050505 0%, transparent 100%);
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, #050505 0%, transparent 100%);
}

.clients-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-shrink: 0;
  min-width: 100%;
  animation: scrollInfinite 35s linear infinite;
  padding: 0 1rem;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.75rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.client-card:hover {
  background: rgba(255, 118, 6, 0.1);
  border-color: rgba(255, 118, 6, 0.3);
  transform: translateY(-4px);
}

.client-card img {
  height: 90px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

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

.client-card span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.4s ease;
}

.client-card:hover span {
  color: var(--orange);
}

@keyframes scrollInfinite {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(calc(-100% - 2rem), 0, 0);
  }
}

section {
  padding: 6rem 0;
  background: var(--bg-gradient);
  position: relative;
}

.clients-section {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6rem 0 0 0;
}

.clients-header {
  text-align: center;
  margin-bottom: 3rem;
}

.clients-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  margin-top: 0.75rem;
  line-height: 1.7;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-label::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}




.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

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

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

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  margin-top: 0.75rem;
  line-height: 1.7;
  max-width: 540px;
}

/* ── STATS ───────────────────────────────── */
.stats-section {
  background: var(--dark);
  padding: 4rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
}

/* ── CARDS ───────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

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

.card-img-wrap {
  overflow: hidden;
  position: relative;
}

.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-badge.spicy {
  background: var(--red);
}

.card-badge.signature {
  background: var(--gold);
  color: var(--dark);
}

.card-badge.new {
  background: var(--teal);
}

.card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}

.card-desc {
  font-size: 0.88rem;
  color: var(--gray);
  margin-top: 0.35rem;
  line-height: 1.6;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
}

.add-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.add-btn:hover {
  background: var(--red);
  transform: scale(1.15) rotate(90deg);
}

/* ── DARK SECTION ────────────────────────── */
/* ── ABOUT & TEAM ───────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 120px rgba(255, 118, 6, 0.15); /* Orange backlight glow */
  border: 1px solid rgba(255, 118, 6, 0.15);
  background: var(--dark-accent);
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}



.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  padding: 4rem 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  text-align: center;
}

.value-card.featured {
  border-bottom: 2px solid var(--orange);
  background: rgba(255, 118, 6, 0.04);
}

.value-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
}

.value-desc {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.team-card {
  transition: var(--transition);
}

.team-img-wrap {
  width: 220px;
  height: 220px;
  margin: 0 auto 2rem;
  border-radius: 30px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.team-card:hover .team-img-wrap {
  border-color: var(--orange);
  transform: scale(1.05);
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.1em;
}

/* ── GALLERY ─────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 118, 6, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-overlay1 {
   position: absolute;
  inset: 0;
  background: #23d8d3;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}


.gallery-overlay span {
  color: var(--white);
  font-size: 2rem;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* ── OUR WORK PREVIEW ────────────────────── */
.our-work-preview {
  padding: 4rem 1.5rem 6rem;
}

.work-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.work-preview-card {
  display: block;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  background: var(--dark-accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (min-width: 900px) {
  .work-preview-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
  }
  
  .card-main {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .card-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .card-standard {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.work-preview-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-preview-card:hover img {
  transform: scale(1.08);
}

.wpc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.4s ease;
}

.work-preview-card:hover .wpc-overlay {
  background: linear-gradient(to top, rgba(255, 118, 6, 0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
}

.wpc-content {
  position: relative;
  z-index: 2;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-preview-card:hover .wpc-content {
  transform: translateY(0);
}

.wpc-content h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.card-standard .wpc-content h3 {
  font-size: 1.25rem;
}

.wpc-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
  margin-bottom: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 900px) {
  .wpc-content p {
    opacity: 0;
    transform: translateY(10px);
  }
}

.work-preview-card:hover .wpc-content p {
  opacity: 1;
  transform: translateY(0);
  color: var(--white);
}

.wpc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.4s;
}

.work-preview-card:hover .wpc-icon {
  background: var(--white);
  color: var(--orange);
  transform: rotate(-45deg);
}

/* ── TESTIMONIALS ────────────────────────── */
.testimonials-section {
  background: rgba(255, 118, 6, 0.03);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--orange-dim) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}

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

.testimonials-section .section-label {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials-section .section-label::before {
  background: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

/* MODERN CONTACT PAGE (NO FORM) */
.direct-connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.premium-social-card {
  position: relative;
  padding: 4rem 2rem;
  border-radius: 24px;
  text-align: center;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.premium-social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}

.premium-social-card.whatsapp:hover {
  transform: translateY(-10px);
  border-color: var(--whatsapp);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.15);
}

.premium-social-card.instagram:hover {
  transform: translateY(-10px);
  border-color: var(--instagram);
  box-shadow: 0 20px 40px rgba(225, 48, 108, 0.15);
}

.psc-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: all 0.5s;
}

.premium-social-card.whatsapp .psc-icon {
  color: var(--whatsapp);
}

.premium-social-card.instagram .psc-icon {
  color: var(--instagram);
}

.premium-social-card:hover .psc-icon {
  transform: scale(1.1) rotate(5deg);
  background: white;
}

.psc-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.psc-info p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 250px;
}

.psc-button {
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.premium-social-card.whatsapp:hover .psc-button {
  background: var(--whatsapp);
}

.premium-social-card.instagram:hover .psc-button {
  background: var(--instagram);
}

/* SIMPLE INFO GRID */
.simple-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 900px;
  margin: 2rem auto 6rem;
  text-align: center;
  padding: 0 2rem;
}

.info-item h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 1rem;
}

.info-item p {
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.5;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.97rem;
  line-height: 1.75;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}

.author-info strong {
  color: var(--white);
  font-size: 0.9rem;
  display: block;
}

.author-info span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

/* ── NEWSLETTER ──────────────────────────── */
.newsletter-section {
  background: var(--dark);
  text-align: center;
}

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

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 2rem auto 0;
}

.newsletter-input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: 99px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  font-family: var(--font-body);
}

.newsletter-input:focus {
  border-color: var(--orange);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* ── FOOTER ──────────────────────────────── */
.footer {
  background: #080808;
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-brand-name img {
  height: 35px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  text-decoration: none;
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}

.social-icon.whatsapp:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}

.social-icon.instagram:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
}

/* ── CONTACT ENHANCEMENTS ────────────────── */
.contact-hero {
  padding: 12rem 2rem 8rem;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 118, 6, 0.1) 0%, transparent 80%);
}

.contact-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: -6rem;
  position: relative;
  z-index: 10;
}

.contact-card-glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.social-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-contact-card {
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}

.social-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.social-contact-card.wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-contact-card.ig {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
}

.social-contact-card i {
  font-size: 2.5rem;
}

.social-contact-card .sc-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.social-contact-card .sc-value {
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-display);
}

/* ── MENU PAGE ───────────────────────────── */
.page-hero {
  padding: 10rem 2rem 5rem;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 70vh;
    padding: 8rem 1.5rem 4rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 80vh;
  }
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.page-hero-title .outline {
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
}

.page-hero-sub {
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1rem;
  font-size: 1.05rem;
}

.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.3rem;
  border-radius: 99px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  color: var(--dark);
  letter-spacing: 0.05em;
}

.filter-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.filter-btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}

.menu-item:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.menu-item-img {
  width: 90px;
  height: 90px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.25rem;
  line-height: 1.5;
}

.menu-item-tags {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tag-spicy {
  background: rgba(232, 25, 44, 0.1);
  color: var(--red);
}

.tag-signature {
  background: rgba(244, 168, 0, 0.12);
  color: #c88600;
}

.tag-vegan {
  background: rgba(26, 122, 74, 0.1);
  color: var(--green);
}

.tag-new {
  background: rgba(0, 180, 166, 0.1);
  color: var(--teal);
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  text-align: right;
  white-space: nowrap;
}

/* ── SHOP PAGE ───────────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f5f0ea;
}

.product-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-cat-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
}

.product-wishlist {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.product-wishlist:hover {
  background: var(--red);
  color: var(--white);
}

.product-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.product-desc {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.3rem;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
}

.product-old-price {
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-left: 0.35rem;
  font-weight: 400;
  font-family: var(--font-body);
}

.add-to-cart-btn {
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 0.55rem 1.1rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.add-to-cart-btn:hover {
  background: var(--orange);
  transform: scale(1.05);
}

/* ── CART SIDEBAR ────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: var(--white);
  z-index: 1101;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.cart-close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius);
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.cart-item-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 0.2rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: var(--red);
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray);
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.checkout-btn {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.checkout-btn:hover {
  background: var(--red);
  transform: scale(1.02);
}

/* ── ABOUT PAGE ──────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifesto {
  background: var(--orange);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-top: 3rem;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

.team-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--cream);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.team-card:hover .team-img {
  transform: scale(1.06);
}

.team-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.team-role {
  font-size: 0.83rem;
  color: var(--orange);
  font-weight: 600;
  margin-top: 0.2rem;
}

/* ── CONTACT PAGE ────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 118, 6, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.info-text {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.map-placeholder {
  background: linear-gradient(135deg, #e8f4ec, #d4eee4);
  border-radius: var(--radius-lg);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  border: 2px dashed rgba(26, 122, 74, 0.2);
}

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ── SERVICES PAGE ───────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--orange);
  box-shadow: 0 20px 50px rgba(255, 118, 6, 0.08);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 118, 6, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--orange);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-text {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark2);
}

.service-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
}

/* ── ARMADA DNA SECTION ───────────────────── */
.dna-section {
  background: var(--dark);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 118, 6, 0.1);
}

.dna-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.dna-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.dna-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--orange-dim) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.dna-card:hover {
  transform: translateY(-12px);
  border-color: var(--orange);
  background: rgba(255, 118, 6, 0.04);
}

.dna-card:hover::before {
  opacity: 1;
}

.dna-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--orange);
  position: relative;
  z-index: 1;
}

.dna-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.dna-card p {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.dna-accent-line {
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .dna-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .dna-card {
    padding: 3rem 2rem;
  }
}

/* ── TOAST ───────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dark);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid var(--orange);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── GALLERY ─────────────────────────────── */
.gallery-section {
  padding: 8rem 0;
  background: transparent;
  border-top: 1px solid rgba(255, 118, 6, 0.1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 118, 6, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ── GAMES SECTION ───────────────────────── */
.games-section {
  padding: 8rem 0;
  background: #050505;
  position: relative;
  overflow: hidden;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  perspective: 1200px;
  max-width: 1200px;
  margin: 0 auto;
}

.game-card-container {
  height: 480px;
  width: 100%;
  position: relative;
}

.game-card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  cursor: pointer;
}

.game-card-container:hover .game-card {
  transform: rotateY(180deg);
}

.game-card-front,
.game-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.game-card-front {
  background: var(--dark);
}

.game-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.game-card-container:hover .game-card-front img {
  transform: scale(1.1);
}

.game-front-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
}

.game-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  z-index: 2;
}

.game-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(255, 118, 6, 0.3);
}

.game-info h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.game-card-back {
  background: #0a0a0a;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
}

.game-back-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
  filter: blur(5px);
}

.game-back-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-back-content {
  position: relative;
  z-index: 1;
}

.game-back-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.game-back-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.game-back-content .btn {
  width: 100%;
  justify-content: center;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 900px) {
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1.25rem;
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-logo img {
    height: 38px !important;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.98);
    padding: 6rem 2rem 3rem;
    gap: 1.75rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    height: 100vh;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.5rem, 11vw, 4.5rem);
  }

  .our-work-preview {
    padding: 3rem 1.25rem 4rem;
  }

  .work-preview-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .work-preview-card {
    min-height: 230px;
    height: 230px;
    border-radius: 16px;
  }

  .wpc-overlay {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  }

  .wpc-content {
    transform: translateY(0) !important;
  }

  .wpc-content h3 {
    font-size: 1.35rem;
  }

  .card-standard .wpc-content h3 {
    font-size: 1.2rem;
  }

  .wpc-content p {
    opacity: 0.9;
    transform: translateY(0) !important;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
  }

  .wpc-icon {
    width: 36px;
    height: 36px;
    background: var(--orange);
    color: var(--white);
  }

  .games-section {
    padding: 3.5rem 1.25rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .game-card-container {
    height: 380px;
  }

  .game-info {
    padding: 1.5rem;
  }

  .game-info h3 {
    font-size: 1.6rem;
  }

  .game-tag {
    padding: 0.35rem 0.85rem;
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }

  .game-card-back {
    padding: 1.75rem;
  }

  .game-back-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .game-back-content p {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-story .reveal-left {
    order: 2;
  }

  .about-story .reveal-right {
    order: 1;
  }

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav {
    padding: 0.5rem 1rem;
  }

  .nav-logo img {
    height: 34px !important;
  }

  .nav-social {
    width: 32px;
    height: 34px;
    font-size: 0.85rem;
  }

  section {
    padding: 3.5rem 1rem;
  }

  .hero {
    min-height: 85vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9.5vw, 3.8rem);
  }

  .hero-bg-base {
    object-fit: cover;
    object-position: center;
  }

  .hero-bg-text {
    object-fit: contain;
    object-position: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.85rem;
    padding: 0 1.5rem;
    bottom: 18vh;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .our-work-preview {
    padding: 2.5rem 1rem 3.5rem;
  }

  .work-preview-card {
    min-height: 210px;
    height: 210px;
  }

  .wpc-overlay {
    padding: 1rem 1.25rem;
  }

  .wpc-content h3 {
    font-size: 1.25rem;
  }

  .wpc-content p {
    font-size: 0.82rem;
    margin-bottom: 0.4rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
  }

  .gallery-item {
    aspect-ratio: auto;
  }

  .gallery-item img {
    height: auto;
    object-fit: cover;
  }

  .gallery-item.wide {
    grid-column: auto;
  }

  .clients-marquee {
    padding: 2rem 0;
    gap: 1rem;
  }

  .clients-track {
    animation-duration: 30s;
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .client-card {
    padding: 0.5rem 0.9rem;
    gap: 0.5rem;
    border-radius: 50px;
  }

  .client-card img {
    height: 48px;
    max-width: 110px;
  }

  .client-card span {
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ══════════════════════════════════════════════
   TESTIMONIALS SECTION (homepage)
   ══════════════════════════════════════════════ */
.testimonials-section {
  padding: 6rem 0 5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(255,118,6,0.03) 50%, transparent 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* 3-column grid */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 3rem;
}

/* Card */
.testi-card {
  background: #0e0e0e;
  border: 1px solid #1e1e1e;
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.testi-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.testi-card:hover {
  border-color: rgba(255, 118, 6, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(255, 118, 6, 0.1);
}

.testi-card:hover::after { opacity: 1; }

/* Top row: quote icon + stars */
.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testi-quote-icon {
  font-size: 1.4rem;
  color: var(--orange);
  opacity: 0.5;
}

.testi-stars {
  display: flex;
  gap: 3px;
}

.testi-stars i {
  font-size: 0.8rem;
  color: var(--orange);
}

.testi-stars i.testi-star-empty {
  color: #2a2a2a;
}

/* Review text */
.testi-body {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(245, 245, 245, 0.8);
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Author row */
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #1e1e1e;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0;
}

.testi-author-info {
  flex: 1;
  min-width: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testi-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  flex-wrap: wrap;
}

.testi-cat {
  font-size: 11px;
  color: var(--orange);
  font-weight: 600;
}

.testi-cat i {
  font-size: 9px;
  margin-right: 2px;
}

.testi-dot {
  color: #333;
  font-size: 12px;
}

.testi-date {
  font-size: 11px;
  color: var(--gray);
}

.testi-recommend {
  color: #22c55e;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* CTA row */
.testi-cta {
  text-align: center;
  padding-top: 1rem;
}

/* Empty state */
.testi-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}

.testi-empty i {
  font-size: 3rem;
  color: #222;
  display: block;
  margin-bottom: 16px;
}

.testi-empty p {
  font-size: 15px;
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .testi-card {
    padding: 22px 18px;
  }
}