/* ═══════════════════════════════════════════════
   HARXEL PREMIUM LINK HUB — style.css v2
   Theme : Pure white · Orange accents · Black type
   Font  : Plus Jakarta Sans (single family, clean)
═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --orange:       #F97316;
  --orange-light: #FED7AA;
  --orange-dim:   rgba(249,115,22,0.1);
  --orange-glow:  rgba(249,115,22,0.18);

  --black:        #0A0A0A;
  --grey-dark:    #1C1C1E;
  --grey-mid:     #6B7280;
  --grey-light:   #D1D5DB;
  --border:       rgba(10,10,10,0.08);

  --bg:           #FFFFFF;
  --bg-soft:      #FAFAF9;
  --card:         #FFFFFF;

  --font:         'Plus Jakarta Sans', sans-serif;

  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  22px;
  --r-xl:  28px;
  --r-2xl: 36px;

  --shadow-xs: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.1), 0 6px 16px rgba(0,0,0,0.05);
  --shadow-orange: 0 8px 32px rgba(249,115,22,0.22);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ══════════════════════
   LOADER
══════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  position: relative;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
}
.loader-logo span {
  font-family: var(--font);
  font-size: 24px; font-weight: 800;
  color: var(--orange);
}
.loader-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2.5px solid transparent;
  border-top-color: var(--orange);
  border-right-color: var(--orange-light);
  animation: spin 0.75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════
   TOAST
══════════════════════ */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--black); color: #fff;
  padding: 11px 20px;
  border-radius: 100px;
  font-size: 13.5px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  z-index: 9998;
  transition: transform 0.4s var(--bounce), opacity 0.3s;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast-icon {
  width: 18px; height: 18px;
  background: #22c55e; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0;
  color: white;
}

/* ══════════════════════
   CURSOR GLOW
══════════════════════ */
#cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  z-index: 0;
  will-change: left, top;
}

/* ══════════════════════
   BACKGROUND
══════════════════════ */
.bg-layer {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
#particles-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.28;
  animation: blobDrift 16s ease-in-out infinite alternate;
}
.blob-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(249,115,22,0.45), rgba(253,186,116,0.2));
  top: -220px; right: -180px;
  animation-duration: 18s;
}
.blob-2 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(249,115,22,0.2), rgba(254,215,170,0.15));
  bottom: 100px; left: -180px;
  animation-duration: 22s; animation-delay: -8s;
}
@keyframes blobDrift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(24px,32px) scale(1.06); }
}

/* ══════════════════════
   LAYOUT HELPERS
══════════════════════ */
main { position: relative; z-index: 1; }
.container { max-width: 620px; margin: 0 auto; padding: 0 20px; }
.section-gap { padding: 56px 0; }

/* ══════════════════════
   REVEAL ANIMATION
══════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
  transition-delay: var(--card-delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { --card-delay: 0.08s; }
.delay-2 { --card-delay: 0.16s; }
.delay-3 { --card-delay: 0.24s; }
.delay-4 { --card-delay: 0.32s; }

/* ══════════════════════
   RIPPLE
══════════════════════ */
.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(249,115,22,0.15);
  transform: scale(0);
  animation: rippleAnim 0.55s linear;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* ══════════════════════
   HERO
══════════════════════ */
.hero {
  padding: 80px 20px 40px;
  text-align: center;
}
.hero-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
}

/* Logo */
.logo-wrap {
  position: relative;
  width: 116px; height: 116px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.logo-glow-ring {
  position: absolute; inset: -10px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--orange), #FBBF24, var(--orange-light), var(--orange));
  animation: spinSlow 5s linear infinite;
  opacity: 0.35;
  filter: blur(8px);
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

#hero-logo {
  position: relative; z-index: 1;
  width: 108px; height: 108px;
  object-fit: contain;
  background: var(--bg);
  border-radius: 22px;
  padding: 10px;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--border);
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

/* Brand name */
.brand-name {
  font-size: clamp(44px, 11vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--black);
}
/* Orange underline accent on the X */
.brand-name span { color: var(--orange); }

/* Tagline pill */
.tagline {
  font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--orange);
  background: var(--orange-dim);
  padding: 5px 16px;
  border-radius: 100px;
  border: 1px solid rgba(249,115,22,0.2);
}

/* Description */
.description {
  font-size: 16.5px; line-height: 1.7;
  color: var(--grey-mid);
  max-width: 390px;
}

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600;
  color: var(--grey-mid);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  50%     { box-shadow: 0 0 0 6px rgba(34,197,94,0.08); }
}

/* ══════════════════════
   CTA BUTTONS
══════════════════════ */
.cta-grid { display: flex; flex-direction: column; gap: 10px; }

