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

:root {
  --primary: #ff4f9a;
  --secondary: #ff8db8;
  --accent: #ffedf5;
  --dark: #2d2d2d;
  --text: #555;
  --white: #fff;
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  list-style: none;
}

body {
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
}

section {
  padding: 100px 8%;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff2d82;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  z-index: 1000;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}

.logo img{
  width: 80px;
  border: 2px solid var(--primary);

  height: 80px;
  border-radius: 50%;
}
.navbar {
  display: flex;
  gap: 25px;
}

.navbar a {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  margin-right: 15px;
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: var(--primary);
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 20px;
  transition: 0.3s;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

.header-button {
  display: flex;
  gap: 12px;
}

.btn-shop,
.btn-wa {
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.btn-shop {
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-shop:hover {
  background: var(--primary);
  color: #fff;
}

.btn-wa {
  background: #25d366;
  color: #fff;
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

#menu-icon {
  display: none;
  font-size: 34px;
  cursor: pointer;
}

/* HERO */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 60px;
  background: linear-gradient(135deg, #fff, #fff5fa, #ffe8f3);
  position: relative;
  overflow: hidden;
}

.hero-left h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.2;
  margin: 20px 0;
}

.hero-left h1 span {
  color: var(--primary);
}

.hero-left p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 35px;
}

.badge {
  display: inline-block;
  padding: 10px 22px;
  background: #ffe8f3;
  color: var(--primary);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
}

.hero-button {
  display: flex;
  gap: 18px;
  margin-bottom: 35px;
}

.btn-primary {
  padding: 15px 35px;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 15px 30px rgba(255, 79, 154, 0.25);
}

.btn-primary:hover {
  transform: translateY(-5px);
}

.btn-secondary {
  padding: 15px 35px;
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}

.hero-search {
  display: flex;
  background: #fff;
  border-radius: 60px;
  padding: 8px;
  box-shadow: var(--shadow);
  max-width: 520px;
  margin-bottom: 45px;
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-size: 15px;
  background: none;
}

.hero-search button {
  width: 58px;
  height: 58px;
  border: none;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
}

.hero-stat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.hero-stat div {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.hero-stat h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 8px;
}

.hero-stat p {
  font-size: 14px;
  margin: 0;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-bg {
  width: 470px;
  height: 470px;
  background: linear-gradient(135deg, #ff6ea9, #ffd1e6);
  border-radius: 50%;
  position: absolute;
  filter: blur(5px);
}

.hero-image {
  width: 370px;
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  background: #fff;
  padding: 14px 22px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 3;
}

.floating-card i {
  font-size: 22px;
  color: var(--primary);
}

.card1 {
  top: 80px;
  left: 10px;
}

.card2 {
  right: 0;
  top: 210px;
}

.card3 {
  bottom: 60px;
  left: 50px;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.shape1 {
  width: 220px;
  height: 220px;
  background: #ffd4e8;
  top: -60px;
  left: -60px;
}

.shape2 {
  width: 180px;
  height: 180px;
  background: #ffc3dd;
  bottom: -40px;
  right: -40px;
}

.shape3 {
  width: 100px;
  height: 100px;
  background: #ff8db8;
  top: 45%;
  left: 48%;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}

.scroll-down {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-down a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  font-size: 28px;
  color: var(--primary);
  box-shadow: var(--shadow);
  animation: float 2s infinite;
}
/*================== SECTION TITLE ==================*/

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  display: inline-block;
  padding: 8px 20px;
  background: #ffe8f3;
  color: var(--primary);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  max-width: 650px;
  margin: auto;
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
}

/*================== KATEGORI ==================*/

.kategori {
  background: #fff;
}

.kategori-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.kategori-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 25px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.kategori-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
}

.kategori-card .icon {
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4f9a, #ff9bc5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 42px;
  transition: 0.4s;
}

.kategori-card:hover .icon {
  transform: rotate(10deg) scale(1.1);
}

.kategori-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.kategori-card p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
}

.kategori-card a {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.kategori-card a:hover {
  gap: 14px;
}

/*================== PROMO ==================*/

.promo {
  margin: 100px 8%;
  padding: 70px;
  border-radius: 35px;
  background: linear-gradient(135deg, #ff4f9a, #ff8db8);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 60px;
  overflow: hidden;
  position: relative;
}

.promo::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  top: -120px;
  right: -100px;
}

.promo::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -80px;
  left: -60px;
}

.promo-content {
  position: relative;
  z-index: 2;
}

.promo-content span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  padding: 10px 22px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.promo-content h2 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
}

