/* Core Variables & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-color: #0a0a1a;
  --primary-accent: #9333ea;
  --secondary-accent: #6b21a8;
  --gold: #d4a574;
  --text-color: #f5f5f5;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --purple-glow: rgba(147, 51, 234, 0.3);
  --purple-border: rgba(147, 51, 234, 0.25);
  --gold-glow: rgba(212, 165, 116, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-weight: 600;
  margin-top: 0;
  line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--purple-glow);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   PAGE NAVIGATION (sub-page links)
   ============================================ */
.temple-page-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 5%;
  background: rgba(10, 10, 26, 0.95);
  border-bottom: 1px solid rgba(147, 51, 234, 0.15);
  position: relative;
  overflow: hidden;
}
.temple-page-nav a {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-accent);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.temple-page-nav a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(147, 51, 234, 0.4);
}
.temple-page-nav a.page-active {
  color: #fff;
  opacity: 1;
}
.temple-page-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-accent, #9333ea), transparent);
  animation: nav-scan 4s linear infinite;
}
@keyframes nav-scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@media (max-width: 600px) {
  .temple-page-nav {
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
  }
}

/* ===== HEADER ===== */
.mm-header {
  padding: 1rem 5%;
  background-color: rgba(10, 10, 26, 0.95);
  border-bottom: 1px solid var(--purple-border);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.mm-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mm-logo {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.4rem;
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold);
}

.mm-logo img {
  flex-shrink: 0;
  height: 32px;
  width: auto;
}

.mm-links {
  display: flex;
  gap: 0.6rem 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.mm-links a {
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0.5rem 0;
  position: relative;
}

.mm-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-accent);
  transition: width 0.3s ease;
}

.mm-links a:hover::after {
  width: 100%;
}

.mm-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--purple-border);
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  min-width: 44px;
  min-height: 44px;
  transition: background 0.3s ease;
}

.mm-menu-toggle:hover {
  background: rgba(147, 51, 234, 0.1);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 5%;
}

/* ===== HERO SECTION ===== */
.hero {
  text-align: center;
  padding: 4rem 0 2rem;
  animation: fadeIn 1.2s ease-out;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px var(--gold-glow);
  letter-spacing: -0.5px;
}

.hero .subtitle {
  font-size: 1.25rem;
  color: rgba(245, 245, 245, 0.8);
  max-width: 700px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.hero-img-container {
  margin: 2rem auto;
  border-radius: 12px;
  border: 1px solid var(--purple-border);
  overflow: hidden;
  box-shadow: 0 0 40px var(--purple-glow);
  max-width: 900px;
  position: relative;
}

.hero-img-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary-accent), transparent 50%, var(--gold));
  border-radius: 14px;
  z-index: -1;
  opacity: 0.5;
}

.hero-img-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero gradient background animation */
.hero-bg {
  position: relative;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(107, 33, 168, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 60%);
  animation: gradientShift 8s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes gradientShift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-5%, 5%) rotate(3deg);
  }
}

/* ===== SERVICE CARDS GRID ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.service-card {
  background: rgba(147, 51, 234, 0.04);
  border: 1px solid var(--purple-border);
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text-color);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px var(--purple-glow);
  border-color: var(--primary-accent);
  color: var(--text-color);
  text-shadow: none;
}

.service-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  flex: 1;
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.service-card .card-cta {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

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

/* ===== TRUST SECTION ===== */
.trust-section {
  text-align: center;
  padding: 3rem 0;
  margin: 2rem 0;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

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

.trust-stat .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-accent);
  display: block;
}

