:root {
  --color-bg-dark: #0a0a0a;
  --color-bg-darker: #050505;
  --color-bg-card: #151515;
  --color-primary: #d4af37; /* Metallic Gold */
  --color-primary-dark: #b5952f;
  --color-text: #f0f0f0;
  --color-text-muted: #a0a0a0;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  font-weight: 500;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: var(--color-primary);
}

.header-cta {
  display: flex;
  gap: 15px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  justify-content: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-darker);
}

.btn-primary:hover {
  background-color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-darker);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}


/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  overflow: hidden;
  margin-top: 0; /* Changed from pushing down */
}

/* Overlay to darken background image and make text pop */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: 80px; /* Offset for fixed header */
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Features Section (Why Us) */
.features {
  padding: 100px 5%;
  background-color: var(--color-bg-darker);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background: var(--color-bg-card);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feature-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--color-text-muted);
}

/* About / SEO Content block */
.seo-content {
  padding: 100px 5%;
  background-color: var(--color-bg-dark);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.seo-content-inner {
  max-width: 900px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.seo-content h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.seo-content p {
  margin-bottom: 20px;
  color: #ccc;
  font-size: 1.05rem;
}

.seo-content a {
  color: var(--color-primary);
  font-weight: 600;
  border-bottom: 1px dotted var(--color-primary);
}

.seo-content a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* FAQ Section */
.faq {
  padding: 100px 5%;
  background-color: var(--color-bg-darker);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--color-text-muted);
}

.faq-answer p {
  padding-bottom: 20px;
}

/* Footer */
footer {
  background-color: #020202;
  padding: 60px 5% 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--color-text);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-primary);
  font-weight: bold;
  margin-bottom: 15px;
  display: inline-block;
}

.footer-col p {
  color: var(--color-text-muted);
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--color-text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    padding: 15px;
  }
  
  nav {
    margin-top: 20px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  nav ul {
    justify-content: center;
  }
  
  .header-cta {
    display: none; /* Hide on mobile to save space, rely on hero CTA */
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}
