@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background: #08090c;
  background-image: 
    radial-gradient(circle at 5% 15%, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 95% 85%, rgba(0, 229, 255, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.02) 0%, transparent 60%);
  color: #ffffff;
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow-x: hidden;
  scroll-behavior: smooth;
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

button {
  font-family: inherit;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 16px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.header-bar {
  position: sticky;
  top: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  margin: 0 -16px 16px;
  background: rgba(8, 9, 12, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-bar:hover {
  background: rgba(8, 9, 12, 0.85);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-link {
  display: inline-flex;
}

.logo-image {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.25));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.logo-image:hover {
  transform: translateY(-2px) scale(1.05) rotate(-3deg);
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.7)) drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
}

.header-title {
  margin: 0 0 0 12px;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #a5afc0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 6px 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  background: transparent;
  font-weight: 600;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #ffd700 0%, #00e5ff 100%);
  border-radius: 999px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  transform: translateY(-1px);
}

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

.nav-link:focus-visible {
  outline: none;
  color: #ffd700;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 48px 40px;
  border-radius: 24px;
  background: radial-gradient(circle at 5% 5%, rgba(255, 215, 0, 0.15) 0%, rgba(8, 9, 12, 0.95) 55%),
    radial-gradient(circle at 95% 95%, rgba(0, 229, 255, 0.18) 0%, rgba(8, 9, 12, 0.98) 55%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.9), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  min-height: 380px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}

.hero:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.95), 0 0 40px rgba(255, 215, 0, 0.08);
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.hero-kicker {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffd700;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.95), 0 0 4px rgba(255, 215, 0, 0.5);
}

.hero-heading {
  margin: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(34px, 5.5vw, 48px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #ffffff 30%, #ccd1d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-highlight {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, #ffd700 0%, #ffed8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.35));
}

.hero-subheading {
  margin: 4px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.hero-meta-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.hero-meta-pill:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.hero-meta-accent-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #00e5ff;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.95);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.primary-button {
  padding: 14px 28px;
  min-height: 48px;
  min-width: 180px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 50%, #ffd700 100%);
  background-size: 200% auto;
  color: #08090c;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.4);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-button:hover {
  transform: translateY(-4px) scale(1.02);
  background-position: right center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 215, 0, 0.8);
}

.primary-button:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 215, 0, 0.5);
}

.primary-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #08090c, 0 0 0 4px rgba(255, 215, 0, 0.8);
}

.secondary-button {
  padding: 14px 28px;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.secondary-button:hover {
  transform: translateY(-4px);
  background: rgba(0, 229, 255, 0.05);
  border-color: #00e5ff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 229, 255, 0.4);
}

.secondary-button:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.secondary-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #08090c, 0 0 0 4px rgba(0, 229, 255, 0.8);
}

.experience-section {
  position: relative;
  padding: 36px 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.experience-section:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95);
}

.experience-copy {
  flex: 1 1 500px;
}

.experience-heading {
  margin: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.experience-emphasis {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: #ffd700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.experience-subcopy {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.experience-stat {
  padding: 16px 24px;
  border-radius: 20px;
  background: radial-gradient(circle at 0 0, rgba(255, 215, 0, 0.15) 0%, rgba(8, 9, 12, 0.95) 70%);
  border: 1px solid rgba(255, 215, 0, 0.4);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 200px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 215, 0, 0.25);
  transition: all 0.4s ease;
}

.experience-section:hover .experience-stat {
  transform: scale(1.03);
  border-color: rgba(255, 215, 0, 0.7);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 215, 0, 0.45);
}

.experience-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.experience-stat-label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 4px;
}

.section-heading {
  margin: 0 0 8px;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 30%, #a5afc0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subheading {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
}

.floating-gallery {
  position: relative;
  padding: 36px 32px;
  border-radius: 24px;
  background: radial-gradient(circle at 10% 0%, rgba(255, 215, 0, 0.1) 0%, rgba(8, 9, 12, 0.96) 60%),
    radial-gradient(circle at 90% 100%, rgba(0, 229, 255, 0.12) 0%, rgba(8, 9, 12, 0.98) 60%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.95), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.floating-gallery-grid {
  position: relative;
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  align-items: stretch;
  min-height: 280px;
}

.gallery-card {
  position: relative;
}

/* Gallery Filters Bar */
.gallery-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  width: 100%;
}

