/* PT Java Tour Haromain - javatourumrohhaji.id */
:root {
  --dark: #1a1a1a;
  --dark-2: #2a2a2a;
  --gold: #c9a84c;
  --gold-bright: #d4af37;
  --gold-dark: #a9842a;
  --gold-light: #f3e9d2;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #fffbf0;
  --text: #1a1a1a;
  --text-muted: #6b6255;
  --shadow: 0 10px 26px rgba(26,19,5,0.08), 0 0 0 1px rgba(201,168,76,0.25);
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text);
  margin-top: 0;
}

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

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Top bar ===== */
.topbar {
  background: var(--dark);
  color: var(--gold-light);
  font-size: 0.85rem;
  padding: 6px 0;
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.topbar a { color: var(--gold-light); }
.topbar span { margin-right: 18px; }

/* ===== Header / Nav ===== */
header.site-header {
  background: var(--dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}
.brand .brand-icon { font-size: 1.4rem; color: var(--gold); }
.brand .brand-name {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.main-nav a {
  font-weight: 600;
  color: var(--gold-light);
  position: relative;
  padding: 6px 0;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--gold);
}
nav.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-dark);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn-block { display: block; width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #fffbf0 0%, #ffffff 55%, #f3e9d2 100%);
  color: var(--text);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(201,168,76,0.22), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(201,168,76,0.16), transparent 40%);
}
.hero .container { position: relative; z-index: 2; text-align: center; }
.hero-inner { max-width: 760px; margin: 0 auto; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}
.hero-grid .hero-inner { max-width: 680px; margin: 0; }
.hero-grid .hero-actions { justify-content: flex-start; }
.hero-grid .hero-stats { justify-content: flex-start; }
.hero-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  border: 2px solid var(--gold);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.25s ease;
}
.hero-slider-dots button.active { background: var(--gold); border-color: var(--gold); }
.hero .eyebrow {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero h1 {
  color: var(--text);
  font-size: 2.7rem;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero p.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 auto 30px;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.hero-stats {
  display: flex;
  gap: 46px;
  margin-top: 54px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-size: 1.7rem;
  color: var(--gold-dark);
  font-family: 'Poppins', Arial, sans-serif;
}
.hero-stats div span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Page header (for non-home pages) ===== */
.page-header {
  background: linear-gradient(135deg, #fffbf0, #ffffff);
  color: var(--text);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.page-header h1 { color: var(--text); margin-bottom: 8px; }
.page-header p { color: var(--text-muted); margin: 0; }
.breadcrumb {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--gold-dark);
}
.breadcrumb a { color: var(--gold-dark); text-decoration: underline; }

/* ===== Sections ===== */
section { padding: 70px 0; background: var(--bg); }
.section-alt { background: var(--bg-alt); }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 46px;
}
.section-head .tag {
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 10px;
}
.section-head h2 { font-size: 2rem; margin-bottom: 12px; }
.section-head p { color: var(--text-muted); margin: 0; }

/* ===== About teaser / grid ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-grid .img-box {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--radius);
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  padding: 30px;
  box-shadow: var(--shadow);
}
.about-slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 300px;
}
.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.about-slide.active { opacity: 1; }
.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.about-slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.25s ease;
}
.about-slider-dots button.active { background: var(--gold); border-color: var(--gold); }
.office-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.office-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.office-gallery img.office-gallery-wide {
  grid-column: 1 / -1;
  height: 220px;
}
.check-list { list-style: none; padding: 0; margin: 18px 0; }
.check-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Package Cards ===== */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(201,168,76,0.28);
}
.package-card.featured { border: 2px solid var(--gold); }
.package-banner {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  color: var(--white);
  padding: 26px 24px;
  position: relative;
}
.package-card.featured .package-banner {
  background: linear-gradient(135deg, #8a6d1c, var(--gold));
}
.package-banner .ribbon {
  position: absolute;
  top: 14px; right: -6px;
  background: var(--dark);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 4px 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.package-banner .ribbon.ribbon-red {
  background: linear-gradient(135deg, #b91c1c, var(--gold));
  color: #fff;
}
.package-banner h3 { color: var(--white); margin-bottom: 4px; font-size: 1.25rem; }
.package-banner .duration { font-size: 0.85rem; color: rgba(255,255,255,0.85); }
.package-body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.price-tag {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.price-tag span { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }
.price-note { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 20px; }
.package-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.package-info { list-style: none; padding: 0; margin: 0 0 18px; }
.package-info li {
  padding: 7px 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.package-info li:first-child { border-top: none; }
.package-info li strong { color: var(--text); }
.package-body h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  margin: 16px 0 6px;
}
.package-includes li {
  padding: 5px 0 5px 22px;
  position: relative;
  font-size: 0.86rem;
  color: var(--text-muted);
}
.package-includes li::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 700;
  position: absolute;
  left: 0;
}
.package-excludes li {
  padding: 5px 0 5px 22px;
  position: relative;
  font-size: 0.86rem;
  color: var(--text-muted);
}
.package-excludes li::before {
  content: "✕";
  color: #b91c1c;
  font-weight: 700;
  position: absolute;
  left: 0;
}
.package-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

/* ===== Why choose us ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
}
.feature-card h4 { margin-bottom: 8px; font-size: 1.05rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 28px; }

/* ===== Vision Mission ===== */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.vm-card {
  background: var(--white);
  border: 1px solid var(--gold);
  border-left-width: 5px;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.vm-card h3 { color: var(--text); margin-bottom: 12px; }

.license-box {
  background: var(--bg-alt);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0;
}
.license-box div strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.license-box div span.value {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 24px;
  text-align: center;
}
.team-avatar {
  width: 84px; height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
}
.team-avatar.photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: none;
  border: 3px solid #c9a84c;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.team-card h4 { margin-bottom: 4px; }
.team-card .role { color: var(--gold-dark); font-weight: 600; font-size: 0.88rem; margin-bottom: 10px; display: block; }
.team-card p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

/* ===== Testimonials (static grid) ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-stars { color: var(--gold-bright); letter-spacing: 2px; font-size: 1rem; }
.testimonial-text {
  font-style: italic;
  color: var(--text);
  font-size: 0.96rem;
  margin: 0;
  flex: 1;
}
.testimonial-text::before { content: '\201C'; color: var(--gold); font-weight: 700; font-style: normal; margin-right: 2px; }
.testimonial-text::after { content: '\201D'; color: var(--gold); font-weight: 700; font-style: normal; margin-left: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-avatar {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-avatar.photo {
  background-size: cover;
  background-position: center;
  border: 2px solid var(--gold);
}
.testimonial-author strong { display: block; font-family: 'Poppins', Arial, sans-serif; font-size: 0.92rem; }
.testimonial-author span { display: block; font-size: 0.8rem; color: var(--text-muted); }

/* ===== Gallery marquee ===== */
.gallery-marquee {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}
.gallery-row {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.gallery-track {
  display: flex;
  width: max-content;
  gap: 12px;
}
.gallery-track img {
  height: 200px;
  width: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  display: block;
}
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.row-left .gallery-track { animation: scrollLeft 35s linear infinite; }
.row-right .gallery-track { animation: scrollRight 35s linear infinite; }
.gallery-row:hover .gallery-track { animation-play-state: paused; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  margin-bottom: 22px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item .ic {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-info-item h4 { margin: 0 0 4px; font-size: 0.95rem; }
.contact-info-item p, .contact-info-item a { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

.map-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold);
}
.map-box iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ===== Legal pages ===== */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { margin-top: 40px; font-size: 1.4rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-muted); }
.legal-content ul { padding-left: 22px; }
.updated-note {
  background: rgba(201,168,76,0.12);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--gold-dark);
  margin-bottom: 30px;
  display: inline-block;
}

/* ===== Footer ===== */
footer.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.footer-grid h4 {
  color: var(--gold);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.footer-brand .brand-name { color: var(--white); font-family: 'Poppins', Arial, sans-serif; font-weight: 700; font-size: 1.2rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-top: 12px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.88rem; margin: 0 0 12px; color: rgba(255,255,255,0.8); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about-grid, .vm-grid, .contact-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-grid .hero-inner { max-width: 100%; margin: 0 auto; }
  .hero-grid .hero-actions, .hero-grid .hero-stats { justify-content: center; }
  .hero-slider { order: 2; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-grid .hero-inner { order: 1; }
}
@media (max-width: 760px) {
  nav.main-nav, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  nav.main-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
  }
  .navbar { position: relative; }
  .hero h1 { font-size: 2rem; }
  .package-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { gap: 24px; }
  .topbar .container { flex-direction: column; gap: 2px; }
  .gallery-track img { height: 140px; }
}

/* ===== Floating WhatsApp button ===== */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
  text-decoration: none;
}
.wa-float svg { width: 32px; height: 32px; display: block; }
.wa-float .wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.wa-float .wa-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 600px) {
  .wa-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .wa-float svg { width: 28px; height: 28px; }
}