.trust-stat .stat-label {
  font-size: 0.85rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  margin: 4rem 0 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(147, 51, 234, 0.04);
  border: 1px solid var(--purple-border);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.testimonial-card .coming-soon {
  font-size: 0.9rem;
  color: var(--primary-accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonial-card .avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}

/* ===== PAGE CONTENT SECTIONS ===== */
.page-section {
  padding: 3rem 0;
}

.page-section + .page-section {
  border-top: 1px solid rgba(147, 51, 234, 0.1);
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ===== PRICING TABLE ===== */
.pricing-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  border: 1px solid var(--purple-border);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.pricing-table thead {
  background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
}

.pricing-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

.pricing-table tbody tr {
  transition: background 0.3s ease;
}

.pricing-table tbody tr:hover {
  background: rgba(147, 51, 234, 0.08);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.price-highlight {
  color: var(--gold);
  font-weight: 600;
}

/* ===== SERVICE TIER CARDS ===== */
.tier-cards {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}

.tier-card {
  background: rgba(147, 51, 234, 0.04);
  border: 1px solid var(--purple-border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s ease;
}

.tier-card:hover {
  border-color: var(--primary-accent);
}

.tier-card h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tier-card .tier-price {
  font-size: 1.1rem;
  color: var(--primary-accent);
  font-weight: 700;
}

.tier-card .tier-meta {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-decoration: none;
  min-height: 44px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--purple-glow);
  color: #fff;
  text-shadow: none;
}

.btn-gold {
  background: linear-gradient(135deg, #b8864a, var(--gold));
  color: var(--bg-color);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gold-glow);
  color: var(--bg-color);
  text-shadow: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary-accent);
  color: var(--primary-accent);
}

.btn-outline:hover {
  background: rgba(147, 51, 234, 0.1);
  transform: translateY(-2px);
  color: var(--primary-accent);
  text-shadow: none;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  margin: 3rem 0;
}

.faq-item {
  border: 1px solid var(--purple-border);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-accent);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: rgba(147, 51, 234, 0.04);
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  width: 100%;
  color: var(--text-color);
  font-family: var(--font-body);
  text-align: left;
  min-height: 44px;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(147, 51, 234, 0.08);
}

.faq-question .faq-toggle {
  font-size: 1.2rem;
  color: var(--primary-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem 1.5rem 1.5rem;
}

/* ===== VIDEO SECTION ===== */
.video-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--purple-border);
  box-shadow: 0 0 40px var(--purple-glow);
  margin: 2rem auto;
  max-width: 900px;
}

.video-container video {
  width: 100%;
  display: block;
}

/* ===== STEPS / HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.step {
  text-align: center;
  padding: 2rem;
  background: rgba(147, 51, 234, 0.04);
  border: 1px solid var(--purple-border);
  border-radius: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--primary-accent);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step h3 {
  margin-bottom: 0.75rem;
}

/* ===== NFT IMAGES ===== */
.nft-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.nft-image {
  border-radius: 12px;
  border: 1px solid var(--purple-border);
  overflow: hidden;
  box-shadow: 0 0 20px var(--purple-glow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.nft-image:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px var(--purple-glow);
}

.nft-image img {
  width: 100%;
  height: auto;
}

/* ===== COMING SOON BANNER ===== */
.coming-soon-banner {
  background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 4px 20px var(--purple-glow);
}

/* ===== TECH SECTION ===== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tech-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(147, 51, 234, 0.04);
  border: 1px solid var(--purple-border);
  border-radius: 10px;
}

.tech-item .tech-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.tech-item h4 {
  color: var(--primary-accent);
  margin-bottom: 0.5rem;
}

/* ===== FORM STYLES ===== */
.booking-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem;
  background: rgba(147, 51, 234, 0.04);
  border: 1px solid var(--purple-border);
  border-radius: 16px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(10, 10, 26, 0.8);
  border: 1px solid var(--purple-border);
  border-radius: 8px;
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 44px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-accent);
  box-shadow: 0 0 12px rgba(147, 51, 234, 0.2);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.2);
}

.form-error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.35rem;
  display: none;
}

.form-group input.error + .form-error,
.form-group select.error + .form-error,
.form-group textarea.error + .form-error {
  display: block;
}

.form-group select option {
  background: var(--bg-color);
  color: var(--text-color);
}

.form-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* ===== CONTRACT ADDRESS ===== */
.contract-address {
  background: rgba(10, 10, 26, 0.6);
  border: 1px solid var(--purple-border);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  word-break: break-all;
  text-align: center;
  margin: 1.5rem 0;
  color: var(--primary-accent);
}

