/* ===== Root Variables ===== */
:root {
  --soil: #121310;
  --corn: #f5cb42;
  --amber: #ffb347;
  --green: #527a39;
  --light-soil: #1c1d19;
  --text: #f6f6f6;
  --muted: #d9d9d9;
}

/* ===== Base Styles ===== */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--soil);
  color: var(--text);
}

/* ===== Header ===== */
header {
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(135deg, var(--amber), var(--corn));
  color: #19160f;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 120px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 14px;
}

h1 {
  font-size: 3.4rem;
  margin: 0;
  line-height: 1.1;
}

.tagline {
  color: #2f2a1b;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 16px;
  font-size: 1.1rem;
}

/* ===== Section Titles ===== */
section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

h2 {
  border-left: 4px solid var(--corn);
  padding-left: 10px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* ===== Card Grid (Services) ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* ===== Unified Card Design (Services, About, Contact) ===== */
.card,
.info-card {
  background: var(--light-soil);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.card-accent {
  height: 6px;
  background: var(--green);
  width: 100%;
}

.card,
.info-card {
  position: relative;
}

.card .icon {
  font-size: 2rem;
  color: var(--corn);
  margin-bottom: 12px;
}

.card-content,
.info-card-content {
  padding: 20px 25px 30px;
}

.card:hover,
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
}

.card p,
.info-card-content p {
  line-height: 1.6;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.learn-more {
  font-weight: 600;
  color: var(--corn);
  text-decoration: none;
  transition: color 0.2s ease;
}
.learn-more:hover {
  color: var(--amber);
}

/* ===== Contact Form ===== */
.contact-form {
  background: transparent;
  padding: 10px;
  border-radius: 8px;
}

label {
  font-weight: 600;
  display: block;
  margin-top: 10px;
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 18px;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  color: #111;
}

button {
  background: var(--corn);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  color: #0f0f0f;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease;
}

button:hover {
  background: var(--amber);
}

.captcha {
  margin-bottom: 15px;
}

/* ===== Info Card Containers (About & Contact) ===== */
#about .info-card,
#contact .info-card {
  max-width: 900px;
  margin: 0 auto 40px;
}

#about h2,
#contact h2 {
  border-left: 4px solid var(--corn);
  padding-left: 10px;
  color: var(--corn);
  margin-bottom: 25px;
}

.contact-cta {
  font-size: 1.4rem;
  color: var(--corn);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
  text-align: center;
}

.contact-cta span {
  color: var(--amber);
  display: block;
}

.contact-phone {
  text-align: center;
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 1rem;
}

.contact-phone .icon {
  color: var(--corn);
  margin-right: 8px;
}

.contact-phone a {
  color: var(--corn);
  text-decoration: none;
  font-size: 1.05rem;
}

.contact-phone a:hover {
  color: var(--amber);
}

.contact-phone .note {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.9rem;
}

.form-success,
.form-error {
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}
.form-success { background: #285c33; color: #f1f1f1; }
.form-error { background: #6a1b1b; color: #fff; }

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 50px 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 600px) {
  h1 {
    font-size: 2.4rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .card-content,
  .info-card-content {
    padding: 18px 20px 25px;
  }
}