:root {
  --primary: #8b4513;
  --secondary: #f4a261;
  --dark: #222;
  --light: #ffffff;
  --gray: #666;
  --bg-light: #f9f9f9;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
}

.section {
  padding: 70px 8%;
}


a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 8%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  background: #111;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 16px;
}

.logo h3 {
  font-size: 16px;
  font-weight: 600;
}

.logo span {
  font-size: 11px;
  color: #777;
  letter-spacing: 1px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a,
.drop-btn {
  font-size: 14px;
  color: #333;
  background: none;
}

.nav-links a:hover,
.drop-btn:hover {
  color: #000;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 8px;
  display: none;
  flex-direction: column;
  min-width: 160px;
}

.dropdown-menu a {
  padding: 10px 14px;
  font-size: 13px;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* CTA buttons */
.nav-cta {
  display: flex;
  gap: 12px;
}

.btn-outline {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: transparent;
}

.btn-dark {
  padding: 8px 18px;
  border-radius: 20px;
  background: #111;
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
}



@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-links.active {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow);
  }
}


/* HERO SECTION */
.hero {
  background: #fff;
  /* padding: 10px 8%; */
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.hero-badge {
  display: inline-block;
  background: #f1f1f1;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 15px;
  color: #555;
  max-width: 500px;
  margin-bottom: 30px;
}

/* STATS */
.hero-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.stat-box {
  padding: 18px 26px;
  border-radius: 14px;
  text-align: center;
  min-width: 160px;
}

.stat-box h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.stat-box span {
  font-size: 14px;
}

.stat-box.green {
  background: #f0fff4;
  color: #1a7f37;
}

.stat-box.blue {
  background: #eef3ff;
  color: #1d4ed8;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
}

/* RIGHT IMAGE */
.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 24px;
  height: 480px;
  object-fit: cover;
  width: 100%;
}

/* IMAGE BADGE */
.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #111;
  color: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  text-align: center;
}

.image-badge h3 {
  font-size: 24px;
}

.image-badge span {
  font-size: 13px;
  opacity: 0.8;
}


@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-image img {
    height: 320px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* SUPPORT SECTION */
.support {
  background: #f9fafb;
  text-align: center;
}

.support h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.support-subtitle {
  color: #666;
  font-size: 15px;
  margin-bottom: 40px;
}

/* Tabs */
.support-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.tab-btn {
  padding: 12px 28px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid #ddd;
  font-size: 14px;
}

.tab-btn.active {
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 500;
}

/* Cards Grid */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Card */
.support-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
}

.support-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.support-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.support-card p {
  font-size: 14px;
  color: #555;
}

/* Tab content animation */
.tab-content {
  display: none;
  animation: fade 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* TESTIMONIALS */
.testimonials {
  background: #f9fafb;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.testimonials-subtitle {
  color: #666;
  font-size: 15px;
  margin-bottom: 50px;
}

/* Slider Layout */
.testimonial-wrapper {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

/* Card */
.testimonial-card {
  min-width: 100%;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: left;
}

/* User */
.user {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.user h4 {
  font-size: 15px;
}

.user span {
  font-size: 13px;
  color: #777;
}

/* Text */
.testimonial-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 16px;
}

/* Stars */
.stars {
  color: #f59e0b;
  font-size: 18px;
}

/* Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  box-shadow: var(--shadow);
  font-size: 22px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: var(--shadow);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}



/* FAQ SECTION */
.faq {
  background: #fff;
  max-width: 900px;
  margin: auto;
}

.faq h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.faq-subtitle {
  text-align: center;
  color: #666;
  font-size: 15px;
  margin-bottom: 40px;
}

.faq-item {
  border-top: 1px solid #eee;
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid #eee;
}

/* Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
}

.faq-question .icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 300px;
}


.faq-item.active .icon {
  transform: rotate(180deg);
}


/* CONTACT FORM */
.contact {
  background: #f9fafb;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 40px;
}

form {
  max-width: 600px;
  margin: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

input,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: inherit;
}

textarea {
  margin-bottom: 20px;
}

.form-success {
  display: none;
  margin-top: 16px;
  color: green;
  font-size: 14px;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}


/* FOOTER */
.footer {
  background: #111;
  color: #ccc;
  padding: 60px 8% 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-col a {
  color: #ccc;
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #222;
  padding-top: 20px;
}
