/* Fertile™ Seed Tech Pvt. Ltd. - Main Modern Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary: #0b5e37;
  --primary-dark: #063b22;
  --primary-light: #158a52;
  --primary-gradient: linear-gradient(135deg, #0b5e37 0%, #158a52 100%);
  --gold: #d4af37;
  --gold-light: #f3e5ab;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f39c12 100%);
  --dark-forest: #071e16;
  --text-dark: #1e2923;
  --text-muted: #5a6e63;
  --bg-light: #f5f9f6;
  --card-bg: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-dark: rgba(7, 30, 22, 0.75);
  --glass-border: rgba(11, 94, 55, 0.12);
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(11, 94, 55, 0.08);
  --shadow-lg: 0 20px 45px rgba(11, 94, 55, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-title-wrapper {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background-color: rgba(11, 94, 55, 0.08);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 1px solid rgba(11, 94, 55, 0.18);
}

.section-badge.badge-gold {
  background-color: rgba(212, 175, 55, 0.12);
  color: #b38b14;
  border-color: rgba(212, 175, 55, 0.3);
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Custom Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #04140d !important;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
  color: #04140d !important;
}

.btn-secondary,
.btn-outline-dark,
.btn-outline-light {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover,
.btn-outline-dark:hover,
.btn-outline-light:hover {
  background: #ffffff;
  color: #04140d !important;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #04140d !important;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.48);
  color: #04140d !important;
}

/* Navigation Header (Clean Light Bar for Original Logo) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.9rem 0;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(11, 94, 55, 0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.65rem 0;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav-item.active .nav-link {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-dark);
  cursor: pointer;
}



/* Hero Section (Dark Theme) */
.hero {
  position: relative;
  min-height: 90vh;
  padding: 9rem 0 5rem 0;
  background: linear-gradient(145deg, #04140d 0%, #072517 55%, #0a3823 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay-grid {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(212, 175, 55, 0.15) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  background-position: 0 0, 18px 18px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(4, 20, 13, 0) 70%);
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(21, 138, 82, 0.3) 0%, rgba(4, 20, 13, 0) 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
}

.hero-subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.12;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.4rem;
  letter-spacing: -1px;
}

.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin-top: 0.2rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-glass {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: 0 20px 50px rgba(11, 94, 55, 0.12);
  border: 1px solid rgba(11, 94, 55, 0.12);
  position: relative;
}

.hero-card-glass img {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
}

.floating-tech-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  color: var(--text-dark);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 4s ease-in-out infinite;
}

.tech-icon-circle {
  width: 44px;
  height: 44px;
  background: var(--primary-gradient);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Strategic Tech Banner (Difference from Fertilizer) */
.tech-banner-section {
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}

.tech-banner-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(7, 30, 22, 0.08);
  border: 1px solid rgba(11, 94, 55, 0.12);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: center;
}

.banner-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.banner-icon {
  width: 54px;
  height: 54px;
  background: rgba(11, 94, 55, 0.08);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.banner-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--primary-dark);
}

.banner-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.banner-divider {
  width: 1px;
  height: 80%;
  background: rgba(11, 94, 55, 0.15);
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  width: 100%;
}

.about-experience-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 1.6rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-experience-card h3 {
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.about-experience-card p {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.vision-card {
  background: rgba(11, 94, 55, 0.05);
  border-left: 4px solid var(--primary);
  padding: 1.2rem 1.6rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 1.5rem;
}

.vision-card h5 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vision-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Product Showcase & Filtering */
.products-section {
  background-color: var(--bg-light);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  background: #ffffff;
  border: 1px solid rgba(11, 94, 55, 0.15);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(11, 94, 55, 0.2);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 94, 55, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card.hidden {
  display: none !important;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 94, 55, 0.25);
}

.product-img-holder {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #eef4f0;
}

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

.product-card:hover .product-img-holder img {
  transform: scale(1.08);
}

.product-badge-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}

.product-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.product-title {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.btn-spec {
  background: rgba(11, 94, 55, 0.08);
  color: var(--primary);
  border: none;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-spec:hover {
  background: var(--primary);
  color: #ffffff;
}

/* Technology Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.pillar-card {
  background: #ffffff;
  padding: 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(11, 94, 55, 0.1);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(11, 94, 55, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.pillar-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: #ffffff;
  padding: 2.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 94, 55, 0.08);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 94, 55, 0.2);
}

.team-card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-gradient);
  color: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}

.team-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.team-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #051b11 0%, #0b5e37 100%);
  color: #ffffff;
  padding: 6rem 0 3rem 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 2.8rem;
  border-radius: var(--radius-lg);
}

.contact-form-card h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-form-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  margin-bottom: 2rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-control {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: var(--transition);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

select.form-control option {
  background: var(--dark-forest);
  color: #ffffff;
}

.info-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.6rem;
  border-radius: var(--radius-md);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.info-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-gradient);
  color: var(--dark-forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-content h5 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.info-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 30, 22, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 680px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.95);
  transition: var(--transition);
  position: relative;
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 1.8rem 2rem;
  background: var(--primary-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  color: #ffffff;
  font-size: 1.6rem;
}

.modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.4);
}

.modal-body {
  padding: 2rem;
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1rem;
}

.spec-item {
  background: var(--bg-light);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}

.spec-item label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
}

.spec-item span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Footer */
footer {
  background: var(--dark-forest);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  margin-top: 0.3rem;
}

.footer-credits a {
  color: #34A853;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--dark-forest);
  transform: translateY(-3px);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--primary-gradient);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* Responsive styles */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .tech-banner-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .banner-divider {
    display: none;
  }
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-forest);
    flex-direction: column;
    padding: 6rem 2rem;
    align-items: flex-start;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  .navbar-nav.mobile-active {
    right: 0;
  }
  .navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 1.1rem;
  }
  .mobile-toggle {
    display: block;
    z-index: 1001;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .spec-list {
    grid-template-columns: 1fr;
  }
}
