:root {
  /* Updated Gold to match typical luxury branding, can be adjusted to exact logo hex */
  --color-gold: #C5A059;
  --color-gold-light: #E5C585;

  /* Light Theme Palette */
  --color-bg: #ffffff;
  --color-bg-alt: #f9f9f9;
  /* Slightly off-white for sections */
  --color-text-main: #1a1a1a;
  --color-text-muted: #555555;
  --color-inverse: #ffffff;
  /* Text on dark/gold backgrounds */

  --font-primary: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
  --container-width: 1200px;
  --spacing-section: 120px;
}

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

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

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

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 2rem;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.text-gold {
  color: var(--color-gold);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: var(--spacing-section) 0;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  /* Adjusted size for visibility */
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-main);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--color-gold);
}

.nav-link:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.15) 0%, transparent 60%);
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin-bottom: 3rem;
}

/* About Overlay Details */
.text-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Services (Golden Background Section option) */
.services-section {
  background-color: var(--color-bg-alt);
}

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

.service-card {
  padding: 3rem 2rem;
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-gold);
  box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15);
}

.service-icon {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text-main);
}

.service-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  opacity: 0.9;
}

/* New Section Styles */
.bg-light {
  background-color: rgba(0, 0, 0, 0.02);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.feature-item h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.path-card {
  padding: 4rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.path-card.shadow-lux {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  border: none;
  background: var(--color-bg);
}

.path-title {
  margin-bottom: 1.5rem;
}

.path-list {
  margin: 2rem 0;
  list-style: none;
}

.path-list li {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  position: relative;
  padding-top: 2rem;
}

.step-num {
  font-family: var(--font-secondary);
  font-size: 3rem;
  color: var(--color-gold);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.process-step h4 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

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

.btn-outline:hover {
  background: var(--color-text-main);
  color: var(--color-inverse);
}

@media (max-width: 992px) {
  .features-grid,
  .dual-grid,
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .path-card {
    padding: 2.5rem;
  }
}

/* Contact Form */
.form-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-main);
  transition: border-color 0.3s ease, background 0.3s ease;
  border-radius: 0;
  appearance: none;
  /* Removes default styling for select */
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--color-gold);
  background: rgba(197, 160, 89, 0.05);
}

.contact-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--color-gold) 50%),
    linear-gradient(135deg, var(--color-gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px);
  background-size: 5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.form-submit .btn {
  width: 100%;
  border-color: var(--color-text-main);
  color: var(--color-text-main);
}

.form-submit .btn:hover {
  background-color: var(--color-text-main);
  color: var(--color-inverse);
}

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

@media (max-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* Footer */
footer {
  background-color: var(--color-gold);
  /* Golden Footer */
  color: var(--color-inverse);
  padding: 4rem 0;
  margin-top: 4rem;
}

.footer-content {
  text-align: center;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  margin-top: 2rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  /* Optional: filter to make logo white on gold background if needed */
  /* filter: brightness(0) invert(1); */
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  h1 {
    font-size: 2.5rem;
  }
}