/* =========================================
   TAFRA — Master Stylesheet · 2026 Edition
   Author: Youssef Essam
   ========================================= */

:root {
  --red: #FF0000;
  --red-dark: #CC0000;
  --red-glow: rgba(255,0,0,.35);
  --black: #050505;
  --black-2: #0d0d0d;
  --gray: #1A1A1A;
  --gray-2: #2a2a2a;
  --grey: #F0F0F0;
  --grey-dim: #8a8a8a;
  --muted: #888;
  --white: #ffffff;

  --font-display: 'Anton', 'Cairo', sans-serif;
  --font-body: 'Inter', 'Cairo', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 8px;
  --radius-lg: 20px;

  --container: 1300px;
  --gutter: 24px;

  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --easing: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

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

@media (max-width: 900px), (hover: none) {
  body, button, a { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none !important; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: inherit; color: inherit; }
ul { list-style: none; }
::selection { background: var(--red); color: var(--black); }

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

/* Red dot styling on TAFRA text */
.dot { color: var(--red); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-dark); }

/* Noise + progress */
.noise-overlay {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--red);
  z-index: 10000;
  transition: width .1s linear;
}

/* =========================================
   PRELOADER
   ========================================= */
.preloader {
  position: fixed; inset: 0; z-index: 10001;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-words {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  color: var(--red);
  line-height: 1;
  height: 1em; min-width: 320px;
  overflow: hidden;
  text-align: center;
}
.pl-word {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; letter-spacing: 4px;
  animation: plCycle 3.4s linear forwards;
}
.pl-word:nth-child(1) { animation-delay: 0s; }
.pl-word:nth-child(2) { animation-delay: .35s; }
.pl-word:nth-child(3) { animation-delay: .7s; }
.pl-word:nth-child(4) { animation-delay: 1.05s; }
.pl-word:nth-child(5) { animation-delay: 1.4s; }
.pl-word:nth-child(6) { animation-delay: 1.75s; }
.pl-final {
  animation: plFinal 1s ease 2.3s forwards !important;
  color: var(--white) !important;
}
.pl-final i { color: var(--red); font-style: normal; }

@keyframes plCycle {
  0%,15% { opacity: 0; transform: translateY(30px); }
  25%,55% { opacity: 1; transform: translateY(0); }
  65%,100% { opacity: 0; transform: translateY(-30px); }
}
@keyframes plFinal {
  0% { opacity: 0; transform: scale(.7); }
  100% { opacity: 1; transform: scale(1); }
}
.preloader-bar {
  margin-top: 40px;
  width: 240px; height: 2px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%;
  background: var(--red);
  animation: plBar 3.4s linear forwards;
}
@keyframes plBar { 0% { width: 0; } 100% { width: 100%; } }

/* =========================================
   CURSOR
   ========================================= */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .05s linear;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.cursor-ring {
  width: 30px; height: 30px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  transition: transform .2s ease, width .3s ease, height .3s ease, border-color .3s ease, background .3s ease;
}
.cursor-ring.hover {
  width: 60px; height: 60px;
  border-color: var(--red);
  background: rgba(255,0,0,.1);
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 0;
  transition: all .3s ease;
}
.navbar.scrolled {
  background: rgba(5,5,5,.85);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--white);
}
.nav-logo .dot { color: var(--red); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: .9rem; font-weight: 500;
  color: var(--grey);
  transition: color .2s ease;
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--red); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--red);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: right;
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: all .2s ease;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-2px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 32px; padding: 4px;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--white); transition: all .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

