/* ===== Base Styles ===== */
:root {
  --primary-orange: #ff6b35;
  --secondary-orange: #ffa05c;
  --dark-bg: #1a1a1a;
  --darker-bg: #121212;
  --text-light: #ffffff;
  --text-gray: #cccccc;
  --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #ffa05c 100%);
}

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

body {
  font-family: "Roboto", sans-serif;
  background-color: #000;
  color: var(--text-light);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Navigation ===== */
.navbar {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  transition: all 0.5s ease;
}

.nav-menu li {
  margin-left: 30px;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--text-light);
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    gap: 2rem;
    backdrop-filter: blur(10px);
  }

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

  .nav-menu li {
    margin: 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-menu li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-menu li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-menu li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-menu li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav-menu li:nth-child(5) {
    transition-delay: 0.5s;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Prevent scrolling when menu is open */
body.menu-open {
  overflow: hidden;
}

/* ===== Page Content ===== */
.page-content {
  padding-top: 100px;
  min-height: calc(100vh - 200px);
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: var(--gradient-orange);
  border-radius: 20px;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* ===== Support Grid ===== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.support-card {
  background: var(--darker-bg);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-orange);
}

.support-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.support-icon i {
  font-size: 2rem;
  color: var(--text-light);
}

.support-card h3 {
  color: var(--primary-orange);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.support-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.support-btn {
  background: var(--gradient-orange);
  border: none;
  padding: 0.8rem 1.5rem;
  color: var(--text-light);
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s ease;
  font-weight: 600;
}

.support-btn:hover {
  transform: translateY(-2px);
}

/* ===== Content Sections ===== */
.content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.content-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--darker-bg);
  border-radius: 15px;
  border-left: 4px solid var(--primary-orange);
}

.content-section h2 {
  color: var(--primary-orange);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

/* ===== Help Grid ===== */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.help-item {
  background: var(--dark-bg);
  padding: 1.5rem;
  border-radius: 10px;
}

.help-item h4 {
  color: var(--secondary-orange);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.help-item p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* ===== Contact Grid ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-method {
  background: var(--dark-bg);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.contact-method h4 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-method p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-method strong {
  color: var(--text-light);
}

/* ===== Footer ===== */
.footer {
  background: #000;
  padding: 3rem 0 1.5rem;
  border-top: 2px solid var(--primary-orange);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

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

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-label {
  font-weight: 500;
}

.social-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: var(--primary-orange);
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 1024px) {
  .page-header h1 {
    font-size: 2.5rem;
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links ul {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .support-card,
  .content-section {
    padding: 1.5rem;
  }

  .container {
    padding: 0 15px;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 1rem;
  }
}
