/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --emerald-50: #ecfdf5;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --teal-50: #f0fdfa;
  --teal-600: #0d9488;
  --slate-50: #f8fafc;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --amber-600: #d97706;
  --orange-600: #ea580c;
  --blue-600: #2563eb;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--slate-900);
  background: linear-gradient(to bottom, var(--emerald-50), white);
}

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

/* Navigation */
.navigation {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  height: 3rem;
  width: auto;
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--emerald-600);
  margin: 0;
}

.logo-text p {
  font-size: 0.875rem;
  color: var(--slate-700);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--slate-700);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--emerald-600);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--slate-700);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 5rem 1rem;
}

.badge {
  display: inline-block;
  background: var(--emerald-600);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

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

.hero .highlight {
  color: var(--emerald-600);
  font-style: italic;
}

.hero p {
  font-size: 1.125rem;
  color: var(--slate-700);
  max-width: 48rem;
  margin: 0 auto;
}

/* Alert */
.alert {
  background: var(--emerald-50);
  border: 1px solid #a7f3d0;
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 2rem auto;
  max-width: 56rem;
  display: flex;
  gap: 0.75rem;
}

.alert-icon {
  color: var(--emerald-600);
  flex-shrink: 0;
}

/* Card */
.card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 4rem;
  transition: border-color 0.3s;
}

.card:hover {
  border-color: #a7f3d0;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.card-image {
  height: 400px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 2rem;
}

.card-badge {
  display: inline-block;
  border: 1px solid;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.badge-emerald {
  border-color: var(--emerald-600);
  color: var(--emerald-600);
}

.badge-teal {
  border-color: var(--teal-600);
  color: var(--teal-600);
}

.badge-amber {
  border-color: var(--amber-600);
  color: var(--amber-600);
}

.badge-orange {
  border-color: var(--orange-600);
  color: var(--orange-600);
}

.badge-blue {
  border-color: var(--blue-600);
  color: var(--blue-600);
}

.card-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--slate-900);
}

.card-text {
  color: var(--slate-700);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.card-text-small {
  font-size: 0.875rem;
  margin-top: 1rem;
}

.card-text-small-only {
  font-size: 0.875rem;
}

.card-text-medium {
  font-weight: 500;
}

.container-padding {
  padding: 4rem 1rem;
}

.info-box {
  background: var(--emerald-50);
  border: 1px solid #a7f3d0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.info-box h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.info-box p {
  font-size: 0.875rem;
  color: var(--slate-700);
}

/* Product Section */
.product-section {
  padding: 5rem 1rem;
}

.product-card {
  border: 2px solid #a7f3d0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.product-image {
  background: linear-gradient(to bottom right, var(--emerald-50), var(--teal-50));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  height: 500px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-content {
  padding: 3rem;
}

.product-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--emerald-600);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.125rem;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--emerald-700);
}

/* Contact Form */
.contact-section {
  background: var(--slate-50);
  padding: 5rem 1rem;
}

.contact-title {
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

.form-card {
  max-width: 42rem;
  margin: 0 auto;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--slate-900);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--emerald-600);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.125rem;
}

/* Footer */
footer,
.u-footer {
  background: linear-gradient(135deg, var(--slate-900) 0%, #1e293b 100%);
  color: white;
  padding: 4rem 1rem 2rem;
  margin-top: 4rem;
  border-top: 3px solid var(--emerald-600);
}

.u-sheet {
  max-width: 1200px;
  margin: 0 auto;
}

.u-sheet-1 {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Footer Text Styles */
.u-text,
.u-small-text {
  color: #cbd5e1;
  line-height: 1.75;
  font-size: 0.875rem;
}

.u-text-1 {
  background: rgba(5, 150, 105, 0.1);
  border-left: 4px solid var(--emerald-600);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  color: #e2e8f0;
  font-size: 0.8125rem;
}

.u-text-2 {
  background: rgba(15, 23, 42, 0.5);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.u-text-2 a,
.u-btn-1,
.u-btn-2 {
  color: var(--emerald-400);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.u-text-2 a:hover,
.u-btn-1:hover,
.u-btn-2:hover {
  color: var(--emerald-300);
  text-decoration: underline;
  transform: translateX(4px);
}

.u-text-3 {
  background: rgba(5, 150, 105, 0.15);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(5, 150, 105, 0.3);
  line-height: 1.8;
}

.u-text-3 a {
  color: var(--emerald-400);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.u-text-3 a:hover {
  color: var(--emerald-300);
  text-decoration: underline;
}

.u-text-4 {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid rgba(5, 150, 105, 0.3);
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Footer Navigation Menu */
.u-menu-1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(71, 85, 105, 0.5);
  border-bottom: 1px solid rgba(71, 85, 105, 0.5);
}

.u-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.u-nav-item {
  margin: 0;
}

.u-nav-link {
  color: #cbd5e1 !important;
  text-decoration: none;
  padding: 0.75rem 1.25rem !important;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.875rem;
  border: 1px solid transparent;
}

.u-nav-link:hover {
  color: white !important;
  background: rgba(5, 150, 105, 0.2);
  border-color: var(--emerald-600);
  transform: translateY(-2px);
}

/* Mobile Menu Button */
.menu-collapse {
  display: none;
}

.u-hamburger-link {
  display: none;
}

/* Responsive Footer */
@media (max-width: 768px) {
  footer,
  .u-footer {
    padding: 3rem 1rem 1.5rem;
  }

  .u-text-1,
  .u-text-2,
  .u-text-3 {
    padding: 1rem;
    font-size: 0.8125rem;
  }

  .u-menu-1 {
    flex-direction: column;
    align-items: stretch;
  }

  .u-nav {
    flex-direction: column;
    gap: 0.25rem;
  }

  .u-nav-link {
    display: block;
    text-align: center;
    padding: 1rem !important;
  }

  .menu-collapse {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
  }

  .u-hamburger-link {
    display: inline-block;
    color: var(--emerald-400) !important;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--emerald-600);
    border-radius: 0.375rem;
    background: rgba(5, 150, 105, 0.1);
    text-decoration: none;
  }

  .u-custom-menu {
    display: none;
  }

  .u-custom-menu.u-nav-container-collapse {
    display: block;
  }
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--emerald-600);
}

.footer-info p {
  color: #cbd5e1;
  line-height: 1.75;
}

.footer-links h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--emerald-600);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #475569;
  color: #94a3b8;
}

/* Legal Pages */
.legal-page {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--slate-900);
}

.legal-page h2 {
  font-size: 1.875rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--emerald-600);
}

.legal-page h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--slate-900);
}

.legal-page p {
  margin-bottom: 1rem;
  color: var(--slate-700);
  line-height: 1.75;
}

.legal-page ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
  color: var(--slate-700);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }

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

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

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

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

  .card-image {
    height: 300px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 300px;
  }
}