@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --dark: #0B111E;
  --dark-light: #162235;
  --dark-card: #0c1524;
  --green: #0F291B;
  --green-light: #1D4430;
  --gold: #D4AF37;
  --gold-light: #F4E3B1;
  --sunset: #D9745B;
  --sage: #8F9E8B;
  --text: #F3F4F6;
  --text-muted: #9CA3AF;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-muted { color: var(--text-muted); }
.bg-dark-light { background-color: var(--dark-light); }
.bg-card { background-color: var(--dark-card); border: 1px solid rgba(255,255,255,0.05); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(90deg, var(--green), var(--green-light));
  color: white;
  border-color: rgba(212, 175, 55, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(90deg, var(--green-light), var(--green));
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Top Banner */
.top-banner {
  background: linear-gradient(90deg, var(--green), var(--dark-light));
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  z-index: 50;
  position: relative;
}
.top-banner a:hover { color: white; }

/* Header */
header {
  background: rgba(11, 17, 30, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  width: 50px;
  height: 50px;
  transition: transform 0.5s ease;
}
.logo-area:hover .logo-img {
  transform: rotate(6deg);
}
.logo-text h1 {
  font-size: 1.5rem;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--sunset));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.logo-text span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--sage);
  text-transform: uppercase;
}

/* Navigation */
nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  color: var(--text-muted);
}
nav a:hover, nav a.active {
  color: var(--gold);
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}
.mobile-toggle svg { width: 28px; height: 28px; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
}
.mobile-menu.active {
  display: block;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mobile-menu a {
  display: block;
  padding: 10px;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 15% 50%, rgba(15, 41, 27, 0.4), transparent 50%),
              radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.15), transparent 50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 20px;
}
.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 10;
}
.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Sections */
.section {
  padding: 100px 0;
}
.section-alt {
  background-color: #05080F;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Grids */
.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: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 30px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 41, 27, 0.3);
  border: 1px solid var(--green);
  margin-bottom: 20px;
}
.card-icon svg { width: 30px; height: 30px; color: var(--gold); }
.card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* Page Header */
.page-header {
  padding: 100px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(15, 41, 27, 0.2), transparent);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-header h1 { font-size: 3.5rem; margin-bottom: 20px; }
.page-header p { font-size: 1.2rem; max-width: 700px; margin: 0 auto; color: var(--text-muted); }

/* Footer */
footer {
  background: linear-gradient(180deg, var(--dark), #05080F);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand p { color: var(--text-muted); margin: 20px 0; max-width: 400px; }
.footer-links h3 { font-size: 1.2rem; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--gold); }
.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--text-muted);
}
.footer-contact svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  color: #6B7280;
  font-size: 0.85rem;
}

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-muted); }
.form-control {
  width: 100%;
  padding: 15px;
  background: #05080F;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: white;
  font-family: var(--font-sans);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
}

/* Blurred Phone Numbers */
.phone-blur {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

/* Responsive */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 768px) {
  nav ul { display: none; }
  .mobile-toggle { display: block; }
  .hero h1 { font-size: 2.5rem; }
  .hero-buttons { flex-direction: column; }
  .page-header h1 { font-size: 2.5rem; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .top-banner { flex-direction: column; text-align: center; gap: 5px; }
  .top-banner span.hidden { display: none; }
}
