/* =======================================================
   style.css — Dilshad Designs
   Extracted from index.html | All styles preserved 100%
   ======================================================= */

/* ===================== CSS VARIABLES ===================== */
:root {
  --brand: #2F7A66;
  --brand-dark: #1e5548;
  --brand-light: #e8f5f1;
  --gold: #f5c62c;
  --gold-dark: #d4a91f;
  --bg: #ffffff;
  --bg-alt: #f8faf9;
  --surface: #ffffff;
  --border: #e5ede9;
  --text: #1a2e26;
  --text-muted: #5a7a6e;
  --text-light: #8fa99f;
  --nav-bg: rgba(255,255,255,0.92);
  --shadow: 0 4px 24px rgba(47,122,102,0.08);
  --shadow-hover: 0 12px 40px rgba(47,122,102,0.16);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

[data-theme="dark"] {
  --bg: #0d1a15;
  --bg-alt: #111f18;
  --surface: #162318;
  --border: #1e3328;
  --text: #e8f5f1;
  --text-muted: #8ec4b4;
  --text-light: #4a7a68;
  --nav-bg: rgba(13,26,21,0.95);
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

::selection { background: var(--brand); color: #fff; }

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.2; }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.section-title .accent { color: var(--brand); }

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 99px; }

/* ===================== PROGRESS BAR ===================== */
#page-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  z-index: 9999; width: 0%; transition: width 0.1s linear;
}

/* ===================== NAVIGATION ===================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}

.logo-mark {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.5px;
}
.logo-mark .gold { color: var(--gold); }
.logo-mark .green { color: var(--brand); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }

.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-muted);
  position: relative; padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--brand); border-radius: 99px;
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--brand); color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--brand-dark) !important; transform: translateY(-1px); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

/* Dark mode toggle */
#darkToggle {
  width: 40px; height: 40px;
  border: 1px solid var(--border); border-radius: 50%;
  background: var(--bg-alt); color: var(--text-muted);
  cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
#darkToggle:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Hamburger */
#hamburger {
  display: none; width: 40px; height: 40px;
  border: none; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
#hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all var(--transition);
}
#hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
#hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
#mobile-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  flex-direction: column; gap: 1rem;
  z-index: 999; transform: translateY(-100%);
  transition: transform var(--transition);
}
#mobile-menu.open { transform: translateY(0); }
#mobile-menu a {
  font-size: 1rem; font-weight: 500; color: var(--text-muted);
  padding: 0.5rem 0; border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
#mobile-menu a:hover { color: var(--brand); }

/* ===================== HERO ===================== */
#home {
  min-height: 100vh;
  padding-bottom: 1px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding-top: 68px;
}

.hero-bg-img {
  position: absolute; inset: 0;
  background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,25,20,0.75) 0%, rgba(47,122,102,0.45) 100%);
  z-index: 1;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15;
  animation: floatOrb 8s ease-in-out infinite alternate;
  z-index: 1;
}
.hero-orb-1 { width: 400px; height: 400px; background: var(--gold); top: -100px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 300px; height: 300px; background: var(--brand); bottom: -50px; left: -50px; animation-delay: 3s; }

@keyframes floatOrb { from { transform: translate(0,0) scale(1); } to { transform: translate(20px,20px) scale(1.1); } }

.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 720px;
  padding: 2rem 1.5rem;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 1.5rem;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(245,198,44,0.15);
  animation: fadeIn 0.6s ease both;
}
.hero-avatar img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.35rem 1rem; border-radius: 99px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
  animation: fadeIn 0.6s 0.2s ease both;
}
.hero-badge .dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-name {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800; letter-spacing: -2px;
  line-height: 1;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-name .gold { color: var(--gold); }
.hero-name .light { color: rgba(255,255,255,0.85); }

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.75); font-weight: 300;
  margin: 1rem 0 0.5rem;
  font-style: italic;
  animation: fadeUp 0.7s 0.35s ease both;
}

.hero-desc {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  max-width: 520px; margin: 0 auto 2rem;
  animation: fadeUp 0.7s 0.5s ease both;
}

.hero-btns {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  animation: fadeUp 0.7s 0.65s ease both;
}

.btn-primary {
  background: var(--brand); color: #fff;
  padding: 0.85rem 2rem; border-radius: 99px;
  font-weight: 600; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all var(--transition);
  border: 2px solid var(--brand);
}
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(47,122,102,0.35); }

