:root {
  /* Colors from Reference */
  --color-primary-gold: #AF8A3A;      /* Primary from image */
  --color-secondary-dark: #3F3D3F;    /* Secondary from image */
  --color-text-light: #EAEAEA;        /* Text from image */
  --color-accent-green: #77D045;      /* Accent from image */
  
  /* Derived Colors for UI Depth */
  --primary-dark: var(--color-secondary-dark); 
  --primary-darker: #2a292a; /* Slightly darker version of #3F3D3F for footer/contrast */
  
  --accent-gold: var(--color-primary-gold);
  --accent-gold-light: #c49b45; /* Lighter shade for hover */
  --accent-gold-dark: #8f702e;  /* Darker shade for active */
  
  --text-main: #2d2b2d; /* Dark grey for light backgrounds */
  --text-light: #5a585a; /* Medium grey */
  --text-lighter: #9ca3af;
  
  --white: #ffffff;
  --bg-light: #f9fafb;
  
  --border-color: #e5e7eb;
  
  /* Fonts */
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  /* Spacing */
  --container-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* Fix for headings inside dark sections */
.bg-dark h1, 
.bg-dark h2, 
.bg-dark h3, 
.bg-dark h4 {
  color: var(--white);
}

/* Fix for description text inside dark sections */
.bg-dark .section-desc {
  color: var(--white);
  opacity: 0.9;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

.text-gold { color: var(--accent-gold); }
.text-center { text-align: center; }
.text-white { color: var(--color-text-light); }
.text-gray-300 { color: #d1d5db; }
.text-sm { font-size: 0.875rem; }
.text-gray { color: var(--text-light); }

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--primary-dark); }
.bg-gold { background-color: var(--accent-gold); }

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 1px solid transparent;
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--white);
}
.btn-gold:hover {
  background-color: var(--accent-gold-dark);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-dark);
}
.btn-white:hover {
  background-color: #f3f4f6;
}

