@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Dark Colors */
  --bg-primary: #081C15;
  --bg-secondary: #0D2E22;
  --bg-tertiary: #143D2B;
  --text-primary: #F5F0E8;
  --text-secondary: #B8C9BE;
  --card-bg-dark: rgba(20, 61, 43, 0.5);
  --card-border-dark: rgba(212, 168, 67, 0.12);
  --glass-border-dark: rgba(255, 255, 255, 0.1);

  /* Light Colors */
  --bg-light-primary: #FFFFFF;
  --bg-light-secondary: #F8F5EE;
  --text-light-primary: #1A1A1A;
  --text-light-secondary: #555555;
  --text-light-heading: #0D3B2E;
  --card-bg-light: #FFFFFF;
  --card-border-light: rgba(0, 0, 0, 0.06);
  --card-shadow-light: 0 4px 20px rgba(0,0,0,0.06);
  --glass-border-light: rgba(0, 0, 0, 0.1);

  /* Shared */
  --gold-accent: #D4A843;
  --gold-bright: #F0C45A;
  --gold-gradient: linear-gradient(135deg, #D4A843, #F0C45A);
  --cta-banner-bg: linear-gradient(135deg, #D4A843, #C4922E);
  --text-on-gold: #081C15;
  --section-padding: 100px 0;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

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

ul {
  list-style: none;
}

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

/* Typography */
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { font-size: 1.125rem; color: var(--text-secondary); margin-bottom: 1.5rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: none;
}
.btn-gold {
  background: var(--gold-gradient);
  color: var(--text-on-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 168, 67, 0.3);
  background: var(--gold-bright);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border-dark);
}
.btn-outline:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}
.btn-dark {
  background: var(--bg-primary);
  color: var(--text-primary);
}
.btn-dark:hover {
  background: var(--text-on-gold);
  color: var(--gold-accent);
}

/* Base Sections */
section {
  padding: var(--section-padding);
}
.section-dark {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}
.section-dark p { color: var(--text-secondary); }
.section-light {
  background-color: var(--bg-light-primary);
  color: var(--text-light-secondary);
}
.section-light p { color: var(--text-light-secondary); }
.section-light.bg-alt { background-color: var(--bg-light-secondary); }

.section-light h1, .section-light h2, .section-light h3, .section-light h4, .section-light h5, .section-light h6 {
  color: var(--text-light-heading);
}

/* Card Styling By Section Type */
.section-dark .stat-card,
.section-dark .feature-card,
.section-dark .testimonial-card,
.section-dark .contact-form,
.section-dark .contact-card,
.section-dark .value-card,
.section-dark .industry-col-content,
.section-dark .pricing-card {
  background: var(--card-bg-dark);
  border: 1px solid var(--card-border-dark);
  backdrop-filter: blur(10px);
}

.section-light .stat-card,
.section-light .feature-card,
.section-light .testimonial-card,
.section-light .contact-form,
.section-light .contact-card,
.section-light .value-card,
.section-light .industry-col-content,
.section-light .pricing-card {
  background: var(--card-bg-light);
  border: 1px solid var(--card-border-light);
  box-shadow: var(--card-shadow-light);
}

.section-light .btn-outline {
  color: var(--text-light-primary);
  border-color: var(--glass-border-light);
}
.section-light .btn-outline:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(8, 28, 21, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border-dark);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-text-wrapper {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.brand-name .ascen { color: #fff; }
.brand-name .gro { color: var(--gold-accent); }
.brand-tag {
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--text-secondary);
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  color: #fff;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-accent);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 800px;
}
.hero h1 {
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 650px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
}

/* Stat Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}
.stat-card {
  border-top: 3px solid var(--gold-accent) !important;
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
}
.stat-card .number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold-accent);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.stat-card p {
  margin: 0;
  font-size: 1rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Split Layout (Text + Image) */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-layout.reverse {
  direction: rtl;
}
.split-layout.reverse > * {
  direction: ltr;
}
.split-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--card-shadow-light);
}

/* Feature Cards 2x2 */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.feature-card {
  padding: 3rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 168, 67, 0.3);
}
.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.feature-card h3 {
  margin-bottom: 1rem;
}
.feature-card p {
  margin-bottom: 0;
}
.center-btn {
  text-align: center;
  margin-top: 3rem;
}

