/* ═══════════════════════════════════════════
   KALONGA SKINS — PREMIUM DARK THEME
   ═══════════════════════════════════════════ */

:root {
  --orange:    #ff7a00;
  --orange2:   #ff9500;
  --orange-glow: rgba(255,122,0,0.35);
  --bg:        #050505;
  --surface:   #0e0e0e;
  --surface2:  #161616;
  --glass:     rgba(255,122,0,.07);
  --glass-border: rgba(255,122,0,.18);
  --text:      #f5f5f5;
  --muted:     #7a7a7a;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── CUSTOM CURSOR ── */
#cursor {
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed; top:0; left:0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: screen;
}
#cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,122,0,.5);
  border-radius: 50%;
  position: fixed; top:0; left:0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .12s ease, width .2s, height .2s, border-color .2s;
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor { width:20px; height:20px; background: var(--orange2); }
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width:60px; height:60px; border-color: var(--orange); }

/* ── SCROLL BAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed; top:0; left:0; right:0; z-index: 999;
  padding: 20px 6%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, backdrop-filter .4s, padding .3s;
}
nav.scrolled {
  background: rgba(5,5,5,.85);
  backdrop-filter: blur(20px);
  padding: 14px 6%;
  border-bottom: 1px solid rgba(255,122,0,.12);
}
.logo {
  font-family: var(--font-head);
  font-size: 1.9rem;
  letter-spacing: 2px;
}
.logo span { color: var(--orange); }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: .85rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom:-4px; left:0; right:100%;
  height: 1px; background: var(--orange);
  transition: right .3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600 !important;
  font-size: .82rem !important;
  letter-spacing: 1px;
  transition: box-shadow .3s, transform .2s !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { box-shadow: 0 0 28px rgba(255,122,0,.6); transform:translateY(-2px); }

.burger { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.burger span { display:block; width:24px; height:2px; background:var(--text); transition:.3s; }

/* ── CANVAS PARTICLE BG ── */
#particle-canvas {
  position: fixed; inset:0; z-index:0;
  pointer-events: none; opacity:.6;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 0 6%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content:'';
  position:absolute;
  width:800px; height:800px;
  background: radial-gradient(circle, rgba(255,122,0,.22) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: blobPulse 6s ease-in-out infinite;
  pointer-events:none;
}
.hero::after {
  content:'';
  position:absolute;
  width:400px; height:400px;
  background: radial-gradient(circle, rgba(255,149,0,.12) 0%, transparent 70%);
  bottom: 10%; left: 5%;
  animation: blobPulse 8s ease-in-out infinite reverse;
  pointer-events:none;
}

@keyframes blobPulse {
  0%,100% { transform: scale(1) translate(0,0); opacity:.8; }
  50%      { transform: scale(1.12) translate(30px,20px); opacity:1; }
}

.hero-content {
  flex: 1; max-width: 600px; position: relative; z-index:2;
}

.hero-badge {
  display: inline-flex; align-items:center; gap:8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 6px 16px; border-radius: 40px;
  font-size: .75rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange2); margin-bottom: 28px;
  backdrop-filter: blur(10px);
  opacity:0; transform: translateY(30px);
  animation: fadeUp .8s .2s forwards;
}
.hero-badge::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background:var(--orange);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(4.5rem, 9vw, 8.5rem);
  line-height: .95;
  letter-spacing: 1px;
  opacity:0; transform: translateY(60px);
  animation: fadeUp .9s .4s forwards;
}
.hero h1 .accent { color: var(--orange); display:block; }
.hero h1 .stroke {
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
}

.hero-sub {
  margin-top: 20px;
  font-size: 1rem; color: var(--muted);
  font-weight: 400; line-height:1.7; max-width:440px;
  opacity:0; transform:translateY(30px);
  animation: fadeUp .8s .65s forwards;
}

.hero-btns {
  display: flex; gap:16px; margin-top: 36px; flex-wrap:wrap;
  opacity:0; transform:translateY(30px);
  animation: fadeUp .8s .85s forwards;
}

