/*
Theme Name: FLY Locações
Theme URI: https://flylocacoes.com.br
Author: STC Agency
Author URI: https://stcagency.com.br
Description: Tema WordPress para FLY Locações — Aluguel de Motos Elétricas e Quadriciclos na Praia do Forte.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: fly-locacoes
*/

/* ========================================
   CSS Variables & Base
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --background: hsl(160, 20%, 4%);
  --foreground: hsl(0, 0%, 97%);
  --card: hsl(160, 15%, 7%);
  --card-foreground: hsl(0, 0%, 97%);
  --primary: hsl(145, 80%, 42%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(48, 100%, 52%);
  --secondary-foreground: hsl(0, 0%, 5%);
  --muted: hsl(160, 10%, 13%);
  --muted-foreground: hsl(160, 8%, 55%);
  --accent: hsl(48, 100%, 52%);
  --border: hsl(160, 10%, 15%);
  --ring: hsl(145, 80%, 42%);
  --radius: 1rem;
}

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

body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1;
}

h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   Glass Effects
   ======================================== */
.glass-panel {
  background: hsla(160, 15%, 6%, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid hsla(145, 80%, 42%, 0.08);
}

.glass-nav {
  background: hsla(160, 20%, 4%, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(145, 80%, 42%, 0.1);
}

/* ========================================
   Adventure Card
   ======================================== */
.adventure-card {
  background: linear-gradient(145deg, hsla(160, 15%, 8%, 0.9), hsla(160, 15%, 5%, 0.95));
  border: 1px solid hsla(145, 80%, 42%, 0.06);
  border-radius: 1.25rem;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.adventure-card:hover {
  border-color: hsla(145, 80%, 42%, 0.2);
  box-shadow: 0 20px 60px -15px hsla(145, 80%, 42%, 0.12);
  transform: translateY(-6px);
}

/* ========================================
   Buttons
   ======================================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(0, 0%, 100%);
  background: linear-gradient(135deg, hsl(145, 80%, 38%), hsl(145, 80%, 45%));
  box-shadow: 0 4px 25px hsla(145, 80%, 42%, 0.35);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, hsla(0, 0%, 100%, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 40px hsla(145, 80%, 42%, 0.5);
}

.btn-cta:hover::before { opacity: 1; }
.btn-cta:active { transform: translateY(0) scale(0.98); }

.btn-cta-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
}

.btn-outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(145, 80%, 50%);
  border: 2px solid hsla(145, 80%, 42%, 0.5);
  background: transparent;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-outline-cta:hover {
  background: hsla(145, 80%, 42%, 0.1);
  border-color: hsl(145, 80%, 42%);
  box-shadow: 0 4px 25px hsla(145, 80%, 42%, 0.2);
  transform: translateY(-2px);
}

/* ========================================
   Gradient Text
   ======================================== */
.text-gradient {
  background: linear-gradient(135deg, hsl(145, 80%, 50%), hsl(90, 90%, 55%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-warm {
  background: linear-gradient(135deg, hsl(48, 100%, 55%), hsl(30, 100%, 55%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   Animations
   ======================================== */
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 25px hsla(145, 80%, 42%, 0.35); }
  50% { box-shadow: 0 4px 35px hsla(145, 80%, 42%, 0.55), 0 0 0 8px hsla(145, 80%, 42%, 0.08); }
}
.btn-cta-pulse { animation: cta-pulse 3s ease-in-out infinite; }

@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-gentle-float { animation: gentle-float 6s ease-in-out infinite; }

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-20px, 30px) scale(0.92); }
}
.animate-blob { animation: blob 22s ease-in-out infinite; }

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes wa-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-80px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.fade-in-up { animation: fadeInUp 0.7s ease forwards; }
.fade-in { animation: fadeIn 0.6s ease forwards; }
.slide-down { animation: slideDown 0.6s ease forwards; }
.scale-in { animation: scaleIn 0.6s ease forwards; }

/* ========================================
   Utility Classes
   ======================================== */
.accent-line {
  width: 60px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, hsl(145, 80%, 42%), hsl(48, 100%, 52%));
  margin: 1.5rem auto 0;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, hsla(145, 80%, 42%, 0.15), transparent);
  max-width: 80%;
  margin: 0 auto;
}

/* WhatsApp floating */
.wa-float {
  animation: wa-bounce 2.5s ease-in-out infinite;
  box-shadow: 0 6px 30px hsla(145, 80%, 42%, 0.4);
}
.wa-float:hover {
  animation: none;
  transform: scale(1.12);
  box-shadow: 0 8px 40px hsla(145, 80%, 42%, 0.6);
}

/* ========================================
   Layout
   ======================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 2rem; }
}

/* ========================================
   Navbar
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s;
  animation: slideDown 0.6s ease;
}

.site-header.scrolled {
  background: hsla(160, 20%, 4%, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(145, 80%, 42%, 0.1);
}

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

@media (min-width: 640px) {
  .nav-inner {
    padding: 0 2rem;
    height: 7rem;
  }
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s;
}

.nav-logo:hover { transform: scale(1.05); }

.nav-logo img {
  height: 5rem;
  width: auto;
  filter: drop-shadow(0 2px 8px hsla(145, 80%, 42%, 0.3));
}

@media (min-width: 640px) {
  .nav-logo img { height: 6rem; }
  .nav-logo { gap: 0.75rem; }
}

@media (min-width: 768px) {
  .nav-logo img { height: 7rem; }
}

.nav-brand-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.125rem;
  background: linear-gradient(135deg, hsl(145, 80%, 42%) 0%, hsl(48, 95%, 55%) 50%, hsl(145, 80%, 42%) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px hsla(145, 80%, 42%, 0.4));
}

@media (min-width: 640px) { .nav-brand-text { font-size: 1.25rem; } }
@media (min-width: 768px) { .nav-brand-text { font-size: 1.5rem; } }

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

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-links a {
  color: hsla(0, 0%, 97%, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--foreground); }
.nav-links a:hover::after { width: 100%; }

/* Mobile menu */
.mobile-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}

.mobile-menu {
  display: none;
  border-top: 1px solid hsla(145, 80%, 42%, 0.1);
  background: hsla(160, 20%, 4%, 0.97);
  padding: 1.5rem;
}

.mobile-menu.open { display: block; }

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu a {
  display: block;
  color: hsla(0, 0%, 97%, 0.9);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  transition: background 0.3s;
}

.mobile-menu a:hover {
  background: hsla(160, 10%, 13%, 0.5);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), hsla(160, 20%, 4%, 0.7), hsla(160, 20%, 4%, 0.4));
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(160, 20%, 4%, 0.9), hsla(160, 20%, 4%, 0.5), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-content { padding: 9rem 2.5rem 6rem; }
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    gap: 4rem;
  }
}