.btn-outline {
  background: transparent; color: #fff;
  padding: 0.85rem 2rem; border-radius: 99px;
  font-weight: 600; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

.btn-gold {
  background: var(--gold); color: #1a2e26;
  padding: 0.85rem 2rem; border-radius: 99px;
  font-weight: 700; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid var(--gold);
  transition: all var(--transition);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,198,44,0.4); }

.hero-stats {
  display: flex; justify-content: center; gap: 3rem;
  margin-top: 1rem;
  animation: fadeUp 0.7s 0.8s ease both;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--gold); display: block; }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  animation: fadeIn 1.5s 1.5s ease both;
}
.scroll-hint-arrow { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.6); opacity: 0.4; } }

/* ===================== SECTIONS SHARED ===================== */
section { padding: 100px 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--brand); background: var(--brand-light);
  padding: 0.3rem 1rem; border-radius: 99px;
  margin-bottom: 0.75rem;
}

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===================== ABOUT ===================== */
#about { background: var(--bg-alt); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-img-wrap { position: relative; }
.about-img-wrap::before {
  content: ''; position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 2px solid var(--brand); border-radius: var(--radius);
  opacity: 0.3; z-index: 0;
}
.about-img-wrap img {
  position: relative; z-index: 1;
  width: 100%; max-height: 480px;
  object-fit: cover; object-position: top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-exp-badge {
  position: absolute; bottom: -20px; right: -20px; z-index: 2;
  background: var(--gold);
  color: #1a2e26; padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center; box-shadow: var(--shadow-hover);
}
.about-exp-badge strong { display: block; font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; line-height: 1; }
.about-exp-badge span { font-size: 0.75rem; font-weight: 600; opacity: 0.8; }

.about-text h2 { margin-bottom: 0.5rem; }
.about-text .greeting { font-size: 1.15rem; font-weight: 600; color: var(--text); margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1.5rem; }

.specializations { margin-top: 1.5rem; }
.spec-title { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; color: var(--text); }
.spec-title i { color: var(--brand); }

.spec-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.spec-tag {
  background: var(--brand-light); color: var(--brand);
  padding: 0.4rem 1rem; border-radius: 99px;
  font-size: 0.85rem; font-weight: 500;
  border: 1px solid rgba(47,122,102,0.15);
  transition: all var(--transition);
}
.spec-tag:hover { background: var(--brand); color: #fff; }

.more-tag { color: var(--brand); font-weight: 600; font-size: 0.9rem; margin-top: 0.5rem; }

/* ===================== GALLERY ===================== */
#gallery { background: var(--bg-alt); padding-top: 60px; }

.filter-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.45rem 1.2rem; border-radius: 99px;
  font-size: 0.85rem; font-weight: 500;
  border: 1.5px solid var(--border); background: var(--surface); color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--brand); color: #fff; border-color: var(--brand);
}

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.gallery-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
}
.gallery-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.gallery-card-img {
  height: 240px; overflow: hidden; position: relative;
}
.gallery-card-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform 0.5s ease;
  cursor: zoom-in;
}
.gallery-card:hover .gallery-card-img img { transform: scale(1.06); }

.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,20,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-overlay-text { color: #fff; font-size: 0.85rem; }
.gallery-card-overlay-text span { background: rgba(255,255,255,0.15); padding: 0.2rem 0.6rem; border-radius: 99px; margin-right: 0.4rem; font-size: 0.75rem; backdrop-filter: blur(4px); }

/* Zoom icon on hover */
.gallery-zoom-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.6);
  width: 48px; height: 48px; background: rgba(255,255,255,0.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-size: 1.1rem;
  opacity: 0; transition: all var(--transition); z-index: 2;
}
.gallery-card:hover .gallery-zoom-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.gallery-card-body { padding: 1.25rem; }
.gallery-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--text); }
.gallery-card-body p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }

.gallery-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.gallery-tag {
  font-size: 0.75rem; padding: 0.2rem 0.7rem; border-radius: 99px;
  background: var(--brand-light); color: var(--brand); font-weight: 500;
}
.gallery-tag.secondary { background: #ede9f8; color: #7c3aed; }
.gallery-tag.gray { background: var(--bg-alt); color: var(--text-muted); }

/* ===================== GALLERY SLIDER / CAROUSEL ===================== */
.gallery-slider {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--bg-alt);
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.gallery-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.gallery-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}