.cta-btn {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--card);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s var(--bounce), box-shadow 0.3s var(--ease), border-color 0.3s;
  cursor: pointer;
  font-family: var(--font);
  color: var(--black);
  text-align: left;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(249,115,22,0.3);
}
.cta-btn:active { transform: translateY(0) scale(0.99); }

/* Accent left bar */
.cta-btn::before {
  content: '';
  position: absolute; left: 0; top: 16%; bottom: 16%;
  width: 3px; border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.cta-btn.whatsapp::before { background: #25D366; }
.cta-btn.website::before  { background: var(--orange); }
.cta-btn.booking::before  { background: var(--orange); }
.cta-btn.email::before    { background: var(--orange); }
.cta-btn:hover::before    { opacity: 1; }

/* Icon */
.btn-icon-wrap {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--bounce), background 0.3s;
}
.btn-icon-wrap svg { width: 20px; height: 20px; }
.cta-btn.whatsapp .btn-icon-wrap { background: rgba(37,211,102,0.1); color: #25D366; }
.cta-btn.website  .btn-icon-wrap { background: var(--orange-dim);    color: var(--orange); }
.cta-btn.booking  .btn-icon-wrap { background: var(--orange-dim);    color: var(--orange); }
.cta-btn.email    .btn-icon-wrap { background: var(--orange-dim);    color: var(--orange); }
.cta-btn:hover .btn-icon-wrap    { transform: scale(1.1) rotate(-4deg); }
.cta-btn.whatsapp:hover .btn-icon-wrap { background: rgba(37,211,102,0.18); }
.cta-btn.website:hover  .btn-icon-wrap,
.cta-btn.booking:hover  .btn-icon-wrap,
.cta-btn.email:hover    .btn-icon-wrap { background: rgba(249,115,22,0.18); }

/* Text */
.btn-content { flex: 1; display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.btn-label   { font-size: 15.5px; font-weight: 700; letter-spacing: -0.2px; }
.btn-sub     { font-size: 12px; color: var(--grey-mid); font-weight: 500; }

/* Arrow */
.btn-arrow {
  font-size: 17px; color: var(--grey-light);
  transition: transform 0.3s var(--ease), color 0.3s;
  flex-shrink: 0;
}
.cta-btn:hover .btn-arrow { color: var(--orange); transform: translateX(4px); }

/* ══════════════════════
   SECTION HEADER
══════════════════════ */
.section-header {
  text-align: center; margin-bottom: 36px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.section-pill {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  padding: 5px 14px; border-radius: 100px;
  border: 1px solid rgba(249,115,22,0.2);
}
.section-pill.light {
  color: #fff;
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
}
.section-title {
  font-size: clamp(24px,6vw,34px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: var(--black);
}
.section-sub {
  font-size: 15px; line-height: 1.7;
  color: var(--grey-mid); max-width: 400px;
}

/* ══════════════════════
   SERVICES
══════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 18px 22px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--bounce), box-shadow 0.35s var(--ease), border-color 0.3s;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), #FBBF24);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(249,115,22,0.22); }
.service-card:hover::after { transform: scaleX(1); }

.service-card-top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 6px;
}
.service-icon-wrap {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--orange-dim);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  transition: background 0.3s, transform 0.3s var(--bounce), color 0.3s;
}
.service-icon-wrap svg { width: 20px; height: 20px; }
.service-card:hover .service-icon-wrap {
  background: var(--orange); color: #fff;
  transform: rotate(-6deg) scale(1.07);
}

.card-tag {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  padding: 3px 9px; border-radius: 100px;
  white-space: nowrap; align-self: flex-start; margin-top: 4px;
}

.service-card h3 {
  font-size: 14.5px; font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--black); line-height: 1.3;
}
.service-card p {
  font-size: 12.5px; line-height: 1.65;
  color: var(--grey-mid);
}

/* ══════════════════════
   WHY HARXEL
══════════════════════ */
.why-grid { display: flex; flex-direction: column; gap: 10px; }

.why-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--bounce), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.why-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); border-color: rgba(249,115,22,0.25); }

.why-num {
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  color: var(--orange); opacity: 0.5;
  flex-shrink: 0; width: 24px;
}
.why-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--orange-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  transition: background 0.3s, color 0.3s, transform 0.3s var(--bounce);
}
.why-icon svg { width: 18px; height: 18px; }
.why-card:hover .why-icon { background: var(--orange); color: #fff; transform: scale(1.08); }

.why-text { flex: 1; }
.why-card h3 {
  font-size: 15.5px; font-weight: 700;
  letter-spacing: -0.3px; margin-bottom: 4px;
}
.why-card p { font-size: 13px; line-height: 1.65; color: var(--grey-mid); }

/* Orange accent right edge on hover */
.why-card::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 3px; border-radius: 3px 0 0 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover::after { opacity: 1; }

/* ══════════════════════
   STATS
══════════════════════ */
.stats-section { padding: 32px 0; }

.stats-grid {
  display: flex; align-items: center; justify-content: space-around;
  background: var(--black);
  border-radius: var(--r-xl);
  padding: 32px 16px;
}

.stat-item { flex: 1; text-align: center; }
.stat-value {
  display: flex; align-items: baseline; justify-content: center; gap: 1px;
}
.stat-number {
  font-size: clamp(32px, 8vw, 46px);
  font-weight: 800; color: #fff; line-height: 1;
}
.stat-plus {
  font-size: 20px; font-weight: 800;
  color: var(--orange);
}
.stat-unit {
  font-size: 14px; font-weight: 700;
  color: var(--orange); margin-left: 2px;
}
.stat-label {
  font-size: 11.5px; font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin-top: 5px; letter-spacing: 0.3px;
}
.stat-divider {
  width: 1px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,0.1);
}

/* ══════════════════════
   SOCIAL
══════════════════════ */
.social-grid { display: flex; flex-direction: column; gap: 10px; }

.social-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: var(--card);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s var(--bounce), box-shadow 0.3s var(--ease), border-color 0.3s;
  position: relative; overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.social-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.social-btn:active { transform: translateY(0) scale(0.99); }

.social-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--bounce);
}
.social-icon svg { width: 20px; height: 20px; }
.social-btn.instagram .social-icon {
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: #fff;
}
.social-btn.facebook .social-icon { background: #1877F2; color: #fff; }
.social-btn:hover .social-icon { transform: scale(1.08) rotate(-5deg); }

.social-info { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.social-name   { font-size: 14.5px; font-weight: 700; }
.social-handle { font-size: 12px; color: var(--grey-mid); font-weight: 500; }

.social-follow {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.4px;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 5px 14px; border-radius: 100px;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}
.social-btn:hover .social-follow { background: var(--orange); color: #fff; }

/* ══════════════════════
   FINAL CTA
══════════════════════ */
.final-cta { padding: 32px 0 64px; }

.final-cta-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-2xl);
  background: var(--black);
  padding: 56px 28px;
  text-align: center;
}

/* Subtle dot grid */
.final-cta-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Orange glow orb */
.final-cta-glow {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.22) 0%, transparent 70%);
  top: -140px; right: -80px;
  pointer-events: none;
}

