/* ============================================
   CONSOLIDATED STYLES - LYNKgro Website
   All page styles consolidated
============================================ */

/* ========== CSS VARIABLES ========== */
:root {
  --primary-color: #166534;
  --primary-dark: #14532d;
  --accent-color: #ca8a04;
  --accent-dark: #a16207;
  --white: #ffffff;
  --background: #f9fafb;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  --success: #22c55e;
  --danger: #dc2626;
  --danger-light: #fee2e2;
  --warning: #f59e0b;
  --warning-light: #fef3c7;
  --info: #3b82f6;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-900: #111827;
  --radius: 8px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
  --transition-base: 0.2s ease;
  --transition-fast: 0.15s ease;
  --surface-hover: #f9fafb;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1;
}

/* ========== HEADER ========== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
}

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

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

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

.nav-link:hover {
  color: var(--accent-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width var(--transition-base);
}

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

.social-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.5rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: transparent;
  border-radius: var(--radius);
  transition: all var(--transition-base);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--gray-100);
  color: var(--primary-color);
  transform: scale(1.1);
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 1rem;
  border-left: 1px solid var(--border);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition-base);
}

.mobile-menu-btn:hover {
  background: var(--surface-hover);
}

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

/* Mobile Navigation */
.mobile-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
  animation: fadeIn 0.2s ease;
}

@media (min-width: 1024px) {
  .mobile-overlay {
    display: none;
  }
}

.mobile-nav {
  position: fixed;
  top: 70px;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 320px;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  z-index: 99;
  overflow-y: auto;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mobile-nav-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all var(--transition-base);
}

.mobile-nav-link:hover {
  background: var(--surface-hover);
  color: var(--accent-color);
}

.mobile-social-links {
  display: flex;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.mobile-social-links .social-icon {
  width: 44px;
  height: 44px;
}

.mobile-auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 2rem 1rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-text {
  font-size: 0.875rem;
  color: gray;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.875rem;
  color: gray;
  text-decoration: none;
  transition: color var(--transition-base);
}

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

/* ========== BUTTONS ========== */
.btn {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--accent-color);
  color: var(--white);
  border: 2px solid var(--accent-color);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--surface-hover);
  border-color: var(--primary-color);
}

.btn-full {
  width: 100%;
}

/* ========== HERO SECTIONS ========== */
.hero-section-new {
  background: linear-gradient(135deg, #f0fdf4 0%, #fef3c7 100%);
  padding: 4rem 1rem;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-container-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-text-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.hero-text-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.hero-feature-item svg {
  color: var(--success);
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-cta-button {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero-cta-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.hero-image-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-content img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ========== SECTIONS ========== */
.section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section.bg-light {
  background: var(--background);
  max-width: 100%;
}

.section.bg-light .container {
  max-width: 800px;
  margin: 0 auto;
}

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

.lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3rem;
}

.section-title-lynk {
  color: var(--primary-color);
}

.section-title-gro {
  color: var(--accent-color);
}

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

/* ========== FEATURE GRID ========== */
.feature-grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

@media (min-width: 1024px) {
  .feature-grid-2col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.feature-icon {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ========== EVENT CARDS ========== */
.event-card {
  text-align: left;
}

.event-card .event-meta {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.event-card .event-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.event-btn {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-color);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition-base), transform var(--transition-base);
}

.event-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Upcoming Notice */
.upcoming-notice {
  text-align: center;
  padding: 3rem;
}

.upcoming-notice .feature-icon {
  margin-bottom: 1rem;
}

.upcoming-notice p {
  margin-top: 1rem;
}

.upcoming-notice .italic {
  font-style: italic;
}

/* ========== CTA SECTIONS ========== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 1rem;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-bridge {
  background: #f9f9f9 !important;
  padding: 4rem 1rem;
}

.cta-bridge h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-bridge p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* ========== CONTACT FORM ========== */
.contact-page {
  background: var(--white);
  padding: 4rem 1rem;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 500px;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  transition: box-shadow var(--transition-base);
}

.contact-form:hover {
  box-shadow: var(--shadow-md);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-primary);
  background: var(--background);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.contact-form select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.contact-form button.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.thank-you {
  font-size: 1.125rem;
  color: var(--text-primary);
  background: #f0fdf4;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 600px;
  box-shadow: var(--shadow-sm);
  line-height: 1.6;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  background: #25D366;
  color: #fff;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition-base), transform var(--transition-base);
}

.btn-whatsapp:hover {
  background: #1EBE5C;
  transform: translateY(-2px);
}

.hidden {
  display: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .header-inner {
    height: 64px;
    padding: 0 1rem;
  }

  .brand-logo {
    height: 38px;
  }

  .mobile-nav {
    top: 64px;
  }

  .hero-section-new {
    padding: 3rem 1rem;
    min-height: auto;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .hero-cta-button {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

  .contact-page {
    padding: 3rem 1rem;
  }

  .contact-title {
    font-size: 1.75rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .thank-you {
    font-size: 1rem;
    padding: 1.5rem;
  }

  .footer {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    height: 32px;
  }

  .mobile-nav {
    max-width: 100%;
  }
}

/* Terms Page Styles */
.terms-page {
    background: var(--white);
    color: var(--text-primary);
    max-width: 950px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    line-height: 1.8;
}

.policy-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.policy-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
    width: 48px;
    height: 48px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-title-lynk {
    color: var(--primary-color);
}

.section-title-gro {
    color: var(--accent-color);
}

.policy-date {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.policy-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.policy-content > p {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.policy-block {
    position: relative;
    padding-left: 2.75rem;
}

.policy-section-icon {
    position: absolute;
    left: 0;
    top: 0.15rem;
    color: var(--accent-color);
    width: 24px;
    height: 24px;
}

.policy-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.policy-block p {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.policy-block ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}

.policy-block li {
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
}

.policy-block a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 500;
}

.policy-block a:hover {
    color: var(--accent-dark);
}

@media (max-width: 768px) {
    .terms-page {
        padding: 3rem 1rem;
    }

    .policy-block {
        padding-left: 2rem;
    }

    .policy-block h3 {
        font-size: 1.1rem;
    }
}
/* Privacy Page Styles */
.privacy-page {
    background: var(--white);
    color: var(--text-primary);
    max-width: 950px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    line-height: 1.8;
}

.policy-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.policy-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
    width: 48px;
    height: 48px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-title-lynk {
    color: var(--primary-color);
}

.section-title-gro {
    color: var(--accent-color);
}

.policy-date {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.policy-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.policy-content > p {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.policy-block {
    position: relative;
    padding-left: 2.75rem;
}

.policy-section-icon {
    position: absolute;
    left: 0;
    top: 0.15rem;
    color: var(--accent-color);
    width: 24px;
    height: 24px;
}

.policy-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.policy-block p {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.policy-block ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}

.policy-block li {
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
}

.policy-block a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 500;
}

.policy-block a:hover {
    color: var(--accent-dark);
}

@media (max-width: 768px) {
    .privacy-page {
        padding: 3rem 1rem;
    }

    .policy-block {
        padding-left: 2rem;
    }

    .policy-block h3 {
        font-size: 1.1rem;
    }
}
