/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold-400: #D4AF37;
  --gold-500: #C5A028;
  --gold-600: #B08D22;
  --dark-900: #121212;
  --dark-800: #1E1E1E;
  --dark-700: #2D2D2D;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0c0c0c;
  color: #f5f5f5;
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
}

::selection {
  background-color: var(--gold-500);
  color: black;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

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

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-400);
}

/* Utility Classes */
.text-gold {
  color: var(--gold-500);
}

.italic {
  font-style: italic;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s;
  background: transparent;
  padding: 1.5rem 0;
}

.navbar.scrolled {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .navbar-container {
    padding: 0 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.logo:hover {
  color: var(--gold-400);
}

.logo-icon {
  color: var(--gold-400);
  transition: transform 0.5s;
}

.logo:hover .logo-icon {
  transform: rotate(180deg);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.desktop-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .desktop-menu {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--gold-400);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: width 0.3s;
}

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

.btn-primary {
  padding: 0.5rem 1.5rem;
  background: var(--gold-500);
  color: black;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: white;
  transform: scale(1.05);
}

.btn-primary:active {
  transform: scale(0.95);
}

.mobile-toggle {
  display: block;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.mobile-toggle:hover {
  color: var(--gold-400);
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: var(--dark-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: max-height 0.3s, opacity 0.3s;
  opacity: 0;
}

.mobile-menu.open {
  max-height: 500px;
  opacity: 1;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-family: 'Playfair Display', serif;
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}

.mobile-nav-link:hover {
  color: var(--gold-400);
}

.mobile-btn {
  padding: 0.75rem 2rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  background: var(--dark-900);
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--dark-800), var(--dark-900));
  opacity: 0.5;
}

@media (max-width: 1023px) {
  .hero-bg-gradient {
    display: none;
  }
}

.hero-bg-glow {
  position: absolute;
  top: 5rem;
  right: 5rem;
  width: 24rem;
  height: 24rem;
  background: var(--gold-500);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  z-index: 10;
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(197, 160, 40, 0.3);
  border-radius: 9999px;
  background: rgba(197, 160, 40, 0.1);
  color: var(--gold-400);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.2;
  color: white;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  color: var(--gray-400);
  font-size: 1.125rem;
  max-width: 28rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}

.hero-buttons .btn-primary {
  padding: 1rem 2rem;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.btn-secondary {
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
  transform: scale(1.05) translateX(5px);
}

.btn-secondary:active {
  transform: scale(0.95);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  color: white;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-container {
  position: relative;
  height: 600px;
  display: none;
}

@media (min-width: 1024px) {
  .hero-image-container {
    display: block;
  }
}

.hero-image-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 90%;
  height: 100%;
  animation: fadeInScale 0.8s ease-out 0.2s both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-image {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.7s;
}

.hero-image:hover img {
  filter: grayscale(0);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.8), transparent);
}

.floating-badge {
  position: absolute;
  background: var(--dark-800);
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 20rem;
}

.floating-badge-1 {
  top: 2.5rem;
  left: -2.5rem;
  animation: floatUpDown 4s ease-in-out infinite;
}

.floating-badge-2 {
  bottom: 5rem;
  right: -1.25rem;
  background: var(--gold-500);
  color: black;
  padding: 1rem;
  animation: floatUpDown 5s ease-in-out infinite 1s;
}

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

.floating-badge-2 {
  animation: floatUpDown2 5s ease-in-out infinite 1s;
}

@keyframes floatUpDown2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.floating-badge-1 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.reviewer-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-500);
  flex-shrink: 0;
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: var(--gold-500);
  margin-bottom: 0.25rem;
}

