/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f3f4f6;
  color: #111827;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #4f46e5;
  text-decoration: none;
  transition: color 0.3s;
}

.logo:hover {
  color: #4f39f6;
}

.menu {
  display: flex;
  list-style: none;
  gap: 30px;
  font-weight: 500;
}

.menu li {
  cursor: pointer;
  color: #374151;
}

.menu li:hover {
  color: #4f39f6;
}

.menu li.active {
  color: #4f39f6;
  font-weight: 600;
}

.cart {
  font-size: 20px;
  cursor: pointer;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #374151;
  background: none;
  border: none;
  padding: 8px 10px;
  line-height: 1;
  transition: all 0.3s;
  border-radius: 4px;
}

.mobile-menu-toggle:hover {
  color: #4f39f6;
  background: #f3f4f6;
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* HERO */
.hero {
  background: url("assets/banner.png") center/cover no-repeat;
  height: 78vh;
  display: flex;
  align-items: center;
  padding-left: 80px;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 35, 49, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.hero-content {
  position: relative;
  max-width: 520px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.hero p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.hero button {
  padding: 14px 28px;
  background: #4f39f6;
  border: none;
  color: white;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background: #4338ca;
}

/* FEATURES */
.features {
  padding: 70px 80px;
  text-align: center;
  background: white;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #111827;
}

.feature-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  position: relative;
  text-align: center;
}

.feature-card .icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: inline-block;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #111827;
  font-weight: 600;
}

.feature-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

/* TRENDING */
.trending {
  padding: 70px 80px;
}

.trending h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #111827;
}

#trending-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* PRODUCT CARD */
.card {
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border: 1px solid #f3f4f6;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-image {
  background: #f3f4f6;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.card img {
  height: 180px;
  object-fit: contain;
  width: 100%;
}

.card-category {
  display: inline-block;
  background: #ede9fe;
  color: #6d28d9;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.card-rating {
  display: inline-block;
  color: #f59e0b;
  font-size: 12px;
  margin-left: 8px;
}

.card h4 {
  font-size: 14px;
  margin: 8px 0;
  color: #111827;
  font-weight: 500;
  line-height: 1.4;
  min-height: 40px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  color: #111827;
}

.card-buttons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.btn-details {
  flex: 1;
  padding: 10px 16px;
  background: white;
  border: 1.5px solid #d1d5db;
  color: #374151;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-details:hover {
  border-color: #4f39f6;
  color: #4f39f6;
  background: #f5f3ff;
}

.btn-add {
  flex: 1;
  padding: 10px 16px;
  background: #4f39f6;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 13px;
  font-weight: 500;
}

.btn-add:hover {
  background: #4338ca;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 57, 246, 0.3);
}

/* FOOTER */
footer {
  background: #0f172a;
  color: white;
  padding: 60px 80px 20px;
  margin-top: 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.8fr;
  gap: 50px;
  margin-bottom: 40px;
}

.newsletter-section {
  max-width: 100%;
}

.newsletter-section h4 {
  margin-bottom: 12px;
}

.newsletter-desc {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #334155;
  border-radius: 6px;
  background: #1e293b;
  color: white;
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
}

.newsletter-form input::placeholder {
  color: #64748b;
}

.newsletter-form input:focus {
  border-color: #4f39f6;
  background: #0f172a;
}

.newsletter-form button {
  padding: 12px 24px;
  background: #4f39f6;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 57, 246, 0.4);
}

.social-icons-footer {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.social-icon-footer {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e293b;
  border-radius: 6px;
  color: #94a3b8;
  font-size: 16px;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icon-footer:hover {
  background: #4f39f6;
  color: white;
  transform: translateY(-3px);
}

.footer-section h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #4f39f6;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-desc {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 14px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-links a:hover {
  color: #4f39f6;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  color: #94a3b8;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  #trending-products {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-container {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .navbar {
    padding: 18px 40px;
  }
  
  .hero {
    padding-left: 60px;
  }
  
  .features,
  .trending {
    padding: 60px 40px;
  }
  
  .products-section {
    padding: 50px 40px;
  }
  
  .about-content,
  .story-section,
  .stats-section,
  .team-section,
  .contact-section,
  .faq-section {
    padding: 60px 40px;
  }
}

/* TABLET RESPONSIVE */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  #trending-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .category-buttons {
    gap: 10px;
  }
  
  .category-buttons button {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .menu {
    gap: 20px;
    font-size: 14px;
  }
  
  .cart {
    font-size: 18px;
  }
  
  .card h4 {
    font-size: 13px;
  }
  
  .features {
    padding: 60px 40px;
  }
  
  .trending {
    padding: 60px 40px;
  }
}

