/*
Theme Name: ForjaPlay Child
Template: astra
Description: موقع ForjaPlay - اشتراكات IPTV في المغرب
Version: 2.0
Text Domain: forjaplay
*/

/* ===== DESIGN SYSTEM ===== */
:root {
  --fp-red:     #C1272D;
  --fp-red-dk:  #9b1c21;
  --fp-red-lt:  #e8474d;
  --fp-gold:    #D4AF37;
  --fp-gold-lt: #f0cc55;
  --fp-dark:    #0d0d1a;
  --fp-dark2:   #1a1a2e;
  --fp-dark3:   #16213e;
  --fp-white:   #ffffff;
  --fp-off:     #f9f6f0;
  --fp-text:    #2d2d2d;
  --fp-muted:   #6b6b7b;
  --fp-radius:  12px;
  --fp-shadow:  0 8px 32px rgba(0,0,0,.18);
  --fp-shadow-gold: 0 4px 20px rgba(212,175,55,.3);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', 'Noto Kufi Arabic', 'Segoe UI', Arial, sans-serif;
  direction: rtl;
  text-align: right;
  background: var(--fp-white);
  color: var(--fp-text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 {
  font-family: 'Cairo', 'Tajawal', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
a { color: var(--fp-red); text-decoration: none; transition: all .25s; }
a:hover { color: var(--fp-gold); }
img { max-width: 100%; height: auto; display: block; }

/* ===== ASTRA OVERRIDES ===== */
.site-header, .ast-primary-header-bar { display: none !important; }
.ast-archive-description, .ast-breadcrumbs-wrap { display: none; }
.entry-content { max-width: 100% !important; }
.ast-container { max-width: 100% !important; padding: 0 !important; }
.site-main, .ast-page-builder-template .site-main { padding-top: 0 !important; margin-top: 0 !important; }
.page-content { padding: 0; }
.ast-page-builder-template { padding-top: 0 !important; }
.site-footer, .footer-widget-area, .ast-footer-overlay { display: none !important; }
#page { background: var(--fp-white); }

/* ===== FP NAVBAR ===== */
.fp-nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 9999;
  background: rgba(13,13,26,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--fp-gold);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.fp-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cairo', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--fp-white);
}
.fp-nav__logo span { color: var(--fp-gold); }
.fp-nav__logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--fp-red), var(--fp-red-dk));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(193,39,45,.4);
}
.fp-nav__links {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
}
.fp-nav__links a {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: .95rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all .25s;
}
.fp-nav__links a:hover,
.fp-nav__links a.active {
  background: rgba(212,175,55,.15);
  color: var(--fp-gold);
}
.fp-nav__cta {
  background: linear-gradient(135deg, var(--fp-red), var(--fp-red-dk)) !important;
  color: var(--fp-white) !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(193,39,45,.4) !important;
}
.fp-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(193,39,45,.5) !important;
  background: linear-gradient(135deg, var(--fp-red-lt), var(--fp-red)) !important;
}
/* Hamburger */
.fp-nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.fp-nav__toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--fp-white); margin: 5px 0;
  transition: all .3s;
}

/* ===== HERO ===== */
.fp-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--fp-dark) 0%, var(--fp-dark2) 40%, var(--fp-dark3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 5% 60px;
}
.fp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(193,39,45,.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(212,175,55,.08) 0%, transparent 60%);
  pointer-events: none;
}
.fp-hero__pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba(212,175,55,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: .6;
}
.fp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193,39,45,.15);
  border: 1px solid rgba(193,39,45,.4);
  border-radius: 50px;
  padding: 8px 20px;
  color: var(--fp-gold);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .5px;
}
.fp-hero__title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--fp-white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.fp-hero__title .highlight {
  background: linear-gradient(135deg, var(--fp-red), var(--fp-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fp-hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin: 0 auto 40px;
}
.fp-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.fp-hero__stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 70px;
  position: relative;
  z-index: 1;
}
.fp-stat {
  text-align: center;
  color: var(--fp-white);
}
.fp-stat__num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--fp-gold);
  font-family: 'Cairo', Arial, sans-serif;
  line-height: 1;
}
.fp-stat__label { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ===== BUTTONS ===== */
.fp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all .3s;
  text-decoration: none;
  font-family: 'Cairo', 'Tajawal', Arial, sans-serif;
}
.fp-btn--primary {
  background: linear-gradient(135deg, var(--fp-red), var(--fp-red-dk));
  color: var(--fp-white);
  box-shadow: 0 6px 20px rgba(193,39,45,.4);
}
.fp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(193,39,45,.5);
  color: var(--fp-white);
  background: linear-gradient(135deg, var(--fp-red-lt), var(--fp-red));
}
.fp-btn--gold {
  background: linear-gradient(135deg, var(--fp-gold), #b8930a);
  color: var(--fp-dark);
  box-shadow: 0 6px 20px rgba(212,175,55,.4);
}
.fp-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,175,55,.5);
  color: var(--fp-dark);
  background: linear-gradient(135deg, var(--fp-gold-lt), var(--fp-gold));
}
.fp-btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  color: var(--fp-white);
}
.fp-btn--outline:hover {
  border-color: var(--fp-gold);
  color: var(--fp-gold);
  background: rgba(212,175,55,.08);
}
.fp-btn--lg { padding: 16px 40px; font-size: 1.1rem; }