.filter-btn {
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.filter-btn.active {
  color: #08090c;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  border-color: #ffd700;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.gallery-card-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card-bubble:hover {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 229, 255, 0.25);
  border-color: rgba(0, 229, 255, 0.5);
  background: rgba(0, 229, 255, 0.04);
}

.gallery-bubble-image {
  width: 100%;
  height: 100%;
  max-width: 220px;
  max-height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(8, 9, 12, 0.9), 0 18px 45px rgba(0, 0, 0, 0.9);
  transform: translate3d(0, 0, 0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.gallery-card-bubble:hover .gallery-bubble-image {
  transform: scale(1.04);
  box-shadow: 0 0 0 4px rgba(8, 9, 12, 0.9), 0 26px 80px rgba(0, 0, 0, 0.95);
}

.gallery-card-polaroid {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 220px;
  padding: 12px 12px 20px;
  border-radius: 18px;
  background: #fdfdfc;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
  transform-origin: center center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card-polaroid:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
  transform: translateY(-8px) rotate(-1.5deg) scale(1.02);
}

.polaroid-image {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.polaroid-caption {
  margin: 12px 4px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #121318;
}

/* Gallery Cards Overlays */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 9, 12, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 2;
}

.gallery-card-bubble .gallery-overlay {
  border-radius: 24px;
}

.gallery-card-polaroid .gallery-overlay {
  height: 160px;
  top: 12px;
  left: 12px;
  width: calc(100% - 24px);
  border-radius: 10px;
}

.gallery-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay-icon {
  font-size: 24px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.gallery-overlay-title {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover .gallery-overlay-content {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 9, 12, 0.94);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.95);
  animation: zoomIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-caption {
  margin-top: 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  transform: scale(1.1) rotate(90deg);
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

@keyframes zoomIn {
  0% {
    transform: scale(0.92);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.social-proof {
  position: relative;
  padding: 36px 32px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.95), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-top: 16px;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
  transform: translate3d(0, -8px, 0);
  background: rgba(255, 215, 0, 0.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 25px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.review-star {
  width: 16px;
  height: 16px;
  color: #ffd700;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.9));
}

.review-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 10px;
}

.review-author {
  margin-top: auto;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.cta-section {
  position: relative;
  margin-top: 24px;
  padding: 48px;
  border-radius: 24px;
  background: radial-gradient(circle at 5% 5%, rgba(255, 215, 0, 0.15) 0%, rgba(8, 9, 12, 0.98) 60%);
  border: 1px solid rgba(255, 215, 0, 0.45);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.95), 0 0 35px rgba(255, 215, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-copy-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 560px;
}

.cta-heading {
  margin: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 30%, #ccd1d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-subcopy {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.whatsapp-button {
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 950;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  animation: morphShape 6s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-radius 0.4s ease, 
              background-color 0.4s ease, 
              box-shadow 0.4s ease;
  will-change: transform, border-radius, background-color;
}

.whatsapp-button:hover {
  animation-play-state: paused;
  border-radius: 50% !important;
  background-color: #25d366 !important;
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(37, 211, 102, 0.85);
}

.whatsapp-button:active {
  transform: scale(0.96) translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #08090c, 0 0 0 4px rgba(37, 211, 102, 0.9);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.site-footer {
  margin-top: auto;
  padding: 24px 16px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-left {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-right {
  font-size: 11px;
  opacity: 0.8;
}

.footer-brand {
  color: #ffd700;
  font-weight: 600;
}

a {
  color: #00e5ff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.9);
}

a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #08090c, 0 0 0 4px rgba(0, 229, 255, 0.8);
  border-radius: 4px;
  padding: 0 2px;
}

input[type='text'],
input[type='email'],
input[type='tel'] {
  width: 100%;
  padding: 10px 12px;
  min-height: 40px;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

input[type='text']:hover,
input[type='email']:hover,
input[type='tel']:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.55);
}

input[type='text']:focus,
input[type='email']:focus,
input[type='tel']:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 1px #ffd700, 0 16px 45px rgba(0, 0, 0, 0.95);
  transform: translateY(-1px);
}

textarea {
  width: 100%;
  min-height: 120px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

textarea:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.55);
}

textarea:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 1px #ffd700, 0 16px 45px rgba(0, 0, 0, 0.95);
  transform: translateY(-1px);
}

.physics-float {
  position: relative;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: floatOrbit 16s ease-in-out infinite alternate;
}

.physics-float:hover {
  animation-play-state: paused;
}

@keyframes floatOrbit {
  0% {
    transform: translate3d(0, 0, 0) rotate3d(0, 0, 1, 0deg);
  }
  25% {
    transform: translate3d(4px, -10px, 0) rotate3d(0, 0, 1, 1.5deg);
  }
  50% {
    transform: translate3d(-6px, 6px, 0) rotate3d(0, 0, 1, -1.5deg);
  }
  75% {
    transform: translate3d(8px, -4px, 0) rotate3d(0, 0, 1, 1deg);
  }
  100% {
    transform: translate3d(-4px, 10px, 0) rotate3d(0, 0, 1, -1deg);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 215, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
}

.hero-orbit-gold {
  width: 160px;
  height: 160px;
  border: 1px dashed rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.35);
  animation: spin-clockwise 25s linear infinite;
}

.hero-orbit-cyan {
  width: 220px;
  height: 220px;
  border: 1px dashed rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.35);
  animation: spin-counter-clockwise 35s linear infinite;
}

.hero-orbit-core {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 0%, #ffd700 0%, #08090c 70%);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.85);
  animation: pulseGlow 2.5s ease-out infinite;
}

@keyframes spin-clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin-counter-clockwise {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
  .header-bar {
    flex-direction: row;
    gap: 12px;
    padding: 10px 16px;
  }

  .header-title {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 36px 24px;
    text-align: center;
  }

  .hero-kicker {
    justify-content: center;
  }

  .hero-meta-row {
    justify-content: center;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    min-height: 200px;
  }

  .whatsapp-button {
    left: 20px;
    right: auto;
    bottom: 20px;
  }
}

@keyframes morphShape {
  0% {
    border-radius: 50%;
    background-color: #25d366;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    border-radius: 30% 70% 40% 60% / 50% 60% 40% 50%;
    background-color: #128c7e;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(18, 140, 126, 0.5);
  }
  100% {
    border-radius: 50%;
    background-color: #25d366;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(37, 211, 102, 0.4);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .whatsapp-button {
    animation: none !important;
    border-radius: 50% !important;
    background-color: #25d366 !important;
  }
}