@media (max-width: 600px) {
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    gap: 0;
    z-index: 1000;
    animation: slideDown 0.3s ease-out;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .menu.active {
    display: flex;
  }
  
  .menu li {
    padding: 0;
    border-bottom: none;
  }
  
  .menu li a {
    display: block;
    padding: 14px 30px;
    border-bottom: 1px solid #f3f4f6;
  }
  
  .menu li:last-child a {
    border-bottom: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .navbar {
    position: relative;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  #trending-products {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 20px;
    height: 60vh;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 14px;
  }
  
  .navbar {
    padding: 18px 20px;
  }
  
  .logo {
    font-size: 18px;
  }
  
  .features,
  .trending {
    padding: 50px 20px;
  }
  
  .features h2,
  .trending h2 {
    font-size: 24px;
  }
  
  footer {
    padding: 40px 20px 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form button {
    width: 100%;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .products-section {
    padding: 40px 20px;
  }
  
  .product-title {
    font-size: 24px;
  }
  
  .card {
    padding: 14px;
  }
  
  .card-image {
    min-height: 180px;
    padding: 15px;
  }
  
  .card img {
    height: 160px;
  }
  
  .card h4 {
    font-size: 13px;
    min-height: 36px;
  }
  
  .price {
    font-size: 16px;
  }
  
  .card-buttons {
    flex-direction: column;
    gap: 8px;
  }
  
  .btn-details,
  .btn-add {
    font-size: 14px;
    padding: 10px 14px;
  }
  
  .about-hero-content h1,
  .contact-hero-content h1 {
    font-size: 28px;
  }
  
  .about-hero-content p,
  .contact-hero-content p {
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .story-text h2 {
    font-size: 24px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content,
  .story-section,
  .stats-section,
  .team-section,
  .contact-section,
  .faq-section {
    padding: 40px 20px;
  }
  
  .contact-info h2,
  .faq-section h2,
  .team-section h2 {
    font-size: 24px;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .modal-content {
    width: 95%;
    max-width: 95%;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .modal-content img {
    height: 200px;
  }
}

/* PRODUCTS PAGE */

.products-section {
  padding: 60px 80px;
  background: white;
  min-height: 60vh;
}

.product-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #111827;
}

.category-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.category-buttons button {
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid #e5e7eb;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  color: #374151;
}

.category-buttons button:hover {
  background: #f9fafb;
  border-color: #4f39f6;
  color: #4f39f6;
}

.category-buttons button.active {
  background: #4f39f6;
  color: white;
  border-color: #4f39f6;
  box-shadow: 0 2px 8px rgba(79, 57, 246, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* MODAL */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 0;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-content img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #f9fafb;
  padding: 30px;
}

.modal-body {
  padding: 30px;
}

.modal-body h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111827;
}

.modal-body p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.modal-body h4 {
  font-size: 28px;
  color: #4f39f6;
  margin-bottom: 20px;
  font-weight: 700;
}

.modal-body button {
  width: 100%;
  padding: 14px;
  background: #4f39f6;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.modal-body button:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 57, 246, 0.3);
}

#close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
  color: #9ca3af;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s;
  line-height: 1;
}

#close-modal:hover {
  color: #111827;
  background: #f3f4f6;
  transform: rotate(90deg);
}

/* MENU LINK STYLES */
.menu a {
  text-decoration: none;
  color: #374151;
  transition: color 0.3s;
}

.menu a:hover {
  color: #4f39f6;
}

.menu a.active {
  color: #4f39f6;
  font-weight: 600;
}

/* ABOUT PAGE */

.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.about-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.about-hero-content p {
  font-size: 18px;
  opacity: 0.95;
}

.about-content {
  padding: 80px 60px;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 16px;
  background: #f8f9fa;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.about-card .icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1f2937;
}

.about-card p {
  color: #6b7280;
  line-height: 1.6;
}

.story-section {
  padding: 80px 60px;
  background: #f3f4f6;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.story-placeholder {
  font-size: 120px;
  opacity: 0.3;
}

.story-text h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #1f2937;
}

.story-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 20px;
}

.stats-section {
  padding: 80px 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
}

.team-section {
  padding: 80px 60px;
  background: white;
  text-align: center;
}

.team-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #1f2937;
}

.team-subtitle {
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 50px;
}

.team-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  background: #f8f9fa;
  padding: 30px 20px;
  border-radius: 16px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.team-avatar {
  font-size: 64px;
  margin-bottom: 20px;
}

.team-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1f2937;
}

.team-card .role {
  color: #8b5cf6;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.team-card .bio {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

/* CONTACT PAGE */

.contact-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.contact-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-hero-content p {
  font-size: 18px;
  opacity: 0.95;
}

.contact-section {
  padding: 80px 60px;
  background: white;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #1f2937;
}

.contact-subtitle {
  color: #6b7280;
  margin-bottom: 40px;
  line-height: 1.6;
}

.info-items {
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  font-size: 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #1f2937;
}

.info-item p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.social-links h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #1f2937;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  font-size: 28px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 10px;
  text-decoration: none;
  transition:
    transform 0.3s,
    background 0.3s;
}

.social-icon:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-form-wrapper {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4f39f6;
  box-shadow: 0 0 0 3px rgba(79, 57, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  padding: 16px 32px;
  background: #4f39f6;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 57, 246, 0.3);
  background: #4338ca;
}

.form-message {
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
}

.success-message {
  background: #d1fae5;
  color: #065f46;
  border: 2px solid #6ee7b7;
}

.faq-section {
  padding: 80px 60px;
  background: #f3f4f6;
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #1f2937;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-question h4 {
  font-size: 16px;
  color: #1f2937;
  margin: 0;
}

.faq-toggle {
  font-size: 24px;
  font-weight: 300;
  color: #4f39f6;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}