.hero-logo-mobile {
  display: flex;
  justify-content: center;
  animation: scaleIn 0.6s ease 0.2s both;
}

.hero-logo-mobile img {
  height: 20rem;
  width: auto;
  filter: drop-shadow(0 4px 30px hsla(145, 80%, 42%, 0.5));
}

@media (min-width: 640px) {
  .hero-logo-mobile img { height: 24rem; }
}

@media (min-width: 1024px) {
  .hero-logo-mobile { display: none; }
}

.hero-text {
  max-width: 42rem;
  text-align: center;
  flex: 1;
}

@media (min-width: 1024px) {
  .hero-text { text-align: left; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: hsla(145, 80%, 42%, 0.2);
  color: var(--primary);
  border: 1px solid hsla(145, 80%, 42%, 0.3);
  margin-bottom: 0.75rem;
  animation: fadeInUp 0.5s ease 0.3s both;
}

@media (min-width: 640px) {
  .hero-badge { font-size: 0.875rem; margin-bottom: 1.5rem; }
}

.hero h1 {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 30px hsla(0, 0%, 0%, 0.6);
  animation: fadeInUp 0.7s ease 0.5s both;
}

@media (min-width: 640px) { .hero h1 { font-size: 3rem; margin-bottom: 1.25rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }

.hero-subtitle {
  font-size: 0.875rem;
  color: hsla(0, 0%, 97%, 0.9);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  font-weight: 500;
  text-shadow: 0 2px 15px hsla(0, 0%, 0%, 0.5);
  animation: fadeInUp 0.6s ease 0.7s both;
}

@media (min-width: 640px) {
  .hero-subtitle { font-size: 1.125rem; margin-bottom: 1.5rem; }
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsla(0, 0%, 97%, 0.8);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
  animation: fadeIn 0.5s ease 0.85s both;
}

.hero-phone:hover { color: var(--primary); }

.hero-phone svg { color: var(--primary); }

.hero-social-proof {
  font-size: 0.75rem;
  color: hsla(0, 0%, 97%, 0.6);
  font-weight: 600;
  margin-bottom: 1rem;
  animation: fadeIn 0.5s ease 0.9s both;
}

@media (min-width: 640px) {
  .hero-social-proof { font-size: 0.875rem; margin-bottom: 2rem; }
}

.hero-social-proof strong { color: var(--primary); font-weight: 700; }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  animation: fadeInUp 0.6s ease 1s both;
}

@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; }
}

