/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #d4af37;
  --primary-dark: #b8941f;
  --primary-light: #e8c968;
  --background: #000000;
  --surface: #0a0a0a;
  --surface-elevated: #141414;
  --text: #ffffff;
  --text-secondary: #b8b8b8;
  --border: #1f1f1f;
  --gradient: linear-gradient(135deg, #d4af37 0%, #e8c968 100%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

.large-text {
  font-size: 1.25rem;
  line-height: 1.8;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.navbar {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 16px 16px;
  margin: 0 8px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 24px;
}

/* Updated logo styling to blend with background */
.logo img {
  height: 50px;
  width: auto;
  filter: brightness(1.2) contrast(1.1);
  mix-blend-mode: screen;
  opacity: 1;
}

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

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text);
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--background);
}

.btn-large {
  padding: 16px 48px;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
  filter: blur(8px);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 4rem 0;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background-color: var(--surface);
}

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

.stat-card {
  text-align: center;
  padding: 2rem;
  background-color: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid var(--border);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

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

.feature-card {
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

.feature-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
}

.feature-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
}

/* Services Overview */
.services-overview {
  padding: 6rem 0;
  background-color: var(--surface);
}

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

.service-item {
  padding: 2rem;
  background-color: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid var(--border);
}

.service-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Membership Preview */
.membership-preview {
  padding: 6rem 0;
}

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

.tier-card {
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

.tier-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--background);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
}

.tier-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.tier-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tier-price span {
  font-size: 1rem;
  color: var(--text-secondary);
}

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

.tier-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.tier-features li:last-child {
  border-bottom: none;
}

.cta-center {
  text-align: center;
  margin-top: 3rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background-color: var(--surface);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

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

/* Footer */
.footer {
  background-color: var(--surface-elevated);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Updated footer logo styling */
.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(1.2) contrast(1.1);
  mix-blend-mode: screen;
  opacity: 1;
}

.footer-col h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

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

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

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--text);
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
}

/* Added terms and conditions styling */
.footer-terms {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.terms-text {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}

.terms-text strong {
  color: var(--primary);
}

/* Page Header */
.page-header {
  padding: 6rem 0 4rem;
  text-align: center;
  background-color: var(--surface);
}

.page-header p {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

/* Membership Page */
.membership-section {
  padding: 4rem 0;
}

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

.membership-card {
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
}

.membership-header {
  margin-bottom: 2rem;
}

.membership-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1rem 0;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
}

.price-period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.membership-description {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.membership-features {
  list-style: none;
  margin-bottom: 2rem;
}

.membership-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.membership-features li:last-child {
  border-bottom: none;
}

.check {
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* Comparison Table */
.comparison-section {
  margin-top: 6rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background-color: var(--surface-elevated);
  color: var(--primary);
  font-weight: 600;
}

.comparison-table td {
  color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
  margin-top: 6rem;
}

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

.faq-item {
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.faq-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Services Page */
.service-detail {
  padding: 6rem 0;
}

.service-detail.alt {
  background-color: var(--surface);
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-content.reverse {
  direction: rtl;
}

.service-content.reverse > * {
  direction: ltr;
}

.service-text h2 {
  margin-bottom: 1rem;
}

.service-intro {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.service-text h3 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  margin: 1rem 0;
}

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
}

.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.feature-list li strong {
  color: var(--text);
}

.service-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Additional Services */
.additional-services {
  padding: 6rem 0;
}

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

.service-card-detailed {
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.service-card-detailed h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.service-benefits li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.service-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* About Page */
.about-section {
  padding: 6rem 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-section {
  padding: 6rem 0;
  background-color: var(--surface);
}

.story-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.stat-box {
  background-color: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  text-align: center;
}

.values-section {
  padding: 6rem 0;
}

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

.value-card {
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.why-choose-section {
  padding: 6rem 0;
  background-color: var(--surface);
}

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

.why-item {
  padding: 2rem;
  background-color: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid var(--border);
}

.why-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.why-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.join-section {
  padding: 6rem 0;
}

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

.join-card {
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.join-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.join-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-methods {
  margin-top: 2rem;
}

.contact-method {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid var(--border);
}

.contact-method h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-method p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.social-link:hover {
  color: var(--primary-light);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.action-card {
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.action-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.action-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.faq-section-page {
  padding: 6rem 0;
  background-color: var(--surface);
}

.faq-list {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item-page {
  background-color: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.faq-item-page h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.faq-item-page p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    width: calc(100% - 16px);
    margin: 0 8px;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    gap: 1.5rem;
    border-radius: 0 0 20px 20px;
    border: 1px solid var(--border);
    border-top: none;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

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

  .service-content,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-content.reverse {
    direction: ltr;
  }

  .tiers-grid,
  .membership-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 0.875rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .btn-large {
    padding: 14px 32px;
    font-size: 1rem;
  }

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

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