.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,20,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 1.25rem;
  z-index: 2;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-size: 0.85rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  opacity: 0;
  transition: opacity var(--transition), background var(--transition), transform 0.2s ease;
}
.slider-arrow:hover {
  background: var(--brand); color: #fff;
}
.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }
.gallery-card:hover .slider-arrow { opacity: 1; }
.gallery-slider[data-count="1"] .slider-arrow { display: none; }
.gallery-slider[data-count="1"] .slider-dots { display: none; }

.slider-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  z-index: 5;
  display: flex; gap: 6px; align-items: center;
}
.slider-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 1.5px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background var(--transition), transform 0.2s ease, width 0.2s ease;
  flex-shrink: 0;
}
.slider-dot.active {
  background: #fff;
  width: 18px; border-radius: 99px;
  border-color: #fff;
}

.gallery-zoom-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.6);
  width: 48px; height: 48px; background: rgba(255,255,255,0.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-size: 1.1rem;
  opacity: 0; transition: all var(--transition); z-index: 3;
}
.gallery-card:hover .gallery-slide.active .gallery-zoom-icon {
  opacity: 1; transform: translate(-50%, -50%) scale(1);
}

.gallery-card:hover .gallery-slide.active img { transform: scale(1.06); }
.gallery-slide img { transition: transform 0.5s ease; }

/* ===================== SERVICES ===================== */
#services { background: var(--bg); padding-top: 60px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); background: var(--surface); border-color: var(--brand); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff; margin-bottom: 1.25rem;
}

.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text); }
.service-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }

.service-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.service-features li {
  font-size: 0.85rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 0.5rem;
}
.service-features li i { color: var(--brand); font-size: 0.8rem; }

/* Fiverr CTA Banner */
.fiverr-banner {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.fiverr-banner::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.fiverr-banner h3 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.fiverr-banner p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; font-size: 1rem; }
.fiverr-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: #1a2e26;
  padding: 0.9rem 2.5rem; border-radius: 99px;
  font-weight: 700; font-size: 1rem;
  transition: all var(--transition);
}
.fiverr-btn:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,198,44,0.4); }
.fiverr-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  margin-top: 1rem;
}
.fiverr-badge i { color: var(--gold); }

/* ===================== WHY CHOOSE ME ===================== */
#why-me { background: var(--bg); padding-top: 60px; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 4rem; }

.why-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--brand); }

.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff; margin: 0 auto 1.25rem;
  transition: transform var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-5deg); }

.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text); }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* Trust Elements */
.trust-strip {
  background: linear-gradient(135deg, var(--brand-light), rgba(245,198,44,0.08));
  border: 1px solid rgba(47,122,102,0.15);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  text-align: center;
}

.trust-num {
  font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800;
  color: var(--brand); display: block; line-height: 1;
}
.trust-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; margin-top: 0.25rem; }

/* ===================== CONTACT ===================== */
#contact { background: var(--bg-alt); padding-top: 60px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }

.contact-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; }

.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.95rem;
}
.contact-item h4 { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--text); }
.contact-item a:hover { color: var(--brand); }

.social-links { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-link {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1rem;
  transition: all var(--transition);
}
.social-link:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-2px); }
.social-link.fiverr { font-weight: 700; font-size: 0.9rem; }

