/* Dark Luxury Theme - Black, Gold, Jewel Tones */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --dark-gray: #1a1a1a;
  --gold: #d4af37;
  --gold-light: #e5c158;
  --emerald: #2d5f4f;
  --sapphire: #1a3a52;
  --text-light: #e0e0e0;
  --text-muted: #b0b0b0;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text-light);
  line-height: 1.6;
}

/* Header with Centered Logo */
.luxury-header {
  background: var(--black);
  padding: 40px 0;
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 100;
}

.logo-container {
  display: inline-block;
}

.luxury-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
  transition: all 0.3s ease;
}

.luxury-logo:hover {
  filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.8));
  transform: scale(1.05);
}

/* Hero Section */
.hero-luxury {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, rgba(45, 95, 79, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.hero-luxury::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 28px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.hero-description {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-luxury-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  border: none;
  padding: 18px 50px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  margin-bottom: 60px;
}

.btn-luxury-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.btn-luxury-primary:active {
  transform: translateY(0);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 5px;
}

.stat-text {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(212, 175, 55, 0.3);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Premium Services Section */
.premium-services {
  padding: 100px 40px;
  background: var(--black);
  position: relative;
}

.premium-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.luxury-card {
  background: linear-gradient(135deg, var(--dark-gray) 0%, rgba(45, 95, 79, 0.1) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.luxury-card:hover {
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

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

.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--gold) 0%, var(--emerald) 100%);
  transition: height 0.4s ease;
}

.luxury-card:hover .card-accent {
  height: 100%;
}

.luxury-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text-light);
  margin-bottom: 15px;
  font-weight: 700;
}

.luxury-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.7;
}

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}

/* Luxury Benefits Section */
.luxury-benefits {
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
  position: relative;
}

.luxury-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.benefit-card {
  padding: 40px;
  border-left: 3px solid var(--gold);
  position: relative;
  background: rgba(212, 175, 55, 0.03);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateX(10px);
}

.benefit-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.3);
  margin-bottom: 20px;
  line-height: 1;
}

.benefit-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 15px;
  font-weight: 700;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Process Section */
.process-section {
  padding: 100px 40px;
  background: var(--black);
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap;
}

.timeline-step {
  flex: 1;
  min-width: 220px;
  text-align: center;
  position: relative;
  padding: 40px 20px;
  background: rgba(45, 95, 79, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.timeline-step:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(45, 95, 79, 0.15);
  transform: translateY(-5px);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 15px;
}

.timeline-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 700;
}

.timeline-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.timeline-connector {
  height: 2px;
  background: rgba(212, 175, 55, 0.4);
  flex: 0.5;
  min-width: 30px;
}

/* Pricing Section */
.pricing-luxury {
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
  position: relative;
}

.pricing-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.price-box {
  background: linear-gradient(135deg, var(--dark-gray) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.price-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.price-box:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.price-box:hover::before {
  transform: scaleX(1);
}

.price-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 700;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.price-detail {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Section */
.contact-luxury {
  padding: 100px 40px;
  background: var(--black);
  position: relative;
  text-align: center;
}

.contact-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 50px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 240px;
  padding: 40px;
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--gold);
}

.contact-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.contact-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.contact-divider {
  width: 1px;
  height: 60px;
  background: rgba(212, 175, 55, 0.3);
}

.btn-luxury-secondary {
  background: rgba(212, 175, 55, 0);
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 16px 50px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-luxury-secondary:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Luxury Modal */
.luxury-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
  padding: 20px;
}

.modal-luxury-box {
  background: linear-gradient(135deg, var(--dark-gray) 0%, rgba(45, 95, 79, 0.1) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 60px;
  width: 100%;
  max-width: 600px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--gold-light);
  transform: rotate(90deg);
}

.modal-luxury-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.modal-luxury-box form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-luxury-box input,
.modal-luxury-box select,
.modal-luxury-box textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-light);
  padding: 14px;
  font-family: inherit;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.modal-luxury-box input::placeholder,
.modal-luxury-box textarea::placeholder {
  color: var(--text-muted);
}

.modal-luxury-box select {
  color: var(--text-light);
}

.modal-luxury-box input:focus,
.modal-luxury-box select:focus,
.modal-luxury-box textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn-luxury-form {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  border: none;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-luxury-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

/* Success Message */
#success {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 54px;
  }

  .section-header h2 {
    font-size: 42px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    flex-direction: column;
    gap: 0;
  }

  .timeline-step {
    width: 100%;
  }

  .timeline-connector {
    width: 2px;
    height: 30px;
  }

  .contact-info {
    flex-direction: column;
    gap: 30px;
  }

  .contact-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .luxury-header {
    padding: 20px 0;
  }

  .luxury-logo {
    width: 100px;
    height: 100px;
  }

  .hero-luxury {
    min-height: 80vh;
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .modal-luxury-box {
    padding: 40px 25px;
  }

  .premium-services,
  .luxury-benefits,
  .process-section,
  .pricing-luxury,
  .contact-luxury {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .btn-luxury-primary {
    padding: 14px 35px;
    font-size: 14px;
  }

  .hero-stats {
    gap: 20px;
    flex-direction: column;
  }

  .stat-divider {
    display: none;
  }
}
