/* ===================================================
   صحراء الشرق (adwaaksa.com) — Premium Dark Gold Edition
   A COMPLETELY DIFFERENT identity from cabltexperts.com
   
   cabltexperts = Light, blue, modern tech
   adwaaksa    = Dark, gold, premium luxury
   =================================================== */

:root {
  /* ── Gold-dominant palette ── */
  --gold: #f9ae14;
  --gold-bright: #ffc233;
  --gold-deep: #c78a00;
  --gold-pale: rgba(249, 174, 20, .08);
  --gold-glow: rgba(249, 174, 20, .15);
  
  --navy: #085daa;
  --navy-light: #1a7ad4;
  
  --dark-1: #0b0f1a;
  --dark-2: #111827;
  --dark-3: #1a2035;
  --dark-4: #243050;
  
  --text-white: #F3F4F6;
  --text-light: #D1D5DB;
  --text-muted: #9CA3AF;
  --text-dark: #1F2937;
  --text-body: #374151;
  
  --surface-dark: #111827;
  --surface-card: #1a2035;
  --surface-light: #FEFCE8;
  --surface-white: #FFFFFF;
  
  --border-dark: rgba(255,255,255,.08);
  --border-gold: rgba(249, 174, 20, .2);
  --border-light: #E5E7EB;
  
  --success: #34D399;
  
  --shadow-gold: 0 4px 24px rgba(249, 174, 20, .2);
  --shadow-dark: 0 8px 32px rgba(0, 0, 0, .3);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, .12);
  --shadow-lift: 0 12px 40px rgba(0, 0, 0, .15);
  
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  
  --font-head: 'Cairo', sans-serif;
  --font-body: 'Tajawal', sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--surface-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
}

::selection { background: var(--gold); color: var(--dark-1); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all .3s var(--ease); }
ul { list-style: none; }
button { font-family: var(--font-head); cursor: pointer; border: none; background: none; }

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

/* ═══════════════════════════════════════
   BUTTONS — Gold accent CTA style
   ═══════════════════════════════════════ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: var(--dark-1);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 1rem; font-weight: 800;
  font-family: var(--font-head);
  box-shadow: var(--shadow-gold);
  transition: all .3s var(--ease);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.3) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.btn-gold:hover::before { transform: translateX(100%); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(249,174,20,.4); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 1rem; font-weight: 700;
  font-family: var(--font-head);
  transition: all .3s var(--ease);
}
.btn-outline:hover { background: var(--gold); color: var(--dark-1); transform: translateY(-3px); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  color: var(--dark-1);
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 1rem; font-weight: 700;
  font-family: var(--font-head);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: all .3s var(--ease);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

/* ═══════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════ */
.sec-head { text-align: center; margin-bottom: 56px; }

.sec-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold);
  font-size: .85rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--font-head);
}
.sec-label::before, .sec-label::after {
  content: ''; width: 32px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.sec-label::after { background: linear-gradient(90deg, var(--gold), transparent); }

.sec-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; line-height: 1.2;
  color: var(--text-dark);
  font-family: var(--font-head);
}
.sec-title span { color: var(--gold); }

.sec-desc {
  font-size: 1.05rem; color: var(--text-body);
  max-width: 560px; margin: 12px auto 0;
}