.availability-card {
  background: var(--brand-light);
  border: 1.5px solid rgba(47,122,102,0.2);
  border-radius: var(--radius); padding: 1.5rem;
  margin-top: 2rem; text-align: center;
}
.availability-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--brand); margin-bottom: 0.35rem; }
.availability-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }
.availability-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--brand); color: #fff;
  padding: 0.45rem 1.25rem; border-radius: 99px;
  font-size: 0.85rem; font-weight: 600;
}
.availability-pill .dot-white { width: 7px; height: 7px; background: #fff; border-radius: 50%; animation: blink 1.5s infinite; }

/* Urgency strip */
.urgency-strip {
  background: rgba(220, 38, 38, 0.06);
  border: 1.5px solid rgba(220, 38, 38, 0.2);
  border-left: 3px solid #dc2626;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.25rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.urgency-strip i {
  color: #dc2626;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.urgency-strip p {
  color: var(--text);
  font-size: 0.87rem;
  font-weight: 600;
  margin: 0;
}

.urgency-strip span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  font-weight: 400;
  margin-top: 0.15rem;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-urgency-note {
  font-size: 0.82rem; color: var(--brand); font-weight: 600;
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.4rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.5rem; }

.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--bg-alt); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-family: inherit;
  color: var(--text); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(47,122,102,0.12);
  background: var(--surface);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group .field-error { display: none; font-size: 0.78rem; color: #dc2626; margin-top: 0.35rem; }
.form-group.has-error input, .form-group.has-error textarea { border-color: #dc2626; }
.form-group.has-error .field-error { display: block; }

.honeypot { display: none; }

.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--brand); color: #fff;
  border: none; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-submit:hover:not(:disabled) { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(47,122,102,0.3); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
  display: none; text-align: center; padding: 2rem;
  color: var(--brand);
}
.form-success i { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { font-size: 1.2rem; font-weight: 700; }
.form-success p { color: var(--text-muted); margin-top: 0.5rem; }

/* ===================== FOOTER ===================== */
footer {
  background: #0d1a15; color: #fff;
  padding: 4rem 1.5rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

.footer-brand .logo-mark { margin-bottom: 1rem; font-size: 1.6rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social-link:hover { background: var(--gold); color: #1a2e26; }

.footer-contact-details {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.fcd-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  text-decoration: none;
}

.fcd-item i {
  font-size: 0.78rem;
  width: 14px;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.fcd-email {
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}

.fcd-email i {
  color: var(--brand);
}

.fcd-email:hover {
  color: var(--gold);
}

.fcd-item:not(.fcd-email):not(.fcd-loc):hover {
  color: rgba(255,255,255,0.75);
}

.fcd-loc {
  color: rgba(255,255,255,0.28);
  font-size: 0.82rem;
  cursor: default;
}

.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 1.25rem; color: rgba(255,255,255,0.9); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.83rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ===================== BACK TO TOP ===================== */
#backToTop {
  position: fixed; bottom: 5rem; right: 1.5rem; z-index: 998;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: #1a2e26; border: none;
  box-shadow: 0 4px 16px rgba(245,198,44,0.4);
  cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--transition);
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,198,44,0.5); }

/* ===================== CHATBOT ===================== */
#chatBot { position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 997; }

#chatToggle {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--brand); color: #fff; border: none;
  box-shadow: 0 4px 20px rgba(47,122,102,0.4);
  cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  position: relative;
}
#chatToggle:hover { background: var(--brand-dark); transform: scale(1.05); }
.chat-notification {
  position: absolute; top: -3px; right: -3px;
  width: 14px; height: 14px; background: #ef4444;
  border: 2px solid #fff; border-radius: 50%;
  animation: blink 2s infinite;
}

#chatWindow {
  position: absolute; bottom: 68px; left: 0;
  width: 340px;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  opacity: 0; visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transition: all var(--transition);
  overflow: hidden;
}
#chatWindow.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.chat-header {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: 0.75rem; }
.chat-avatar { width: 36px; height: 36px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; }
.chat-header h4 { color: #fff; font-size: 0.9rem; font-weight: 600; }
.chat-status { color: rgba(255,255,255,0.7); font-size: 0.75rem; display: flex; align-items: center; gap: 0.3rem; }
.chat-status::before { content: ''; width: 6px; height: 6px; background: #4ade80; border-radius: 50%; }
#chatClose { background: transparent; border: none; color: rgba(255,255,255,0.7); cursor: pointer; font-size: 1rem; padding: 0.25rem; transition: color var(--transition); }
#chatClose:hover { color: #fff; }

#chatMessages {
  height: 280px; padding: 1rem; overflow-y: auto;
  display: flex; flex-direction: column; gap: 0.75rem;
}
#chatMessages::-webkit-scrollbar { width: 3px; }
#chatMessages::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 99px; }

.chat-msg { display: flex; gap: 0.5rem; align-items: flex-end; }
.chat-msg.user { flex-direction: row-reverse; }
.chat-bubble {
  max-width: 240px; padding: 0.65rem 1rem;
  border-radius: 16px; font-size: 0.85rem; line-height: 1.5;
}
.bot .chat-bubble { background: var(--bg-alt); color: var(--text); border-bottom-left-radius: 4px; }
.user .chat-bubble { background: var(--brand); color: #fff; border-bottom-right-radius: 4px; }
.chat-msg-avatar { width: 26px; height: 26px; background: var(--brand); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-size: 0.7rem; }

.chat-quick-replies { padding: 0.75rem 1rem; display: flex; flex-wrap: wrap; gap: 0.4rem; border-top: 1px solid var(--border); }
.quick-reply {
  font-size: 0.75rem; padding: 0.3rem 0.85rem; border-radius: 99px;
  border: 1px solid var(--brand); color: var(--brand); background: transparent;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.quick-reply:hover { background: var(--brand); color: #fff; }

#leadCapture {
  padding: 1rem; border-top: 1px solid var(--border);
  background: var(--brand-light); display: none;
}
#leadCapture p { font-size: 0.8rem; color: var(--text); font-weight: 600; margin-bottom: 0.6rem; }
.lead-row { display: flex; gap: 0.5rem; }
.lead-input {
  flex: 1; padding: 0.5rem 0.75rem;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 99px; font-size: 0.8rem; font-family: inherit;
  color: var(--text); outline: none;
}
.lead-input:focus { border-color: var(--brand); }
.lead-submit {
  padding: 0.5rem 1rem; border-radius: 99px;
  background: var(--brand); color: #fff; border: none;
  font-size: 0.78rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition);
}
.lead-submit:hover { background: var(--brand-dark); }

.chat-input-row { padding: 0.75rem 1rem; display: flex; gap: 0.5rem; border-top: 1px solid var(--border); }
#chatInput {
  flex: 1; padding: 0.6rem 0.9rem;
  background: var(--bg-alt); border: 1.5px solid var(--border);
  border-radius: 99px; font-size: 0.85rem; font-family: inherit;
  color: var(--text); outline: none;
  transition: border-color var(--transition);
}
#chatInput:focus { border-color: var(--brand); }
#chatSend {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand); color: #fff; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); flex-shrink: 0;
}
#chatSend:hover { background: var(--brand-dark); }

/* Typing indicator */
.typing-indicator { display: flex; gap: 4px; align-items: center; padding: 0.6rem 0.9rem; }
.typing-dot { width: 7px; height: 7px; background: var(--text-light); border-radius: 50%; animation: typingDot 1.2s infinite; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }

/* ===================== LIGHTBOX / FULLSCREEN MODAL SLIDER ===================== */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(5, 12, 9, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.32s cubic-bezier(.4,0,.2,1), visibility 0.32s cubic-bezier(.4,0,.2,1);
}
#lightbox.open {
  opacity: 1; visibility: visible;
}

