/* ====================================================
   GLOBAL RESET & BASE STYLES
   ==================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f2f4f7;
  color: #1e2a38;
  padding-top: 64px;
  overflow-x: hidden;
}

/* ====================================================
   GLOBAL CONTAINER
   ==================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ====================================================
   BODY SCROLL LOCK CLASS
   ==================================================== */
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* ====================================================
   NAVBAR
   ==================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f2f4f7;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.site-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e2a38;
  text-decoration: none;
  margin: 0 0.5rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.left-menu, .right-menu {
  display: flex;
  list-style: none;
  gap: 5rem;
}

.left-menu li a,
.right-menu li a {
  text-decoration: none;
  color: #1e2a38;
  font-weight: 500;
  transition: color 0.3s ease;
}

.left-menu li a:hover,
.right-menu li a:hover {
  color: #ff6b6b;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #fff;
  padding: 2rem 1.5rem;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 99;
}

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

.nav-menu li {
  margin: 1rem 0;
}

.nav-menu li a {
  color: #1e2a38;
  text-decoration: none;
  font-size: 1.1rem;
}

.nav-menu li a:hover {
  color: #ff6b6b;
}

/* ====================================================
   HERO SECTION
   ==================================================== */
.hero {
  padding: 4rem 2rem;
  background-color: #f2f4f7;
  display: flex;
  justify-content: center;
}

.hero-overlay {
  background-image: url('assets/images/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 45px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  max-width: 1200px;
  width: 100%;
  height: calc(100vh - 104px); 
  position: relative;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 0;
  border-radius: 45px;
}

.hero-overlay > * {
  position: relative;
  z-index: 1;
}

.hero-overlay h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f3f4f6;
}

.hero-btn {
  padding: 0.9rem 1.8rem;
  background-color: #ff6b6b;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #e05858;
}

/* ========== Responsive ========= */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem 1rem 1rem;
    height: 80vh;
  }

  .hero-overlay {
    height: auto;
    padding: 2rem 1.5rem;
    border-radius: 30px;
  }
  .hero-overlay::before {
    border-radius: 30px;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }
}

/* ==================== HOW SHOPPING WORKS ==================== */
.how-it-works {
  background-color: #f2f4f7;
  padding: 4rem;
}

.how-it-works-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0;
  flex-wrap: wrap;
}

.how-text {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}

.how-label {
  font-size: 1rem;
  font-weight: 600;
  color: #ff6b6b;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: block;
}

.how-heading {
  font-size: 3rem;
  font-weight: 800;
  color: #1e2a38;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.how-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.how-image {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-image img {
  width: 100%;
  max-width: 100%;
  border-radius: 36px;
  max-height: none;
  object-fit: cover;
}

.btn-primary{
  text-align: center;
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
  .how-it-works {
    padding: 0 1rem;
    margin-top: 5rem;
  }

  .how-it-works-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .how-text {
    text-align: center;
    margin-bottom: 2rem;
  }

  .how-image {
    width: 90vw;
    max-width: 500px;
    align-self: center;
    margin-bottom: 5rem;
  }

  .how-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
  }

  .how-heading {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .how-description {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .btn,
  .btn-primary {
    margin-bottom: 0;
    font-size: 1rem;
  }

  .how-text,
  .how-image {
    flex: none !important;
    width: 100%;
    max-width: 100%;
  }
}

/* ====================================================
   FEATURED PRODUCTS
   ==================================================== */
.featured-products {
  padding: 1rem 2rem;
  background-color: transparent;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.4rem;
  color: #1e2a38;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.3rem;
  color: #1e2a38;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 1rem;
  color: #555;
  text-align: center;
  margin-bottom: 0.5rem;
}

.product-card .price {
  font-size: 1.1rem;
  color: #1e2a38;
  font-weight: bold;
  margin-bottom: 1rem;
}

.product-btn {
  background-color: #ff6b6b;
  color: white;
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.product-btn:hover {
  background-color: #e05858;
}

/* ====================================================
   SCROLL TO TOP BUTTON
   ==================================================== */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  font-size: 1.5rem;
  background-color: #ff6b6b;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: opacity 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #e05858;
}

/* ====================================================
   RESPONSIVE - MOBILE VIEW
   ==================================================== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-container {
    display: none;
  }

  .navbar > .site-title {
    font-size: 1.6rem;
  }
  
  .hero {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

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

  .hero-text {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-btn {
    display: inline-block;
    margin-bottom: 2rem !important;
  }

  .hero-image {
    margin-top: 0 !important;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
    margin: 0.1rem;
    border-radius: 12px;
  }
}


/* ====================================================
   RESPONSIVE - DESKTOP OVERRIDES
   ==================================================== */
@media (min-width: 769px) {
  .hero {
    padding-top: 1rem;
  }
  
  .navbar > .site-title {
    display: none;
  }
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
  padding: 4rem 2rem;
  background-color: #f2f4f7;
}

.section-label {
  color: #ff6b6b;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.testimonial-layout {
  background-color: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 10rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-aside {
  flex: 0 0 280px;
  max-width: 280px;
}

.testimonial-aside h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1e2a38;
}

.testimonial-aside p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1rem;
}