.final-cta-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}

.final-cta-title {
  font-size: clamp(26px, 7vw, 40px);
  font-weight: 800; letter-spacing: -1px;
  color: #fff; line-height: 1.15;
}
/* Highlight "Transform" */
.final-cta-title em { color: var(--orange); font-style: normal; }

.final-cta-sub {
  font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 360px;
}

.final-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff;
  font-family: var(--font);
  font-size: 15.5px; font-weight: 700;
  padding: 15px 28px; border-radius: 100px;
  box-shadow: var(--shadow-orange);
  transition: transform 0.3s var(--bounce), box-shadow 0.3s var(--ease), background 0.2s;
  position: relative; overflow: hidden; cursor: pointer;
}
.final-cta-btn svg { width: 17px; height: 17px; transition: transform 0.3s var(--ease); }
.final-cta-btn:hover {
  transform: translateY(-2px) scale(1.04);
  background: #ea6b0e;
  box-shadow: 0 12px 40px rgba(249,115,22,0.35);
}
.final-cta-btn:hover svg { transform: translateX(4px); }
.final-cta-btn:active { transform: scale(0.98); }

/* ══════════════════════
   FOOTER
══════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: var(--bg-soft);
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 9px; }
.footer-logo {
  width: 30px; height: 30px; object-fit: contain;
  border-radius: 8px; background: #fff;
  padding: 4px; box-shadow: var(--shadow-xs);
}
.footer-name {
  font-size: 17px; font-weight: 800; letter-spacing: -0.5px;
  color: var(--black);
}
.footer-links {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600;
}
.footer-links a {
  color: var(--grey-mid);
  padding: 4px 10px; border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.footer-links a:hover { color: var(--orange); background: var(--orange-dim); }
.footer-links a + a::before { content: '·'; margin-right: 4px; color: var(--grey-light); }
.footer-copy  { font-size: 12px; color: var(--grey-mid); font-weight: 500; }
.footer-credit { font-size: 11.5px; color: var(--grey-light); }

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { padding: 28px 12px; gap: 0; }
  .stat-item { padding: 0 6px; }
  .stat-divider { height: 36px; }
  .hero { padding: 60px 16px 32px; }
  .section-gap { padding: 44px 0; }
  .final-cta-card { padding: 40px 18px; }
  .final-cta-btn { font-size: 15px; padding: 14px 22px; }
}

@media (min-width: 520px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 640px) {
  .container { padding: 0 28px; }
  .why-grid { flex-direction: column; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