.btn-outline-light {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.btn-outline-light:hover {
  background-color: rgba(255,255,255,0.1);
}

.btn-dark {
  background-color: var(--primary-dark);
  color: var(--white);
}
.btn-dark:hover {
  background-color: var(--primary-darker);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(63, 61, 63, 0.95); /* Base color: #3F3D3F */
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(63, 61, 63, 0.98); /* Darker on scroll */
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

.logo-img {
  height: 35px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background-color: var(--primary-dark);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-150%);
  transition: transform 0.3s ease;
  z-index: 999;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav.active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.mobile-nav a {
  color: var(--white);
  font-size: 1.1rem;
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background-color: var(--primary-dark);
  background-image: url('https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient using the new dark secondary color */
  background: linear-gradient(to bottom, rgba(63, 61, 63, 0.85), rgba(63, 61, 63, 0.7), rgba(63, 61, 63, 0.95));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
}

.badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(175, 138, 58, 0.2); /* Gold alpha */
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 24px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 16px;
  align-items: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust .dot {
  font-size: 1.5rem;
  line-height: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  animation: bounce 2s infinite;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-10px);}
  60% {transform: translateY(-5px);}
}

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

.section-header {
  margin-bottom: 60px;
}

.badge-section {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  background-color: rgba(175, 138, 58, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.badge-dark {
  background-color: rgba(255,255,255,0.1);
  color: var(--accent-gold);
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.divider-center {
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 0 auto 24px;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Cards Grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid transparent;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-top-color: var(--accent-gold);
}

.card-icon {
  color: var(--accent-gold);
  margin-bottom: 20px;
  background-color: rgba(175, 138, 58, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Warning Banner Redesign */
.warning-banner {
  margin-top: 40px;
  background-color: var(--white);
  border: 1px solid #e5e7eb;
  border-left: 4px solid var(--accent-gold);
  padding: 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.warning-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.warning-icon {
  color: var(--accent-gold);
  background: rgba(175, 138, 58, 0.1);
  padding: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.warning-content h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.warning-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.warning-action {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

/* Abusive Clauses */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

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

.badge-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.serif-heading {
  font-size: 2.8rem;
  margin-bottom: 24px;
}

.italic-serif {
  font-style: italic;
  font-weight: 400;
}

.checklist-box {
  background-color: var(--bg-light);
  padding: 24px;
  border-radius: 8px;
  margin: 24px 0;
}

.checklist-box h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  margin-bottom: 16px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.check-list li i {
  color: var(--color-accent-green); /* Updated to Green from palette */
  min-width: 20px;
  margin-top: 2px;
}

.image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: var(--white);
  padding: 40px 24px 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  text-align: center;
}

/* Strategy Section */
.gap-large {
  gap: 40px;
}

.feature-card {
  display: flex;
  gap: 20px;
  background-color: rgba(255,255,255,0.05);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background-color 0.3s;
}

.feature-card:hover {
  background-color: rgba(255,255,255,0.1);
}

.feature-icon {
  background-color: var(--accent-gold);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text h3 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-text p {
  color: var(--color-text-light); /* Using the light text from palette */
  font-size: 0.9rem;
  line-height: 1.5;
}

/* About Section */
.big {
  font-size: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-item {
  text-align: center;
  padding: 20px;
}

.value-icon {
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: inline-flex;
}

.value-item h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.value-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.cta-box {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

/* FAQ */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-gold); /* Updated to match reference image */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 1rem;
  text-align: left;
}

.question-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.question-icon {
  color: #d69e2e; /* Darker gold/orange for icon */
  min-width: 20px;
  height: 20px;
  margin-top: 2px;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.toggle-icon {
  transition: transform 0.3s ease;
  color: var(--text-lighter);
  margin-left: 12px;
}

.faq-item.active .toggle-icon {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--white); /* Changed to white to match card style */
}

.faq-answer p {
  padding: 0 24px 24px 56px; /* Added left padding to align with text */
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Footer */
.footer {
  background-color: var(--primary-darker);
  color: var(--text-lighter);
  padding: 80px 0 30px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-desc {
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 350px;
}

.social-links {
  display: flex;
  gap: 16px;
}

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

.social-links a:hover {
  opacity: 1;
  color: var(--accent-gold);
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li, .contact-info li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info strong {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.legal-notice {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: justify;
}

.legal-notice strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.5);
}

.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--color-accent-green); /* Updated to Green from palette */
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 3rem; }
  .grid-2, .grid-3, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .image-right { order: -1; }
  .nav-links, .btn.mobile-hidden { display: none; }
  .mobile-menu-btn { display: block; }
}

@media (max-width: 768px) {
  /* Container padding */
  .container {
    padding: 0 20px;
  }

  /* Typography */
  .hero h1 {
    font-size: 2.2rem; /* Smaller for mobile */
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .section h2 {
    font-size: 2rem;
  }
  
  .serif-heading {
    font-size: 2rem;
  }

  .big {
    font-size: 2.2rem;
  }

  /* Spacing */
  .section {
    padding: 50px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  /* Buttons */
  .hero-buttons { 
    flex-direction: column; 
    width: 100%; 
  }
  
  .btn { 
    width: 100%; 
  }

  /* Trust Indicators */
  .hero-trust { 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 12px;
  }

  /* Cards */
  .grid-4, .grid-3, .grid-2 {
    gap: 24px; /* Reduce gap */
  }
  
  .card {
    padding: 24px 20px;
  }
  
  /* Warning Banner Mobile */
  .warning-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .warning-action {
    justify-content: center;
  }
  
  /* Feature Cards (Strategy) */
  .feature-card {
    flex-direction: column; /* Stack icon and text */
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  
  .feature-icon {
    margin-bottom: 10px;
  }

  /* Image Wrapper */
  .image-wrapper {
    height: 300px; /* Limit height on mobile */
  }
  
  .image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  /* Footer */
  .footer {
    padding: 50px 0 30px;
    text-align: left; /* Changed from center to left */
  }
  
  .footer-grid {
    gap: 40px;
  }

  .footer-desc {
    margin: 0 0 24px 0; /* Removed auto margins */
  }
  
  .social-links {
    justify-content: flex-start; /* Align to start */
  }
  
  .contact-info li {
    align-items: flex-start; /* Align to start */
  }
  
  .footer-links a:hover {
    padding-left: 0; /* Remove hover shift on mobile */
  }
  
  .copyright { 
    flex-direction: column; 
    gap: 10px; 
    text-align: left; /* Changed from center to left */
    align-items: flex-start; /* Align items to start */
  }
  
  .faq-answer p { 
    padding-left: 24px; 
  } /* Reset padding on mobile */
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 8px;
  }
  
  .hero-trust .dot {
    display: none;
  }
}
