/* Tropica Coco - Static HTML Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  /* Colors */
  --primary: #2E7D32;
  --primary-light: #4CAF50;
  --primary-dark: #1B5E20;
  --primary-foreground: #ffffff;
  --secondary: #F5F5DC;
  --secondary-foreground: #333333;
  --background: #ffffff;
  --foreground: #333333;
  --muted: #f8f8f5;
  --muted-foreground: #666666;
  --border: #e5e5e0;
  --card: #ffffff;
  --card-foreground: #333333;
  --whatsapp: #25D366;
  
  /* Spacing */
  --radius: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

/* Container */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 10px 25px -5px rgba(46, 125, 50, 0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  background-color: transparent;
  color: var(--muted-foreground);
}

.btn-ghost:hover {
  background-color: rgba(46, 125, 50, 0.05);
  color: var(--primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

/* Cards */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s ease;
}

.card:hover {
  transform: translateY(-0.5rem);
  border-color: rgba(46, 125, 50, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.card-header {
  padding: 1.5rem 1.5rem 0.5rem;
}

.card-content {
  padding: 1rem 1.5rem 1.5rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(229, 229, 224, 0.4);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .header-inner {
    height: 5rem;
  }
}

.logo img {
  height: 2.5rem;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

@media (min-width: 640px) {
  .logo img {
    height: 3rem;
  }
}

@media (min-width: 1024px) {
  .logo img {
    height: 3.5rem;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

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

@media (min-width: 1024px) {
  .nav {
    gap: 0.5rem;
  }
}

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  background-color: rgba(46, 125, 50, 0.05);
  color: var(--primary);
}

@media (min-width: 1024px) {
  .nav-link {
    padding: 0.5rem 1rem;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .header-actions {
    gap: 0.75rem;
  }
}

.language-select {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 9999px;
  cursor: pointer;
}

.header-cta {
  display: none;
}

@media (min-width: 640px) {
  .header-cta {
    display: inline-flex;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
}

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

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

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

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

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background-color: rgba(46, 125, 50, 0.05);
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 550px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    min-height: 650px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.6), rgba(0,0,0,0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  min-height: 550px;
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .hero-content {
    min-height: 650px;
    padding: 5rem 0;
  }
}

.hero-text {
  max-width: 600px;
}

.hero-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1rem;
  }
}

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

.hero-title {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 1.875rem;
  }
}

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

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

.hero-title .highlight {
  color: var(--primary);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-title .white {
  color: white;
}

.hero-desc {
  margin-top: 1rem;
  max-width: 28rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

@media (min-width: 640px) {
  .hero-desc {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.hero-cta {
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .hero-cta {
    margin-top: 2rem;
  }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.hero-wave svg {
  width: 100%;
  height: 3.5rem;
}

@media (min-width: 640px) {
  .hero-wave svg {
    height: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-wave svg {
    height: 5rem;
  }
}

/* Trust Bar */
.trust-bar {
  border-bottom: 1px solid var(--border);
  background-color: var(--background);
  padding: 1.5rem 0;
}

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

.trust-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .trust-items {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .trust-items {
    gap: 3rem;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

@media (min-width: 640px) {
  .trust-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.trust-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .trust-label {
    font-size: 0.75rem;
  }
}

.trust-value {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .trust-value {
    font-size: 0.875rem;
  }
}

.trust-divider {
  display: none;
  width: 1px;
  height: 2rem;
  background-color: var(--border);
}

@media (min-width: 1024px) {
  .trust-divider {
    display: block;
  }
}

/* Sections */
.section {
  padding: 3.5rem 0;
  overflow: hidden;
}

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

.section-secondary {
  background-color: rgba(245, 245, 220, 0.3);
}

.section-primary {
  background-color: var(--primary);
  color: white;
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  background-color: rgba(46, 125, 50, 0.1);
  border-radius: 9999px;
}

.section-title {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .section-title {
    font-size: 1.875rem;
  }
}

.section-primary .section-title {
  color: white;
}

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

/* About Company Section */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

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

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--primary);
  color: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(46, 125, 50, 0.3);
}

@media (min-width: 1024px) {
  .about-badge {
    bottom: -1.5rem;
    right: -1.5rem;
  }
}

.about-badge-icon {
  width: 2rem;
  height: 2rem;
}

.about-badge-number {
  font-size: 1.5rem;
  font-weight: 700;
}

.about-badge-text {
  font-size: 0.75rem;
  opacity: 0.9;
}

.about-content h2 {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .about-content h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .about-content h2 {
    font-size: 2.25rem;
  }
}

.about-content p {
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-feature {
  padding: 1rem;
  background-color: rgba(245, 245, 220, 0.5);
  border-radius: 0.5rem;
}

.about-feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.about-feature-title {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.about-feature-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Products Grid */
.products-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.product-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: var(--secondary);
}

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

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

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.product-spec {
  padding: 0.5rem 0.625rem;
  background-color: rgba(245, 245, 220, 0.5);
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.product-spec:hover {
  background-color: var(--secondary);
}

.product-spec-label {
  font-size: 0.625rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .product-spec-label {
    font-size: 0.75rem;
  }
}

.product-spec-value {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .product-spec-value {
    font-size: 0.875rem;
  }
}

/* Why Choose Us Grid */
.why-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

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

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

.why-card {
  text-align: center;
  border: 2px solid transparent;
  height: 100%;
}

.why-card:hover {
  border-color: rgba(46, 125, 50, 0.2);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto;
  background-color: rgba(46, 125, 50, 0.1);
  border-radius: 9999px;
  transition: all 0.5s ease;
}

.card:hover .why-icon {
  transform: scale(1.1);
  background-color: rgba(46, 125, 50, 0.2);
}

.why-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.why-title {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.why-desc {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Icon Section */
.icon-section {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto;
  background-color: rgba(46, 125, 50, 0.1);
  border-radius: 9999px;
}

.icon-circle svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.icon-section h2 {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .icon-section h2 {
    font-size: 1.875rem;
  }
}

.icon-section p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

@media (min-width: 640px) {
  .icon-section p {
    font-size: 1rem;
  }
}

/* Documents Grid */
.docs-grid {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 2rem auto 0;
}

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

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

.doc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.doc-item:hover {
  transform: translateY(-0.25rem);
  border-color: rgba(46, 125, 50, 0.5);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.doc-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.doc-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

/* Packaging Grid */
.packaging-grid {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin: 2rem auto 0;
}

@media (min-width: 640px) {
  .packaging-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.packaging-card {
  text-align: center;
  border: 2px solid transparent;
}

.packaging-card:hover {
  border-color: rgba(46, 125, 50, 0.2);
}

.packaging-icon {
  width: 1.75rem;
  height: 1.75rem;
  margin: 0 auto;
  color: var(--primary);
  transition: transform 0.5s ease;
}

.card:hover .packaging-icon {
  transform: scale(1.1);
}

.packaging-title {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.packaging-desc {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 3.5rem 0;
  background-color: var(--primary);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 5rem 0;
  }
}

.cta-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.1;
}

.cta-wave svg {
  width: 100%;
  height: 5rem;
}

@media (min-width: 640px) {
  .cta-wave svg {
    height: 7rem;
  }
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 1.875rem;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* Footer */
.footer {
  position: relative;
  border-top: 1px solid var(--border);
  background-color: rgba(245, 245, 220, 0.3);
  overflow: hidden;
}

.footer-inner {
  position: relative;
  z-index: 10;
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .footer-inner {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

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

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

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.footer-links {
  list-style: none;
  margin-top: 1rem;
}

.footer-links li {
  margin-top: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(0.25rem);
  display: inline-block;
}

.footer-contact {
  list-style: none;
  margin-top: 0.75rem;
}

.footer-contact li {
  margin-top: 0.75rem;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

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

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-cert {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.footer-cert:hover {
  border-color: rgba(46, 125, 50, 0.3);
  color: var(--primary);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-bottom {
    margin-top: 3rem;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--whatsapp);
  border-radius: 9999px;
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

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

@keyframes scale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.animate-scale {
  animation: scale 0.6s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* Decorative Elements */
.decorative {
  position: absolute;
  pointer-events: none;
}

.decorative-dots {
  opacity: 0.2;
}

.decorative-palm {
  opacity: 0.08;
}

.decorative-corner {
  background-color: rgba(46, 125, 50, 0.05);
}

/* Form Styles */
.form-group {
  margin-bottom: 1rem;
}

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

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

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

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Utility Classes */
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-4 { margin-bottom: 1rem; }
.w-full { width: 100%; }
.hidden { display: none; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