.carousel-viewport {
  position: relative;
  flex: 1;
  overflow: hidden;
  max-width: 820px;
  margin-top: 0.5rem;
  border-radius: 20px;
}

.testimonial-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0;
  scrollbar-width: none;
  margin-top: 0;
  margin-bottom: 0.5rem;
  border-radius: 20px;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 55%;
  max-width: 40%;
  min-height: 280px;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.bg-1 { background-color: #fff6f6; }
.bg-2 { background-color: #f9fafc; }
.bg-3 { background-color: #f2f8f8; }
.bg-4 { background-color: #fffaf2; }

.testimonial-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: #1e2a38;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #888;
}

.testimonial-nav-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: flex-start;
}

.carousel-btn {
  background-color: #ff6b6b;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background-color: #e05858;
}

/* Responsive Button Handling */
.mobile-only {
  display: none;
}

@media (max-width: 900px) {
  .testimonials {
    padding-left: 0;
    padding-right: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-left: 0;
    margin-right: 0;
  }

  .testimonial-layout {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1rem 2rem 1rem;
  }

  .testimonial-aside {
    text-align: center;
    padding: 0 1rem;
  }
  
    .testimonial-aside p {
    margin-bottom: 0.5rem;
  }

  .carousel-viewport {
    padding: 0;
    overflow-x: auto;
    width: 100%;
    scroll-snap-type: x mandatory;
  }

  .testimonial-carousel {
    gap: 1rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
  }

  .testimonial-card {
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
    border-radius: 20px;
    padding: 1rem 1.2rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
    min-height: 280px;
  }

  .testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .testimonial-author {
    flex-direction: row;
    gap: 1rem;
  }

  .testimonial-aside .testimonial-nav-buttons {
    display: none;
  }

  .testimonial-nav-buttons.mobile-only {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
  }

  .testimonial-nav-buttons.mobile-only .carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ff6b6b;
  color: white;
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.testimonial-nav-buttons.mobile-only .carousel-btn:hover {
  background-color: #e05858;
  transform: translateY(-2px);
}
}

@media (max-width: 768px) {
  .testimonial-layout,
  .contact-wrapper {
    border-radius: 20px;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: 0;
    margin-right: 0;
    width: 100vw;
    box-sizing: border-box;
  }

  .section-label {
    text-align: left;
    margin-bottom: 1rem;
  }
}


/* ================ TRUSTED LOGOS SECTION ==================== */
.trusted-logos {
  background-color: #f2f4f7;
  padding: 4rem 2rem;
}

.logo-strip {
  background-color: #ffffff;
  border-radius: 90px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  position: relative;
}

.logo-label {
  font-size: 1.2rem;
  font-weight: 600;
  white-space: nowrap;
  color: #1e2a38;
  flex-shrink: 0;
  z-index: 2;
}

.logo-viewport {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.logo-viewport::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 100%;
  background: linear-gradient(to right, white 60%, transparent);
  z-index: 2;
  pointer-events: none;
}

.logo-viewport::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 64px;
  height: 100%;
  background: linear-gradient(to left, white 60%, transparent);
  z-index: 2;
  pointer-events: none;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: scrollLogos 40s linear infinite;
}

.logo-track img {
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-track img:hover {
  filter: none;
  opacity: 1;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-strip {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .logo-label {
    font-size: 1.1rem;
    text-align: center;
  }

  .logo-track {
    gap: 2rem;
    animation-duration: 60s;
  }

  .logo-track img {
    height: 32px;
  }

  .logo-viewport::before,
  .logo-viewport::after {
    width: 48px;
  }
}

/* ==================== GADGET SUPPORT CARDS ================ */
.gadget-support {
  background-color: #f2f4f7;
  padding: 4rem 2rem;
}

.support-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.support-header h2 {
  font-size: 2rem;
  color: #1e2a38;
  margin-bottom: 1rem;
}

.support-header p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

.support-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.support-card {
  background-color: white;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  flex: 1 1 300px;
  max-width: 300px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
}

.support-card h3{font-size: 1.6rem;}

/* ==================== BUTTON STYLES ==================== */
.btn {
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

.btn-primary {
  background-color: #ff6b6b;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #e05858;
}

.btn-dark {
  background-color: #1e2a38;
  color: white;
  border: none;
}

.btn-dark:hover {
  background-color: #2d3b4f;
}

.btn-outline {
  background-color: transparent;
  color: #1e2a38;
  border: 2px solid #1e2a38;
}

.btn-outline:hover {
  background-color: #f2f4f7;
}

.btn-accent {
  background-color: #4a90e2;
  color: white;
  border: none;
}

.btn-accent:hover {
  background-color: #357ab8;
}

/* ==================== Responsive ==================== */
@media (max-width: 768px) {
  .support-cards {
    flex-direction: column;
    gap: 1.5rem;
  }

  .support-card {
    max-width: 100%;
  }
}

/* ===================== COMMUNITY SECTION ===================== */
.community-section {
  background-color: #f2f4f7;
  padding: 5rem 2rem;
}

.community-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.community-text {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.community-text .section-label {
  font-size: 1rem;
  font-weight: 600;
  color: #ff6b6b;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: block;
}

.community-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e2a38;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.community-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-discord {
  background-color: #5865f2; /* Discord brand color */
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-discord:hover {
  background-color: #4e5bd4;
}

.community-image {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-image img {
  width: 100%;
  max-width: 100%;
  border-radius: 32px;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .community-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 0 1rem;
  }

  .community-text h2 {
    font-size: 1.6rem;
  }

  .community-text p {
    font-size: 1rem;
  }

  .community-image img {
    width: 90vw;
    max-width: 500px;
    border-radius: 24px;
    margin-bottom: 1rem;
  }

  .btn-discord {
    font-size: 1rem;
    padding: 0.7rem 1.3rem;
  }

  .community-text,
  .community-image {
    flex: none !important;
  }
}

/* ==================== FAQ SECTION ==================== */
.faq {
  padding: 4rem 2rem;
  background-color: transparent;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: flex-start;
}

/* ============ Left Column with Image and Text ============ */
.faq-intro {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.faq-intro h2 {
  font-size: 2rem;
  color: #1e2a38;
}

.faq-intro p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.faq-intro img {
  width: 100%;
  max-width: 330px;
  max-height: 330px;
  margin: 0 auto;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 2/3;
}

/* ============ Right Column with FAQ Dropdowns ============ */
.faq-items {
  flex: 2 1 600px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  padding: 1.2rem 1.5rem;
  transition: all 0.3s ease;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  color: #1e2a38;
  position: relative;
  padding-right: 2rem;
}

/* Toggle Icon */
.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6b6b;
  transition: transform 0.3s ease, content 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "×";
  transform: translateY(-50%) rotate(90deg);
}

/* Hidden/Shown Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
  margin-top: 0.5rem;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ==================== Responsive ==================== */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
    padding: 2rem 1.2rem;
  }

  .faq-intro {
    align-items: center;
    text-align: center;
  }

  .faq-intro img {
    margin-top: 1rem;
  }
}

/* ===================== CONTACT SECTION ===================== */
.contact {
  background: #f2f4f7;
  padding: 4rem 1.5rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #1e2a38;
  margin-bottom: 2rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  text-align: center;
  margin-bottom: 1rem;
}

.section-description {
  text-align: center;
  color: #6b7280;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.contact-details,
.contact-form-wrapper {
  flex: 1;
  min-width: 300px;
}

.contact-details h3,
.contact-form-wrapper h3 {
  font-size: 1.4rem;
  color: #1e2a38;
  margin-bottom: 1.25rem;
}

.contact-details p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.2rem;
  line-height: 1.6; 
}

.contact-details .social-links a {
  color: #ff6b6b;
  margin-right: 1rem;
  font-size: 1.2rem;
  text-decoration: none;
}

.contact-details .response-time {
  font-size: 0.875rem;
  color: #888;
  margin-top: 5rem;
}

.contact-form-wrapper .form-group {
  margin-bottom: 1.75rem;
}

.contact-form-wrapper label {
  display: block;
  font-size: 1rem;
  color: #1e2a38;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.contact-form-wrapper input {
  width: 100%;
  padding: 0.35rem 0 0.2rem;
  border: none;
  border-bottom: 2px solid #1e2a38;
  background: transparent;
  color: #1e2a38;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form-wrapper input::placeholder {
  color: #998;
  font-size: 1rem;
  transform: translateY(3px);
}

.contact-form-wrapper input:focus {
  border-bottom-color: #ff6b6b;
  outline: none;
}

.contact-form-wrapper .message-field {
  margin-bottom: 2.2rem;
}

.contact-form-wrapper .btn-primary {
  background: #ff6b6b;
  color: white;
  width: 100%;
  padding: 0.8rem;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.contact-form-wrapper .btn-primary:hover {
  background-color: #e05858;
}

.form-message {
  margin-top: 1rem;
  text-align: center;
  font-size: 1rem;
}

.form-message.success {
  color: #10b981;
}

.form-message.error {
  color: #ef4444;
}

#message {margin-top: 1.8rem;}
#email {margin-top: 0.1rem;}

.contact-details .contact-socials {
  margin-top: 0.75rem;
}

.contact-socials a {
  font-size: 2rem;
  color: #ff6b6b;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.contact-socials a:hover {
  color: #e05858;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .contact-details,
  .contact-form-wrapper {
    flex: none;
  }

  .contact-details p,
  .contact-form-wrapper input,
  .form-message {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .contact-details .social-links a,
  .contact-socials a {
    margin-right: 0.75rem;
    font-size: 1.5rem;
  }

  .contact-socials {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .form-group {
    width: 100%;
  }

  input, .btn-primary {
    width: 100%;
  }
}

/* ===================== FOOTER SECTION ===================== */
.footer-section {
  background-color: #f2f4f7;
  padding: 4rem 2rem;
}

.footer-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Left Box */
.footer-info-box {
  flex: 1 1 480px;
  background-color: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #1e2a38;
  margin-bottom: 1.5rem;
}

.footer-links-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #1e2a38;
  text-decoration: none;
  font-size: 1rem;
}

.footer-links a:hover {
  color: #ff6b6b;
}

.footer-socials {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.3rem;
}

.footer-socials a {
  color: #1e2a38;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #ff6b6b;
}

.footer-legal {
  font-size: 0.9rem;
  color: #888;
  display: flex;
  gap: 0.5rem;
}

/* Right Box */
.footer-cta-box {
  flex: 1 1 480px;
  background-image: url('assets/images/footer-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  overflow: hidden;
}

.footer-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35); 
  z-index: 1;
  border-radius: 24px;
}

.footer-cta-content {
  position: relative;
  text-align: center;
  color: #ffffff;
  z-index: 2;
}

.footer-cta-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.footer-cta-btn {
  display: inline-block;
  background-color: #ff6b6b;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.footer-cta-btn:hover {
  background-color: #e05858;
}

.footer-legal {
  font-size: 0.9rem;
  color: #888;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.footer-legal a {
  color: #1e2a38;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ff6b6b;
}

.footer-legal span {
  color: #ccc;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
  }

  .footer-info-box,
  .footer-cta-box {
    width: 100%;
  }

  .footer-links-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cart-icon {
  position: relative;
  color: #1e2a38;
  font-size: 1.4rem;
  text-decoration: none;
  margin-left: 1rem;
}

.cart-icon i {
  font-size: 1.5rem;
}

#cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background-color: #ff6b6b;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
  line-height: 1;
  min-width: 20px;
  text-align: center;
}

/* Bounce animation */
#cart-count .cart-bounce {
  animation: bounceCart 0.3s ease-in-out;
}

@keyframes bounceCart {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* ====================================================
   🛒 CART PAGE STYLES
   ==================================================== */
.cart-section {
  padding: 5rem 2rem;
  background-color: #f2f4f7;
  min-height: 100vh;
}

.cart-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.cart-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e2a38;
  margin-bottom: 2rem;
  text-align: center;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 16px;
  background-color: #fafafa;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e2a38;
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-size: 1rem;
  color: #555;
}

.remove-btn {
  background-color: transparent;
  border: none;
  color: #ff6b6b;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.remove-btn:hover {
  color: #e05858;
}

.cart-summary {
  margin-top: 2rem;
  text-align: right;
}

.cart-total {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e2a38;
  margin-bottom: 1rem;
}

.clear-cart-btn {
  background-color: #1e2a38;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.clear-cart-btn:hover {
  background-color: #2d3b4f;
}

.cart-empty {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.cart-empty p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .cart-section {
    padding-left: 0;
    padding-right: 0;
  }

  .cart-wrapper {
    max-width: 100%;
    padding: 1.5rem 1rem;
    border-radius: 0;
  }

  .cart-items,
  .cart-summary {
    gap: 1rem;
  }

  .cart-title {
    font-size: 1.6rem;
  }

  .cart-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .cart-item-details {
    width: 100%;
  }

  .cart-summary {
    text-align: center;
  }

  .site-title {
    font-size: 1.8rem;
  }
}