#lightbox-inner {
  position: relative;
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}

#lightbox-track {
  position: relative;
  width: 92vw; max-width: 1040px;
  height: 78vh;
  overflow: hidden;
  border-radius: 14px;
}

.lb-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.38s cubic-bezier(.4,0,.2,1), transform 0.38s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  will-change: opacity, transform;
}
.lb-slide.lb-active {
  opacity: 1; transform: scale(1);
  pointer-events: auto;
}
.lb-slide.lb-enter-right {
  opacity: 0; transform: translateX(48px) scale(0.97);
}
.lb-slide.lb-enter-left {
  opacity: 0; transform: translateX(-48px) scale(0.97);
}

.lb-slide img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

#lightbox-topbar {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(to bottom, rgba(5,12,9,0.7) 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}
#lightbox-title {
  color: rgba(255,255,255,0.88);
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  pointer-events: none;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
#lightbox-close {
  pointer-events: auto;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.22s ease, transform 0.18s ease;
  backdrop-filter: blur(6px);
}
#lightbox-close:hover {
  background: rgba(220,38,38,0.75); border-color: rgba(220,38,38,0.5);
  transform: scale(1.08);
}

#lightbox-bottombar {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.75rem 1.5rem;
  background: linear-gradient(to top, rgba(5,12,9,0.75) 0%, transparent 100%);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  z-index: 10; pointer-events: none;
}
#lightbox-caption {
  color: rgba(255,255,255,0.68);
  font-size: 0.88rem; text-align: center;
  background: rgba(0,0,0,0.38);
  padding: 0.35rem 1.1rem; border-radius: 99px;
  backdrop-filter: blur(8px);
  max-width: 600px;
}
#lightbox-counter {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
}

#lightbox-dots {
  display: flex; gap: 7px; align-items: center;
  pointer-events: auto;
}
.lb-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1.5px solid rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.22s ease, width 0.22s ease;
  flex-shrink: 0;
}
.lb-dot.lb-dot-active {
  background: #fff; width: 20px;
  border-radius: 99px; border-color: #fff;
}