/* ===== SECTIONS ===== */
.fp-section {
  padding: 90px 5%;
}
.fp-section--dark {
  background: var(--fp-dark2);
  color: var(--fp-white);
}
.fp-section--off { background: var(--fp-off); }
.fp-section-head {
  text-align: center;
  margin-bottom: 60px;
}
.fp-section-head__tag {
  display: inline-block;
  background: rgba(193,39,45,.1);
  color: var(--fp-red);
  border: 1px solid rgba(193,39,45,.2);
  border-radius: 50px;
  padding: 6px 20px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: .5px;
}
.fp-section--dark .fp-section-head__tag {
  background: rgba(212,175,55,.1);
  color: var(--fp-gold);
  border-color: rgba(212,175,55,.3);
}
.fp-section-head__title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}
.fp-section-head__desc {
  font-size: 1.05rem;
  color: var(--fp-muted);
  max-width: 550px;
  margin: 0 auto;
}
.fp-section--dark .fp-section-head__desc { color: rgba(255,255,255,.6); }

/* ===== FEATURES GRID ===== */
.fp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.fp-feature-card {
  background: var(--fp-white);
  border-radius: var(--fp-radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--fp-shadow);
  border: 1px solid rgba(193,39,45,.07);
  transition: all .35s;
}
.fp-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  border-color: rgba(212,175,55,.3);
}
.fp-feature-card__icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(193,39,45,.1), rgba(212,175,55,.1));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.fp-feature-card__title { font-size: 1.15rem; margin-bottom: 10px; color: var(--fp-text); }
.fp-feature-card__text { font-size: .92rem; color: var(--fp-muted); line-height: 1.65; }

/* ===== PACKAGES / PRICING ===== */
.fp-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.fp-package {
  background: var(--fp-white);
  border-radius: 18px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--fp-shadow);
  border: 2px solid transparent;
  position: relative;
  transition: all .35s;
  overflow: hidden;
}
.fp-package::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fp-red), var(--fp-gold));
}
.fp-package:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
.fp-package--featured {
  background: linear-gradient(160deg, var(--fp-dark2) 0%, var(--fp-dark3) 100%);
  border-color: var(--fp-gold);
  transform: scale(1.04);
}
.fp-package--featured:hover { transform: scale(1.04) translateY(-8px); }
.fp-package--featured::before { background: linear-gradient(90deg, var(--fp-gold), var(--fp-gold-lt)); }
.fp-package__badge {
  position: absolute;
  top: 18px; left: 18px;
  background: linear-gradient(135deg, var(--fp-gold), #b8930a);
  color: var(--fp-dark);
  font-size: .75rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
}
.fp-package__icon {
  width: 80px; height: 80px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 20px;
  background: rgba(193,39,45,.08);
}
.fp-package--featured .fp-package__icon { background: rgba(212,175,55,.12); }
.fp-package__name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--fp-text);
}
.fp-package--featured .fp-package__name { color: var(--fp-white); }
.fp-package__dur {
  font-size: .9rem;
  color: var(--fp-muted);
  margin-bottom: 24px;
}
.fp-package--featured .fp-package__dur { color: rgba(255,255,255,.6); }
.fp-package__price {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--fp-red);
  font-family: 'Cairo', Arial, sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}