/* ===== CONTACT INFO ===== */
.contact-info {
  text-align: center;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(147, 51, 234, 0.04);
  border: 1px solid var(--purple-border);
  border-radius: 12px;
}

.contact-info a {
  display: inline-block;
  margin: 0.5rem 0;
}

/* ===== DIVIDER ===== */
.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-accent), var(--gold));
  margin: 2rem auto;
  border: none;
}

/* ===== FOOTER ===== */
.mm-footer {
  padding: 2.5rem 5%;
  background-color: rgba(10, 10, 26, 0.95);
  border-top: 1px solid var(--purple-border);
  margin-top: 4rem;
}

.mm-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.mm-footer-col h4 {
  margin-bottom: 1rem;
  color: var(--gold);
}

.mm-footer-col a {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.7);
  transition: color 0.3s ease;
}

.mm-footer-col a:hover {
  color: var(--primary-accent);
  text-shadow: none;
}

.mm-footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mm-footer-bottom p {
  margin-bottom: 0.25rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-in {
  animation: fadeInUp 0.8s ease-out both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-purple { color: var(--primary-accent); }
.text-gold { color: var(--gold); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-3 { margin-bottom: 3rem; }

/* Dropdown Navigation */
.mm-dropdown {
  position: relative;
  display: inline-block;
}
.mm-dropdown-toggle {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.mm-dropdown-toggle:hover,
.mm-dropdown.active .mm-dropdown-toggle {
  opacity: 1;
}
.mm-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 26, 0.98);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 160px;
  z-index: 1001;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mm-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}
.mm-dropdown:hover .mm-dropdown-menu,
.mm-dropdown.open .mm-dropdown-menu {
  display: flex;
  flex-direction: column;
}
.mm-dropdown-menu a {
  padding: 0.5rem 1.2rem;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s, background 0.3s;
}
.mm-dropdown-menu a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
}
.mm-ecosystem-link {
  opacity: 0.6;
  font-size: 0.85em;
}
.mm-ecosystem-link:hover {
  opacity: 1;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .mm-links {
    display: none;
  }

  .mm-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mm-links.active,
  .mm-links[style*="flex"] {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 26, 0.98);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--purple-border);
    gap: 0;
  }

  .mm-links.active a,
  .mm-links[style*="flex"] a {
    padding: 0.75rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .mm-dropdown {
    width: 100%;
  }
  .mm-dropdown-toggle {
    display: none;
  }
  .mm-dropdown-menu {
    display: flex !important;
    flex-direction: column;
    position: static;
    transform: none;
    background: none;
    border: none;
    padding: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    min-width: auto;
  }
  .mm-dropdown-menu a {
    padding: 0.75rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1.05rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .trust-stats {
    gap: 1.5rem;
  }

  .trust-stat .stat-value {
    font-size: 1.6rem;
  }

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

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

  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .booking-form {
    padding: 1.5rem;
  }

  .nft-gallery {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== 5-Year Warranty Styles ===== */

.warranty-section {
  text-align: center;
  padding: 3rem 1.5rem;
}

.warranty-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(147, 51, 234, 0.1));
  border: 1px solid rgba(212, 165, 116, 0.3);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.warranty-shield {
  font-size: 1.5rem;
}

.warranty-text {
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #d4a574;
  font-weight: bold;
}

.warranty-description {
  max-width: 700px;
  margin: 0 auto 1rem;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.warranty-tagline {
  font-style: italic;
  color: #9333ea;
  font-size: 0.95rem;
  opacity: 0.85;
}

.warranty-callout {
  background: rgba(212, 165, 116, 0.08);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 4px;
  padding: 1rem 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.warranty-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

.warranty-highlight {
  border: 1px solid rgba(212, 165, 116, 0.3) !important;
  background: rgba(212, 165, 116, 0.05);
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .container {
    padding: 1.5rem 4%;
  }

  .mm-header {
    padding: 0.75rem 4%;
  }

  .trust-stats {
    flex-direction: column;
    gap: 1rem;
  }
}
