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

:root {
  --color-black: #0a0a0a;
  --color-white: #ffffff;
  --color-gold: #d4af37;
  --color-gold-light: #f3e5ab;
  --color-teal: #008080;
  --color-ocean: #006994;
  --color-orange: #ff7e5f;
  
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
  --gradient-ocean: linear-gradient(135deg, #008080 0%, #006994 100%);
  --gradient-premium: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--color-black);
  color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Montserrat', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b5952f;
}

/* Selection */
::selection {
  background: var(--color-gold);
  color: var(--color-black);
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.glass-hover {
  transition: all 0.4s ease;
}

.glass-hover:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px 0 rgba(212, 175, 55, 0.2);
}

/* Text Gradients */
.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn-gold {
  background: var(--gradient-gold);
  color: var(--color-black);
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-gold:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-black);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-out;
}

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

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.pulse-button {
  animation: pulse-glow 2s infinite;
}

/* Floating Actions */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 50;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.7);
}

.floating-call {
  position: fixed;
  bottom: 105px;
  right: 30px;
  z-index: 50;
  background-color: var(--color-gold);
  color: var(--color-black);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
  transition: all 0.3s ease;
}
.floating-call:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 25px rgba(212, 175, 55, 0.7);
}

/* Image Overlays */
.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
}

.card-zoom {
  overflow: hidden;
}
.card-zoom img {
  transition: transform 0.3s ease;
}
.card-zoom:hover img {
  transform: scale(1.1);
}

/* Header Sticky */
header {
  transition: all 0.4s ease;
}
header.scrolled {
  padding-top: 0.5rem;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
  .floating-call {
    width: 50px;
    height: 50px;
    bottom: 85px;
    right: 20px;
    font-size: 20px;
  }
  .glass {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  /* Ensure no overflow */
  body {
    width: 100%;
    overflow-x: hidden;
  }
}