.fp-package--featured .fp-package__price { color: var(--fp-gold); }
.fp-package__currency {
  font-size: 1.1rem;
  font-weight: 700;
  vertical-align: super;
  margin-right: 4px;
}
.fp-package__period {
  font-size: .9rem;
  color: var(--fp-muted);
  margin-bottom: 28px;
}
.fp-package--featured .fp-package__period { color: rgba(255,255,255,.5); }
.fp-package__features {
  list-style: none;
  margin-bottom: 32px;
  text-align: right;
}
.fp-package__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: .93rem;
  color: var(--fp-text);
  flex-direction: row-reverse;
}
.fp-package--featured .fp-package__features li {
  border-color: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
}
.fp-package__features li:last-child { border-bottom: none; }
.fp-package__features .fp-check {
  color: var(--fp-gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.fp-package .fp-btn { width: 100%; justify-content: center; }

/* ===== HOW IT WORKS ===== */
.fp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.fp-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--fp-gold), var(--fp-red));
  opacity: .3;
}
.fp-step {
  text-align: center;
  padding: 20px;
  position: relative;
}
.fp-step__num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fp-red), var(--fp-red-dk));
  color: var(--fp-white);
  font-size: 1.8rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(193,39,45,.3);
  position: relative;
  z-index: 1;
  font-family: 'Cairo', Arial, sans-serif;
}
.fp-step__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fp-white);
}
.fp-step__text { font-size: .88rem; color: rgba(255,255,255,.6); }

/* ===== CHANNELS MARQUEE ===== */
.fp-marquee-wrap {
  background: var(--fp-dark);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212,175,55,.1);
  border-bottom: 1px solid rgba(212,175,55,.1);
}
.fp-marquee {
  display: flex;
  gap: 50px;
  animation: fp-scroll 30s linear infinite;
  width: max-content;
}
.fp-marquee__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}
.fp-marquee__dot { color: var(--fp-gold); font-size: .7rem; }
@keyframes fp-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== TESTIMONIALS ===== */
.fp-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.fp-review {
  background: var(--fp-white);
  border-radius: var(--fp-radius);
  padding: 30px;
  box-shadow: var(--fp-shadow);
  border: 1px solid rgba(0,0,0,.05);
}
.fp-review__stars { color: var(--fp-gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.fp-review__text { font-size: .95rem; color: var(--fp-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.fp-review__author { display: flex; align-items: center; gap: 12px; }
.fp-review__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fp-red), var(--fp-gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--fp-white);
  font-weight: 800;
  font-size: 1.1rem;
}
.fp-review__name { font-weight: 700; font-size: .95rem; }
.fp-review__loc { font-size: .82rem; color: var(--fp-muted); }

/* ===== FAQ ===== */
.fp-faq { max-width: 750px; margin: 0 auto; }
.fp-faq__item {
  background: var(--fp-white);
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,.07);
  overflow: hidden;
}
.fp-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 700;
  font-size: .97rem;
  cursor: pointer;
  color: var(--fp-text);
  background: none;
  border: none;
  width: 100%;
  text-align: right;
  gap: 16px;
  transition: color .25s;
}
.fp-faq__q:hover { color: var(--fp-red); }
.fp-faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(193,39,45,.1);
  color: var(--fp-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform .3s, background .3s;
}
.fp-faq__item.open .fp-faq__icon { transform: rotate(45deg); background: var(--fp-red); color: var(--fp-white); }
.fp-faq__a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s;
  font-size: .93rem;
  color: var(--fp-muted);
  line-height: 1.75;
}
.fp-faq__item.open .fp-faq__a { max-height: 200px; padding: 0 24px 20px; }

/* ===== CONTACT PAGE ===== */
.fp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  max-width: 1050px;
  margin: 0 auto;
  align-items: start;
}
.fp-contact-info { }
.fp-contact-info__title { font-size: 1.8rem; margin-bottom: 16px; color: var(--fp-text); }
.fp-contact-info__sub { color: var(--fp-muted); margin-bottom: 36px; line-height: 1.8; }
.fp-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--fp-off);
  border-radius: var(--fp-radius);
  padding: 22px 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,0,0,.06);
  transition: all .25s;
}
.fp-contact-card:hover { border-color: var(--fp-gold); box-shadow: var(--fp-shadow-gold); }
.fp-contact-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--fp-red), var(--fp-red-dk));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.fp-contact-card__label { font-size: .82rem; color: var(--fp-muted); margin-bottom: 4px; }
.fp-contact-card__val { font-weight: 700; font-size: 1rem; color: var(--fp-text); }
.fp-contact-card__val a { color: var(--fp-text); }
.fp-contact-card__val a:hover { color: var(--fp-red); }

