:root {
  --color-bg: #050608;
  --color-surface: #0d0e12;
  --color-card: #13141a;
  --color-gold: #c9a84c;
  --color-gold-light: #e8c97a;
  --color-green: #1a3a2a;
  --color-text: #e8e6e0;
  --color-text-muted: #8a8a8a;
  --color-border: #2a2a35;
  --color-accent: #8b1a1a;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-gold);
}

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

a:hover {
  color: var(--color-gold-light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-gold);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-bg);
}

.btn-primary:hover {
  background-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--color-gold);
  color: var(--color-bg);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5, 6, 8, 0.7);
  z-index: 1;
}

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

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--color-text-muted);
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--color-gold);
  margin: 15px auto 0;
}

/* Page Header */
.page-header {
  padding: 150px 0 80px;
  background-color: var(--color-surface);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.page-content {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}

/* Form */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text-muted);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  border-radius: 4px;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
}

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

/* Form Validation */
.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 4px;
  display: none;
}
.form-message.success {
  background-color: rgba(26, 58, 42, 0.8);
  border: 1px solid var(--color-green);
  color: #fff;
  display: block;
}
.form-message.error {
  background-color: rgba(139, 26, 26, 0.8);
  border: 1px solid var(--color-accent);
  color: #fff;
  display: block;
}

/* Grid Components */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Cards */
.card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 30px;
  transition: all 0.3s ease;
  text-align: center;
}
.card:hover {
  transform: scale(1.02);
  border-color: var(--color-gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}
.card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}
.card p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.card-price {
  font-size: 1.8rem;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 20px;
}

/* How it works */
.step-card {
  text-align: center;
}
.step-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--color-gold);
  font-family: var(--font-heading);
}

/* Modals & Banners */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5, 6, 8, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}

.modal-content {
  background-color: var(--color-surface);
  padding: 40px;
  border: 1px solid var(--color-gold);
  max-width: 500px;
  text-align: center;
  border-radius: 8px;
}

.modal-content h2 {
  margin-bottom: 20px;
}

.modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-gold);
  padding: 20px;
  z-index: 9998;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-text {
  font-size: 14px;
  color: var(--color-text-muted);
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-left: 20px;
}

/* Footer */
footer {
  background-color: var(--color-surface);
  padding: 60px 0 20px;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--color-gold);
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--color-text-muted);
}

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

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 15px;
}

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 40px; }
.mb-4 { margin-bottom: 40px; }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-surface);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid var(--color-border);
    display: none;
  }
  nav ul.active { display: flex; }
  .hero h1 { font-size: 2.5rem; }
  .hero-btns { flex-direction: column; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; text-align: center; gap: 15px; }
  .cookie-buttons { margin-left: 0; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
