:root {
  --lava: #122d60ea;
  --lava-dark: #003a8c;
  --lava-light: #e8f1ff;
  --mustard: #d4a017;
  --mustard-light: #fff7e6;
  --mustard-dark: #7a5100;
  --bg: #ffffff;
  --text: #0f1724;
  --muted: #475569;
  --border: #e6e6e6;
  --light-gray: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

main,
section,
header,
footer {
  display: block;
}

a,
button,
input,
textarea,
select {
  font: inherit;
}

img,
video,
canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

.container {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  /*background: var(--lava-dark);*/
  padding: 8px;
  border-radius: 10px;
  }

.brand-text h1 {
  font-size: 1.4rem;
  color: var(--text);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: 0;
  background: transparent;
  padding: 0.35rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: var(--lava);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--lava-light) 0%, var(--mustard-light) 100%);
  padding: 80px 0;
  text-align: center;
}

.hero-content h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content .lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.btn-primary {
  background: var(--lava);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--lava-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--mustard);
  color: var(--mustard-dark);
}

.btn-secondary:hover {
  background: var(--mustard-dark);
  color: var(--bg);
}

.btn-primary-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* About Section */
.about-section {
  padding: 60px 0;
  background: var(--bg);
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.about-content > p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.8;
  max-width: 800px;
  text-align: justify;
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 10px;
  border-left: 4px solid var(--lava);
}

.value-item h3 {
  color: var(--lava);
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--muted);
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.services-content h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.section-lead {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--mustard);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--lava-dark);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.7;
  text-align: justify;
}

.service-list {
  list-style: none;
  padding: 1rem 0;
  margin: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-list li {
  padding: 0.5rem 0;
  color: var(--text);
  font-size: 0.95rem;
  text-align: justify;
}

.service-list li:before {
  content: "✓ ";
  color: var(--lava);
  font-weight: 700;
  margin-right: 0.5rem;
}

.link-more {
  color: var(--lava);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
  transition: color 0.3s;
}

.link-more:hover {
  color: var(--mustard);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--lava) 0%, var(--lava-dark) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--bg);
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #fff;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #fff;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--bg);
}

.contact-content h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text);
}

.contact-content > p {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info {
  display: grid;
  gap: 2rem;
}

.info-item h3 {
  font-size: 1.1rem;
  color: var(--lava);
  margin-bottom: 0.5rem;
}

.info-item p {
  color: var(--muted);
}

.info-item a {
  color: var(--lava);
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 12px;
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  resize: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lava);
  box-shadow: 0 0 0 3px var(--lava-light);
}

.contact-form .btn {
  align-self: flex-start;
}

.form-success {
  color: var(--mustard-dark);
  font-weight: 600;
  padding: 1rem;
  background: var(--mustard-light);
  border-radius: 6px;
  text-align: center;
}

/* Footer */
.site-footer {
  background: #f5f5f5;
  color: var(--text);
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--mustard);
}
.footer-text p {
  color: var(--text);
}

.footer-text a {
  color: var(--text);
  text-decoration: underline;
  transition: color 0.3s;
}

.footer-text a:hover {
  color: var(--mustard);
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    position: relative;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 120;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 0.25rem 0;
  }

  .hero-section {
    padding: 50px 0;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand-text h1 {
    font-size: 1.1rem;
  }

  .logo-section {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-content h2 {
    font-size: 1.6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-content h2 {
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}