/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== GEOMETRIC SHAPES ===== */
.geo-shape {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
}

.geo-circle-1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  top: -200px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
}

.geo-circle-2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, #86efac, #4ade80);
  bottom: 10%;
  left: -80px;
  animation: float 6s ease-in-out infinite reverse;
}

.geo-square-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  top: 30%;
  left: 8%;
  transform: rotate(45deg);
  animation: spin 12s linear infinite;
}

.geo-square-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #86efac, #4ade80);
  bottom: 20%;
  right: 12%;
  transform: rotate(20deg);
  animation: spin 8s linear infinite reverse;
}

.geo-triangle-1 {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 104px solid #4ade80;
  top: 20%;
  right: 5%;
  opacity: 0.06;
  animation: float 10s ease-in-out infinite;
}

.geo-dots {
  background-image: radial-gradient(circle, rgba(74, 222, 128, 0.3) 2px, transparent 2px);
  background-size: 30px 30px;
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: 10%;
}

/* ===== VISIT SECTION SHAPES ===== */
.visit-shape {
  position: absolute;
  pointer-events: none;
}

.visit-shape-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -80px;
  left: -80px;
}

.visit-shape-2 {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  bottom: -50px;
  right: 10%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 6s ease-in-out infinite;
}

.visit-shape-3 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: 40%;
  right: -30px;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(45deg); }
  50% { transform: translateY(-20px) rotate(45deg); }
}

@keyframes spin {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}

@keyframes morph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== NAVBAR ===== */
#navbar {
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
  background: rgba(15, 29, 74, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4ade80;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile menu */
#mobile-menu {
  animation: fadeInUp 0.3s ease;
}

.mobile-link {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #0f1d4a;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
  background: linear-gradient(135deg, #86efac, #4ade80);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #4ade80;
  color: #4ade80;
  transform: translateY(-2px);
}

/* ===== BADGES ===== */
.badge-label {
  display: inline-block;
  background: rgba(74, 222, 128, 0.15);
  color: #86efac;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.badge-label-light {
  display: inline-block;
  background: rgba(15, 29, 74, 0.15);
  color: #1e3a8a;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(15, 29, 74, 0.3);
}

/* ===== HERO ===== */
.hero-badge {
  animation: fadeInUp 0.6s ease forwards;
}

#hero h1 {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

#hero p {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

#hero .flex.flex-col {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.stat-item {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.stat-item:nth-child(1) { animation-delay: 0.8s; }
.stat-item:nth-child(2) { animation-delay: 0.9s; }
.stat-item:nth-child(3) { animation-delay: 1s; }

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 222, 128, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(74, 222, 128, 0.1);
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 29, 74, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-img-overlay {
  opacity: 1;
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #0f1d4a;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card-body {
  padding: 24px;
}

/* ===== ABOUT ===== */
.about-img-grid {
  position: relative;
}

.about-img-main {
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  width: 100%;
  height: auto;
}

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -20px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 4px solid rgba(15, 29, 74, 0.8);
  width: 60%;
  height: auto;
}

/* Feature chips */
.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: #86efac;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.feature-chip:hover {
  background: rgba(74, 222, 128, 0.2);
  border-color: rgba(74, 222, 128, 0.4);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  border-color: rgba(74, 222, 128, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(74, 222, 128, 0.3);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== VISIT SECTION ===== */
.visit-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 16px 20px;
  transition: all 0.3s ease;
}

.visit-info-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.visit-icon {
  width: 48px;
  height: 48px;
  background: rgba(15, 29, 74, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== FORM ===== */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
  border-color: #4ade80;
  background: rgba(74, 222, 128, 0.05);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.form-input:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.2);
}

/* ===== SCROLL REVEAL ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-img-float {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 16px;
  }

  .about-img-grid {
    display: flex;
    flex-direction: column;
  }

  .geo-circle-1 {
    width: 300px;
    height: 300px;
  }

  .geo-circle-2 {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 640px) {
  #hero h1 {
    font-size: 2.25rem;
  }

  .product-card-body {
    padding: 20px;
  }

  .testimonial-card {
    padding: 24px;
  }
}