.promo-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #fff;
  margin-bottom: 35px;
}

.promo-button {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.promo .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: none;
}

.promo .btn-primary:hover {
  background: #ffe8f3;
}

.promo .btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.promo .btn-secondary:hover {
  background: #fff;
  color: var(--primary);
}

.promo-image {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.promo-image img {
  width: 360px;
  animation: float 4s ease-in-out infinite;
}

/*================== FEATURES ==================*/

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 90px;
}

.feature-box {
  background: #fff;
  padding: 35px;
  text-align: center;
  border-radius: 25px;
  box-shadow: var(--shadow);
  transition: 0.4s;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box i {
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  background: #ffe8f3;
  color: var(--primary);
  border-radius: 50%;
}

.feature-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.feature-box p {
  color: var(--text);
  line-height: 1.8;
}

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

.about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  align-items: center;
  padding-top: 120px;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-content span {
  display: inline-block;
  padding: 10px 22px;
  background: #ffe8f3;
  color: var(--primary);
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: 46px;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: var(--text);
  line-height: 2;
  margin-bottom: 30px;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.about-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 18px;
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.about-list div:hover {
  transform: translateX(8px);
}

.about-list i {
  color: var(--primary);
  font-size: 22px;
}

.about .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/*================== PRODUCT ==================*/

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.search-box {
  width: 380px;
  max-width: 100%;
  height: 60px;
  background: #fff;
  border-radius: 50px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.search-box i {
  font-size: 22px;
  color: var(--primary);
  margin-right: 10px;
}

.search-box input {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  background: none;
}

.filter-menu {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-menu button {
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 600;
  cursor: pointer;
  transition: 0.35s;
}

.filter-menu button.active,
.filter-menu button:hover {
  background: var(--primary);
  color: #fff;
}

/*================== PRODUCT GRID ==================*/

.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/*================== PRODUCT CARD ==================*/

.product-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transition: 0.4s;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s;
}

.product-card:hover img {
  transform: scale(1.08);
}

/*================== DISCOUNT ==================*/

.discount {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ff2f5e;
  color: #fff;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  z-index: 5;
}

/*================== WISHLIST ==================*/

.wishlist {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.3s;
  z-index: 5;
}

.wishlist i {
  font-size: 22px;
  color: #999;
  transition: 0.3s;
}

.wishlist:hover {
  background: var(--primary);
}

.wishlist:hover i {
  color: #fff;
}

/*================== PRODUCT INFO ==================*/

.product-info {
  padding: 25px;
}

.category {
  display: inline-block;
  padding: 7px 15px;
  background: #ffe8f3;
  color: var(--primary);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-info h3 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 15px;
  min-height: 60px;
}

/*================== RATING ==================*/

.rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 18px;
}

.rating i {
  color: #ffc107;
  font-size: 18px;
}

.rating span {
  margin-left: 8px;
  font-size: 14px;
  color: #777;
}

/*================== PRICE ==================*/

.price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.price h4 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.price del {
  font-size: 16px;
  color: #999;
}

/*================== BUTTON ==================*/

.product-button {
  display: flex;
  gap: 15px;
}

.product-button a {
  flex: 1;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.35s;
}

.product-button a:first-child {
  background: #f5f5f5;
  color: #333;
}

.product-button a:first-child:hover {
  background: #ddd;
}

.product-button a:last-child {
  background: var(--primary);
  color: #fff;
}

.product-button a:last-child:hover {
  background: #ff2f85;
}

/*================== SEE MORE ==================*/

.see-more {
  margin-top: 60px;
  text-align: center;
}

.see-more .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 45px;
}

/*================== PRODUCT HOVER ==================*/

.product-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #ff9bc5);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s;
  z-index: 2;
}

.product-card:hover::before {
  transform: scaleX(1);
}

/*================== IMAGE EFFECT ==================*/

.product-card {
  cursor: pointer;
}

.product-card:hover .category {
  background: var(--primary);
  color: #fff;
}

