:root {
  /* Colors */
  --color-primary: #0A0A0A;
  --color-primary-light: #1A1A1A;
  --color-accent: #D4AF37;
  --color-accent-light: #F4C430;
  --color-text-light: #F5F5F5;
  --color-text-dim: #999;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFE57F 50%, #D4AF37 100%);
  --gradient-overlay: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0));

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-sm: 12px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 80px;

  /* Effects */
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.25);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-text-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealImage {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Header - Improved Navigation */
.header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-wrapper:hover .logo-img {
  transform: scale(1.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-accent);
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Improved Navigation */
.nav {
  display: flex;
  gap: 48px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-light);
  position: relative;
  padding: 8px 0;
  opacity: 0.85;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--color-accent);
  opacity: 1;
}

.nav-link:hover::before {
  width: 100%;
}

/* Hero Section - Enhanced */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: var(--spacing-lg);
  position: relative;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

.highlight {
  color: var(--color-accent);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-dim);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 90%;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 20px;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.btn {
  padding: 16px 40px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: var(--gradient-gold);
  color: #000;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  color: var(--color-text-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-accent);
}

/* Hero Image - Enhanced */
.hero-image-wrapper {
  position: relative;
  border-radius: 8px;
  animation: revealImage 1s ease-out 0.3s forwards;
  opacity: 0;
}

.image-reveal {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
}

.image-reveal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.05);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.12);
}

/* Features Section - Enhanced */
.features {
  padding: 100px 24px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--color-text-light);
}

.title-accent {
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(20px);
  padding: 48px 36px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  text-align: center;
}

.delay-1 {
  animation-delay: 0.6s;
}

.delay-2 {
  animation-delay: 0.7s;
}

.delay-3 {
  animation-delay: 0.8s;
}

.feature-card:hover {
  transform: translateY(-12px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: var(--color-accent);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--color-accent);
}

.feature-card p {
  color: var(--color-text-dim);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Footer - Enhanced */
.footer {
  padding: 60px 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  margin-top: 80px;
  background: linear-gradient(to bottom, transparent, rgba(26, 26, 26, 0.5));
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  color: var(--color-text-dim);
  font-style: italic;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 80px;
  justify-content: flex-end;
}

.footer-column h4 {
  color: var(--color-accent);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.footer-column a,
.footer-column p {
  display: block;
  color: var(--color-text-dim);
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  color: #555;
  font-size: 0.85rem;
}

/* Our Story Section */
.our-story {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-light));
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-label {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-weight: 600;
}

.story-title {
  font-size: 3.5rem;
  margin-bottom: 40px;
  color: var(--color-text-light);
  line-height: 1.2;
}

.story-text {
  margin-bottom: 50px;
}

.story-text p {
  color: var(--color-text-dim);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 24px;
}

.story-text strong {
  color: var(--color-accent);
  font-weight: 600;
}

/* Story Stats */
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  color: var(--color-text-dim);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Story Image */
.story-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.story-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-image-wrapper:hover img {
  transform: scale(1.05);
}

.story-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-gold);
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.badge-text {
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

/* Gallery Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  overflow-y: auto;
  padding: 40px 20px;
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  animation: fadeInUp 0.3s ease-out;
}

.modal-close {
  position: fixed;
  top: 30px;
  right: 40px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--color-accent);
  color: #000;
  transform: rotate(90deg);
}

.modal-content {
  max-width: 1200px;
  width: 100%;
  animation: modalSlideIn 0.4s ease-out;
  margin-top: 40px;
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-header h2 {
  font-size: 3rem;
  margin-bottom: 12px;
  color: var(--color-text-light);
}

.gallery-header p {
  color: var(--color-text-dim);
  font-size: 1.1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 1;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--color-accent);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: var(--color-accent);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.gallery-overlay p {
  color: var(--color-text-dim);
  font-size: 0.9rem;
}

/* Gallery Contact Section */
.gallery-contact {
  margin-top: 60px;
  padding: 50px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.gallery-contact h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--color-accent);
}

.gallery-contact p {
  color: var(--color-text-dim);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.gallery-contact .btn {
  margin-bottom: 20px;
}

.contact-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
}

.contact-details.show {
  max-height: 200px;
  opacity: 1;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  margin: 12px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--color-accent);
  transform: translateX(5px);
}

.contact-label {
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 1rem;
}

.contact-value {
  color: var(--color-accent);
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--color-accent-light);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 80px;
    right: -100%;
    flex-direction: column;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 40px;
    gap: 24px;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 250px;
  }

  .nav.active {
    right: 0;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto 40px;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-title {
    font-size: 2.5rem;
  }

  .story-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}