@media (max-width: 1050px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 320px; max-width: 85vw;
    height: 100vh;
    background: var(--black-2);
    flex-direction: column;
    padding: 100px 30px 30px;
    gap: 24px;
    align-items: flex-start;
    transition: right .4s ease;
    border-left: 1px solid rgba(255,255,255,.05);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(600px) rotateX(60deg) scale(2) translateY(20%);
  transform-origin: center bottom;
  opacity: .6;
  mask-image: linear-gradient(to bottom, transparent, black 40%, black 70%, transparent);
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 60%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
  filter: blur(30px);
}
@keyframes glowPulse {
  0%,100% { opacity: .6; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); }
}
.hero-ring {
  position: absolute;
  border: 1px solid rgba(255,0,0,.15);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ring-1 {
  width: 180px; height: 180px;
  top: 15%; left: 8%;
  animation: spin 30s linear infinite;
}
.hero-ring-2 {
  width: 260px; height: 260px;
  bottom: 10%; right: 5%;
  border-color: rgba(255,255,255,.06);
  animation: spin 40s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-inner { position: relative; z-index: 2; text-align: center; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  font-size: .8rem;
  color: var(--grey);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  letter-spacing: 1px;
}
.dot-pulse {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,0,0,.7); }
  70% { box-shadow: 0 0 0 12px rgba(255,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--red);
  letter-spacing: 4px;
  margin-bottom: 8px;
  line-height: 1;
}
.hero-brand .dot { color: var(--red); font-style: normal; }

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 10rem);
  line-height: .9;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  animation: wordUp .8s var(--easing) forwards;
}
.hero-title .line:nth-child(1) .word:nth-child(1) { animation-delay: .1s; }
.hero-title .line:nth-child(1) .word:nth-child(2) { animation-delay: .25s; }
.hero-title .line:nth-child(2) .word:nth-child(1) { animation-delay: .4s; }
.hero-title .line:nth-child(2) .word:nth-child(2) { animation-delay: .55s; }
.hero-title .word.red { color: var(--red); }
.hero-title .word i { color: var(--red); font-style: normal; }
@keyframes wordUp { to { transform: translateY(0); opacity: 1; } }

.hero-sub {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  color: var(--grey);
  opacity: .85;
}
.hero-sub b { color: var(--white); }

.hero-cta {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-tags-strip {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  font-size: .85rem;
  color: var(--grey);
  opacity: .7;
}

.hero-badges {
  display: flex; justify-content: center; gap: 40px;
  flex-wrap: wrap;
}
.badge { text-align: center; }
.badge b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
}
.badge span {
  font-size: .8rem;
  color: var(--grey);
  opacity: .7;
  letter-spacing: 1px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .7rem;
  letter-spacing: 4px;
  color: var(--grey);
  opacity: .5;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollLine 2s linear infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--red-glow);
}
.btn-ghost, .btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  color: var(--white);
}
.btn-ghost:hover, .btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
}
.btn-block { width: 100%; justify-content: center; padding: 16px; }
.btn .btn-loading { display: none; }
.btn.loading .btn-label { display: none; }
.btn.loading .btn-loading { display: inline; }

/* =========================================
   MARQUEE
   ========================================= */
.marquee {
  padding: 30px 0;
  background: var(--red);
  overflow: hidden;
  transform: rotate(-1.5deg);
  margin: 60px -20px;
}
.marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 3px;
  color: var(--black);
  align-items: center;
}
.marquee-track i { font-style: normal; opacity: .6; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   SECTIONS
   ========================================= */
.section { padding: 120px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 80px; }
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
  font-family: var(--font-mono);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -.01em;
}
.section-title .red { color: var(--red); }
.section-title .red i, .section-title i { color: var(--red); font-style: normal; }
.section-lead {
  max-width: 600px;
  margin: 20px auto 0;
  color: var(--grey);
  opacity: .8;
}

/* =========================================
   ABOUT
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--grey);
  opacity: .85;
}
.about-text p b { color: var(--white); }
.about-text blockquote {
  border-left: 3px solid var(--red);
  padding: 12px 20px;
  margin: 24px 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 1px;
}
.about-text .btn { margin-top: 20px; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.05);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  transition: all .3s ease;
}
.stat-card:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  background: rgba(255,0,0,.05);
}
.stat-card h3 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card p {
  font-size: .85rem;
  color: var(--grey);
  opacity: .7;
  letter-spacing: 1px;
}

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

/* =========================================
   SERVICES
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.05);
  padding: 40px;
  border-radius: var(--radius-lg);
  transition: all .5s var(--easing);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .5s var(--easing);
  z-index: 0;
}
.service-card:hover::before { transform: scaleY(1); transform-origin: top; }
.service-card > * { position: relative; z-index: 1; transition: color .3s ease; }
.service-card:hover, .service-card:hover * { color: var(--white) !important; }
.service-card:hover .service-num { opacity: 1 !important; }

.service-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--red);
  opacity: .5;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin: 10px 0 15px;
  letter-spacing: 1px;
}
.service-card p {
  color: var(--grey);
  opacity: .8;
  margin-bottom: 20px;
}
.service-card ul { padding: 0; }
.service-card ul li {
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: .9rem;
  color: var(--grey);
  opacity: .85;
}
.service-arrow {
  display: inline-block;
  margin-top: 20px;
  color: var(--red);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: 1px;
  transition: transform .3s ease;
}
.service-card:hover .service-arrow { transform: translateX(5px); color: var(--white) !important; }

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

/* =========================================
   WORKS
   ========================================= */
