/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #111;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

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

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ccc;
  padding: 8px 16px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: #2e7d32;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px 8px;
}

/* Mobile nav */
@media (max-width: 680px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    padding: 12px 0 20px;
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    border-radius: 0;
  }
}

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') center/cover no-repeat;
  padding: 120px 20px 60px;
  text-align: center;
  color: #fff;
  margin-top: 64px;
}

.page-hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #f5c518;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #ddd;
}

/* ===========================
   CTA BANNER
=========================== */
.cta-banner {
  background: #2e7d32;
  padding: 48px 20px;
  text-align: center;
}

.cta-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-banner p {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================
   ABOUT PAGE
=========================== */
.about-section {
  padding: 80px 0;
  background: #fff;
}

.about-card {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  background: #f4f8f4;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 60px;
  border-left: 6px solid #2e7d32;
}

.about-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.about-text h2 {
  font-size: 2rem;
  color: #1b5e20;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.value-card {
  background: #f4f8f4;
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  border-top: 4px solid #f5c518;
}

.value-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 1.2rem;
  color: #1b5e20;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .about-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ===========================
   CONTACT PAGE EXTRAS
=========================== */
.contact-page {
  padding-top: 60px;
}

.contact-form-wrap {
  margin-top: 60px;
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #222;
  transition: border-color 0.2s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2e7d32;
}

.btn-submit {
  align-self: flex-start;
  cursor: pointer;
  border: none;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    align-self: stretch;
    text-align: center;
  }
}

/* ===========================
   SERVICES PAGE
=========================== */
.services-page {
  padding-top: 60px;
}

/* Jump bar */
.service-jump-bar {
  background: #1b5e20;
  padding: 12px 20px;
  position: sticky;
  top: 64px;
  z-index: 900;
  overflow-x: auto;
  white-space: nowrap;
}

.service-jump-bar .container {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: center;
}

.service-jump-bar a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c8e6c9;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.service-jump-bar a:hover {
  background: #f5c518;
  color: #111;
  border-color: #f5c518;
}

/* Service detail blocks */
.service-detail {
  padding: 70px 0;
  background: #fff;
}

.service-detail.sd-alt {
  background: #f4f8f4;
}

.sd-content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.sd-content.sd-reverse {
  flex-direction: row-reverse;
}

.sd-icon {
  font-size: 5rem;
  flex-shrink: 0;
  text-align: center;
  width: 120px;
  line-height: 1;
  padding-top: 6px;
}

.sd-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: #1b5e20;
  margin-bottom: 14px;
}

.sd-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.sd-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.sd-includes li {
  font-size: 0.97rem;
  color: #333;
  padding: 6px 10px;
  background: rgba(46,125,50,0.07);
  border-radius: 4px;
  border-left: 3px solid #2e7d32;
}

.btn-outline {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2e7d32;
  border: 2px solid #2e7d32;
  padding: 10px 28px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: #2e7d32;
  color: #fff;
}

@media (max-width: 680px) {
  .sd-content,
  .sd-content.sd-reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sd-icon {
    width: auto;
  }

  .sd-includes li {
    text-align: left;
  }

  .service-jump-bar .container {
    justify-content: flex-start;
  }
}

/* FAQ */
.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: #2e7d32;
}

.faq-item summary {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #222;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f9f9;
  transition: background 0.2s;
}

.faq-item[open] summary {
  background: #e8f5e9;
  color: #1b5e20;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: #2e7d32;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 16px 20px;
  font-size: 0.97rem;
  color: #444;
  line-height: 1.7;
  border-top: 1px solid #e0e0e0;
}

.faq-item p a {
  color: #2e7d32;
  font-weight: 600;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #222;
  background: #f9f9f9;
}

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   HERO
=========================== */
.hero {
  background:
    linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.62)),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') center/cover no-repeat;
  min-height: 100vh;
  margin-top: 64px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
  padding: 60px 0;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
}

.logo-area {
  color: #fff;
}

.brand {
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.1;
  letter-spacing: 2px;
}

.brand-rojas {
  color: #f5c518;
}

.tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  color: #ddd;
  margin-top: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlight {
  color: #f5c518;
}

.btn-primary {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  padding: 16px 36px;
  border-radius: 4px;
  transition: background 0.25s, transform 0.15s;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: #1b5e20;
  transform: translateY(-2px);
}

/* ===========================
   SERVICES
=========================== */
.services {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  color: #1b5e20;
  margin-bottom: 48px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #f5c518;
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-title.light {
  color: #fff;
}

.section-title.light::after {
  background: #f5c518;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: #f4f8f4;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  border-top: 4px solid #2e7d32;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.service-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #1b5e20;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ===========================
   WHY US
=========================== */
.why-us {
  background: #1b5e20;
  padding: 80px 0;
}

.why-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-list li {
  font-size: 1.05rem;
  color: #e8f5e9;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  border-left: 4px solid #f5c518;
  line-height: 1.5;
}

/* ===========================
   CONTACT
=========================== */
.contact {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}

.contact-sub {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid #2e7d32;
  border-radius: 8px;
  padding: 28px 40px;
  min-width: 240px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.contact-card:hover {
  background: #2e7d32;
  color: #fff;
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 2rem;
}

.contact-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
}

.contact-card:hover .contact-label {
  color: #c8e6c9;
}

.contact-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  color: #1b5e20;
  font-weight: 600;
}

.contact-card:hover .contact-value {
  color: #fff;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 28px 20px;
  font-size: 0.9rem;
  line-height: 2;
}

.footer a {
  color: #f5c518;
}

.footer a:hover {
  text-decoration: underline;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    width: 100%;
  }

  .btn-primary {
    font-size: 1rem;
    padding: 14px 24px;
  }
}