@media (min-width: 1024px) {
  .hero-ctas { align-items: flex-start; }
}

.hero-logo-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: scaleIn 0.8s ease 0.4s both;
}

@media (min-width: 1024px) {
  .hero-logo-desktop { display: flex; }
}

.hero-logo-desktop .logo-wrap {
  position: relative;
}

.hero-logo-desktop .logo-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: hsla(145, 80%, 42%, 0.1);
  filter: blur(48px);
  transform: scale(1.25);
}

.hero-logo-desktop img {
  position: relative;
  height: 44rem;
  width: auto;
  filter: drop-shadow(0 8px 40px hsla(145, 80%, 42%, 0.4));
}

@media (min-width: 1280px) {
  .hero-logo-desktop img { height: 52rem; }
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: hsla(0, 0%, 97%, 0.3);
  animation: gentle-float 6s ease-in-out infinite;
  display: none;
}

@media (min-width: 640px) {
  .hero-scroll { display: block; }
}

/* ========================================
   Sections shared
   ======================================== */
.section {
  position: relative;
  z-index: 10;
  padding: 5rem 1.25rem;
}

@media (min-width: 640px) {
  .section { padding: 7rem 2rem; }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .section-header { margin-bottom: 4rem; }
}

.section-tag {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) { .section-tag { font-size: 0.875rem; } }

.section-title {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3.75rem; } }

.section-subtitle {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  max-width: 36rem;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.7;
}

@media (min-width: 640px) { .section-subtitle { font-size: 1.125rem; } }

/* ========================================
   Gallery / Fleet
   ======================================== */
.gallery-carousel {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
}

.gallery-viewport {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px hsla(0, 0%, 0%, 0.3);
}

@media (min-width: 640px) {
  .gallery-viewport { aspect-ratio: 16/9; }
}

.gallery-viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: opacity 0.5s, transform 0.5s;
}

.gallery-viewport img.active { opacity: 1; transform: scale(1); }
.gallery-viewport img.hidden { opacity: 0; transform: scale(0.95); }

.gallery-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(0, 0%, 0%, 0.6), transparent, transparent);
  pointer-events: none;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsla(160, 20%, 4%, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(160, 10%, 15%, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

@media (min-width: 640px) {
  .gallery-nav { width: 3rem; height: 3rem; }
}

.gallery-nav:hover {
  background: hsla(145, 80%, 42%, 0.2);
  border-color: hsla(145, 80%, 42%, 0.4);
}

.gallery-nav.prev { left: 0.5rem; }
.gallery-nav.next { right: 0.5rem; }

@media (min-width: 640px) {
  .gallery-nav.prev { left: 1rem; }
  .gallery-nav.next { right: 1rem; }
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.gallery-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: hsla(160, 8%, 55%, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-dot.active {
  background: var(--primary);
  width: 1.75rem;
}

.gallery-dot:hover { background: hsla(160, 8%, 55%, 0.5); }

/* ========================================
   Features Grid
   ======================================== */
.features-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  padding: 1.75rem;
}

@media (min-width: 640px) { .feature-card { padding: 2rem; } }

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: hsla(145, 80%, 42%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.5s;
}

.adventure-card:hover .feature-icon { transform: scale(1.1); }

.feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) { .feature-card h3 { font-size: 1.5rem; } }

.feature-card p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 500;
}

/* ========================================
   How It Works
   ======================================== */
.steps-grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.step-card {
  padding: 2rem;
  text-align: center;
}

@media (min-width: 640px) { .step-card { padding: 2.5rem; } }

.step-num {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  box-shadow: 0 8px 25px hsla(145, 80%, 42%, 0.25);
  transition: transform 0.5s;
}

.adventure-card:hover .step-num { transform: scale(1.1); }

.step-num span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: var(--primary-foreground);
}

.step-card h3 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .step-card h3 { font-size: 1.875rem; } }

.step-card p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 500;
}

.step-arrow {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  color: hsla(145, 80%, 42%, 0.3);
}

@media (min-width: 768px) { .step-arrow { display: none; } }

/* ========================================
   Castle Route
   ======================================== */
.route-photos {
  max-width: 56rem;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .route-photos {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
  }
}

.route-photo {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.route-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.route-photo:hover img { transform: scale(1.1); }

.route-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(0, 0%, 0%, 0.4), transparent, transparent);
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.testimonial-card {
  padding: 1.75rem;
}