.works-filter {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  background: var(--black-2);
  color: var(--grey);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .9rem;
  transition: all .3s ease;
  cursor: none;
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active { background: var(--red); color: var(--white); border-color: var(--red); }

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--black-2);
  transition: transform .4s ease;
  cursor: none;
}
.work-card:hover { transform: translateY(-5px); }
.work-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.work-card:hover img { transform: scale(1.1); }
.work-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,.95) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity .4s ease;
}
.work-card:hover .work-overlay { opacity: 1; }
.work-overlay .cat {
  font-size: .7rem;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}
.work-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.work-overlay p {
  font-size: .85rem;
  color: var(--grey);
  opacity: .8;
}

.works-note {
  text-align: center;
  margin-top: 40px;
  color: var(--grey);
  opacity: .8;
}
.works-note a { color: var(--red); font-weight: 600; }

@media (max-width: 900px) { .works-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .works-grid { grid-template-columns: 1fr; } }

/* =========================================
   PRICING (full table)
   ========================================= */
.currency-toggle {
  display: inline-flex;
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 100px;
  padding: 4px;
  margin-top: 20px;
}
.currency-btn {
  padding: 8px 24px;
  border-radius: 100px;
  color: var(--grey);
  font-size: .9rem;
  transition: all .3s ease;
  cursor: none;
}
.currency-btn.active {
  background: var(--red);
  color: var(--white);
}

.pricing-tabs {
  display: flex; justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding-bottom: 20px;
}
.tab-btn {
  padding: 12px 24px;
  border-radius: 6px;
  background: transparent;
  color: var(--grey);
  font-size: .95rem;
  font-weight: 500;
  transition: all .3s ease;
  cursor: none;
  border: 1px solid transparent;
}
.tab-btn:hover { color: var(--red); }
.tab-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.price-table {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.price-row {
  display: grid;
  grid-template-columns: 60px 1fr 200px 140px;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  align-items: center;
  transition: all .2s ease;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover {
  background: rgba(255,0,0,.05);
}
.price-row.header {
  background: rgba(255,255,255,.03);
  font-size: .75rem;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-mono);
}
.price-num {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 1.1rem;
}
.price-name {
  color: var(--white);
  font-weight: 500;
}
.price-name-ar {
  display: block;
  font-family: 'Cairo', sans-serif;
  font-size: .85rem;
  color: var(--grey);
  opacity: .6;
  margin-top: 2px;
  direction: rtl;
}
.price-value {
  color: var(--red);
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: .95rem;
}
.price-action a {
  display: inline-block;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(255,0,0,.4);
  border-radius: 6px;
  color: var(--red);
  font-size: .8rem;
  font-weight: 600;
  transition: all .3s ease;
  cursor: none;
}
.price-action a:hover {
  background: var(--red);
  color: var(--white);
}

@media (max-width: 900px) {
  .price-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }
  .price-row.header { display: none; }
  .price-num { font-size: .8rem; opacity: .6; }
  .price-value { font-size: 1.1rem; }
}

/* =========================================
   PACKAGES
   ========================================= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg-card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: all .3s ease;
  position: relative;
  display: flex; flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,0,0,.3);
}
.pkg-featured {
  border-color: var(--red);
  background: linear-gradient(160deg, rgba(255,0,0,.08), var(--black-2));
  transform: scale(1.03);
}
.pkg-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: .75rem;
  letter-spacing: 1px;
  font-weight: 700;
  white-space: nowrap;
}
.pkg-head h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 2px;
}
.pkg-tag {
  color: var(--grey);
  opacity: .7;
  font-size: .85rem;
  margin-bottom: 24px;
  margin-top: 4px;
}
.pkg-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 4px;
}
.pkg-price .currency {
  font-size: 1.5rem;
  color: var(--red);
  font-weight: 700;
}
.pkg-price .amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
}
.pkg-price .period {
  color: var(--grey);
  opacity: .6;
  font-size: .9rem;
}
.pkg-starting {
  color: var(--grey);
  opacity: .5;
  font-size: .75rem;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.pkg-features {
  padding: 0;
  margin-bottom: 30px;
  flex-grow: 1;
}
.pkg-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .9rem;
  color: var(--grey);
}
.pkg-features li.off { opacity: .35; text-decoration: line-through; }
.pkg-btn { width: 100%; justify-content: center; }
.pkg-note {
  text-align: center;
  margin-top: 40px;
  color: var(--grey);
  opacity: .8;
}
.pkg-note a { color: var(--red); font-weight: 600; }

@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr; }
  .pkg-featured { transform: none; }
}

/* =========================================
   PROCESS
   ========================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,0,0,.3), transparent);
  z-index: 0;
}
.process-step {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.05);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all .3s ease;
  position: relative;
  z-index: 1;
}
.process-step:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  background: rgba(255,0,0,.03);
}
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 12px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.process-step p {
  color: var(--grey);
  opacity: .75;
  font-size: .9rem;
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
}

/* =========================================
   BOOKING / CONTACT
   ========================================= */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
.booking-info h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.booking-lead {
  color: var(--grey);
  opacity: .85;
  margin-bottom: 24px;
}
.booking-lead b { color: var(--red); }

.wa-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 32px;
  transition: all .3s ease;
  cursor: none;
}
.wa-cta:hover {
  background: #1fb454;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
}

.contact-list { padding: 0; margin-bottom: 32px; }
.contact-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.ci-label {
  display: block;
  font-size: .7rem;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: var(--font-mono);
}
.contact-list a { color: var(--white); font-size: 1rem; }
.contact-list a:hover { color: var(--red); }
.contact-list span { color: var(--grey); opacity: .85; }

.socials-block h4 {
  font-size: .8rem;
  letter-spacing: 3px;
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: .7;
}
.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.socials a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  transition: all .3s ease;
}
.socials a:hover {
  background: var(--red);
  transform: translateY(-3px) rotate(10deg);
  border-color: var(--red);
}

.booking-form {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.05);
  padding: 40px;
  border-radius: var(--radius-lg);
}
.booking-form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.form-lead {
  color: var(--grey);
  opacity: .8;
  font-size: .9rem;
  margin-bottom: 24px;
}
.form-lead b { color: var(--red); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: .75rem;
  letter-spacing: 2px;
  color: var(--grey);
  margin-bottom: 8px;
  opacity: .8;
  font-family: var(--font-mono);
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--black);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: all .3s ease;
  resize: vertical;
  cursor: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255,0,0,.03);
}
.form-field select option { background: var(--black); }

.form-hint {
  color: var(--grey);
  opacity: .5;
  font-size: .75rem;
  margin-top: 12px;
  text-align: center;
}

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: .9rem;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(0,200,100,.1);
  border: 1px solid rgba(0,200,100,.3);
  color: #4ade80;
}
.form-status.error {
  display: block;
  background: rgba(255,0,0,.1);
  border: 1px solid rgba(255,0,0,.3);
  color: var(--red);
}
.form-status a { color: inherit; text-decoration: underline; font-weight: 700; }

@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 28px 20px; }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--black-2);
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer-top h4 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.footer-top h4 .dot { color: var(--red); font-style: normal; }
.footer-top h5 {
  font-size: .8rem;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-mono);
}
.footer-top a, .footer-top p {
  display: block;
  color: var(--grey);
  opacity: .7;
  font-size: .9rem;
  margin-bottom: 10px;
  transition: color .2s ease;
}
.footer-top a:hover { color: var(--red); opacity: 1; }
.footer-tag {
  color: var(--red) !important;
  font-family: var(--font-display);
  letter-spacing: 2px;
  opacity: 1 !important;
  margin-top: 12px !important;
}

.footer-mega {
  font-family: var(--font-display);
  font-size: clamp(6rem, 25vw, 22rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,0,0,.3);
  text-align: center;
  line-height: .8;
  letter-spacing: -.02em;
  margin: 0 -20px;
  overflow: hidden;
  user-select: none;
}
.footer-mega .dot { color: var(--red); -webkit-text-stroke: 0; font-style: normal; }

.footer-bottom {
  display: flex; justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  color: var(--grey);
  opacity: .6;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: 12px;
}
.back-to-top {
  color: var(--red);
  font-weight: 600;
  transition: transform .3s ease;
  cursor: none;
}
.back-to-top:hover { transform: translateY(-3px); }

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  z-index: 998;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  animation: waPulse 2s infinite;
  transition: transform .3s ease;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0% { box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.6); }
  70% { box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,0); }
}