.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.09);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 1.15rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.22s ease, transform 0.18s ease, opacity 0.22s ease;
  backdrop-filter: blur(6px);
  opacity: 0.55;
}
.lb-arrow:hover {
  background: rgba(47,122,102,0.7); border-color: var(--brand);
  transform: translateY(-50%) scale(1.08); opacity: 1;
}
#lb-prev { left: 1.5rem; }
#lb-next { right: 1.5rem; }
#lightbox.lb-single .lb-arrow,
#lightbox.lb-single #lightbox-dots,
#lightbox.lb-single #lightbox-counter { display: none; }

@media (max-width: 600px) {
  #lightbox-track { width: 100vw; height: 70vh; border-radius: 0; }
  .lb-arrow { width: 40px; height: 40px; font-size: 0.95rem; }
  #lb-prev { left: 0.6rem; }
  #lb-next { right: 0.6rem; }
  #lightbox-topbar { padding: 0.9rem 1rem; }
  #lightbox-bottombar { padding: 0.9rem 1rem 1.1rem; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 70px 1rem; }
  .nav-links, .nav-right .nav-cta { display: none; }
  #hamburger { display: flex; }
  #mobile-menu { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-exp-badge { right: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #chatWindow { width: calc(100vw - 3rem); }
}

@media (max-width: 480px) {
  .hero-name { font-size: 2.8rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns a { justify-content: center; }
  #chatWindow { width: calc(100vw - 3rem); left: 0; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
}

/* ===================== UTILITIES ===================== */
.text-brand { color: var(--brand); }
.bg-brand { background: var(--brand); }
.hidden { display: none !important; }

/* Auto greeting pulse on toggle */
@keyframes chatPulse {
  0% { box-shadow: 0 0 0 0 rgba(47,122,102,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(47,122,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,122,102,0); }
}
.chat-pulse { animation: chatPulse 1.8s infinite; }

/* ===================== LEGAL MODALS ===================== */
.legal-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 20, 16, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1), visibility 0.35s cubic-bezier(.4,0,.2,1);
}
.legal-modal-overlay.open {
  opacity: 1; visibility: visible;
}

.legal-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%; max-width: 680px;
  max-height: 88vh;
  display: flex; flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(47,122,102,0.08);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.legal-modal-overlay.open .legal-modal {
  transform: translateY(0) scale(1);
}

.legal-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand-light), rgba(245,198,44,0.05));
}
.legal-modal-header-left { display: flex; align-items: center; gap: 1rem; }
.legal-modal-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; flex-shrink: 0;
}
.legal-modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: var(--text); line-height: 1.2;
}
.legal-modal-subtitle {
  font-size: 0.8rem; color: var(--text-muted);
  margin-top: 0.15rem;
}
.legal-modal-close {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.legal-modal-close:hover {
  background: #dc2626; border-color: #dc2626; color: #fff;
}

.legal-modal-body {
  padding: 1.75rem 2rem 2rem;
  overflow-y: auto;
  flex: 1;
  scroll-behavior: smooth;
}
.legal-modal-body::-webkit-scrollbar { width: 4px; }
.legal-modal-body::-webkit-scrollbar-track { background: var(--bg-alt); border-radius: 99px; }
.legal-modal-body::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 99px; }

.legal-effective {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(47,122,102,0.1);
  color: var(--brand); border: 1px solid rgba(47,122,102,0.2);
  padding: 0.3rem 0.9rem; border-radius: 99px;
  font-size: 0.78rem; font-weight: 600;
  margin-bottom: 1.5rem;
}
.legal-effective i { font-size: 0.7rem; }

.legal-section { margin-bottom: 2rem; }
.legal-section:last-child { margin-bottom: 0; }

.legal-section-heading {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--text);
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand-light);
}
.legal-section-heading i {
  color: var(--brand); font-size: 0.85rem;
  width: 22px; text-align: center;
}

.legal-section p {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 0.65rem;
}
.legal-section p:last-child { margin-bottom: 0; }

.legal-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
  margin-top: 0.5rem;
}
.legal-list li {
  font-size: 0.88rem; color: var(--text-muted);
  display: flex; align-items: flex-start; gap: 0.6rem;
  line-height: 1.6;
}
.legal-list li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0; margin-top: 0.45rem;
}

.legal-highlight-box {
  background: linear-gradient(135deg, var(--brand-light), rgba(245,198,44,0.06));
  border: 1px solid rgba(47,122,102,0.18);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 0.75rem;
}
.legal-highlight-box p {
  font-size: 0.87rem; color: var(--text); font-weight: 500;
  margin: 0;
}