.review-text {
  font-size: 0.75rem;
  color: var(--gray-300);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.review-author {
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}

.badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.badge-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-amount {
  font-size: 1.875rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.price-unit {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.7;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: var(--dark-800);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-images {
  position: relative;
  z-index: 10;
}

.about-img {
  border-radius: 2px;
  object-fit: cover;
  width: 100%;
  filter: grayscale(100%);
  transition: filter 0.5s;
}

.about-img:hover {
  filter: grayscale(0);
}

.about-img-1 {
  height: 16rem;
  margin-top: 3rem;
}

.about-img-2 {
  height: 16rem;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: -1;
}

.about-circle-1 {
  width: 120%;
  height: 120%;
}

.about-circle-2 {
  width: 80%;
  height: 80%;
  border-color: rgba(197, 160, 40, 0.1);
}

.about-content {
  animation: fadeInUp 0.8s ease-out;
}

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

.section-label {
  color: var(--gold-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: white;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-text {
  color: var(--gray-400);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  color: var(--gray-400);
  margin-top: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.btn-outline {
  padding: 0.75rem 2rem;
  border: 1px solid var(--gold-500);
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--gold-500);
  color: black;
  transform: scale(1.05);
}

.btn-outline:active {
  transform: scale(0.95);
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: var(--dark-900);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  background: var(--dark-800);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
  overflow: hidden;
  animation: fadeInUp 0.5s ease-out both;
}

.service-card:hover {
  border-color: rgba(197, 160, 40, 0.5);
  transform: translateY(-5px);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(197, 160, 40, 0.05);
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
}

.service-card:hover::before {
  transform: translateY(0);
}

.service-card-content {
  position: relative;
  z-index: 10;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  color: white;
  transition: color 0.3s;
}

.service-card:hover .service-title {
  color: var(--gold-500);
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-500);
  transition: color 0.3s;
}

.service-card:hover .service-price {
  color: white;
}

.service-description {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.service-card:hover .service-description {
  color: var(--gray-300);
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-duration {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-book {
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover .service-book {
  opacity: 1;
  transform: translateX(0);
}

/* Gallery Section */
.gallery {
  padding: 6rem 0;
  background: var(--dark-800);
}

.gallery-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .gallery-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.gallery-view-all {
  display: none;
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid var(--gold-500);
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}

@media (min-width: 768px) {
  .gallery-view-all {
    display: block;
  }
}

.gallery-view-all:hover {
  color: var(--gold-500);
  transform: scale(1.05);
}

.gallery-grid {
  columns: 1;
  column-gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    columns: 3;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  break-inside: avoid;
  animation: fadeInScale 0.5s ease-out both;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.7s;
}

.gallery-item:hover img {
  filter: grayscale(0);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

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

.gallery-overlay-text {
  color: var(--gold-500);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
}

.gallery-mobile-btn {
  margin-top: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .gallery-mobile-btn {
    display: none;
  }
}

/* Team Section */
.team {
  padding: 6rem 0;
  background: var(--dark-900);
  scroll-margin-top: 7rem;
}

.team-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-member {
  animation: fadeInUp 0.6s ease-out both;
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.team-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.7s;
}

.team-member:hover .team-image {
  filter: grayscale(0);
}

.team-socials {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.team-member:hover .team-socials {
  transform: translateY(0);
}

.social-icon {
  padding: 0.75rem;
  background: var(--gold-500);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  background: white;
}

.team-info {
  text-align: center;
}

.team-name {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  color: white;
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}

.team-member:hover .team-name {
  color: var(--gold-500);
}

.team-role {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: var(--dark-800);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.quote-icon {
  color: var(--gold-500);
  width: 4rem;
  height: 4rem;
  margin-bottom: 2rem;
}

.testimonial-content {
  animation: fadeIn 1s ease-out;
}

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

.testimonial-text {
  font-size: 1.25rem;
  color: var(--gray-300);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  color: var(--gold-500);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial-controls {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

.testimonial-btn {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.25rem;
}

.testimonial-btn:hover {
  background: var(--gold-500);
  color: black;
  border-color: var(--gold-500);
}

.testimonials-image {
  position: relative;
  height: 500px;
}

.testimonials-frame {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 75%;
  border: 2px solid rgba(197, 160, 40, 0.2);
  z-index: 0;
}

.testimonials-image img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 90%;
  object-fit: cover;
  filter: grayscale(100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 10;
  transition: filter 0.7s;
}

.testimonials-image:hover img {
  filter: grayscale(0);
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: var(--dark-900);
  position: relative;
  scroll-margin-top: 7rem;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://picsum.photos/seed/texture/1920/1080');
  opacity: 0.05;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  background: var(--dark-800);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: fadeInLeft 0.8s ease-out;
}

.contact-title {
  font-size: 1.875rem;
  font-family: 'Playfair Display', serif;
  color: white;
  margin-bottom: 2rem;
}

.contact-description {
  color: var(--gray-400);
  margin-bottom: 3rem;
}

.hours-list {
  list-style: none;
  margin-bottom: 3rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-300);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gray-300);
}

.contact-detail svg {
  color: var(--gold-500);
  flex-shrink: 0;
}

.contact-map {
  height: 100%;
  min-height: 400px;
  position: relative;
  background: var(--dark-700);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: fadeInRight 0.8s ease-out;
}

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

.contact-map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.contact-map:hover .map-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.map-btn {
  padding: 1rem 2.5rem;
  background: white;
  color: black;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
}

.map-btn:hover {
  background: var(--gold-500);
}

/* Footer */
.footer {
  background: black;
  color: white;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 2;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
  color: white;
}

.footer-logo svg {
  color: var(--gold-500);
}

.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-description {
  color: var(--gray-500);
  max-width: 24rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--dark-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--gold-500);
  color: black;
}

.footer-heading {
  font-size: 1.125rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-list a {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}

.footer-list a:hover {
  color: var(--gold-500);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* Animations for scroll reveal */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out both;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out both;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out both;
}

.fade-in-scale {
  animation: fadeInScale 0.8s ease-out both;
}

