/* =========================================================
   GLOBAL VARIABLES
   ========================================================= */

:root {
  --color-bg-dark: #0D0D0D;
  --color-accent: #004e02;
  --color-text-light: #FFFFFF;
  --color-text-dark: #111111;
  --color-bg-light: #F9F9F9;
  --color-card-bg: #FFFFFF;
  --color-border: #E0E0E0;
}


/* =========================================================
   GLOBAL STYLES
   Existing site styles
   ========================================================= */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: var(--color-text-dark);
  background: var(--color-bg-dark);
}

h1 {
  color: var(--color-text-light);
}

a {
  text-decoration: none;
  color: inherit;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  background: var(--color-bg-dark);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  border-bottom: 1px solid #444;
  z-index: 1000;
}

.logo img {
  height: 70px;
}

.navbar ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: var(--color-text-light);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: var(--color-accent);
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.hero {
  text-align: center;
  padding: 2rem 1rem;
}

.hero img {
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.cta-buttons {
  margin-top: 1rem;
}

.btn {
  width: 25%;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  color: var(--color-bg-dark);
  font-weight: bold;
  margin: 0.5rem;
  background: var(--color-accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
  text-align: center;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


/* =========================================================
   =========================================================
   ABOUT SECTION
   Modern Glass / Gold Design
   =========================================================
   ========================================================= */

.about-section {
  --about-gold: #004e02;
  --about-gold-light: #004e02;
  --about-bg: #080808;
  --about-card: #111111;
  --about-white: #ffffff;
  --about-muted: #929292;
  --about-border: rgba(255,255,255,0.09);

  position: relative;
  overflow: hidden;

  padding: 100px 20px;

  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(205,160,85,0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(205,160,85,0.08),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #090909 0%,
      #050505 100%
    );
}


/* Background grid */

.about-section::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.28;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    );

  background-size: 60px 60px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 95%
    );
}


/* Decorative glow */

.about-section .section-glow {
  position: absolute;

  width: 450px;
  height: 450px;

  top: -200px;
  left: 50%;

  transform: translateX(-50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(205,160,85,0.15),
      rgba(205,160,85,0.04) 35%,
      transparent 70%
    );

  filter: blur(20px);

  pointer-events: none;

  z-index: 0;
}


/* Container */

.about-section .container {
  position: relative;

  width: min(1150px, 100%);

  margin: 0 auto;

  z-index: 2;
}


/* =========================================================
   ABOUT HEADING
   ========================================================= */

.about-section .section-heading {
  max-width: 850px;

  margin: 0 auto 60px;

  text-align: center;
}


.about-section .eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 18px;

  color: var(--about-gold);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 3px;

  text-transform: uppercase;
}


.about-section .eyebrow::before,
.about-section .eyebrow::after {
  content: "";

  width: 28px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--about-gold)
    );
}


.about-section .eyebrow::after {
  background:
    linear-gradient(
      90deg,
      var(--about-gold),
      transparent
    );
}


.about-section .section-heading h2 {
  margin: 0;

  color: #ffffff;

  font-size:
    clamp(32px, 4.5vw, 52px);

  font-weight: 800;

  line-height: 1.12;

  letter-spacing: -1.8px;
}


.about-section .section-heading h2 span {
  color: var(--about-gold-light);

  background:
    linear-gradient(
      120deg,
      var(--about-gold),
      var(--about-gold-light)
    );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
}


.about-section .section-intro {
  max-width: 650px;

  margin: 20px auto 0;

  color: var(--about-muted);

  font-size: 15px;

  line-height: 1.8;
}


/* =========================================================
   FEATURE GRID
   ========================================================= */

.about-section .feature-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 20px;
}


/* =========================================================
   FEATURE CARD
   ========================================================= */

.about-section .feature-card {
  position: relative;

  min-height: 335px;

  padding: 32px;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.065),
      rgba(255,255,255,0.018)
    );

  border:
    1px solid var(--about-border);

  border-radius: 24px;

  box-shadow:
    0 25px 70px rgba(0,0,0,0.30);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition:
    transform .4s ease,
    border-color .4s ease,
    box-shadow .4s ease,
    background .4s ease;
}


/* Card glow */

.about-section .feature-card::before {
  content: "";

  position: absolute;

  width: 190px;
  height: 190px;

  top: -100px;
  right: -90px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(205,160,85,0.20),
      transparent 68%
    );

  transition:
    transform .5s ease,
    opacity .5s ease;
}


.about-section .feature-card:hover {
  transform: translateY(-10px);

  border-color:
    rgba(205,160,85,0.38);

  background:
    linear-gradient(
      145deg,
      rgba(205,160,85,0.09),
      rgba(255,255,255,0.025)
    );

  box-shadow:
    0 30px 75px rgba(0,0,0,0.45),
    0 0 40px rgba(205,160,85,0.05);
}