.legal-modal-footer {
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
  flex-shrink: 0;
  background: var(--bg-alt);
}
.legal-modal-footer p {
  font-size: 0.8rem; color: var(--text-muted);
}
.legal-modal-footer p a {
  color: var(--brand); font-weight: 600;
  transition: color var(--transition);
}
.legal-modal-footer p a:hover { color: var(--brand-dark); }
.legal-accept-btn {
  background: var(--brand); color: #fff;
  padding: 0.55rem 1.5rem; border-radius: 99px;
  border: none; font-size: 0.87rem; font-weight: 600;
  font-family: inherit; cursor: pointer;
  display: flex; align-items: center; gap: 0.45rem;
  transition: all var(--transition);
}
.legal-accept-btn:hover { background: var(--brand-dark); transform: translateY(-1px); }

@media (max-width: 600px) {
  .legal-modal-header { padding: 1.25rem 1.25rem 1rem; }
  .legal-modal-body { padding: 1.25rem 1.25rem 1.5rem; }
  .legal-modal-footer { padding: 1rem 1.25rem; }
  .legal-modal-title { font-size: 1.1rem; }
  .legal-modal-footer { flex-direction: column; align-items: stretch; }
  .legal-accept-btn { justify-content: center; }
}

/* ===================== MARQUEE STRIP ===================== */
.marquee-strip {
  background: var(--brand);
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
}
 
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(to right, var(--brand), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(to left, var(--brand), transparent); }
 
.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}
 
.marquee-track span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
 
.marquee-dot {
  color: var(--gold) !important;
  font-size: 0.55rem !important;
  opacity: 0.8;
}
 
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes eggFade {
  0%   { opacity:0; transform:translateX(-50%) translateY(16px); }
  15%  { opacity:1; transform:translateX(-50%) translateY(0); }
  80%  { opacity:1; }
  100% { opacity:0; transform:translateX(-50%) translateY(-8px); }
}

/* ===================== SERVICES CAROUSEL ===================== */

.svc-carousel-wrap {
  position: relative;
  padding: 1rem 0 0;
  /* Prevent horizontal overflow bleeding into page */
  overflow: hidden;
}

/* ── Stage ──────────────────────────────────────────────────── */
.svc-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Height is fixed so absolutely-positioned cards don't collapse it */
  min-height: 500px;
  /* No overflow:hidden here — side cards need to peek out */
}

/* ── Cards (base — always hidden / off-stage) ───────────────── */
.svc-card {
  position: absolute;
  width: 360px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;

  /* Default: invisible, tucked behind centre */
  opacity: 0;
  transform: translateX(0) scale(0.72);
  filter: blur(4px);
  pointer-events: none;

  transition:
    transform  0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity    0.55s cubic-bezier(0.4, 0, 0.2, 1),
    filter     0.55s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease;

  will-change: transform, opacity, filter;
  z-index: 1;
  /* Prevent text / layout from causing reflow during animation */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ── Centre card ────────────────────────────────────────────── */
.svc-card.svc-center {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
  z-index: 10;
  box-shadow: 0 24px 60px rgba(47,122,102,0.18), 0 4px 20px rgba(0,0,0,0.08);
}

/* ── Left peek card ─────────────────────────────────────────── */
.svc-card.svc-left {
  opacity: 0.55;
  transform: translateX(-390px) scale(0.87);
  filter: blur(1.5px);
  pointer-events: auto;
  z-index: 5;
  cursor: pointer;
}

/* ── Right peek card ────────────────────────────────────────── */
.svc-card.svc-right {
  opacity: 0.55;
  transform: translateX(390px) scale(0.87);
  filter: blur(1.5px);
  pointer-events: auto;
  z-index: 5;
  cursor: pointer;
}

.svc-card.svc-left:hover  { opacity: 0.75; filter: blur(0.5px); }
.svc-card.svc-right:hover { opacity: 0.75; filter: blur(0.5px); }

/* ── Card inner ─────────────────────────────────────────────── */
.svc-card-inner {
  position: relative;
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}

/* Top accent bar — only on active card */
.svc-card.svc-center .svc-card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
}

/* ── Number label ───────────────────────────────────────────── */
.svc-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* ── Icon ───────────────────────────────────────────────────── */
.svc-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.svc-card.svc-center .svc-icon-wrap:hover {
  transform: scale(1.08) rotate(-4deg);
}

