/* ========== HERO GRADIENT ========== */
.hero-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #134e4a 55%, #0d9488 80%, #14b8a6 100%);
}

/* ========== GEOMETRIC SHAPES ========== */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.geo {
  position: absolute;
  opacity: 0.08;
}

.geo-1 {
  width: 400px;
  height: 400px;
  background: #5eead4;
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.geo-2 {
  width: 200px;
  height: 200px;
  background: #2dd4bf;
  top: 20%;
  left: 5%;
  transform: rotate(45deg);
  border-radius: 20px;
  opacity: 0.12;
}

.geo-3 {
  width: 120px;
  height: 120px;
  background: #99f6e4;
  border-radius: 50%;
  bottom: 15%;
  right: 10%;
  opacity: 0.15;
}

.geo-4 {
  width: 60px;
  height: 60px;
  background: #2dd4bf;
  top: 40%;
  right: 25%;
  transform: rotate(30deg);
  border-radius: 10px;
  opacity: 0.2;
}

.geo-5 {
  width: 280px;
  height: 280px;
  background: #14b8a6;
  border-radius: 50%;
  bottom: -80px;
  left: 20%;
  opacity: 0.06;
}

/* ========== VISIT SECTION SHAPES ========== */
.visit-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.v-shape {
  position: absolute;
  opacity: 0.1;
}

.v-shape-1 {
  width: 300px;
  height: 300px;
  background: #5eead4;
  border-radius: 50%;
  top: -50px;
  left: -50px;
}

.v-shape-2 {
  width: 150px;
  height: 150px;
  background: #99f6e4;
  top: 30%;
  right: 5%;
  transform: rotate(45deg);
  border-radius: 15px;
}

.v-shape-3 {
  width: 100px;
  height: 100px;
  background: #2dd4bf;
  bottom: 10%;
  left: 10%;
  border-radius: 50%;
}

/* ========== FOOTER DECORATIONS ========== */
.footer-deco-1, .footer-deco-2 {
  position: absolute;
  pointer-events: none;
}

/* ========== CTA BUTTON ========== */
.cta-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-btn:hover::after {
  opacity: 1;
}

/* ========== NAVBAR ========== */
#navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-blur-xl;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #5eead4;
  transition: width 0.3s ease;
}

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

/* ========== REVEAL ANIMATIONS ========== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ========== MENU CARD HOVER ========== */
.menu-card {
  position: relative;
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.3), transparent, rgba(94, 234, 212, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.menu-card:hover::before {
  opacity: 1;
}

/* ========== HERO BADGE ANIMATION ========== */
.hero-badge {
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.2); }
  50% { box-shadow: 0 0 20px 5px rgba(94, 234, 212, 0.1); }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: #14b8a6;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2dd4bf;
}

/* ========== MOBILE MENU ========== */
#mobile-menu {
  animation: slideDown 0.3s ease;
}

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

/* ========== FORM FOCUS ========== */
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .geo-1 { width: 200px; height: 200px; }
  .geo-5 { width: 150px; height: 150px; }
}
