/* ========================================
   Website Bananewala — Premium Styles
   ======================================== */
:root {
  --primary: #0a4d68;
  --primary-dark: #063348;
  --primary-light: #0e6b8f;
  --accent: #7fff00;
  --accent-hover: #6ad900;
  --teal: #1a9b8e;
  --bg: #f5f8fb;
  --bg-soft: #eef3f7;
  --white: #ffffff;
  --text: #1a2b3c;
  --text-muted: #5a6a7a;
  --border: #d8e2ec;
  --shadow: 0 8px 30px rgba(10, 77, 104, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 77, 104, 0.14);
  --radius: 14px;
  --nav-h: 78px;
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-display: "Outfit", "Plus Jakarta Sans", sans-serif;
  --font-num: "Roboto", "Lato", "Courier New", monospace;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.num {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
}

/* ---------- Spark canvas ---------- */
#spark-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar:not(.scrolled) {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(10, 77, 104, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 1001;
}

.brand img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color var(--transition);
}

.navbar:not(.scrolled) .brand-text,
.navbar:not(.scrolled) .nav-links > li > a,
.navbar:not(.scrolled) .nav-toggle span {
  color: #fff;
}

.navbar:not(.scrolled) .nav-toggle span {
  background: #fff;
}

.navbar.scrolled .brand-text,
.navbar.scrolled .nav-links > li > a {
  color: var(--text);
}

.navbar.scrolled .nav-toggle span {
  background: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: block;
  padding: 0.55rem 0.9rem;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--accent) !important;
}

.nav-cta {
  background: var(--accent) !important;
  color: #1a1a1a !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 50px !important;
  margin-left: 0.4rem;
  box-shadow: 0 4px 16px rgba(127, 255, 0, 0.35);
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Dropdown */
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 100;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.7rem 1rem;
  color: var(--text) !important;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
}

.dropdown a:hover {
  background: var(--bg-soft);
  color: var(--primary) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--primary);
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  z-index: 2;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 51, 72, 0.88) 0%,
    rgba(10, 77, 104, 0.72) 45%,
    rgba(26, 155, 142, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 620px;
  opacity: 0.92;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 0.8s 0.45s ease both;
}

.hero-price {
  margin-top: 2rem;
  animation: fadeUp 0.8s 0.55s ease both;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-price .price-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  border-radius: var(--radius);
}

.hero-price .price-tag .label {
  font-size: 0.8rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-price .price-tag .amount {
  font-family: var(--font-num);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.6rem;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.hero-dots button.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #1a1a1a;
  box-shadow: 0 6px 20px rgba(127, 255, 0, 0.4);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.price-row .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

.check-list .btn-sm {
  margin-left: 0.4rem;
}

/* YouTube gallery */
.yt-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.yt-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.yt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.yt-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}

.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.4rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

.yt-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  padding: 0.9rem 1rem 1.1rem;
  line-height: 1.4;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.yt-filter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 420px;
  margin: 0 auto 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.55rem 1.1rem;
  box-shadow: var(--shadow);
}

.yt-filter i {
  color: var(--primary);
}

.yt-filter input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
}

.yt-filter input::placeholder {
  color: var(--text-muted);
}

.yt-empty {
  text-align: center;
  color: var(--text-muted);
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.video-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.video-lightbox-inner {
  width: min(960px, 96vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.video-lightbox iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.video-lightbox-close:hover {
  background: var(--accent);
  color: #1a1a1a;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-solid {
  background: var(--primary);
  color: #fff;
}

.btn-solid:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---------- Offer Banner ---------- */
.offer-banner {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary), var(--teal));
  color: #fff;
  padding: 3.5rem 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.offer-banner::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(127, 255, 0, 0.15);
  top: -150px;
  right: -100px;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.offer-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.offer-grid p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.offer-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.offer-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.offer-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

.offer-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 2.2rem;
  text-align: center;
}

.offer-card .from {
  font-size: 0.85rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.offer-card .price {
  font-family: var(--font-num);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin: 0.3rem 0;
}

.offer-card .note {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 1.4rem;
}

/* ---------- Cards / Grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s ease;
}

.card:hover .card-img img {
  transform: scale(1.06);
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card-link:hover {
  color: var(--accent);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-box {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  border: 1px solid var(--border);
}

.stat-box .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1.2;
}

.stat-box span:last-child {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.check-list {
  margin: 1.2rem 0 1.8rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(26, 155, 142, 0.15);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 2px;
}

/* ---------- Process ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-num);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(10, 77, 104, 0.12);
  display: block;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---------- Why Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.why-item:hover {
  transform: translateY(-4px);
}

.why-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #adff2f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #1a1a1a;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--primary-dark);
}

.why-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.testimonial-card .stars {
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.testimonial-card p {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.3rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- Contact / CTA ---------- */
.contact-section {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 60%, var(--teal) 100%);
  color: #fff;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  bottom: -200px;
  left: -100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
}

.contact-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-grid > div > p {
  opacity: 0.9;
  margin-bottom: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  transition: background var(--transition);
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.16);
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent);
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.8rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.contact-info-item a,
.contact-info-item span {
  font-weight: 600;
  font-size: 1rem;
}

