/* Bootstrap-compatible responsive stylesheet — easy for developer to extend */
:root {
  --brand: #235da4;   /* Navy Blue - primary brand color */
  --accent: #F68A2F;  /* Bright Orange */
  --teal: #4DB6AC;    /* Teal Green */
  --pink: #D556A5;    /* Magenta Pink */
  --gradient: linear-gradient(90deg, #F68A2F 0%, #FF6BB5 50%, #9C27B0 100%);
  --light: #FFFFFF;   /* White */
  --gray: #D9D9D9;    /* Light Gray (for tissue shading) */

  --muted: #6b7280;
  --bg: #f8fafb;
  --card: #ffffff;
  --maxw: 1200px;
  --radius: 12px;
  --shadow: 0 6px 18px rgba(11, 46, 33, 0.08);

  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

* {box-sizing:border-box}
html, body {
  height:100%;
  margin:0;
  background:var(--bg);
  color:#0f1724;
  scroll-behavior: smooth;
}
a {color:var(--brand);text-decoration:none}
img {max-width:100%;height:auto;display:block}

/* Custom styles to complement Bootstrap */
header {
  background:linear-gradient(90deg, rgba(11,110,79,0.06), rgba(15,157,102,0.03));
  backdrop-filter:saturate(1.05);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.container {max-width:var(--maxw);margin:0 auto;padding:24px}

/* Custom brand styling */
.brand img {
  height:60px;
  border-radius:8px;
  object-fit:cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Custom feature cards */
.feature {
  background:var(--card);
  border-radius:10px;
  box-shadow:var(--shadow);
  transition: transform 0.2s ease;
}
.feature:hover {
  transform: translateY(-2px);
}

/* Custom product cards */
.product-card {
  background:var(--card);
  border-radius:12px;
  box-shadow:var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(11, 46, 33, 0.12);
}

/* Custom form styling */
form.card {
  border: none;
  box-shadow: var(--shadow);
}
form .form-control {
  border-radius: 8px;
  border: 1px solid #e6e9ef;
  padding: 12px;
  font-size: 14px;
}
form .form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.2rem rgba(35, 93, 164, 0.25);
}

/* Custom button styling */
.btn {
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}

/* Custom section spacing */
section {
  padding: 60px 0;
}

/* Custom responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 16px;
  }

  section {
    padding: 40px 0;
  }

  .brand img {
    height: 50px;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .feature-list {
    margin-bottom: 20px;
  }

  .product-links {
    flex-direction: column;
    align-items: center;
  }

  .product-links .btn {
    width: 100%;
    max-width: 250px;
  }
}

/* Custom animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero, .product-card, .feature {
  animation: fadeInUp 0.6s ease-out;
}

/* Custom map styling */
.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Custom footer styling */
footer {
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* Smooth scrolling enhancement */
html {
  scroll-behavior: smooth;
}