@media (min-width: 640px) { .testimonial-card { padding: 2rem; } }

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  fill: var(--secondary);
}

.testimonial-card blockquote {
  color: hsla(0, 0%, 97%, 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsla(145, 80%, 42%, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
}

.testimonial-name {
  color: var(--foreground);
  font-weight: 700;
  font-size: 0.875rem;
}

.testimonial-city {
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

/* ========================================
   Location / Contact
   ======================================== */
.location-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) { .location-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: hsla(145, 80%, 42%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.location-info-title {
  color: var(--foreground);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

.location-info-text {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  line-height: 1.7;
  font-weight: 500;
}

@media (min-width: 640px) { .location-info-text { font-size: 0.875rem; } }

.location-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px hsla(145, 80%, 42%, 0.08);
}

.location-cta-glow {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background: radial-gradient(circle, hsla(145, 80%, 42%, 0.8), transparent 50%);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
  border-radius: 1.25rem;
}

/* ========================================
   CTA Banner
   ======================================== */
.cta-banner {
  max-width: 64rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, hsla(145, 80%, 42%, 0.12), hsla(160, 15%, 7%, 0.95), hsla(48, 100%, 52%, 0.08));
}

.cta-banner-border {
  position: absolute;
  inset: 0;
  border: 1px solid hsla(145, 80%, 42%, 0.1);
  border-radius: 1.5rem;
  pointer-events: none;
}

.cta-banner-inner {
  padding: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) { .cta-banner-inner { padding: 3.5rem; } }
@media (min-width: 768px) { .cta-banner-inner { padding: 5rem; } }

.cta-banner h2 {
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) { .cta-banner h2 { font-size: 3rem; } }
@media (min-width: 768px) { .cta-banner h2 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .cta-banner h2 { font-size: 4.5rem; } }

.cta-banner p {
  color: var(--muted-foreground);
  font-size: 1rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-weight: 500;
  line-height: 1.7;
}

@media (min-width: 640px) { .cta-banner p { font-size: 1.125rem; } }

/* ========================================
   Footer
   ======================================== */
.site-footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid hsla(160, 10%, 15%, 0.2);
  padding: 2.5rem 1.25rem;
}

@media (min-width: 640px) { .site-footer { padding: 2.5rem 2rem; } }

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  height: 4rem;
  width: auto;
  opacity: 0.8;
}

@media (min-width: 640px) { .footer-logo { height: 5rem; } }

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) { .footer-links { flex-direction: row; gap: 2rem; } }

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--primary); }

.footer-copyright {
  color: hsla(160, 8%, 55%, 0.6);
  font-size: 0.875rem;
}

.footer-credit {
  color: hsla(160, 8%, 55%, 0.4);
  font-size: 0.875rem;
}

.footer-credit a {
  color: hsla(145, 80%, 42%, 0.5);
  font-weight: 600;
  transition: color 0.3s;
}

.footer-credit a:hover { color: var(--primary); }

/* ========================================
   Animated Background
   ======================================== */
.animated-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.animated-bg-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, hsl(160, 20%, 4%) 0%, hsl(160, 25%, 3%) 40%, hsl(150, 15%, 5%) 100%);
}

.animated-bg-blob {
  position: absolute;
  border-radius: 50%;
}

.animated-bg-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsla(145, 80%, 42%, 0.5), transparent 65%);
  top: -20%;
  left: -15%;
  opacity: 0.06;
  animation: blob 22s ease-in-out infinite;
}

.animated-bg-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsla(48, 100%, 52%, 0.4), transparent 65%);
  top: 50%;
  right: -10%;
  opacity: 0.04;
  animation: blob 28s ease-in-out infinite 8s;
}

.animated-bg-blob-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsla(145, 80%, 42%, 0.3), transparent 65%);
  bottom: -15%;
  left: 30%;
  opacity: 0.03;
  animation: blob 35s ease-in-out infinite 16s;
}

@media (min-width: 768px) {
  .animated-bg-blob-1 { width: 800px; height: 800px; }
  .animated-bg-blob-2 { width: 600px; height: 600px; }
}

/* ========================================
   WhatsApp Floating
   ======================================== */
.whatsapp-floating {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .whatsapp-floating {
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
  }
}

.whatsapp-floating svg {
  width: 26px;
  height: 26px;
  color: var(--primary-foreground);
}

/* ========================================
   Section CTA center
   ======================================== */
.section-cta-center {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

@media (min-width: 640px) { .section-cta-center { margin-top: 4rem; } }

/* Scroll behavior */
html { scroll-behavior: smooth; }

/* IntersectionObserver reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }
