/* ============================================================
   YELLO AUTO — Auto Repair & Recovery
   Custom styles (Tailwind CSS v3 handles utilities)
   ============================================================ */

:root {
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #161616;
  --accent: #d9ff22;
  --accent-dark: #c4eb0f;
  --white: #ffffff;
  --muted: #b8b8b8;
  --border: rgba(255, 255, 255, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}

::selection {
  background: var(--accent);
  color: #000;
}

/* ---------- Layout helpers ---------- */
.container-x {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 110px 0;
}

.section-alt {
  background: var(--dark-2);
}

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-lg {
  padding: 17px 34px;
  font-size: 0.9rem;
}

.btn-accent {
  background: var(--accent);
  color: #000;
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(217, 255, 34, 0.28);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.btn-dark {
  background: #000;
  color: var(--white);
}
.btn-dark:hover {
  background: #1c1c1c;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
  background: rgba(217, 255, 34, 0.12);
  color: var(--accent);
  border: 1px solid rgba(217, 255, 34, 0.3);
}

.badge-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-color: var(--border);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#site-header {
  background: transparent;
  border-bottom: 1px solid transparent;
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--accent);
  color: #000;
}

.nav-menu .nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 0;
  transition: color 0.25s;
}

.nav-menu .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
  color: var(--white);
}

.nav-menu .nav-link:hover::after,
.nav-menu .nav-link.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background 0.25s;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid var(--border);
  transition: max-height 0.4s var(--ease);
}

.mobile-menu.open {
  max-height: 480px;
}

.mobile-link {
  display: block;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-link:hover {
  background: rgba(217, 255, 34, 0.1);
  color: var(--accent);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
}

.hero-bg {
  background-image: url('../images/bg3.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.16); }
}

.hero-overlay {
  background: linear-gradient(100deg, rgba(10, 10, 10, 0.96) 0%, rgba(10, 10, 10, 0.78) 45%, rgba(10, 10, 10, 0.35) 100%);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-desc {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 560px;
}

/* Scroll hint */
.scroll-hint {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.mouse {
  display: block;
  width: 26px;
  height: 40px;
  border: 2px solid var(--muted);
  border-radius: 14px;
  position: relative;
}

.wheel {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--accent);
  animation: scroll 1.8s infinite;
}

@keyframes scroll {
  0% { opacity: 1; top: 7px; }
  100% { opacity: 0; top: 22px; }
}

/* ============================================================
   ICON BOX (about)
   ============================================================ */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(217, 255, 34, 0.1);
  color: var(--accent);
  border: 1px solid rgba(217, 255, 34, 0.22);
  flex-shrink: 0;
}

/* About media */
.about-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.about-media:hover img {
  transform: scale(1.05);
}

.about-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 40%, rgba(10, 10, 10, 0.6) 100%);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(217, 255, 34, 0.5);
  animation: ripples 2s infinite;
  transition: transform 0.3s;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

@keyframes ripples {
  0% { box-shadow: 0 0 0 0 rgba(217, 255, 34, 0.5); }
  70% { box-shadow: 0 0 0 22px rgba(217, 255, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 255, 34, 0); }
}

/* Stats */
.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 26px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 255, 34, 0.4);
  background: rgba(217, 255, 34, 0.04);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--accent);
  color: #000;
  margin-bottom: 18px;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(217, 255, 34, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}

.service-img {
  height: 220px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-body {
  padding: 24px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-text {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.service-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: gap 0.25s;
}
.service-link:hover {
  color: var(--white);
}

/* ============================================================
   DRY CLEANING
   ============================================================ */
.dry-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.dry-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.dry-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  color: #000;
  border-radius: 14px;
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 16px 40px rgba(217, 255, 34, 0.3);
}

.steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.step:first-child {
  padding-top: 0;
}
.step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  min-width: 64px;
}

.step-title {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.step-text {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ============================================================
   FEATURES (why choose us)
   ============================================================ */
.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 22px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 255, 34, 0.4);
  background: rgba(217, 255, 34, 0.04);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(217, 255, 34, 0.1);
  color: var(--accent);
  border: 1px solid rgba(217, 255, 34, 0.25);
  margin-bottom: 18px;
  transition: all 0.3s;
}
.feature-card:hover .feature-icon {
  background: var(--accent);
  color: #000;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-text {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ============================================================
   PRICING
   ============================================================ */
.price-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
}
.price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(217, 255, 34, 0.4);
}

.price-card--popular {
  background: linear-gradient(180deg, rgba(217, 255, 34, 0.12), rgba(217, 255, 34, 0.02));
  border-color: rgba(217, 255, 34, 0.5);
  box-shadow: 0 20px 50px rgba(217, 255, 34, 0.08);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 100px;
}

.price-name {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.price-value {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-value--custom {
  font-size: 1.9rem;
  line-height: 1.2;
}

.price-currency {
  font-size: 1.6rem;
  vertical-align: super;
  color: var(--accent);
}

.price-sub {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 6px;
  margin-bottom: 22px;
}

.price-list {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  color: var(--muted);
  font-size: 0.9rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.price-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(217, 255, 34, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9ff22' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================================
   PROCESS CARDS
   ============================================================ */
.process-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 255, 34, 0.4);
}

.process-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.process-card:hover .process-img img {
  transform: scale(1.1);
}

.process-num {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: #000;
  font-weight: 900;
  font-size: 0.95rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.process-title {
  font-size: 1.1rem;
  font-weight: 800;
  padding: 20px 20px 0;
}

.process-text {
  color: var(--muted);
  font-size: 0.88rem;
  padding: 8px 20px 22px;
}

/* Floating contact card */
.float-contact {
  position: absolute;
  right: 0;
  top: 90px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dark-3);
  border: 1px solid rgba(217, 255, 34, 0.3);
  border-radius: 16px;
  padding: 20px 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.float-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
}

.float-contact-phone {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--accent);
}
.float-contact-phone:hover {
  color: var(--white);
}

/* ============================================================
   APPOINTMENT BANNER
   ============================================================ */
.appointment-banner {
  background: var(--accent);
  color: #000;
  padding: 56px 0;
}

.appointment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.appointment-title {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1.1;
}

.appointment-sub {
  color: rgba(0, 0, 0, 0.65);
  font-weight: 500;
}

/* ============================================================
   NEWS
   ============================================================ */
.news-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.news-card:hover {
  transform: translateY(-10px);
  border-color: rgba(217, 255, 34, 0.4);
}

.news-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.news-card:hover .news-img img {
  transform: scale(1.08);
}

.news-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 5px 13px;
  border-radius: 100px;
}

.news-body {
  padding: 24px;
}

.news-meta {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.news-title {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 16px;
}
.news-card:hover .news-title {
  color: var(--accent);
}

/* ============================================================
   FORM
   ============================================================ */
.contact-form {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 15px 18px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s, background 0.25s;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #666;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(217, 255, 34, 0.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding-top: 80px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.25s, padding-left 0.25s;
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-contact svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact a:hover {
  color: var(--accent);
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.3s;
}
.social-btn:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ============================================================
   FLOATING SIDEBAR + BACK TO TOP
   ============================================================ */
.floating-sidebar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 60;
}

.float-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--white);
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.float-item:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  transform: scale(1.08);
}

.float-item--wa {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}
.float-item--wa:hover {
  background: #1eb857;
  border-color: #1eb857;
  color: #fff;
}

.wa-qr {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s var(--ease);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}
.wa-qr img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
}
.wa-qr-label {
  display: block;
  text-align: center;
  color: #333;
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 6px;
}
.float-item--wa:hover .wa-qr {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.35s var(--ease);
  z-index: 60;
  box-shadow: 0 12px 30px rgba(217, 255, 34, 0.3);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent-dark);
  transform: translateY(-4px);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .float-contact {
    position: static;
    margin-top: 28px;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 76px 0;
  }
  .about-media {
    height: 320px;
  }
  .floating-sidebar {
    right: 12px;
  }
  .float-item {
    width: 44px;
    height: 44px;
  }
  .back-to-top {
    right: 12px;
    bottom: 16px;
  }
}

