/* ========== VARIABLES ========== */
:root {
  /* Light Theme Variables */
  --primary: #2c6e2c;
  --primary-dark: #1e4a1e;
  --primary-light: #4c9e4c;
  --secondary: #8bc34a;
  --accent: #ffc107;
  
  --text-primary: #1a2e1f;
  --text-secondary: #4a5b44;
  --text-muted: #7f8c7a;
  
  --bg-primary: #ffffff;
  --bg-secondary: #fafef9;
  --bg-tertiary: #f0f7ec;
  
  --border-light: #e0f0de;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 56px rgba(0, 0, 0, 0.16);
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --border-radius-sm: 0.5rem;
  --border-radius-md: 1rem;
  --border-radius-lg: 1.5rem;
  --border-radius-xl: 2rem;
  --border-radius-full: 9999px;
}

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  transition: background-color var(--transition-base), color var(--transition-base);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
/* ========== LOGO STYLES ========== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: all var(--transition-fast);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.logo-image {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all var(--transition-base);
}

.logo-text-container {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.5px;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hover Effects */
.logo:hover .logo-image {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.logo:hover .logo-tagline {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Dark Theme Logo */
[data-theme="dark"] .logo-image {
  filter: brightness(1.1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

[data-theme="dark"] .logo-tagline {
  background: linear-gradient(135deg, var(--secondary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* ========== FACEBOOK FEED SECTION ========== */
.facebook-feed-section {
  background: var(--bg-secondary);
  padding: 5rem 0;
}

.facebook-feed-container {
  min-height: 400px;
}

/* Loading State */
.facebook-loading {
  text-align: center;
  padding: 4rem;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--border-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.facebook-loading p {
  color: var(--text-secondary);
}

/* Error State */
.facebook-error {
  text-align: center;
  padding: 4rem;
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
}

.facebook-error i {
  font-size: 3rem;
  color: #1877f2;
  margin-bottom: 1rem;
}

.facebook-error p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Facebook Feed Grid */
.facebook-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Facebook Post Card */
.facebook-post-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}

.facebook-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Post Image */
.post-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.facebook-post-card:hover .post-image img {
  transform: scale(1.05);
}

.video-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.video-badge i {
  color: white;
  font-size: 1rem;
}

/* Post Content */
.post-content {
  padding: 1.5rem;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.post-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1877f2, #0c63d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-avatar i {
  color: white;
  font-size: 1.25rem;
}

.post-meta {
  flex: 1;
}

.post-author {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

.post-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.post-message {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.post-message p {
  margin: 0;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  margin-top: 0.5rem;
  padding: 0;
  transition: color var(--transition-fast);
}

.read-more-btn:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.hashtag {
  color: var(--primary);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.hashtag:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.emoji {
  font-size: 1.1rem;
}

/* Post Stats */
.post-stats {
  display: flex;
  gap: 1.5rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0.75rem;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stat i {
  font-size: 0.875rem;
}

/* Post Actions */
.post-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.post-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  background: var(--bg-secondary);
}

.post-action-btn:hover {
  background: var(--bg-tertiary);
  color: var(--primary);
}

.post-action-btn i {
  font-size: 0.875rem;
}

/* Facebook Footer */
.facebook-footer {
  text-align: center;
  margin-top: 2rem;
}

.btn-facebook-follow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: #1877f2;
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  transition: all var(--transition-base);
}

.btn-facebook-follow:hover {
  background: #0c63d4;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-facebook-follow i {
  font-size: 1rem;
}

/* No Posts Message */
.no-posts {
  text-align: center;
  padding: 3rem;
  color: var(--text-secondary);
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
}

/* Responsive */
@media (max-width: 768px) {
  .facebook-feed-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .post-image {
    height: 200px;
  }
  
  .post-content {
    padding: 1rem;
  }
  
  .post-stats {
    gap: 1rem;
  }
  
  .post-actions {
    gap: 0.5rem;
  }
  
  .post-action-btn {
    padding: 0.4rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .post-stats {
    justify-content: space-around;
  }
  
  .post-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .post-action-btn {
    padding: 0.6rem;
  }
}
/* ========== FOOTER LOGO ========== */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-image {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: all var(--transition-fast);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-text .logo-name {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-logo-text .footer-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  white-space: nowrap;
}

[data-theme="light"] .footer-logo-image {
  filter: brightness(0);
  opacity: 0.7;
}

[data-theme="dark"] .footer-logo-image {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ========== RESPONSIVE LOGO ========== */
@media (max-width: 1024px) {
  .logo-image {
    height: 50px;
  }
  
  .logo-tagline {
    font-size: 0.65rem;
  }
}

@media (max-width: 768px) {
  .logo-wrapper {
    gap: 0.75rem;
  }
  
  .logo-image {
    height: 45px;
  }
  
  .logo-tagline {
    font-size: 0.6rem;
    white-space: normal;
    max-width: 120px;
    line-height: 1.3;
  }
  
  .footer-logo-image {
    height: 45px;
  }
  
  .footer-logo-text .logo-name {
    font-size: 1.1rem;
  }
  
  .footer-logo-text .footer-tagline {
    font-size: 0.55rem;
    white-space: normal;
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 38px;
  }
  
  .logo-tagline {
    font-size: 0.55rem;
    max-width: 100px;
  }
  
  .logo-wrapper {
    gap: 0.5rem;
  }
  
  .footer-logo-image {
    height: 40px;
  }
  
  .footer-logo-text .logo-name {
    font-size: 1rem;
  }
  
  .footer-logo-text .footer-tagline {
    font-size: 0.5rem;
  }
}

/* ========== LOADING SCREEN LOGO ========== */
.loader-logo {
  width: 100px;
  height: auto;
  margin-bottom: 1.5rem;
  animation: pulse 1.5s infinite;
}

.loader-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ========== ALTERNATE LOGO STYLES ========== */
/* Option 1: Logo with background circle */
.logo-with-circle {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.logo-circle img {
  width: 40px;
  height: auto;
  filter: brightness(0) invert(1);
}

.logo-with-circle:hover .logo-circle {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(44, 110, 44, 0.3);
}

/* Option 2: Minimal logo (image only) */
.logo-minimal {
  display: flex;
  align-items: center;
}

.logo-minimal img {
  height: 50px;
  width: auto;
  transition: transform var(--transition-fast);
}

.logo-minimal:hover img {
  transform: scale(1.05);
}

/* Option 3: Stacked logo (for mobile) */
.logo-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-stacked img {
  height: 45px;
  width: auto;
  margin-bottom: 0.25rem;
}

.logo-stacked .tagline {
  font-size: 0.6rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary.btn-glow {
  animation: pulse-glow 2s infinite;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}

[data-theme="dark"] .navbar {
  background: rgba(10, 30, 12, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--primary);
}

.logo i {
  font-size: 1.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

[data-theme="dark"] .nav-link {
  color: #eef5e8;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.theme-toggle {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-full);
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.theme-toggle i {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.theme-toggle .fa-sun {
  display: none;
}

[data-theme="light"] .theme-toggle .fa-moon {
  display: inline-block;
}

[data-theme="light"] .theme-toggle .fa-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .fa-sun {
  display: inline-block;
}

[data-theme="dark"] .theme-toggle .fa-moon {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--bg-primary);
    padding: 1rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-light);
  }
  
  .nav-links.show {
    display: flex;
  }
  
  [data-theme="dark"] .nav-links {
    background: var(--bg-primary);
  }
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.gradient-sphere {
  position: absolute;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 110, 44, 0.1), transparent);
  animation: float-sphere 20s infinite ease-in-out;
}

.sphere-2 {
  bottom: -20%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  animation-delay: -5s;
  background: radial-gradient(circle, rgba(139, 195, 74, 0.1), transparent);
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  margin-bottom: 1.5rem;
}

.badge-pulse {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(44, 110, 44, 0.1);
  border-radius: var(--border-radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-card {
  position: absolute;
  background: var(--bg-primary);
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  font-weight: 500;
  animation: float 6s infinite;
}

.float-card i {
  color: var(--primary);
}

.card-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  right: -10%;
  animation-delay: 2s;
}

.card-3 {
  top: 50%;
  right: -5%;
  animation-delay: 4s;
}

.hero-icon-wrapper {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate-slow 20s infinite linear;
}

.main-icon {
  font-size: 8rem;
  color: white;
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .float-card {
    display: none;
  }
  
  .hero-icon-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
  
  .main-icon {
    font-size: 5rem;
  }
}

/* ========== SECTION STYLES ========== */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(44, 110, 44, 0.1);
  border-radius: var(--border-radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(44, 110, 44, 0.1);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
}

.service-card li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* ========== ITAD SECTION ========== */
.itad-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.itad-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.itad-tag {
  background: rgba(139, 195, 74, 0.2);
  color: var(--secondary);
}

.itad-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.itad-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-primary);
  border-radius: var(--border-radius-full);
  font-size: 0.875rem;
  font-weight: 500;
}

.feature-item i {
  color: var(--primary);
}

.certification-badges {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.cert-badge {
  height: 40px;
  object-fit: contain;
}

.itad-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.itad-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(44, 110, 44, 0.05), transparent);
  animation: rotate-slow 20s infinite linear;
}

.itad-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.itad-icon-wrapper i {
  font-size: 2.5rem;
  color: white;
}

.itad-card h3 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.itad-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.itad-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.itad-stat .stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.itad-stat .stat-label {
  font-size: 0.75rem;
}

@media (max-width: 968px) {
  .itad-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ========== SUSTAINABILITY SECTION ========== */
.sustainability-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.circular-process {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}

.process-node {
  width: 100px;
  height: 100px;
  background: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--primary);
  position: relative;
  z-index: 1;
  background: var(--bg-primary);
}

.process-node i {
  font-size: 2rem;
  color: var(--primary);
}

.process-node span {
  font-size: 0.75rem;
  font-weight: 600;
}

.process-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  position: relative;
  animation: lineFlow 2s infinite;
}

.sustainability-list {
  margin-top: 2rem;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.list-item i {
  width: 24px;
  color: var(--primary);
  font-size: 1.25rem;
}

@media (max-width: 968px) {
  .sustainability-wrapper {
    grid-template-columns: 1fr;
  }
  
  .circular-process {
    flex-direction: column;
    gap: 2rem;
  }
  
  .process-line {
    width: 2px;
    height: 50px;
  }
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  background: var(--bg-secondary);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-base);
}

.info-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(44, 110, 44, 0.1);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.info-details h4 {
  margin-bottom: 0.5rem;
}

.info-details p {
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-form {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: var(--bg-primary);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.form-group input:focus ~ .form-focus-border,
.form-group select:focus ~ .form-focus-border,
.form-group textarea:focus ~ .form-focus-border {
  width: 100%;
}

@media (max-width: 968px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-tertiary);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-light);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-4px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: var(--primary-dark);
}

/* ========== LOADING SCREEN ========== */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  text-align: center;
}

.loader-ring {
  width: 80px;
  height: 80px;
  border: 4px solid var(--border-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.loader-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.loader-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.loader-dots span {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.loader-dots span:nth-child(1) { animation-delay: -0.32s; }
.loader-dots span:nth-child(2) { animation-delay: -0.16s; }

/* ========== CUSTOM CURSOR ========== */
.custom-cursor,
.custom-cursor-follower {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transition: transform 0.1s ease;
}

.custom-cursor {
  width: 8px;
  height: 8px;
  background: var(--primary);
}

.custom-cursor-follower {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary);
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .custom-cursor,
  .custom-cursor-follower {
    display: none;
  }
}