/* Insetilar - Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2BA8C7;
  --primary-light: #3DBCD8;
  --secondary: #7FD000;
  --dark: #1a1a1a;
  --gray-900: #111827;
  --gray-600: #4B5563;
  --gray-400: #9CA3AF;
  --gray-200: #E5E7EB;
  --gray-50: #F9FAFB;
  --white: #FFFFFF;
  --green-500: #22C55E;
  --green-600: #16A34A;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--gray-900);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
header {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 50;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

header img {
  height: 4rem;
  width: 4rem;
  object-fit: contain;
}

header nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  header nav {
    display: flex;
  }
}

header nav a {
  color: var(--gray-600);
  font-size: 0.95rem;
}

header nav a:hover {
  color: var(--primary);
}

/* Mobile Menu Button */
.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn span {
  width: 1.5rem;
  height: 0.125rem;
  background-color: var(--gray-900);
  transition: all 0.3s ease;
  display: block;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(0.5rem);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-0.5rem);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background-color: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  color: var(--gray-600);
}

.mobile-menu a:hover {
  color: var(--primary);
}

/* Breadcrumb */
.breadcrumb {
  background-color: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--gray-600);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--gray-900);
  font-weight: 500;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #6BC700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(127, 208, 0, 0.3);
}

/* Hero Section */
.hero {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0;
  }
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.content-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.content-section h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.content-section h3 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.content-section p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.content-section ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.content-section li {
  color: var(--gray-700);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.content-section li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* CTA Box */
.cta-box {
  background-color: var(--primary);
  color: var(--white);
  padding: 2rem;
  border-radius: 0.75rem;
  margin-top: 3rem;
}

.cta-box h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--white);
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background-color: var(--gray-900);
  color: var(--white);
  padding: 3rem 0;
}

footer h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}

footer p {
  font-size: 0.875rem;
  color: #D1D5DB;
  line-height: 1.6;
}

footer ul {
  list-style: none;
}

footer li {
  font-size: 0.875rem;
  color: #D1D5DB;
  margin-bottom: 0.5rem;
}

footer a {
  color: #D1D5DB;
}

footer a:hover {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--green-500);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 40;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background-color: var(--green-600);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* Responsive */
@media (max-width: 640px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }

  .content-section h3 {
    font-size: 1.25rem;
  }

  .container {
    padding: 0 1rem;
  }
}

/* Utility Classes */
.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

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

.text-sm {
  font-size: 0.875rem;
}

.font-bold {
  font-weight: 700;
}

.opacity-95 {
  opacity: 0.95;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.transition {
  transition: all 0.3s ease;
}

.hover\:text-primary:hover {
  color: var(--primary);
}

.grid {
  display: grid;
}

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

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:block {
    display: block;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease;
}