/* Full Width CTA Banner */
.cta-banner {
  background: var(--cta-banner-bg);
  padding: 6rem 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--text-on-gold);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(8, 28, 21, 0.8);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Process Section */
.process-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 2rem;
}
.process-row::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background-image: linear-gradient(to right, var(--gold-accent) 50%, transparent 50%);
  background-size: 20px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.process-step {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--text-on-gold);
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 0 10px var(--bg-light-secondary); /* Assuming process is on cream */
}
.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.process-step p {
  font-size: 1rem;
}

/* Industries / Image Cards */
.industries-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.industry-col {
  border-radius: 8px;
  overflow: hidden;
  background: var(--card-bg-dark);
  border: 1px solid var(--card-border-dark);
}
.industry-img-header {
  height: 250px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.industry-img-header h3 {
  margin: 0;
  color: #fff;
  font-size: 1.75rem;
}
.industry-col-content {
  padding: 2rem;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
}
.section-light .tag {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--glass-border-light);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  padding: 3rem 2rem;
  border-radius: 8px;
}
.stars {
  color: var(--gold-accent);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.quote {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
}
.author {
  font-weight: 600;
  font-size: 0.875rem;
}
.section-light .author {
  color: var(--text-light-primary);
}
.section-dark .author {
  color: var(--text-primary);
}

/* Services Page */
.page-header {
  padding: 180px 0 80px;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--glass-border-dark);
}
.service-list ul {
  margin-top: 1.5rem;
}
.service-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-accent);
  font-weight: bold;
}

/* Pricing Page */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}
.pricing-card {
  padding: 3rem;
  border-radius: 8px;
  position: relative;
}
.pricing-card.featured {
  transform: scale(1.05);
}
.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--text-on-gold);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.price {
  font-size: 3rem;
  font-weight: 800;
  margin: 1.5rem 0 0.5rem;
}
.section-dark .price { color: var(--text-primary); }
.section-light .price { color: var(--text-light-heading); }

.price span {
  font-size: 1rem;
  font-weight: 400;
}
.section-dark .price span { color: var(--text-secondary); }
.section-light .price span { color: var(--text-light-secondary); }

.setup-fee {
  font-size: 0.875rem;
  color: var(--gold-accent);
  margin-bottom: 2rem;
}
.pricing-card ul {
  margin-bottom: 2.5rem;
}
.pricing-card li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}
.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-accent);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--glass-border-dark);
  padding: 1.5rem 0;
}
.section-light .faq-item {
  border-bottom-color: var(--glass-border-light);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.125rem;
}
.section-light .faq-question { color: var(--text-light-heading); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding-top: 1rem;
  margin: 0;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}

/* About & Contact */
.values-grid, .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.value-card, .contact-card {
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-form {
  padding: 3rem;
  border-radius: 8px;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.section-light .form-group label { color: var(--text-light-primary); }
.section-dark .form-group label { color: var(--text-primary); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--glass-border-dark);
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
}
.section-light .form-group input, .section-light .form-group textarea {
  background: #FFF;
  border: 1px solid var(--glass-border-light);
  color: var(--text-light-primary);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold-accent);
}

/* Footer */
footer {
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 6rem 0 2rem;
  border-top: 1px solid var(--glass-border-dark);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}
.footer-divider {
  height: 1px;
  background: var(--glass-border-dark);
  margin-bottom: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.footer-col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: #fff;
}
.footer-col ul li {
  margin-bottom: 0.75rem;
}
.footer-col ul li a {
  color: var(--text-secondary);
}
.footer-col ul li a:hover {
  color: var(--gold-accent);
}
.footer-bottom {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border-dark);
}

/* Utilities */
.text-gold { color: var(--gold-accent); }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }

/* Responsive */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
  .feature-grid, .split-layout, .pricing-grid, .contact-layout, .industries-columns {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-row {
    flex-direction: column;
    gap: 4rem;
  }
  .process-row::before {
    display: none;
  }
  .step-number {
    box-shadow: none !important;
  }
}