/* ── Title ──────────────────────────────────────────────────── */
.svc-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

/* ── Description ────────────────────────────────────────────── */
.svc-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* ── Features list ──────────────────────────────────────────── */
.svc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
}
.svc-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.svc-features li i {
  color: var(--brand);
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* ── CTA link ───────────────────────────────────────────────── */
.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 1px;
  width: fit-content;
  transition: gap 0.25s ease, border-color 0.25s ease;
}
.svc-cta:hover { border-color: var(--brand); gap: 0.7rem; }
.svc-cta i { font-size: 0.72rem; transition: transform 0.25s ease; }
.svc-cta:hover i { transform: translateX(3px); }

/* ── Arrow buttons ──────────────────────────────────────────── */
.svc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
  /* Keep arrows above cards */
  flex-shrink: 0;
}
.svc-arrow:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 8px 24px rgba(47,122,102,0.3);
}
.svc-prev { left: calc(50% - 260px); }
.svc-next { right: calc(50% - 260px); }

/* ── Dots ───────────────────────────────────────────────────── */
.svc-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 2.25rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}
.svc-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  /* Make tap target bigger on mobile without changing visual size */
  position: relative;
}
.svc-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
}
.svc-dot.active {
  background: var(--brand);
  width: 22px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ── Large tablet (≤1100px) ─────────────────────────────────── */
@media (max-width: 1100px) {
  .svc-card { width: 320px; }
  .svc-card.svc-left  { transform: translateX(-340px) scale(0.87); }
  .svc-card.svc-right { transform: translateX(340px)  scale(0.87); }
  .svc-prev { left: calc(50% - 230px); }
  .svc-next { right: calc(50% - 230px); }
}

/* ── Tablet (≤900px) ────────────────────────────────────────── */
@media (max-width: 900px) {
  .svc-stage { min-height: 480px; }
  .svc-card { width: 300px; }
  .svc-card.svc-left  { transform: translateX(-310px) scale(0.85); opacity: 0.45; }
  .svc-card.svc-right { transform: translateX(310px)  scale(0.85); opacity: 0.45; }
  .svc-prev { left: calc(50% - 210px); }
  .svc-next { right: calc(50% - 210px); }
}

/* ── Mobile (≤767px) — FULL REWRITE ────────────────────────── */
@media (max-width: 767px) {

  /* Wrapper: clip overflow so only ONE card is visible on mobile */
  .svc-carousel-wrap {
    overflow: hidden;
  }

  .svc-stage {
    min-height: 0;
    /* Switch from absolute stacking to a proper flex scroll container */
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    /* Smooth native-feel drag */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 0.5rem 1.25rem 1rem;
    /* Hide scrollbar visually */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .svc-stage::-webkit-scrollbar { display: none; }

  /* On mobile every card is always visible (flex item, not absolute) */
  .svc-card {
    position: relative;            /* override absolute */
    flex: 0 0 calc(100% - 2.5rem);
    width: calc(100% - 2.5rem);
    max-width: 340px;
    min-width: 260px;
    /* Reset all desktop transform / filter / opacity */
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto !important;
    scroll-snap-align: center;
    box-shadow: var(--shadow);
    /* Remove transition on mobile — snap is instant, transition causes lag */
    transition: box-shadow 0.25s ease;
    z-index: 1 !important;
    cursor: default;
  }

  /* Active card on mobile gets a subtle highlight */
  .svc-card.svc-center {
    box-shadow: 0 16px 40px rgba(47,122,102,0.18), 0 4px 16px rgba(0,0,0,0.07);
  }
  .svc-card.svc-center .svc-card-inner::before {
    /* Keep the accent bar */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--gold));
  }

  /* Arrows — move below the cards on mobile, side by side */
  .svc-arrow {
    position: static;
    transform: none !important;
    width: 44px;
    height: 44px;
  }
  .svc-arrow:hover {
    transform: scale(1.06) !important;
  }

  /* Arrow + dots row container */
  .svc-controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
  }

  .svc-dots {
    margin-top: 0;
    gap: 6px;
  }
}

/* ── Small mobile (≤400px) ──────────────────────────────────── */
@media (max-width: 400px) {
  .svc-stage { padding: 0.5rem 1rem 1rem; }
  .svc-card { flex: 0 0 calc(100% - 2rem); }
  .svc-card-inner { padding: 1.75rem 1.5rem 1.5rem; }
  .svc-name { font-size: 1.15rem; }
}