.btn-primary {
  background: var(--orange);
  padding: 15px 32px; border-radius: 50px;
  font-weight: 700; font-size: .9rem; letter-spacing:.5px;
  transition: .3s; border:none; cursor:pointer; color:#fff;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-primary:hover {
  box-shadow: 0 0 50px rgba(255,122,0,.65);
  transform: translateY(-4px);
}
.btn-primary svg { transition: transform .3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
  padding: 15px 32px; border-radius: 50px;
  border: 1.5px solid rgba(255,122,0,.4);
  font-weight: 600; font-size: .9rem;
  color: var(--text); transition: .3s; cursor:pointer;
  background: transparent; display:inline-flex; align-items:center; gap:8px;
}
.btn-outline:hover {
  border-color: var(--orange);
  background: rgba(255,122,0,.08);
  transform: translateY(-4px);
}

.hero-stats {
  display:flex; gap:40px; margin-top:48px;
  opacity:0; transform:translateY(20px);
  animation: fadeUp .8s 1.05s forwards;
}
.stat-item { display:flex; flex-direction:column; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem; color: var(--orange);
  line-height:1;
}
.stat-label { font-size: .75rem; color: var(--muted); letter-spacing:1px; margin-top:4px; }

/* Floating laptop mockup */
.hero-visual {
  flex:1; display:flex; justify-content:center; align-items:center;
  position: relative; z-index:2;
  opacity:0; transform:translateX(80px);
  animation: fadeLeft 1s .6s forwards;
}

.laptop-wrap {
  position:relative; width:520px; max-width:90vw;
  animation: floatLaptop 4s ease-in-out infinite;
}

@keyframes floatLaptop {
  0%,100% { transform: translateY(0) rotateY(-8deg); }
  50%      { transform: translateY(-22px) rotateY(-5deg); }
}

.laptop-svg {
  width:100%; filter: drop-shadow(0 0 60px rgba(255,122,0,.35));
}

.laptop-glow {
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 80%, rgba(255,122,0,.25), transparent 65%);
  pointer-events:none;
}

.badge-float {
  position:absolute;
  background: rgba(14,14,14,.9);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius:12px;
  padding: 10px 16px;
  display:flex; align-items:center; gap:10px;
  font-size:.82rem; white-space:nowrap;
}
.badge-float .dot { width:8px; height:8px; border-radius:50%; background:var(--orange); animation:pulse 2s infinite; }
.badge-1 { top:8%; right:-10%; animation: floatBadge1 5s ease-in-out infinite; }
.badge-2 { bottom:12%; left:-8%; animation: floatBadge2 6s ease-in-out infinite; }
@keyframes floatBadge1 { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }
@keyframes floatBadge2 { 0%,100%{transform:translateY(0);} 50%{transform:translateY(10px);} }

