@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Outfit:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS VARIABLES — Design Tokens
   ============================================================ */
:root {
  --bg:          #0a0b0f;
  --bg2:         #111318;
  --bg3:         #1a1b22;
  --accent:      #f5a623;
  --accent-dim:  rgba(245, 166, 35, 0.12);
  --accent-glow: rgba(245, 166, 35, 0.25);
  --text:        #f0f0f5;
  --text-muted:  #7a8099;
  --border:      rgba(255, 255, 255, 0.07);
  --nav-h:       70px;
  --radius:      10px;
  --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
li { list-style: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  height: var(--nav-h);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(10, 11, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
nav.scrolled {
  background: rgba(10, 11, 15, 0.97);
}
nav .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo a {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text);
  text-transform: uppercase;
}
.nav-logo span {
  color: var(--accent);
}
.navlinks ul {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.navlinks ul li a {
  color: var(--text-muted);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.navlinks ul li a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.navlinks ul li a:hover { color: var(--text); }
.navlinks ul li a:hover::after { transform: scaleX(1); transform-origin: left; }
.navlinks ul li a.active { color: var(--accent); }

.menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
  background: none;
  border: none;
  padding: 4px;
}

@media (min-width: 851px) { .menu-btn { display: none; } }

@media (max-width: 850px) {
  .menu-btn { display: block; }
  .navlinks {
    position: absolute;
    top: var(--nav-h);
    right: 0;
    width: 280px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 0 var(--radius);
    display: none;
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }
  .navlinks ul {
    flex-direction: column;
    gap: 0;
  }
  .navlinks ul li a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }
  .navlinks ul li:last-child a { border-bottom: none; }
  .showlinks {
    display: flex;
    animation: fadeDown 0.3s ease forwards;
  }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO / HOME
   ============================================================ */
.home {
  position: relative;
  padding-top: 30px;
  width: 100%;
  height: auto;
  min-height: 100vh;
  margin: auto 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 11, 15, 0.92) 0%,
    rgba(10, 11, 15, 0.70) 50%,
    rgba(245, 166, 35, 0.08) 100%
  );
}
.home::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}
.home .container {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding-top: var(--nav-h);
  animation: heroReveal 1s ease forwards;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.home .container h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 7vw, 82px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
}
.home .container h1 em {
  font-style: normal;
  color: var(--accent);
}
.home .container p {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: rgba(240, 240, 245, 0.7);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-cta {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  background: var(--accent);
  color: #0a0b0f;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary:hover {
  background: #ffc44d;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION HEADER UTILITY
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1.1;
}
.section-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  width: 100%;
  padding: 100px 0 80px;
  background: var(--bg);
}
.about > .section-inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.about .section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 16px auto 0;
  line-height: 1.7;
}
.about-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}
.about-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.about-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.about-box:hover::before { transform: scaleX(1); }
.about-box:hover {
  border-color: var(--accent-glow);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.about-box .icon-wrap {
  width: 54px; height: 54px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.about-box .icon-wrap span {
  font-size: 26px;
  color: var(--accent);
}
.about-box h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.about-box p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .about-container { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.customers {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.customers .section-inner {
  width: 90%;
  max-width: 700px;
  margin: auto;
  text-align: center;
}
.customers .section-header p {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 12px;
}
.customer-reviews {
  position: relative;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px 36px;
  margin-top: 40px;
  transition: all var(--transition);
}
.quote-mark {
  font-family: 'Syne', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 20px; left: 30px;
  font-weight: 800;
}
#desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  font-weight: 300;
  font-style: italic;
  padding: 0 10px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.star-rate {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 20px 0 14px;
}
.star-rate span {
  color: var(--accent);
  font-size: 20px;
}
#name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}
.rev-btn {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.rev-btn button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.rev-btn button:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.review-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: all var(--transition);
  cursor: pointer;
}
.dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

/* ============================================================
   FAQs
   ============================================================ */
.faqs {
  padding: 100px 0;
  background: var(--bg);
}
.faqs .section-inner {
  width: 90%;
  max-width: 700px;
  margin: auto;
}
.faqs h2 {
  font-family: 'Syne', sans-serif;
  color: var(--accent);
}
.questions { margin-top: 10px; }

.question {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.question:hover { border-color: rgba(245,166,35,0.3); }
.question.show-text { border-color: rgba(245,166,35,0.4); }

.question-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
}
.question-title p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.question-btn {
  background: none;
  border: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
}
.show-text .question-btn {
  color: var(--accent);
  background: var(--accent-dim);
  transform: rotate(180deg);
}
.question-text {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.show-text .question-text { display: block; }
.minus-icon { display: none; }
.show-text .minus-icon { display: inline-block; }
.show-text .plus-icon { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  width: 100%;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  text-align: center;
  color: var(--text-muted);
}
footer .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.3px;
}
.footer-brand span { color: var(--accent); }
footer p { font-size: 13px; }
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  transition: all var(--transition);
}
.socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
footer small a {
  color: var(--accent);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
