/* Palletrux Global Styles */

:root {
  --palletrux-blue: #12738F;
  --palletrux-green: #4C8030;
  --palletrux-brown: #8B5A19;
  --text-dark: #111111;
  --text-muted: #666666;
  --bg-light: #F7F7F4;
  --bg-white: #ffffff;
  --max-width: 1100px;
  --radius-lg: 16px;
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

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

a {
  color: var(--palletrux-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header / Nav */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e6e6e6;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-wrap img {
  height: auto;
  width: auto;
  max-height: 80px;
}


@media (max-width: 600px) {
  .logo-wrap img { width: 200px; height:auto; }
  .logo-wrap img {
  width: 250px;
  height: auto;
}
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.nav a.active {
  color: var(--palletrux-green);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--palletrux-green), var(--palletrux-blue));
  color: #fff !important;
  box-shadow: var(--shadow-soft);
}

.nav-cta:hover {
  filter: brightness(1.05);
  text-decoration: none;
}

/* Mobile Nav */

.nav-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: var(--bg-white);
    flex-direction: column;
    padding: 0.75rem 1.25rem 1rem;
    border-bottom: 1px solid #e6e6e6;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

/* Hero */

.hero {
  padding: 3.5rem 0 3rem;
  background: radial-gradient(circle at top left, #e9f5ef 0, #ffffff 55%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  align-items: center;
  gap: 2.5rem;
}

.hero-eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--palletrux-green);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  margin: 0.6rem 0 0.75rem;
}

.hero p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--palletrux-green), var(--palletrux-blue));
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  filter: brightness(1.05);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border-color: #d0d0d0;
  color: var(--text-dark);
}

.btn-outline:hover {
  border-color: var(--palletrux-green);
  text-decoration: none;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-highlights li::before {
  content: "• ";
  color: var(--palletrux-green);
  font-weight: 900;
}

.hero-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid #e6e6e6;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  background: #f0f7f4;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--palletrux-blue);
}

/* Sections */

.section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-kicker {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--palletrux-green);
  font-weight: 600;
}

.section-title {
  font-size: 1.7rem;
  margin: 0.5rem 0;
}

.section-subtitle {
  max-width: 650px;
  margin: 0 auto;
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* Cards / Grids */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid #eaeaea;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

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

.card-tag {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--palletrux-blue);
  margin-bottom: 0.4rem;
}

/* Lists */

.simple-list {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  font-size: 0.93rem;
}

.simple-list li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.2rem;
}

.simple-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--palletrux-brown);
}

/* CTA banner */

.cta-banner {
  margin: 3rem 0 0;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--palletrux-blue), var(--palletrux-green));
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-banner p {
  margin: 0.1rem 0 0;
  opacity: 0.95;
}

/* Forms */

.form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid #e6e6e6;
  padding: 1.75rem 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.form-grid-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 8px;
  border: 1px solid #d5d5d5;
  font-size: 0.9rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--palletrux-blue);
  outline-offset: 1px;
  border-color: var(--palletrux-blue);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.88rem;
}

.checkbox-group label {
  font-weight: 500;
}

.checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Footer */

.footer {
  margin-top: 3rem;
  padding: 2rem 0 1.5rem;
  background: var(--bg-light);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.3rem;
}

.footer h4 {
  margin: 0 0 0.6rem;
  font-size: 0.98rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.2rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Contact layout enhancements */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 1.75rem;
  align-items: flex-start;
}

.contact-info-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid #e6e6e6;
  padding: 1.5rem 1.4rem;
}

.contact-info-card h2 {
  margin-top: 0;
}

.contact-info-block {
  margin-bottom: 1.1rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--palletrux-green);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-info-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Responsive tweaks */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .logo-wrap img { width: 200px; height:auto; }
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 2.5rem 0 2.2rem;
  }

  .cta-banner {
    align-items: flex-start;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