.scroll-hint {
  position:absolute; bottom:32px; left:50%;
  transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  opacity:.5; z-index:2;
  animation: fadeUp .6s 1.4s both;
}
.scroll-hint span { font-size:.7rem; letter-spacing:2px; text-transform:uppercase; }
.scroll-line {
  width:1.5px; height:50px;
  background: linear-gradient(var(--orange), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%{height:0;opacity:1;} 100%{height:50px;opacity:0;} }

/* ══════════ SECTION SHARED ══════════ */
section { position:relative; z-index:1; }

.section-header {
  text-align:center; margin-bottom:70px;
}
.section-tag {
  display:inline-block;
  font-size:.7rem; letter-spacing:3px; text-transform:uppercase;
  color: var(--orange); font-weight:600; margin-bottom:14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height:.95;
}
.section-title span { color:var(--orange); }
.section-sub {
  font-size:.95rem; color:var(--muted); margin-top:14px; max-width:500px; margin-left:auto; margin-right:auto;
}

.reveal { opacity:0; transform:translateY(50px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-50px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(50px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* ══════════ BRANDS TICKER ══════════ */
.brands-section {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  overflow:hidden;
}
.ticker-label {
  text-align:center;
  font-size:.68rem; letter-spacing:3px; color:var(--muted);
  text-transform:uppercase; margin-bottom:18px;
}
.ticker-track {
  display:flex; gap:60px;
  animation: tickerScroll 20s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state:paused; }
.ticker-item {
  font-family: var(--font-head);
  font-size:1.5rem; letter-spacing:3px;
  color: rgba(255,255,255,.15);
  white-space:nowrap;
  transition: color .3s;
}
.ticker-item:hover { color: var(--orange); }
@keyframes tickerScroll { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ══════════ PROCESS SECTION ══════════ */
.process-section { padding: 120px 6%; }

.process-grid {
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:24px; position:relative;
}

.process-grid::before {
  content:'';
  position:absolute;
  top:64px; left:12%; right:12%;
  height:1px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange), transparent);
  opacity:.3; z-index:0;
}

.process-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px 28px 32px;
  position:relative; overflow:hidden;
  backdrop-filter: blur(8px);
  transition: transform .4s, box-shadow .4s, border-color .4s;
  z-index:1;
}
.process-card::before {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(circle at 50% 0%, rgba(255,122,0,.1), transparent 60%);
  opacity:0; transition: opacity .4s;
}
.process-card:hover { transform:translateY(-12px); border-color:rgba(255,122,0,.4); box-shadow: 0 30px 80px rgba(255,122,0,.15); }
.process-card:hover::before { opacity:1; }

.step-number {
  font-family: var(--font-head);
  font-size: 5rem; line-height:1;
  color: rgba(255,122,0,.08);
  position:absolute; top:16px; right:20px;
}

.step-icon {
  width:52px; height:52px;
  background: rgba(255,122,0,.12);
  border: 1px solid rgba(255,122,0,.25);
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
  transition: background .3s;
}
.process-card:hover .step-icon { background:rgba(255,122,0,.2); }
.step-icon svg { width:24px; height:24px; stroke:var(--orange); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }

.step-label {
  font-size:.68rem; letter-spacing:2.5px; text-transform:uppercase;
  color: var(--orange); margin-bottom:8px; font-weight:600;
}
.step-title {
  font-family: var(--font-head);
  font-size:1.8rem; letter-spacing:.5px; margin-bottom:10px;
}
.step-desc { font-size:.875rem; color:var(--muted); line-height:1.7; }

/* ══════════ GALLERY SECTION ══════════ */
.gallery-section { padding:120px 6%; }

.gallery-tabs {
  display:flex; justify-content:center; gap:12px;
  margin-bottom:40px; flex-wrap:wrap;
}
.tab-btn {
  padding:8px 20px; border-radius:30px;
  border:1px solid rgba(255,122,0,.2);
  background:transparent; color:var(--muted);
  font-family:var(--font-body); font-size:.85rem;
  cursor:pointer; transition:.3s;
}
.tab-btn:hover, .tab-btn.active {
  background:rgba(255,122,0,.15); color:var(--orange);
  border-color:var(--orange);
}

.gallery-grid {
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap:20px;
}
.gallery-item {
  border-radius:16px; overflow:hidden;
  position:relative; aspect-ratio:4/3;
  transition: transform .4s;
}
.gallery-item:hover { transform:scale(1.03); }
.gallery-img {
  width:100%; height:100%;
  position:relative;
}
.gallery-img img {
  width:100%; height:100%; object-fit:cover;
  transition: transform .5s;
}
.gallery-placeholder {
  width:100%; height:100%;
  background: var(--surface);
  border:1px dashed rgba(255,122,0,.3);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:12px; color:var(--muted);
}
.gallery-placeholder svg { stroke:var(--orange); stroke-width:1.5; fill:none; }

.gallery-overlay {
  position:absolute; inset:0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,.85));
  display:flex; flex-direction:column;
  justify-content:flex-end;
  padding:20px;
  opacity:0; transition: opacity .4s;
}
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-item:hover .gallery-img img { transform:scale(1.1); }
.gallery-cat {
  font-size:.65rem; letter-spacing:2px;
  text-transform:uppercase; color:var(--orange);
  font-weight:600;
}
.gallery-overlay h4 {
  font-family:var(--font-head); font-size:1.3rem;
  margin-top:4px;
}

