@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #f4a300;
  --secondary: #ff8c00;
  --dark: #2c1810;
  --light: #fff8e1;
  --white: #ffffff;
  --gray: #666666;
  --light-gray: #f5f5f5;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .logo-img {
    width: 45px;
    height: 45px;
  }

  .logo-img i {
    font-size: 1.4rem;
  }
}

.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* biar pas dalam lingkaran */
}

.logo-img:hover {
  transform: scale(1.1) rotate(5deg);
}

.logo-img i {
  font-size: 1.8rem;
  color: white;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
  line-height: 1;
}

.logo-text span {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(244, 163, 0, 0.1);
}

.system-links {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white !important;
  border-radius: 25px;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(244, 163, 0, 0.3);
}

.system-links:hover {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 163, 0, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--primary);
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #fff8e1 0%, #fff3c4 50%, #ffecb3 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 20px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23F4A300" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FF8C00" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23F4A300" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
  font-size: 1rem;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content .highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-content .highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0.2;
  border-radius: 4px;
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(244, 163, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(244, 163, 0, 0.4);
}

.cta-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-secondary:hover {
  background: var(--primary);
  color: white;
}

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

.hero-main-image {
  width: 100%;
  max-width: 500px;
  height: 400px;
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-main-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="80" r="40" fill="%23F4A300" opacity="0.1"/><path d="M60 120c20-10 40-10 60 0s40 10 60-5" stroke="%23FF8C00" stroke-width="2" fill="none" opacity="0.3"/></svg>');
  background-size: cover;
}

.hero-main-image i {
  font-size: 6rem;
  color: var(--primary);
  z-index: 2;
}

.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-card {
  position: absolute;
  background: white;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.float-card i {
  font-size: 1.5rem;
  color: var(--primary);
}

.float-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.float-card:nth-child(1) {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.float-card:nth-child(2) {
  top: 20%;
  right: -15%;
  animation-delay: 1.5s;
}

.float-card:nth-child(3) {
  bottom: 30%;
  left: -20%;
  animation-delay: 3s;
}

.float-card:nth-child(4) {
  bottom: 10%;
  right: -10%;
  animation-delay: 4.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(1deg);
  }
  75% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

/* Stats Section */
.stats {
  background: var(--white);
  padding: 3rem 0;
  margin-top: -50px;
  position: relative;
  z-index: 3;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.stat-card {
  background: linear-gradient(135deg, white, #fafafa);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(244, 163, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--gray);
  font-weight: 500;
}

/* About Section */
.about {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--light) 0%, #fff3c4 100%);
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-badge {
  display: inline-block;
  background: rgba(244, 163, 0, 0.1);
  color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}

.about-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.3rem;
  color: white;
}

.feature-text h4 {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--dark);
}

.feature-text p {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
}

.about-image {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.about-main-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><rect x="50" y="100" width="40" height="60" rx="5" fill="%23F4A300" opacity="0.2"/><rect x="110" y="80" width="40" height="80" rx="5" fill="%23FF8C00" opacity="0.2"/><rect x="170" y="90" width="40" height="70" rx="5" fill="%23F4A300" opacity="0.2"/><rect x="230" y="70" width="40" height="90" rx="5" fill="%23FF8C00" opacity="0.2"/></svg>');
  background-size: cover;
}

.about-main-img i {
  font-size: 8rem;
  color: var(--primary);
  z-index: 2;
}

.about-stats {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.about-stats h5 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.about-stats p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

/* Products Section */
.products {
  padding: 6rem 0;
  background: white;
}

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

.product-card {
  background: linear-gradient(135deg, white, #fafafa);
  padding: 2.5rem;
  border-radius: 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 163, 0, 0.1);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: all 0.5s ease;
}

.product-card:hover::before {
  left: 0;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 80px rgba(244, 163, 0, 0.15);
  border-color: var(--primary);
}

.product-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.product-card:hover .product-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.product-icon-wrapper i {
  font-size: 2.2rem;
  color: white;
}

.product-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.product-description {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--primary);
  background: rgba(244, 163, 0, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
}

/* Gallery Section */
.gallery { 
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--light) 0%, #fff3c4 100%);
}

/* Grid fix: 3 kolom stabil */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Desktop → 4 kolom */
  gap: 2rem;
  margin-top: 4rem;
}

/* Tablet (max 1024px) → 2 kolom */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* HP (max 600px) → 1 kolom */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* item height di HP biar tidak terlalu tinggi */
  .gallery-item {
    height: 220px;
  }

  .gallery-item i {
    font-size: 3rem;
  }

  .gallery-label {
    padding: 0.8rem;
  }
}

.gallery-item {
  height: 250px;
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

/* Highlight background hover */
.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(244, 163, 0, 0.1),
    rgba(255, 140, 0, 0.1)
  );
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover::before {
  opacity: 1;
}

/* Icon */
.gallery-item i {
  font-size: 4rem;
  color: var(--primary);
  z-index: 1;   /* icon di belakang label */
  transition: opacity .3s;
}

/* Fade icon saat hover */
.gallery-item:hover i {
  opacity: 0.25;
}

/* Label */
.gallery-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  border-radius: 15px;
  text-align: center;
  transform: translateY(100px);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 3;   /* label di depan icon */
}

.gallery-item:hover .gallery-label {
  transform: translateY(0);
}

.gallery-label h4 {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.gallery-label p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}


/* Contact Section */
.contact {
  padding: 6rem 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: linear-gradient(135deg, white, #fafafa);
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(244, 163, 0, 0.1);
}

.contact-card:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 50px rgba(244, 163, 0, 0.1);
  border-color: var(--primary);
}

.contact-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrapper i {
  font-size: 1.5rem;
  color: white;
}

.contact-details h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.contact-details p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.contact-details strong {
  color: var(--primary);
}

.map-section {
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  border-radius: 25px;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}


---

.map-section {
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  border-radius: 25px;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.map-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("asset/map-section.png") center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none; 
}

.map-icon {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  z-index: 2;
}


---


.map-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><path d="M200 100c-30 0-60 20-60 50 0 40 60 100 60 100s60-60 60-100c0-30-30-50-60-50z" fill="%23F4A300" opacity="0.1"/><circle cx="200" cy="150" r="15" fill="%23FF8C00" opacity="0.3"/></svg>');
  background-size: cover;
  z-index: 0;
  pointer-events: none;
}

.map-section {
  position: relative;
  z-index: 1;
}


.map-icon {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  z-index: 2;
}

.map-section h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  z-index: 2;
}

.map-section p {
  color: var(--gray);
  font-size: 1.1rem;
  z-index: 2;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--dark), #4a2c1a);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23F4A300" opacity="0.1"/><circle cx="80" cy="30" r="1.5" fill="%23FF8C00" opacity="0.1"/><circle cx="30" cy="70" r="1" fill="%23F4A300" opacity="0.05"/><circle cx="70" cy="80" r="1.5" fill="%23FF8C00" opacity="0.1"/></svg>');
  opacity: 0.5;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-buttons-wrapper {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 10px 30px rgba(244, 163, 0, 0.3);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(244, 163, 0, 0.4);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
  background: white;
  color: var(--dark);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark), #4a2c1a);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.8;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img i {
  font-size: 1.5rem;
  color: white;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 1rem;
    align-items: flex-start;
  }

  .nav-menu.active {
    left: 0;
    display: flex;
  }

  .hero-container,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    text-align: center;
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-buttons,
  .cta-buttons-wrapper {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .float-card {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

/* Scroll indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  z-index: 1001;
  transition: width 0.3s ease;
}

/* Loading Animation */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid var(--light);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