.contact-info-item a:hover {
  color: var(--accent);
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 320px;
  background: rgba(0, 0, 0, 0.2);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* ---------- Page Hero (inner) ---------- */
.page-hero {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary) 50%, var(--teal));
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1600&q=60") center / cover;
  opacity: 0.15;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  opacity: 0.8;
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* ---------- Service Detail ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.service-detail-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-detail-content ul {
  margin: 1.2rem 0 2rem;
}

.service-detail-content ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text);
  font-weight: 500;
}

.service-detail-content ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.service-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.service-sidebar h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.service-sidebar .price {
  font-family: var(--font-num);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-sidebar .btn {
  width: 100%;
  margin-bottom: 0.7rem;
}

.service-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background: var(--bg-soft);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Footer ---------- */
.footer {
  background: #041e2b;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 48px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  font-size: 0.92rem;
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--accent);
  opacity: 1;
}

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 1.4rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.footer-legal a:hover {
  color: var(--accent);
}

.footer-bottom a {
  color: var(--accent);
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.visitor-counter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem 0.9rem;
  margin-top: 1.1rem;
  padding: 0.85rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
}

.visitor-counter i {
  color: var(--accent);
  font-size: 1rem;
}

.visitor-counter-label {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
  opacity: 0.85;
}

.site-hits-digits {
  font-family: var(--font-num);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  min-width: 3ch;
}

/* ---------- Policy pages ---------- */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem;
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin: 1.6rem 0 0.7rem;
}

.policy-content p,
.policy-content li {
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.policy-content ul {
  margin: 0.5rem 0 1rem 1.2rem;
  list-style: disc;
}

.policy-content a {
  color: var(--primary);
  font-weight: 600;
}

.policy-content a:hover {
  color: var(--accent-hover);
}

/* ---------- Floating Buttons ---------- */
.float-btns {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  animation: floatBob 3s ease-in-out infinite;
}

.float-btn:nth-child(2) {
  animation-delay: 0.4s;
}

.float-btn:nth-child(3) {
  animation-delay: 0.8s;
}

.float-btn:nth-child(4) {
  animation-delay: 1.2s;
}

.float-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.float-btn.wa {
  background: #25d366;
}

.float-btn.call {
  background: var(--primary);
}

.float-btn.pay {
  background: #059669;
  color: #fff;
}

.float-btn.yt {
  background: #ff0000;
}

.float-btn .tip {
  position: absolute;
  right: calc(100% + 10px);
  background: #1a1a1a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  font-family: var(--font);
}

.float-btn:hover .tip {
  opacity: 1;
}

@keyframes floatBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 2rem;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  line-height: 1;
}

.lightbox-close:hover {
  background: var(--accent);
  color: #1a1a1a;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .yt-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-grid,
  .about-grid,
  .contact-grid,
  .service-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--nav-h) + 1rem) 1.2rem 2rem;
    gap: 0.2rem;
    transform: translateX(105%);
    transition: transform var(--transition);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links > li > a {
    color: var(--text) !important;
    padding: 0.85rem 1rem;
  }

  .nav-cta {
    text-align: center;
    margin: 0.8rem 0 0 !important;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--bg-soft);
    display: none;
    margin-top: 0.3rem;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .navbar:not(.scrolled) .brand-text {
    color: #fff;
  }

  .navbar.scrolled .brand-text {
    color: var(--text);
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 640px) {
  .yt-gallery {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .grid-2,
  .why-grid,
  .process-steps,
  .footer-grid,
  .offer-features,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .float-btns {
    right: 12px;
    bottom: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