.gallery-more { text-align:center; margin-top:40px; }

/* ══════════ LIVE PREVIEW SECTION ══════════ */
.preview-section { padding:120px 6%; }

.preview-container {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:60px;
  max-width:1100px; margin:0 auto;
}

.preview-upload {
  display:flex; flex-direction:column; gap:24px;
}

.upload-zone {
  border: 2px dashed rgba(255,122,0,.3);
  border-radius:20px; padding:48px 24px;
  text-align:center; cursor:pointer;
  transition: .3s; background:var(--surface);
}
.upload-zone:hover {
  border-color: var(--orange);
  background:rgba(255,122,0,.05);
}
.upload-zone svg {
  stroke:var(--orange); stroke-width:1.5; fill:none;
  margin:0 auto 16px; display:block;
}
.upload-zone p { font-size:1rem; color:var(--text); margin-bottom:8px; }
.upload-zone span { font-size:.75rem; color:var(--muted); }

.preview-controls {
  background:var(--surface);
  border:1px solid rgba(255,255,255,.06);
  border-radius:16px; padding:24px;
  display:flex; flex-wrap:wrap; gap:12px;
}
.ctrl-btn {
  padding:10px 16px; border-radius:10px;
  border:1px solid rgba(255,122,0,.25);
  background:rgba(255,122,0,.08); color:var(--text);
  font-family:var(--font-body); font-size:.82rem;
  cursor:pointer; transition:.3s;
  display:flex; align-items:center; gap:6px;
}
.ctrl-btn svg { stroke:var(--orange); stroke-width:1.5; fill:none; }
.ctrl-btn:hover { background:var(--orange); color:#fff; border-color:var(--orange); }
.ctrl-btn:hover svg { stroke:#fff; }
.ctrl-row {
  display:flex; align-items:center; gap:12px; width:100%;
  margin-top:4px;
}
.ctrl-row label { font-size:.75rem; color:var(--muted); width:50px; }
.ctrl-row input[type="range"] {
  flex:1; accent-color:var(--orange);
}

/* Laptop Mockup for Preview */
.preview-canvas {
  display:flex; align-items:center; justify-content:center;
  min-height:400px;
}

.laptop-mockup {
  width:380px; position:relative;
}
.laptop-body {
  position:relative;
}
.laptop-screen {
  background:var(--surface2);
  border:2px solid rgba(255,122,0,.2);
  border-radius:16px 16px 4px 4px;
  padding:12px;
  position:relative;
}
.laptop-lid {
  background:linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border-radius:8px;
  aspect-ratio:16/10;
  position:relative;
  overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,122,0,.15);
}
.laptop-lid img {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transition: transform .3s;
}
.lid-placeholder {
  color:var(--muted); font-size:.85rem; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:12px;
}
.lid-placeholder::before {
  content:'🎨'; font-size:2rem;
}
.laptop-base {
  height:24px;
  background:linear-gradient(180deg, #1e1e1e, #141414);
  border-radius:0 0 12px 12px;
  margin-top:2px;
  position:relative;
  border:2px solid rgba(255,122,0,.15);
  border-top:none;
}
.laptop-trackpad {
  width:80px; height:16px;
  background:rgba(255,255,255,.05);
  border-radius:0 0 6px 6px;
  position:absolute; left:50%; transform:translateX(-50%);
  top:2px;
}
.laptop-shadow {
  height:16px; margin-top:12px;
  background:radial-gradient(ellipse, rgba(255,122,0,.2), transparent 70%);
  filter:blur(8px);
}

/* ══════════ PRICING SECTION ══════════ */
.pricing-section { padding:120px 6%; }

.pricing-grid {
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:28px; max-width:1000px; margin:0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.06);
  border-radius:24px; padding:40px 32px;
  position:relative; overflow:hidden;
  transition: transform .4s, border-color .4s, box-shadow .4s;
}
.pricing-card::after {
  content:'';
  position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  opacity:0; transition:opacity .4s;
}
.pricing-card.featured {
  border-color: rgba(255,122,0,.35);
  background: linear-gradient(145deg, rgba(255,122,0,.08), var(--surface));
}
.pricing-card.featured::after { opacity:1; }
.pricing-card:hover { transform:translateY(-10px); border-color:rgba(255,122,0,.4); box-shadow:0 40px 90px rgba(255,122,0,.12); }
.pricing-card:hover::after { opacity:1; }

.pricing-badge {
  display:inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  font-size:.68rem; font-weight:700; letter-spacing:1.5px;
  text-transform:uppercase; padding:5px 14px; border-radius:20px;
  color:#fff; margin-bottom:20px;
}
.pricing-name {
  font-family: var(--font-head);
  font-size:2.2rem; margin-bottom:6px;
}
.pricing-desc { font-size:.875rem; color:var(--muted); margin-bottom:28px; }

.pricing-price {
  display:flex; align-items:baseline; gap:4px; margin-bottom:6px;
}
.pricing-currency { font-size:.9rem; color:var(--orange); font-weight:600; }
.pricing-amount {
  font-family: var(--font-head);
  font-size:3.4rem; color:var(--orange); line-height:1;
}

.pricing-old {
  font-size:.82rem; color:var(--muted);
  text-decoration:line-through; margin-bottom:28px;
}

.pricing-features {
  list-style:none; margin-bottom:32px; display:flex; flex-direction:column; gap:12px;
}
.pricing-features li {
  display:flex; align-items:center; gap:10px;
  font-size:.875rem; color:#ccc;
}
.pricing-features li .check {
  width:18px; height:18px; border-radius:50%;
  background:rgba(255,122,0,.15);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.pricing-features li .check svg { width:10px; height:10px; stroke:var(--orange); stroke-width:2.5; fill:none; }

.btn-book {
  width:100%; padding:14px;
  border-radius:50px; border:none; cursor:pointer;
  font-family:var(--font-body); font-weight:700; font-size:.9rem;
  letter-spacing:.5px; transition:.3s;
}
.btn-book.solid { background:var(--orange); color:#fff; }
.btn-book.solid:hover { box-shadow:0 0 40px rgba(255,122,0,.55); transform:translateY(-3px); }
.btn-book.ghost { background:transparent; border:1.5px solid rgba(255,122,0,.35); color:var(--text); }
.btn-book.ghost:hover { border-color:var(--orange); background:rgba(255,122,0,.08); transform:translateY(-3px); }

.deposit-note {
  text-align:center; margin-top:40px;
  font-size:.82rem; color:var(--muted);
}
.deposit-note span { color:var(--orange); }

/* ══════════ TESTIMONIALS SECTION ══════════ */
.testimonials-section { padding:120px 6%; overflow:hidden; }

.testimonials-track {
  display:flex; gap:24px;
  animation: marqueeScroll 40s linear infinite;
  width:max-content;
}
.testimonials-track:hover { animation-play-state:paused; }

@keyframes marqueeScroll {
  0% { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}

.testimonial-card {
  background:var(--surface);
  border:1px solid rgba(255,255,255,.06);
  border-radius:20px; padding:32px;
  width:320px; flex-shrink:0;
  transition: transform .3s, border-color .3s;
}
.testimonial-card:hover {
  transform:translateY(-6px);
  border-color:rgba(255,122,0,.25);
}
.testimonial-stars {
  display:flex; gap:4px; margin-bottom:16px;
}
.testimonial-text {
  font-size:.9rem; color:#ccc; line-height:1.7;
  margin-bottom:20px;
}
.testimonial-author .name {
  font-size:.85rem; font-weight:600; color:var(--orange);
}

/* ══════════ BOOKING SECTION ══════════ */
.booking-section { padding:120px 6%; }

.booking-inner {
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
  max-width:1100px; margin:0 auto;
}

.booking-info h2 {
  font-family:var(--font-head); font-size:clamp(2.5rem,4vw,3.8rem); line-height:.95;
  margin-bottom:20px;
}
.booking-info h2 span { color:var(--orange); }
.booking-info p { font-size:.95rem; color:var(--muted); line-height:1.8; margin-bottom:28px; }

.contact-links { display:flex; flex-direction:column; gap:16px; }
.contact-link {
  display:flex; align-items:center; gap:14px;
  background:var(--glass); border:1px solid var(--glass-border);
  border-radius:14px; padding:14px 20px;
  transition:.3s; backdrop-filter:blur(8px);
}
.contact-link:hover { border-color:var(--orange); transform:translateX(6px); }
.contact-link .icon {
  width:40px; height:40px; border-radius:10px;
  background:rgba(255,122,0,.15);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-link .icon svg { width:20px; height:20px; stroke:var(--orange); fill:none; stroke-width:1.8; stroke-linecap:round; }
.contact-link .info span { display:block; font-size:.7rem; color:var(--muted); letter-spacing:1px; text-transform:uppercase; }
.contact-link .info strong { font-size:.95rem; }

/* Booking form */
.booking-form {
  background:var(--surface);
  border:1px solid rgba(255,255,255,.07);
  border-radius:24px; padding:40px 36px;
}
.booking-form h3 {
  font-family:var(--font-head); font-size:1.9rem; margin-bottom:28px;
}
.booking-form h3 span { color:var(--orange); }

.form-group { margin-bottom:20px; }
.form-group label {
  display:block; font-size:.75rem; color:var(--muted);
  letter-spacing:1.5px; text-transform:uppercase; margin-bottom:8px; font-weight:600;
}
.form-group label small {
  color:rgba(255,255,255,.3); font-weight:400;
  text-transform:none; letter-spacing:0;
}
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:13px 16px;
  background:var(--surface2);
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px; color:var(--text);
  font-family:var(--font-body); font-size:.9rem;
  outline:none; transition:border-color .3s;
  appearance:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--orange); box-shadow:0 0 0 3px rgba(255,122,0,.12); }
.form-group textarea { height:100px; resize:none; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

/* File Upload */
.file-upload {
  position:relative;
  background:var(--surface2);
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;
  overflow:hidden;
  cursor:pointer;
  transition:border-color .3s;
}
.file-upload:hover { border-color:var(--orange); }
.file-upload input[type="file"] {
  position:absolute; inset:0; opacity:0; cursor:pointer; z-index:2;
}
.file-upload-text {
  padding:20px 16px;
  display:flex; align-items:center; gap:12px;
  color:var(--muted); font-size:.85rem;
}
.file-upload-text svg { stroke:var(--orange); stroke-width:1.5; fill:none; flex-shrink:0; }

/* Checkbox */
.checkbox-group { margin-top:4px; }
.checkbox-label {
  display:flex !important; align-items:center; gap:12px !important;
  cursor:pointer !important; font-size:.85rem !important;
  color:var(--text) !important; text-transform:none !important;
  letter-spacing:0 !important;
}
.checkbox-label input { display:none; }
.checkmark {
  width:20px; height:20px;
  border:2px solid rgba(255,122,0,.4);
  border-radius:5px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; transition:.3s;
}
.checkmark::after {
  content:''; width:10px; height:10px;
  background:var(--orange); border-radius:2px;
  opacity:0; transform:scale(0);
  transition:.3s;
}
.checkbox-label input:checked + .checkmark { border-color:var(--orange); }
.checkbox-label input:checked + .checkmark::after { opacity:1; transform:scale(1); }

/* Price Summary */
.price-summary {
  background:rgba(255,122,0,.08);
  border:1px solid rgba(255,122,0,.2);
  border-radius:12px; padding:16px 20px;
  margin-bottom:16px;
}
.price-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:6px 0;
  font-size:.85rem; color:var(--muted);
}
.price-row strong { color:var(--text); font-weight:600; }
.price-row.total {
  border-top:1px solid rgba(255,122,0,.2); margin-top:8px; padding-top:12px;
  font-size:1rem; color:var(--text);
}
.price-row.total strong { color:var(--orange); font-size:1.2rem; }

.btn-submit {
  width:100%; padding:15px;
  background:var(--orange); border:none; border-radius:50px;
  color:#fff; font-family:var(--font-body);
  font-size:.95rem; font-weight:700; letter-spacing:.5px;
  cursor:pointer; transition:.3s; margin-top:8px;
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.btn-submit:hover { box-shadow:0 0 50px rgba(255,122,0,.55); transform:translateY(-3px); }

.form-success {
  text-align:center; padding:40px 20px;
}
.form-success .check-icon {
  width:64px; height:64px; border-radius:50%;
  background:rgba(255,122,0,.15);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 16px;
}
.form-success .check-icon svg { width:32px; height:32px; stroke:var(--orange); fill:none; stroke-width:2; }
.form-success h4 { font-family:var(--font-head); font-size:1.8rem; margin-bottom:8px; }
.form-success p { color:var(--muted); font-size:.9rem; }

/* ══════════ LOCATION SECTION ══════════ */
.location-section { padding:80px 6%; }

.location-card {
  background:var(--surface);
  border:1px solid rgba(255,255,255,.06);
  border-radius:24px; padding:50px;
  display:flex; align-items:center; gap:50px;
  max-width:900px; margin:0 auto;
  transition:.4s;
}
.location-card:hover { border-color:rgba(255,122,0,.3); box-shadow:0 30px 80px rgba(255,122,0,.08); }

.location-icon {
  width:80px; height:80px; border-radius:20px;
  background:rgba(255,122,0,.1); border:1px solid rgba(255,122,0,.2);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.location-icon svg { width:36px; height:36px; stroke:var(--orange); fill:none; stroke-width:1.6; stroke-linecap:round; }

.location-text h3 { font-family:var(--font-head); font-size:2rem; margin-bottom:8px; }
.location-text h3 span { color:var(--orange); }
.location-text p { color:var(--muted); font-size:.9rem; line-height:1.7; }
.location-text .mobile-note {
  margin-top:14px; display:flex; align-items:center; gap:8px;
  font-size:.82rem; color:var(--orange2);
}
.location-text .mobile-note svg { width:16px; height:16px; stroke:var(--orange); fill:none; stroke-width:2; stroke-linecap:round; }

/* ══════════ FOOTER ══════════ */
footer {
  background:var(--surface);
  border-top:1px solid rgba(255,255,255,.05);
  padding:60px 6% 36px;
}
.footer-top {
  display:flex; justify-content:space-between; align-items:flex-start;
  flex-wrap:wrap; gap:40px; margin-bottom:48px;
}
.footer-brand .logo { font-size:2.2rem; margin-bottom:10px; }
.footer-brand p { color:var(--muted); font-size:.875rem; max-width:280px; line-height:1.7; }

.footer-links h4 {
  font-size:.75rem; letter-spacing:2px; text-transform:uppercase;
  color:var(--muted); margin-bottom:16px; font-weight:600;
}
.footer-links ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links ul a { font-size:.875rem; color:rgba(255,255,255,.6); transition:color .3s; }
.footer-links ul a:hover { color:var(--orange); }

.footer-social {
  display:flex; gap:12px; margin-top:20px;
}
.social-btn {
  width:42px; height:42px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  transition:.3s; cursor:pointer;
}
.social-btn:hover { background:rgba(255,122,0,.15); border-color:rgba(255,122,0,.3); transform:translateY(-3px); }
.social-btn svg { width:18px; height:18px; stroke:var(--text); fill:none; stroke-width:1.8; stroke-linecap:round; transition:.3s; }
.social-btn:hover svg { stroke:var(--orange); }

.footer-bottom {
  border-top:1px solid rgba(255,255,255,.05);
  padding-top:28px;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:12px;
}
.footer-bottom p { font-size:.8rem; color:var(--muted); }
.footer-bottom a { color:var(--orange); }

.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:900;
  width:58px; height:58px; border-radius:50%;
  background:#25d366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 30px rgba(37,211,102,.4);
  cursor:pointer; transition:.3s;
  animation: waPop 3s 2s ease-in-out infinite;
}
.wa-float:hover { transform:scale(1.12); box-shadow:0 8px 40px rgba(37,211,102,.6); }
.wa-float svg { width:28px; height:28px; fill:#fff; }
@keyframes waPop { 0%,100%{box-shadow:0 6px 30px rgba(37,211,102,.4);} 50%{box-shadow:0 6px 50px rgba(37,211,102,.7);} }

/* ══════════ KEYFRAMES ══════════ */
@keyframes fadeUp  { to { opacity:1; transform:translateY(0); } }
@keyframes fadeLeft{ to { opacity:1; transform:translateX(0); } }
@keyframes pulse {
  0%,100%{ box-shadow:0 0 0 0 rgba(255,122,0,.5); }
  50%    { box-shadow:0 0 0 6px rgba(255,122,0,0); }
}

/* ══════════ RESPONSIVE ══════════ */
@media(max-width:1024px) {
  .hero { flex-direction:column; text-align:center; padding-top:120px; }
  .hero-content { max-width:100%; }
  .hero-sub { margin:16px auto 0; }
  .hero-btns { justify-content:center; }
  .hero-stats { justify-content:center; }
  .hero-visual { margin-top:40px; }
  .laptop-wrap { width:380px; }
  .process-grid { grid-template-columns:1fr 1fr; }
  .process-grid::before { display:none; }
  .pricing-grid { grid-template-columns:1fr; max-width:420px; }
  .booking-inner { grid-template-columns:1fr; gap:50px; }
  .preview-container { grid-template-columns:1fr; }
}

@media(max-width:768px) {
  .nav-links { display:none; }
  .nav-links.open {
    display:flex; flex-direction:column;
    position:fixed; inset:0; top:72px;
    background:rgba(5,5,5,.97); backdrop-filter:blur(20px);
    align-items:center; justify-content:center; gap:32px;
    z-index:998;
  }
  .nav-links a { font-size:1.1rem; }
  .burger { display:flex; }
  .process-grid { grid-template-columns:1fr; }
  .location-card { flex-direction:column; text-align:center; padding:36px 28px; }
  .footer-top { flex-direction:column; }
  .booking-form { padding:28px 20px; }
  .preview-container { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  body { cursor:auto; }
  #cursor, #cursor-ring { display:none; }
}

@media(max-width:480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonial-card { width:280px; }
  .hero-stats { gap:24px; }
  .stat-num { font-size:1.8rem; }
}







/* ===============================
   RESPONSIVE TABLE SCROLL FIX
   =============================== */

/* Make all tables responsive */
table {
  width: 100%;
  border-collapse: collapse;
}

/* Wrap tables automatically if not already wrapped */
table {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

/* Improve scrolling container feel */
table::-webkit-scrollbar {
  height: 6px;
}

table::-webkit-scrollbar-track {
  background: transparent;
}

table::-webkit-scrollbar-thumb {
  background: rgba(255, 122, 0, 0.4);
  border-radius: 10px;
}

/* Optional: prevent cells from shrinking */
td, th {
  white-space: nowrap;
}

.table-wrap {
  overflow-x: auto;
  width: 100%;
}

.table-wrap table {
  min-width: 600px;
}