/* Contact Form */
.fp-form {
  background: var(--fp-white);
  border-radius: 18px;
  padding: 40px 36px;
  box-shadow: var(--fp-shadow);
  border: 1px solid rgba(0,0,0,.06);
}
.fp-form__title { font-size: 1.4rem; margin-bottom: 28px; color: var(--fp-text); }
.fp-form__group { margin-bottom: 20px; }
.fp-form__label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--fp-text);
  margin-bottom: 8px;
}
.fp-form__input,
.fp-form__select,
.fp-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(0,0,0,.1);
  border-radius: 8px;
  font-family: 'Tajawal', Arial, sans-serif;
  font-size: .95rem;
  color: var(--fp-text);
  background: var(--fp-off);
  transition: border-color .25s, box-shadow .25s;
  direction: rtl;
}
.fp-form__input:focus,
.fp-form__select:focus,
.fp-form__textarea:focus {
  outline: none;
  border-color: var(--fp-gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.15);
  background: var(--fp-white);
}
.fp-form__textarea { resize: vertical; min-height: 120px; }
.fp-form__submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
}
.fp-form__success {
  display: none;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 10px;
  padding: 16px 20px;
  color: #166534;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

/* ===== WHATSAPP FLOAT ===== */
.fp-wa-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9998;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: all .3s;
  animation: fp-pulse 2.5s infinite;
}
.fp-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}
.fp-wa-btn svg { width: 32px; height: 32px; }
@keyframes fp-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 30px rgba(37,211,102,.7), 0 0 0 10px rgba(37,211,102,.07); }
}
.fp-wa-tooltip {
  position: absolute;
  left: 70px; bottom: 50%;
  transform: translateY(50%);
  background: var(--fp-dark);
  color: var(--fp-white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.fp-wa-btn:hover .fp-wa-tooltip { opacity: 1; }

/* ===== FOOTER ===== */
.fp-footer {
  background: var(--fp-dark);
  color: rgba(255,255,255,.7);
  padding: 60px 5% 0;
  border-top: 2px solid rgba(212,175,55,.2);
}
.fp-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.fp-footer__brand-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--fp-white);
  margin-bottom: 12px;
  font-family: 'Cairo', Arial, sans-serif;
}
.fp-footer__brand-name span { color: var(--fp-gold); }
.fp-footer__brand-desc { font-size: .9rem; line-height: 1.75; margin-bottom: 24px; }
.fp-footer__socials { display: flex; gap: 12px; }
.fp-footer__social {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  transition: all .25s;
}
.fp-footer__social:hover { background: var(--fp-gold); color: var(--fp-dark); }
.fp-footer__col-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fp-white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(212,175,55,.2);
}
.fp-footer__links { list-style: none; }
.fp-footer__links li { margin-bottom: 10px; }
.fp-footer__links a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all .25s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fp-footer__links a::before { content: '‹'; color: var(--fp-gold); }
.fp-footer__links a:hover { color: var(--fp-gold); padding-right: 4px; }
.fp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
}
.fp-footer__copy { color: rgba(255,255,255,.4); }
.fp-footer__copy span { color: var(--fp-gold); }
.fp-footer__legal { display: flex; gap: 20px; }
.fp-footer__legal a { color: rgba(255,255,255,.4); }
.fp-footer__legal a:hover { color: var(--fp-gold); }

/* ===== PAGE HERO (inner pages) ===== */
.fp-page-hero {
  background: linear-gradient(135deg, var(--fp-dark) 0%, var(--fp-dark2) 100%);
  padding: 130px 5% 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fp-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(193,39,45,.15) 0%, transparent 70%);
}
.fp-page-hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--fp-white);
  margin-bottom: 12px;
  position: relative;
}
.fp-page-hero__sub {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  position: relative;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .fp-nav__links { display: none; flex-direction: column; position: absolute; top: 72px; right: 0; left: 0; background: rgba(13,13,26,.98); padding: 20px; gap: 4px; border-bottom: 2px solid var(--fp-gold); }
  .fp-nav__links.open { display: flex; }
  .fp-nav__toggle { display: block; }
  .fp-hero__stats { gap: 24px; }
  .fp-contact-grid { grid-template-columns: 1fr; }
  .fp-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .fp-steps::before { display: none; }
  .fp-steps { grid-template-columns: 1fr 1fr; }
  .fp-package--featured { transform: scale(1); }
  .fp-package--featured:hover { transform: translateY(-8px); }
  .fp-form { padding: 28px 22px; }
  .fp-footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .fp-section { padding: 60px 5%; }
  .fp-steps { grid-template-columns: 1fr; }
  .fp-hero__actions { flex-direction: column; align-items: center; }
  .fp-btn--lg { width: 100%; justify-content: center; }
}

/* ===== UTILITIES ===== */
.fp-text-center { text-align: center; }
.fp-mt-auto { margin-top: auto; }
.fp-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--fp-gold), var(--fp-red), var(--fp-gold), transparent);
  border: none;
  margin: 0;
  opacity: .4;
}