/* ============================================================
   MULTI-PAGE: DROPDOWN NAV
   ============================================================ */
.has-dropdown {
  position: relative;
}
.has-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.dropdown-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.25s var(--ease);
}
.has-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: #141414;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  z-index: 60;
  list-style: none;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.dropdown a:hover {
  background: rgba(217, 255, 34, 0.1);
  color: var(--accent);
  padding-left: 18px;
}

/* ============================================================
   MULTI-PAGE: PAGE HERO + BREADCRUMB
   ============================================================ */
.page-hero {
  position: relative;
  padding: 180px 0 90px;
  background:
    radial-gradient(1200px 400px at 80% -10%, rgba(217, 255, 34, 0.12), transparent 60%),
    var(--dark-2);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(217, 255, 34, 0.18);
  pointer-events: none;
}
.page-hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.breadcrumb a {
  color: var(--accent);
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb .sep {
  color: #555;
}

/* ============================================================
   MULTI-PAGE: TEAM
   ============================================================ */
.team-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  transition: all 0.35s var(--ease);
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 255, 34, 0.4);
}
.team-img {
  height: 280px;
  overflow: hidden;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.team-card:hover .team-img img {
  transform: scale(1.08);
}
.team-body {
  padding: 22px;
}
.team-name {
  font-size: 1.15rem;
  font-weight: 800;
}
.team-role {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   MULTI-PAGE: TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  transition: all 0.35s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 255, 34, 0.4);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}
.testimonial-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}
.testimonial-title {
  color: var(--muted);
  font-size: 0.8rem;
}

/* ============================================================
   MULTI-PAGE: GALLERY
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.filter-btn.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease);
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 40%, rgba(10, 10, 10, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-cat {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gallery-title {
  font-weight: 700;
  font-size: 1rem;
  margin-top: 4px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  padding: 24px;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.lightbox-close:hover {
  background: var(--accent);
  color: #000;
}

/* ============================================================
   MULTI-PAGE: FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: rgba(217, 255, 34, 0.4);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}
.faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(217, 255, 34, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--accent);
  color: #000;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-answer p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ============================================================
   MULTI-PAGE: INFO CARDS (contact)
   ============================================================ */
.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.35s var(--ease);
}
.info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 255, 34, 0.4);
}
.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: var(--accent);
  color: #000;
  flex-shrink: 0;
}
.info-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.info-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.info-card a:hover {
  color: var(--accent);
}
.map-placeholder {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 360px;
}
.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   MULTI-PAGE: SERVICE DETAIL
   ============================================================ */
.detail-hero-img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.detail-hero-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}
.detail-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(217, 255, 34, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9ff22' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.sidebar-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-box h4 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.sidebar-services {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.sidebar-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s, padding-left 0.25s;
}
.sidebar-services a:hover {
  color: var(--accent);
  padding-left: 6px;
}
.sidebar-services a:last-child {
  border-bottom: none;
}

/* ============================================================
   MULTI-PAGE: NEWS LISTING + ARTICLE
   ============================================================ */
.news-card--list {
  display: flex;
  flex-direction: column;
}
.article-content {
  max-width: 800px;
}
.article-content p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 22px;
}
.article-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 36px 0 16px;
}
.article-content blockquote {
  border-left: 3px solid var(--accent);
  background: rgba(217, 255, 34, 0.05);
  padding: 22px 26px;
  border-radius: 0 12px 12px 0;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 30px 0;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 20px;
}
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s;
}
.pagination a:hover,
.pagination .current {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* ============================================================
   MULTI-PAGE: RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 150px 0 70px;
  }
  .detail-hero-img img {
    height: 280px;
  }
  .gallery-item img {
    height: 220px;
  }
}