.about-section .feature-card:hover::before {
  transform: scale(1.5);
}


/* Featured middle card */

.about-section .featured-card {
  background:
    linear-gradient(
      145deg,
      rgba(205,160,85,0.11),
      rgba(255,255,255,0.025)
    );

  border-color:
    rgba(205,160,85,0.25);
}


/* =========================================================
   FEATURE NUMBER
   ========================================================= */

.about-section .feature-number {
  position: absolute;

  top: 27px;
  right: 30px;

  color:
    rgba(255,255,255,0.14);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 2px;
}


/* =========================================================
   FEATURE ICON
   ========================================================= */

.about-section .feature-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 62px;
  height: 62px;

  margin-bottom: 38px;

  color: var(--about-gold-light);

  background:
    linear-gradient(
      135deg,
      rgba(205,160,85,0.18),
      rgba(205,160,85,0.035)
    );

  border:
    1px solid rgba(205,160,85,0.22);

  border-radius: 17px;

  font-size: 22px;

  box-shadow:
    0 12px 35px
    rgba(205,160,85,0.07);

  transition:
    transform .35s ease,
    background .35s ease;
}


.about-section .feature-card:hover .feature-icon {
  transform: translateY(-3px) rotate(-3deg);

  background:
    linear-gradient(
      135deg,
      rgba(205,160,85,0.25),
      rgba(205,160,85,0.06)
    );
}


/* =========================================================
   FEATURE CONTENT
   ========================================================= */

.about-section .feature-content {
  position: relative;

  z-index: 2;
}


.about-section .feature-content h3 {
  margin: 0 0 14px;

  color: #ffffff;

  font-size: 20px;

  line-height: 1.3;

  letter-spacing: -0.3px;
}


.about-section .feature-content p {
  margin: 0;

  color: var(--about-muted);

  font-size: 14px;

  line-height: 1.85;
}


.about-section .feature-content a {
  color: var(--about-gold-light);

  font-weight: 700;

  transition: color .3s ease;
}


.about-section .feature-content a:hover {
  color: #ffffff;
}


/* =========================================================
   CARD BOTTOM LINE
   ========================================================= */

.about-section .card-line {
  position: absolute;

  left: 32px;
  bottom: 27px;

  width: 35px;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      var(--about-gold),
      transparent
    );

  transition:
    width .4s ease;
}


.about-section .feature-card:hover .card-line {
  width: 85px;
}


/* =========================================================
   ABOUT BOTTOM BAR
   ========================================================= */

.about-section .about-bottom {
  display: flex;

  align-items: center;

  gap: 25px;

  margin-top: 20px;

  padding: 22px 25px;

  background:
    rgba(255,255,255,0.025);

  border:
    1px solid var(--about-border);

  border-radius: 18px;

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}


/* Stats */

.about-section .about-stat {
  display: flex;

  align-items: center;

  gap: 12px;

  flex: 1;
}


.about-section .stat-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  flex-shrink: 0;

  color: var(--about-gold-light);

  background:
    rgba(205,160,85,0.08);

  border:
    1px solid rgba(205,160,85,0.15);

  border-radius: 12px;
}


.about-section .about-stat strong {
  display: block;

  color: #ffffff;

  font-size: 13px;
}


.about-section .about-stat small {
  display: block;

  margin-top: 3px;

  color: var(--about-muted);

  font-size: 11px;
}


/* CTA */

.about-section .about-cta {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 14px 22px;

  color: #111111;

  background:
    linear-gradient(
      135deg,
      var(--about-gold-light),
      var(--about-gold)
    );

  border-radius: 11px;

  font-size: 13px;

  font-weight: 800;

  white-space: nowrap;

  box-shadow:
    0 10px 25px
    rgba(205,160,85,0.10);

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}


.about-section .about-cta:hover {
  transform: translateY(-3px);

  box-shadow:
    0 15px 35px
    rgba(205,160,85,0.22);
}


.about-section .about-cta i {
  transition:
    transform .3s ease;
}


.about-section .about-cta:hover i {
  transform: translateX(5px);
}


/* =========================================================
   =========================================================
   FAQ SECTION
   =========================================================
   ========================================================= */

.faq-section {
  --faq-gold: #004e02;
  --faq-gold-light: #004e02;
  --faq-muted: #929292;

  position: relative;

  overflow: hidden;

  padding: 100px 20px 120px;

  background:
    linear-gradient(
      180deg,
      #080808 0%,
      #050505 100%
    );
}


/* FAQ background grid */

.faq-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.22;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    );

  background-size: 60px 60px;
}


/* FAQ glow */

