/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold-primary: #d4af37;
  --gold-secondary: #f4d03f;
  --gold-dark: #b8941f;
  --gold-light: #f7e98e;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  --bg-dark: #1a1a1a;
  --bg-darker: #0f0f0f;
  --bg-section: #222222;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #999999;
  --border-gold: rgba(212, 175, 55, 0.3);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
  --shadow-gold-hover: 0 6px 30px rgba(212, 175, 55, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
.main-header {
  background: var(--bg-darker);
  border-bottom: 2px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img,
.header-logo .logo-img {
  height: 20px !important;
  max-height: 50px !important;
  width: auto !important;
}

.logo-img {
  height: 50px !important;
  max-height: 50px !important;
  width: auto !important;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold-primary);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link-cta {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-gold);
}

.nav-link-cta::after {
  display: none;
}

.nav-link-cta:hover {
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-icon {
  width: 25px;
  height: 3px;
  background: var(--gold-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .menu-icon {
  background: var(--gold-secondary);
}

/* Main Content */
main {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  width: 100%;
}

section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--bg-section);
  border-radius: 12px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

section:last-child {
  margin-bottom: 0;
}

section h1 {
  color: var(--gold-primary);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

section h2 {
  color: var(--gold-secondary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

section h3 {
  color: var(--gold-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

section p:last-child {
  margin-bottom: 0;
}

section strong {
  color: var(--gold-primary);
  font-weight: 600;
}

/* Banner Styles */
.banner-container {
  margin: 3rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  border: 2px solid var(--border-gold);
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.banner-container:hover .banner-img {
  transform: scale(1.02);
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--bg-darker);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

thead {
  background: var(--gold-gradient);
}

th {
  color: var(--bg-dark);
  font-weight: 600;
  padding: 1rem;
  text-align: left;
  font-size: 1.1rem;
}

tbody tr {
  border-bottom: 1px solid var(--border-gold);
  transition: background 0.3s ease;
}

tbody tr:hover {
  background: rgba(212, 175, 55, 0.1);
}

tbody tr:last-child {
  border-bottom: none;
}

td {
  padding: 1rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

td:first-child {
  color: var(--gold-primary);
  font-weight: 600;
}

/* List Styles */
/* Content lists (only in sections, not navigation) */
section ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

section ul li {
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--bg-darker);
  border-left: 4px solid var(--gold-primary);
  border-radius: 6px;
  padding-left: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
  transition: all 0.3s ease;
}

section ul li:hover {
  background: rgba(212, 175, 55, 0.1);
  border-left-color: var(--gold-secondary);
  transform: translateX(5px);
}

section ul li::before {
  content: '✓';
  color: var(--gold-primary);
  font-weight: bold;
  margin-right: 0.5rem;
}


/* FAQ Accordion */
.faq-accordion {
  margin-top: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-darker);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

.faq-question:focus {
  outline: 2px solid var(--gold-primary);
  outline-offset: -2px;
}

.faq-question span:first-child {
  flex: 1;
  line-height: 1.5;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  line-height: 1;
}

.faq-question:hover .faq-icon {
  background: rgba(212, 175, 55, 0.2);
  transform: rotate(90deg);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-primary);
  color: var(--bg-dark);
}

.faq-item.active .faq-question {
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  padding-top: 1rem;
  padding-left: 0;
  border-left: none;
}

/* Footer Styles */
.main-footer {
  background: var(--bg-darker);
  border-top: 2px solid var(--border-gold);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  margin-top: 4rem;
  padding: 3rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-logo-section {
  margin-bottom: 1rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-copyright {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  font-style: italic;
}

/* Sticky Bottom Bar */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-darker);
  border-top: 2px solid var(--gold-primary);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  z-index: 998;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.sticky-bottom-bar-content {
  flex: 1;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.sticky-bottom-bar-button {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}

.sticky-bottom-bar-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
  background: var(--gold-secondary);
}

.sticky-bottom-bar-button:active {
  transform: translateY(0);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold-gradient);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  color: var(--bg-dark);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 999;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}

.scroll-to-top.visible {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.scroll-to-top.with-bar {
  bottom: 100px;
}

.scroll-to-top:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-gold-hover);
  background: var(--gold-secondary);
}

.scroll-to-top:active {
  transform: scale(0.95);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 1.3rem;
  }

  .faq-answer {
    padding: 0 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem;
  }

  .header-container {
    padding: 0 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-darker);
    border-left: 2px solid var(--border-gold);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    padding: 5rem 2rem 2rem;
    z-index: 1000;
  }

  .header-nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 1rem;
    text-align: left;
  }

  .nav-link-cta {
    width: 100%;
    text-align: center;
  }

  .mobile-menu-toggle.active .menu-icon:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-toggle.active .menu-icon:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active .menu-icon:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  main {
    padding: 2rem 1rem;
  }

  section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  section h1 {
    font-size: 2rem;
  }

  section h2 {
    font-size: 1.75rem;
  }

  section h3 {
    font-size: 1.25rem;
  }

  section p {
    font-size: 1rem;
  }

  .banner-container {
    margin: 2rem 0;
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 0.75rem 0.5rem;
  }

  .footer-container {
    padding: 0 1rem;
  }

  .footer-content {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 50px !important;
    max-height: 50px !important;
  }

  .sticky-bottom-bar {
    padding: 0.75rem 1rem;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .sticky-bottom-bar-content {
    font-size: 0.9rem;
  }

  .sticky-bottom-bar-button {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
  }

  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-to-top.with-bar {
    bottom: 90px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }

  section h1 {
    font-size: 1.75rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  table {
    font-size: 0.85rem;
  }

  th, td {
    padding: 0.5rem 0.25rem;
  }
}

/* Smooth Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeIn 0.6s ease-out;
}

.banner-container {
  animation: fadeIn 0.8s ease-out;
}