/* ═══════════════════════════════════════
   NAVBAR — Dark premium strip (NOT floating island)
   ═══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11, 15, 26, .9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  transition: all .4s var(--ease);
}
.navbar.scrolled {
  background: rgba(11, 15, 26, .97);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 24px; height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  margin-left: auto;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900;
  color: var(--dark-1);
  box-shadow: var(--shadow-gold);
  position: relative;
}
.logo-mark::after {
  content: ''; position: absolute; inset: -3px;
  border: 1px solid rgba(249,174,20,.3);
  border-radius: 13px;
}
.logo-name {
  font-size: 1.1rem; font-weight: 800;
  color: var(--text-white);
  font-family: var(--font-head);
}
.logo-tag {
  font-size: .65rem; color: var(--gold);
  font-weight: 600; letter-spacing: .08em;
  display: block;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-right: auto;
}
.nav-links a {
  padding: 8px 16px; border-radius: 8px;
  font-size: .88rem; font-weight: 600;
  color: var(--text-light);
  transition: all .25s var(--ease);
}
.nav-links a:hover { color: var(--gold); background: rgba(249,174,20,.06); }

.nav-phone {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark-1);
  padding: 10px 22px; border-radius: var(--radius-pill);
  font-size: .88rem; font-weight: 800;
  font-family: var(--font-head);
  box-shadow: var(--shadow-gold);
  transition: all .3s var(--ease);
}
.nav-phone:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(249,174,20,.35); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-light); border-radius: 2px;
  transition: all .3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--dark-2);
  border-top: 1px solid var(--border-dark);
  padding: 16px 24px; gap: 4px;
}
.mobile-menu a {
  padding: 14px 16px; border-radius: var(--radius);
  font-weight: 600; color: var(--text-light); font-size: .95rem;
}
.mobile-menu a:hover { color: var(--gold); background: rgba(249,174,20,.06); }
.mobile-menu .mobile-cta {
  background: var(--gold); color: var(--dark-1);
  text-align: center; margin-top: 8px;
  border-radius: var(--radius-pill);
  font-weight: 800; padding: 14px;
}

/* ═══════════════════════════════════════
   HERO — Full dark immersive (NOT split layout)
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--dark-1);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(249,174,20,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(8,93,170,.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(249,174,20,.03) 0%, transparent 70%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: .06;
  background-image:
    linear-gradient(rgba(249,174,20,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,174,20,.4) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,174,20,.08), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 800px;
  animation: heroFade 1s ease forwards;
}

.hero-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(249,174,20,.1);
  border: 1px solid rgba(249,174,20,.25);
  padding: 8px 20px; border-radius: var(--radius-pill);
  color: var(--gold); font-size: .85rem; font-weight: 700;
  margin-bottom: 28px;
  font-family: var(--font-head);
}
.chip-dot {
  width: 8px; height: 8px;
  background: var(--success); border-radius: 50%;
  animation: blink 2s infinite;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900; line-height: 1.12;
  color: var(--text-white);
  margin-bottom: 20px;
  font-family: var(--font-head);
}
.hero-title .gold { color: var(--gold); }
.hero-title .line-2 {
  display: block;
  font-size: .65em;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 8px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px; margin: 0 auto 40px;
  line-height: 1.8;
}

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

/* Hero Counters — inline row */
.hero-counters {
  display: flex; justify-content: center; gap: 48px;
  flex-wrap: wrap;
}
.counter-item { text-align: center; }
.counter-val {
  font-size: 2.4rem; font-weight: 900;
  color: var(--gold);
  font-family: var(--font-head);
  line-height: 1;
}
.counter-val small { font-size: .5em; }
.counter-label {
  font-size: .82rem; color: var(--text-muted);
  margin-top: 4px; font-weight: 600;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: .75rem; font-weight: 600;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* ═══════════════════════════════════════
   TRUST BAR — Gold strip after hero
   ═══════════════════════════════════════ */
.trust-bar {
  background: var(--gold);
  padding: 20px 0;
  overflow: hidden;
}
.trust-track {
  display: flex; gap: 48px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.trust-track span {
  font-size: .88rem; font-weight: 800;
  color: var(--dark-1);
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   SERVICES — Alternating rows (NOT grid cards)
   ═══════════════════════════════════════ */
.services { padding: 100px 0; background: var(--surface-white); }

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.srv-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all .4s var(--ease);
  position: relative; overflow: hidden;
}
.srv-card::before {
  content: ''; position: absolute;
  top: 0; right: 0; width: 4px; height: 0;
  background: var(--gold);
  transition: height .4s var(--ease);
}
.srv-card:hover::before { height: 100%; }
.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--border-gold);
}
.srv-icon {
  width: 52px; height: 52px;
  background: var(--dark-2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.srv-title {
  font-size: 1.1rem; font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-family: var(--font-head);
}
.srv-desc {
  font-size: .9rem; color: var(--text-body);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   WHY US — Dark section with big numbers
   ═══════════════════════════════════════ */
.why-us {
  padding: 100px 0;
  background: var(--dark-1);
  position: relative;
}
.why-us::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(249,174,20,.05), transparent 60%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative;
}
.why-content {
  display: flex; flex-direction: column; gap: 20px;
}
.why-content .sec-title { color: var(--text-white); }
.why-content .sec-title span { color: var(--gold); }
.why-text {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.8;
}
.why-list {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 12px;
}
.why-item {
  display: flex; align-items: center; gap: 14px;
}
.why-check {
  width: 32px; height: 32px;
  background: rgba(249,174,20,.12);
  border: 1px solid rgba(249,174,20,.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}
.why-item-text {
  font-size: .95rem; color: var(--text-light);
  font-weight: 600;
}

/* Why Us — Stats with big numbers */
.why-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.why-stat-card {
  background: var(--surface-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  transition: all .3s var(--ease);
}
.why-stat-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.why-stat-num {
  font-size: 2.6rem; font-weight: 900;
  color: var(--gold);
  font-family: var(--font-head);
  line-height: 1;
}
.why-stat-label {
  font-size: .85rem; color: var(--text-muted);
  margin-top: 8px; font-weight: 600;
}

/* ═══════════════════════════════════════
   ABOUT — Gold accent card (NOT blue card)
   ═══════════════════════════════════════ */
.about { padding: 100px 0; background: var(--surface-light); }

.about-layout {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
}
.about-text-area { display: flex; flex-direction: column; gap: 16px; }
.about-text-area .sec-label { text-align: right; justify-content: flex-start; }
.about-text-area .sec-title { text-align: right; }
.about-para {
  font-size: 1.05rem; color: var(--text-body); line-height: 1.8;
}

.about-visual {
  position: relative;
}
.about-big-card {
  background: linear-gradient(160deg, var(--dark-1) 0%, var(--dark-3) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  color: white;
  position: relative; overflow: hidden;
  border: 1px solid var(--border-dark);
}
.about-big-card::before {
  content: ''; position: absolute;
  top: -30%; right: -20%;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(249,174,20,.12), transparent);
  border-radius: 50%;
}
.about-big-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about-big-card h3 {
  font-size: 1.4rem; font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: var(--font-head);
  position: relative;
}
.about-big-card p {
  font-size: .95rem; color: var(--text-muted);
  line-height: 1.7; position: relative;
}
.about-mini-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 28px; position: relative;
}
.about-mini-stat {
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 18px; text-align: center;
}
.about-mini-stat .num {
  font-size: 1.8rem; font-weight: 900;
  color: var(--gold); font-family: var(--font-head);
}
.about-mini-stat .lbl {
  font-size: .78rem; color: var(--text-muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════════
   LATEST BLOG
   ═══════════════════════════════════════ */
.latest-blog { padding: 100px 0; background: var(--surface-white); }

.blog-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.blog-card {
  background: white; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .4s var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--border-gold);
}
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body {
  padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.blog-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold-deep);
  border: 1px solid var(--border-gold);
  padding: 3px 12px; border-radius: var(--radius-pill);
  font-size: .75rem; font-weight: 700;
  width: fit-content;
}
.blog-card-body h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--text-dark); line-height: 1.4;
  font-family: var(--font-head);
}
.blog-card-body p {
  font-size: .88rem; color: var(--text-body); line-height: 1.6;
}
.blog-date {
  font-size: .78rem; color: var(--text-muted); margin-top: auto;
}

/* ═══════════════════════════════════════
   CTA — Gold gradient (NOT blue)
   ═══════════════════════════════════════ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--dark-1) 0%, var(--dark-3) 50%, var(--dark-2) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -30%; left: 20%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,174,20,.08), transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  text-align: center; color: white; position: relative;
}
.cta-inner h2 {
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 900; color: var(--text-white);
  margin-bottom: 16px; font-family: var(--font-head);
}
.cta-inner h2 span { color: var(--gold); }
.cta-inner p {
  font-size: 1.05rem; color: var(--text-muted);
  margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-btns {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.cta-num {
  display: block; margin-top: 24px;
  font-size: 2.8rem; font-weight: 900;
  color: var(--gold);
  font-family: var(--font-head);
  direction: ltr; letter-spacing: 3px;
  text-shadow: 0 4px 20px rgba(249,174,20,.3);
}

/* ═══════════════════════════════════════
   FOOTER — Dark premium
   ═══════════════════════════════════════ */
.footer {
  background: var(--dark-1);
  color: var(--text-muted);
  padding: 60px 0 0;
  border-top: 1px solid var(--border-dark);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.footer-logo .logo-mark { width: 36px; height: 36px; font-size: .9rem; }
.footer-logo span {
  font-size: 1.1rem; font-weight: 800;
  color: var(--text-white); font-family: var(--font-head);
}
.footer-brand p {
  font-size: .88rem; line-height: 1.7; margin-bottom: 16px;
}
.footer-rating { margin-bottom: 12px; font-size: .85rem; }
.footer-stars { color: var(--gold); margin-left: 8px; }
.footer-status {
  display: flex; align-items: center; gap: 8px; font-size: .82rem;
}
.status-dot {
  width: 8px; height: 8px;
  background: var(--success); border-radius: 50%;
}
.status-dot.pulse {
  box-shadow: 0 0 0 0 rgba(52,211,153,.5);
  animation: pulse-ring 2s infinite;
}
.footer h4 {
  font-size: .95rem; font-weight: 700;
  color: var(--gold); margin-bottom: 20px;
  font-family: var(--font-head);
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: .85rem; opacity: .7; }
.footer ul li a:hover { opacity: 1; color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: .8rem; opacity: .5; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(249,174,20,.08);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: all .3s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--dark-1); }

/* ═══════════════════════════════════════
   FLOATING ELEMENTS
   ═══════════════════════════════════════ */
.whatsapp-fab {
  position: fixed; bottom: 24px; left: 24px;
  width: 58px; height: 58px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: all .3s var(--ease);
  animation: float 3s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); }

.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark-1); font-size: 1.1rem; font-weight: 900;
  box-shadow: var(--shadow-gold);
  z-index: 999;
  opacity: 0; pointer-events: none;
  transition: all .3s var(--ease);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes heroFade { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,.5); } 70% { box-shadow: 0 0 0 10px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scrollPulse { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .srv-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .hero-counters { gap: 24px; }
  .srv-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-num { font-size: 2rem; }
  .hero-scroll { display: none; }
}