.faq-section::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  bottom: -300px;
  left: -220px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(205,160,85,0.12),
      transparent 68%
    );

  pointer-events: none;
}


/* FAQ container */

.faq-section .container {
  position: relative;

  width: min(900px, 100%);

  margin: 0 auto;

  z-index: 2;
}


/* =========================================================
   FAQ HEADING
   ========================================================= */

.faq-section .section-heading {
  max-width: 780px;

  margin: 0 auto 50px;

  text-align: center;
}


.faq-section .eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 17px;

  color: var(--faq-gold);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 3px;

  text-transform: uppercase;
}


.faq-section .eyebrow::before,
.faq-section .eyebrow::after {
  content: "";

  width: 28px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--faq-gold)
    );
}


.faq-section .eyebrow::after {
  background:
    linear-gradient(
      90deg,
      var(--faq-gold),
      transparent
    );
}


.faq-section .section-heading h2 {
  margin: 0;

  color: #ffffff;

  font-size:
    clamp(30px, 4vw, 46px);

  font-weight: 800;

  line-height: 1.15;

  letter-spacing: -1.4px;
}


.faq-section .section-heading h2 span {
  color: var(--faq-gold-light);

  background:
    linear-gradient(
      120deg,
      var(--faq-gold),
      var(--faq-gold-light)
    );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
}


.faq-section .section-intro {
  max-width: 600px;

  margin: 18px auto 0;

  color: var(--faq-muted);

  font-size: 14px;

  line-height: 1.8;
}


/* =========================================================
   FAQ WRAPPER
   ========================================================= */

.faq-section .faq-wrapper {
  position: relative;

  width: 100%;
}


/* =========================================================
   FAQ ITEM
   ========================================================= */

.faq-section .faq-item {
  margin: 0 0 12px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.045),
      rgba(255,255,255,0.018)
    );

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 17px;

  overflow: hidden;

  box-shadow:
    0 10px 35px rgba(0,0,0,0.15);

  transition:
    border-color .35s ease,
    background .35s ease,
    box-shadow .35s ease;
}


.faq-section .faq-item:hover {
  border-color:
    rgba(205,160,85,0.25);
}


.faq-section .faq-item[open] {
  background:
    linear-gradient(
      135deg,
      rgba(205,160,85,0.08),
      rgba(255,255,255,0.025)
    );

  border-color:
    rgba(205,160,85,0.32);

  box-shadow:
    0 15px 45px rgba(0,0,0,0.25);
}


/* =========================================================
   FAQ SUMMARY
   ========================================================= */

.faq-section .faq-item summary {
  display: grid;

  grid-template-columns:
    48px 1fr 40px;

  align-items: center;

  gap: 15px;

  min-height: 78px;

  padding: 0 22px;

  cursor: pointer;

  list-style: none;

  color: #ffffff;

  user-select: none;
}


.faq-section .faq-item summary::-webkit-details-marker {
  display: none;
}


/* Number */

.faq-section .faq-index {
  color: var(--faq-gold);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;
}


/* Question */

.faq-section .faq-question {
  color: #f4f4f4;

  font-size: 14px;

  font-weight: 700;

  line-height: 1.5;
}


/* Arrow */

.faq-section .faq-arrow {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  color: var(--faq-gold-light);

  background:
    rgba(205,160,85,0.06);

  border:
    1px solid rgba(205,160,85,0.15);

  border-radius: 50%;

  font-size: 11px;

  transition:
    transform .35s ease,
    background .35s ease,
    color .35s ease;
}


.faq-section .faq-item:hover .faq-arrow {
  background:
    rgba(205,160,85,0.11);
}


.faq-section .faq-item[open] .faq-arrow {
  transform: rotate(90deg);

  color: #111111;

  background:
    var(--faq-gold-light);
}


/* =========================================================
   FAQ ANSWER
   ========================================================= */

.faq-section .faq-answer {
  padding:
    0 65px 25px 85px;
}


.faq-section .faq-answer p {
  margin: 0;

  color: var(--faq-muted);

  font-size: 13px;

  line-height: 1.85;
}


/* =========================================================
   FAQ ANIMATION
   ========================================================= */

.faq-section .faq-item[open] .faq-answer {
  animation:
    faqAnswer .3s ease;
}