/*================== RESPONSIVE ==================*/

@media (max-width: 991px) {
  .product-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-box {
    width: 100%;
  }

  .filter-menu {
    width: 100%;
  }

  .product-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-container {
    grid-template-columns: 1fr;
  }

  .product-info h3 {
    font-size: 18px;
    min-height: auto;
  }

  .price h4 {
    font-size: 24px;
  }

  .product-button {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .filter-menu {
    gap: 10px;
  }

  .filter-menu button {
    padding: 10px 18px;
    font-size: 13px;
  }

  .discount {
    font-size: 12px;
    padding: 6px 12px;
  }

  .wishlist {
    width: 40px;
    height: 40px;
  }
}
/*================== TESTIMONIAL ==================*/

.testimonial {
  background: #fff7fb;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 35px;
  border-radius: 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 20px;
  border: 5px solid #ffe8f3;
}

.testimonial-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.stars {
  margin-bottom: 20px;
}

.stars i {
  font-size: 20px;
  color: #ffc107;
}

.testimonial-card p {
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
}

/*================== COUNTER ==================*/

.counter {
  background: linear-gradient(135deg, #ff4f9a, #ff8db8);
  padding: 70px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.counter-box {
  text-align: center;
  color: #fff;
}

.counter-box h2 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 10px;
}

.counter-box p {
  font-size: 18px;
}

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

.faq {
  padding-top: 100px;
}

.faq-item {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 30px;
  border: none;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  font-size: 24px;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 300px;
}

.faq-answer p {
  line-height: 1.9;
  color: var(--text);
}

/*================== CONTACT ==================*/

.contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: start;
}

.contact-info span {
  display: inline-block;
  padding: 8px 20px;
  background: #ffe8f3;
  color: var(--primary);
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-info h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.contact-info p {
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 30px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  padding: 18px;
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.info-box i {
  font-size: 26px;
  color: var(--primary);
}

.social-media {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-media a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-size: 22px;
  transition: 0.3s;
}

.social-media a:hover {
  background: var(--primary);
  color: #fff;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: var(--shadow);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid #eee;
  border-radius: 12px;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  border: none;
  cursor: pointer;
}

/*================== MAP ==================*/

.maps iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 25px;
  box-shadow: var(--shadow);
}

/*================== FOOTER ==================*/

footer {
  background: #222;
  color: #fff;
  margin-top: 100px;
}

.footer-container {
  padding: 70px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-box p,
.footer-box a {
  display: block;
  margin-bottom: 12px;
  color: #ddd;
  transition: 0.3s;
}

.footer-box a:hover {
  color: #ff8db8;
  padding-left: 8px;
}

.footer-bottom {
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*================== FLOAT BUTTON ==================*/

.floating-whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 65px;
  height: 65px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
  z-index: 999;
  animation: pulse 2s infinite;
}

.scroll-top {
  position: fixed;
  right: 25px;
  bottom: 105px;
  width: 55px;
  height: 55px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

/*================== LOADER ==================*/

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-circle {
  width: 70px;
  height: 70px;
  border: 6px solid #ffe8f3;
  border-top: 6px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/*================== RESPONSIVE ==================*/

@media (max-width: 991px) {
  .header {
    padding: 18px 5%;
  }

  .hero,
  .about,
  .contact,
  .promo {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-stat {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact {
    gap: 40px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #menu-icon {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    display: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  }

  .navbar.active {
    display: flex;
  }

  .header-button {
    display: none;
  }

  .hero {
    padding-top: 150px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-stat {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .promo {
    padding: 40px 30px;
  }

  .promo-content h2 {
    font-size: 36px;
  }

  .about h2,
  .contact-info h2 {
    font-size: 34px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-media {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  section {
    padding: 80px 5%;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-search {
    flex-direction: column;
    padding: 15px;
    border-radius: 20px;
  }

  .hero-search button {
    width: 100%;
    margin-top: 10px;
    border-radius: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .contact-form {
    padding: 25px;
  }

  .counter-box h2 {
    font-size: 38px;
  }

  .floating-whatsapp {
    width: 58px;
    height: 58px;
    font-size: 30px;
  }

  .scroll-top {
    width: 50px;
    height: 50px;
  }
}
