:root {
  --primary-gold: #d4af37;
  --primary-dark: #2c2416;
  --accent-charcoal: #1a1a1a;
  --light-cream: #f5f3f0;
  --bg-light: #faf8f6;
  --text-dark: #3a3530;
  --text-muted: #6b6560;
  --border-color: #e8dfd7;
  --shadow: 0 2px 12px rgba(212, 175, 55, 0.12);
  --shadow-lg: 0 8px 32px rgba(212, 175, 55, 0.16);
  --accent-bronze: #8b6f47;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #fff;
}

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

a:hover {
  color: var(--primary-dark);
}

/* Demo Bar */
.demo-bar {
  background: var(--accent-charcoal);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.demo-text {
  font-weight: 600;
}

.demo-link {
  color: var(--primary-gold);
  text-decoration: underline;
  font-weight: 500;
}

.demo-link:hover {
  opacity: 0.8;
}

/* Navigation */
.navbar {
  background: white;
  border-bottom: 3px solid var(--primary-gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary-dark);
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-gold);
}

.logo-text {
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-icon span {
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-gold);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gold);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }

  .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid var(--border-color);
  }

  .menu-toggle:checked ~ .nav-menu {
    max-height: 500px;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
  }

  .nav-menu a.active::after {
    display: none;
  }

  .nav-menu a.active {
    background: var(--light-cream);
  }
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
  color: var(--primary-dark);
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--light-cream);
  color: var(--primary-dark);
  border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--primary-dark);
  box-shadow: var(--shadow-lg);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--light-cream), var(--bg-light));
  border-radius: 12px;
  border: 2px solid var(--border-color);
}

.hero-icon {
  width: 200px;
  height: 150px;
  color: var(--primary-gold);
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 2rem 0;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-icon {
    width: 150px;
    height: 120px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

/* Highlight Section */
.highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
  margin: 2rem 0;
}

.highlight-card {
  padding: 2rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.highlight-card.primary {
  background: linear-gradient(135deg, var(--light-cream), white);
  border-color: var(--primary-gold);
}

.highlight-card:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  color: var(--primary-gold);
}

.highlight-card h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.highlight-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 4rem 0;
}

.services h2 {
  font-size: 2rem;
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 3rem;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2.5rem;
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  display: inline-block;
  color: var(--primary-gold);
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* Packages Section */
.packages {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--light-cream), var(--bg-light));
  border-radius: 16px;
  padding: 4rem 2rem;
  margin: 3rem 0;
}

.packages h2 {
  font-size: 2rem;
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 3rem;
  font-weight: 700;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.package-card {
  padding: 2rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.package-card.standard {
  transform: scale(1.05);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-lg);
}

.package-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
  color: var(--primary-dark);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.package-card h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.package-list {
  list-style: none;
  margin: 1.5rem 0;
}

.package-list li {
  padding: 0.75rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 1.5rem;
}

.package-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: 700;
}

.package-list li:last-child {
  border-bottom: none;
}

/* Why Choose Section */
.why-choose {
  padding: 4rem 0;
}

.why-choose h2 {
  font-size: 2rem;
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 3rem;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  padding: 2rem;
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  color: var(--primary-gold);
}

.feature h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.feature p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
}

.testimonials h2 {
  font-size: 2rem;
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 3rem;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.stars {
  color: var(--primary-gold);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-muted);
  font-style: italic;
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
}

.testimonial-card h4 {
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.location {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--accent-charcoal), var(--primary-dark));
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

.cta-section h2 {
  color: var(--primary-gold);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: var(--accent-charcoal);
  color: white;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--primary-gold);
  font-weight: 700;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 1rem;
  }

  .hero {
    gap: 2rem;
  }

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

  .package-card.standard {
    transform: scale(1);
  }
}

@media (max-width: 640px) {
  .demo-bar {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }

  .nav-container {
    padding: 0.75rem 1rem;
  }

  main {
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .services h2,
  .packages h2,
  .why-choose h2,
  .testimonials h2 {
    font-size: 1.5rem;
  }

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

  .hero {
    gap: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

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

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

/* Print */
@media print {
  .demo-bar,
  .navbar,
  footer {
    display: none;
  }
}