@keyframes faqAnswer {

  from {
    opacity: 0;

    transform:
      translateY(-6px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }

}


/* =========================================================
   DESKTOP HOVER DETAIL
   ========================================================= */

@media (min-width: 901px) {

  .about-section .feature-card:nth-child(1) {
    transform-origin: bottom right;
  }

  .about-section .feature-card:nth-child(3) {
    transform-origin: bottom left;
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  /* About */

  .about-section {
    padding: 80px 20px;
  }


  .about-section .feature-grid {
    grid-template-columns: 1fr;
  }


  .about-section .feature-card {
    min-height: 280px;
  }


  .about-section .about-bottom {
    flex-wrap: wrap;
  }


  .about-section .about-stat {
    min-width: 40%;
  }


  .about-section .about-cta {
    width: 100%;
  }


  /* FAQ */

  .faq-section {
    padding:
      80px 20px 95px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  /* ABOUT */

  .about-section {
    padding: 65px 14px;
  }


  .about-section .section-heading {
    margin-bottom: 38px;
  }


  .about-section .section-heading h2 {
    font-size: 30px;

    letter-spacing: -1px;
  }


  .about-section .section-intro {
    font-size: 13px;

    line-height: 1.75;
  }


  .about-section .feature-grid {
    gap: 14px;
  }


  .about-section .feature-card {
    min-height: auto;

    padding: 25px;

    border-radius: 19px;
  }


  .about-section .feature-number {
    top: 22px;
    right: 23px;
  }


  .about-section .feature-icon {
    width: 53px;
    height: 53px;

    margin-bottom: 27px;

    border-radius: 14px;

    font-size: 19px;
  }


  .about-section .feature-content h3 {
    font-size: 18px;
  }


  .about-section .feature-content p {
    font-size: 13px;

    line-height: 1.8;
  }


  .about-section .card-line {
    left: 25px;
    bottom: 22px;
  }


  .about-section .about-bottom {
    flex-direction: column;

    align-items: stretch;

    gap: 17px;

    padding: 18px;

    margin-top: 14px;
  }


  .about-section .about-stat {
    min-width: 0;

    width: 100%;
  }


  .about-section .about-cta {
    width: 100%;

    padding: 14px;
  }


  /* FAQ */

  .faq-section {
    padding:
      65px 14px 80px;
  }


  .faq-section .section-heading {
    margin-bottom: 38px;
  }


  .faq-section .section-heading h2 {
    font-size: 29px;

    letter-spacing: -0.8px;
  }


  .faq-section .section-intro {
    font-size: 13px;
  }


  .faq-section .faq-item {
    margin-bottom: 10px;

    border-radius: 14px;
  }


  .faq-section .faq-item summary {
    grid-template-columns:
      32px 1fr 34px;

    gap: 9px;

    min-height: 69px;

    padding: 0 15px;
  }


  .faq-section .faq-index {
    font-size: 9px;
  }


  .faq-section .faq-question {
    font-size: 13px;

    line-height: 1.45;
  }


  .faq-section .faq-arrow {
    width: 32px;
    height: 32px;

    font-size: 9px;
  }


  .faq-section .faq-answer {
    padding:
      0 17px 21px 56px;
  }


  .faq-section .faq-answer p {
    font-size: 12px;

    line-height: 1.8;
  }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

  .about-section .section-heading h2,
  .faq-section .section-heading h2 {
    font-size: 27px;
  }


  .about-section .feature-card {
    padding: 22px;
  }


  .faq-section .faq-item summary {
    grid-template-columns:
      27px 1fr 31px;

    gap: 8px;

    padding: 0 13px;
  }


  .faq-section .faq-question {
    font-size: 12px;
  }


  .faq-section .faq-answer {
    padding-left: 48px;
  }

}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .about-section *,
  .faq-section * {
    animation: none !important;

    transition: none !important;
  }

}


/* ================================
   FOOTER
================================ */
.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 3rem 1.5rem 1rem;
  font-size: 0.95rem;
  border-top: 1px solid #444;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 250px;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

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

.footer-social a {
  margin-right: 1rem;
  font-size: 1.2rem;
  color: var(--color-text-light);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1rem;
  color: #aaa;
  font-size: 0.85rem;
}

.footer-qr {
  text-align: center;
}

.footer-qr img {
  width: 120px;
  height: auto;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.footer-qr p {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .btn {
    width: 35%;
  }
}

@media (max-width: 768px) {

  .site-header {
    flex-direction: column; 
    align-items: center;    
    gap: 1rem;
  }

  .logo {
    display: flex;
    justify-content: center; 
    width: 100%;
  }

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

  .hero img {
    max-width: 70%;
  }

  .btn {
    width: 60%;
  }

  .about, .faq {
    padding: 1.5rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .navbar{
    display: none;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .hero img {
    max-width: 90%;
  }

  .btn {
    width: 80%;
    padding: 0.6rem 1rem;
  }

  .about, .faq {
    padding: 1rem;
  }

  .footer-brand img {
    height: 40px;
  }

  .footer-qr img {
    width: 90px;
  }
  
  .navbar{
    display: none;
  }

  .site-header {
    flex-direction: column; 
    align-items: center;   
    gap: 1rem;
  }

  .logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
