@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

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

:root {
  --green: #008a67;
  --green-dark: #006b50;
  --gold: #d58400;
  --gold-dark: #b36e00;
  --rust: #d54f00;
  --navy: #0c448c;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

/* Header */
header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo img {
  height: 50px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--green);
}

/* Buttons */
.btn {
  background: var(--green);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--green);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.85);
  color: var(--green);
}

.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
}

/* Section shared */
.section-subtitle {
  text-align: center;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--green);
}

.section-description {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
}

/* Hero */
.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #008a67 0%, #00b588 100%);
  color: var(--white);
  position: relative;
}

.hero::after {
  content: "";
  display: block;
  height: 4px;
  background: var(--gold);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero h1 strong {
  color: var(--gold);
  font-weight: 800;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-image img {
  width: 100%;
  border-radius: 1rem;
}

/* Services — picture element support */
.service-layout picture,
.service-layout img {
  width: 45%;
  flex-shrink: 0;
}

.service-layout picture img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

.service-layout img {
  border-radius: 1rem;
}

/* Services */
.service-panel {
  padding: 4rem 0;
}

.service-panel--alt {
  background: var(--bg-light);
}


/* Image panels */
.service-layout {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.service-layout--reverse {
  flex-direction: row-reverse;
}

.service-text h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.service-text .service-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.service-text p {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-text a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

.service-text a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* Text-only panels */
.service-text-panel {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.service-text-panel h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.service-text-panel p {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.service-text-panel a:not(.btn) {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

.service-text-panel a:not(.btn):hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

.integration-list {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin: 0 auto 1.5rem;
}

.integration-list li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  color: var(--text-light);
  font-size: 1.0625rem;
  position: relative;
}

.integration-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: var(--green);
  color: var(--white);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonial-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.testimonial-image img {
  width: 100%;
  border-radius: 1rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--gold);
  padding: 2.5rem;
  border-radius: 1rem;
}

.testimonial-card blockquote {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  color: var(--gold);
  font-weight: 700;
}

/* About */
.about {
  padding: 5rem 0;
}

.about .section-title {
  margin-bottom: 0.5rem;
}

.about-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
  text-align: center;
}

.staff-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--gold);
  padding: 3rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.staff-card img {
  width: 100%;
  border-radius: 0.5rem;
}

.staff-info h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.staff-title {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.staff-bio {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.staff-email a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

.staff-email a:hover {
  text-decoration: underline;
}

/* Contact */
.contact {
  padding: 5rem 0;
  background: var(--bg-light);
}

.contact-form {
  max-width: 700px;
  margin: 3rem auto 0;
  background: var(--white);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--gold);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}


/* Zeetamax product section */
.zeetamax {
  background: var(--navy);
  padding: 5rem 0;
}

.zeetamax-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

.zeetamax-label {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}

.zeetamax-name {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.zeetamax-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  font-weight: 500;
}

.zeetamax-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Footer */
footer {
  background: #1f2937;
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

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

  .service-layout,
  .service-layout--reverse {
    flex-direction: column;
  }

  .service-layout picture,
  .service-layout img {
    width: 100%;
  }

  .testimonial-content {
    grid-template-columns: 1fr;
  }

  .staff-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .zeetamax-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .zeetamax-name {
    font-size: 3rem;
  }
}
