:root {
  --gold-primary: #D4AF37;
  --gold-secondary: #F5D07A;
  --gold-dark: #996515;
  --silver-primary: #C0C0C0;
  --silver-secondary: #E5E4E2;
  --bg-light: #FAF9F6;
  --text-dark: #333333;
  --text-light: #F8F8F8;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 
               Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.white-bg {
  background-color: #FFFFFF;
}

.gold-bg {
  background-color: var(--gold-primary);
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
}

.gold-text {
  color: var(--gold-primary);
}

.silver-text {
  color: var(--silver-primary);
}

.black-text {
  color: var(--text-dark);
}

.white-text {
  color: var(--text-light);
}

.font-serif {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Navigation */
nav {
  transition: var(--transition);
  backdrop-filter: blur(10px);
  background-color: rgba(212, 175, 55, 0.95);
}

.nav-link {
  position: relative;
  transition: var(--transition);
}

.nav-link:hover {
  transform: translateY(-2px);
}

.nav-link:hover .gold-icon {
  fill: var(--text-light);
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--text-light);
  transition: width 0.3s ease;
}

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

/* Carousel */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.carousel {
  position: relative;
  height: 100%;
}

.carousel-inner {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.carousel-item:hover .carousel-img {
  transform: scale(1.02);
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-indicator.active {
  background-color: var(--gold-primary);
  transform: scale(1.2);
}

/* Buttons */
.gradient-btn {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gradient-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
}

.gradient-btn:active {
  transform: translateY(1px);
}

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

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Form Elements */
.contact-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  font-size: 16px;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.9);
}

.contact-form-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.shadow-xl {
  box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }

  .carousel-prev,
  .carousel-next {
    width: 40px;
    height: 40px;
  }

  .gradient-btn {
    padding: 10px 20px;
  }

  .carousel-container {
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 30px 0;
  }

  .carousel-prev,
  .carousel-next {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .carousel-indicators {
    bottom: 10px;
  }

  .carousel-indicator {
    width: 8px;
    height: 8px;
  }
}

/* Special Effects */
.hover-scale {
  transition: var(--transition);
}

.hover-scale:hover {
  transform: scale(1.03);
}

.hover-glow {
  transition: var(--transition);
}

.hover-glow:hover {
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}