:root {
  --black: #202022;
  --white: #ffffff;
  --primary: #205b2f;
  --accent: #ffb200;
}

.social-icons a {
  margin-left: 10px;
}

.header-icon {
  font-size: 1.2rem;
}

.nav-icon {
  font-size: 1.3rem;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link {
  font-weight: 700;
  font-size: 14px;
  padding: 1rem 0.6rem !important;
  color: var(--black);
  transition: all 0.2s ease;
}

.navbar .nav-link i {
  margin-right: 5px;
}

.navbar .nav-link:hover {
  color: var(--primary);
}

.hero-section {
  background-color: var(--primary);
  color: var(--white);
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.text-accent {
  color: var(--accent) !important;
}

.hero-text {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 90%;
}

.btn {
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 25px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.btn-reserve {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-outline-light {
  color: var(--black);
  background-color: var(--white);
  border-color: var(--white);
}

.btn-accent:hover {
  background-color: #e6a000;
  border-color: #e6a000;
}

.btn-reserve:hover {
  background-color: #174522;
  border-color: #174522;
}

.btn-outline-light:hover {
  color: var(--black);
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary {
  color: var(--black);
  background-color: var(--white);
  border-color: var(--primary);
}

.section-title {
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--accent);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.steps-section {
  background-color: var(--black);
  padding: 60px 0;
}

.step-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.icon-accent {
  color: var(--accent);
  font-size: 2.8rem;
}

.feature-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(255, 178, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(255, 178, 0, 0.2);
}

@media (max-width: 992px) {
  .navbar .nav-link {
    padding: 0.5rem 0.75rem !important;
  }

  .hero-section {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-text {
    font-size: 16px;
  }

  .steps-section .step-circle {
    width: 70px;
    height: 70px;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

.card {
  transition: all 0.3s ease;
  border: none;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
