/* Custom CSS Variables */
:root {
  --primary-brown: #553221;
  --dark-brown: #20120c;
  --accent-orange: #ffac1d;
  --accent-orange-hover: #e67e00;
  --text-dark: #090202;
  --text-light: rgba(9, 2, 2, 0.6);
  --bg-light: rgba(9, 2, 2, 0.05);
  --bg-overlay: rgba(255, 255, 255, 0.1);
  --bg-overlay-hover: rgba(255, 255, 255, 0.2);
}

/* Typography */
body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  color: var(--text-dark);
}

.tagline {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 150%;
  display: inline-block;
  margin-bottom: 1rem;
}

h1,
.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -0.72px;
  line-height: 120%;
  margin-bottom: 1.5rem;
}

h2,
.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.52px;
  line-height: 120%;
  margin-bottom: 1.5rem;
}

h3,
.value-title {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.22px;
  line-height: 140%;
  margin-bottom: 1rem;
}

.hero-description,
.section-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 2rem;
}

.mission-text,
.vision-text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.btn-contact {
  background-color: var(--bg-overlay);
  border: 1px solid transparent;
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: var(--bg-overlay-hover);
  color: white;
}

.btn-offer,
.btn-primary {
  background-color: var(--accent-orange);
  border: 1px solid var(--accent-orange-hover);
  color: var(--text-dark);
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-offer:hover,
.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  border-color: var(--accent-orange-hover);
  color: var(--text-dark);
}

/* Hero Section */
.hero-section {
  background-color: var(--primary-brown);
  padding: 7rem 0;
  text-align: center;
}

.hero-content {
  max-width: 768px;
  margin: 0 auto;
}

.hero-title {
  color: white;
}

.hero-description {
  color: white;
}

.hero-buttons {
  margin-top: 2rem;
}

.btn-outline-light {
  background-color: var(--bg-overlay);
  border: 1px solid transparent;
  color: white;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: var(--bg-overlay-hover);
  color: white;
  border-color: transparent;
}

/* Vision Section */
.vision-section {
  background: linear-gradient(180deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
  padding: 7rem 0;
}

.vision-content {
  margin-bottom: 2rem;
}

.vision-text {
  font-size: 18px;
}

.vision-buttons {
  margin-top: 2rem;
}

.btn-secondary {
  background-color: var(--bg-overlay);
  border: 1px solid transparent;
  color: white;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--bg-overlay-hover);
  color: white;
  border-color: transparent;
}

.btn-link {
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.btn-link:hover {
  background-color: var(--bg-overlay);
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  color: white !important;
}

.vision-image {
  height: 738px;
  object-fit: cover;
}

/* Mission Section */
.mission-section {
  padding: 7rem 0;
}

.mission-content {
  padding-right: 2rem;
}
@media (max-width: 991px) {
  .mission-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

.mission-image {
  height: 738px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 991px) {
  .mission-image {
    height: 400px;
    margin: 2rem 0;
  }
}

/* Values Section */
.values-section {
  background-color: var(--primary-brown);
  padding: 7rem 0;
}

.values-content {
  padding-left: 2rem;
}
@media (max-width: 991px) {
  .values-content {
    padding-left: 0;
    margin-top: 2rem;
  }
}

.values-image {
  height: 738px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 991px) {
  .values-image {
    height: 400px;
    margin-bottom: 2rem;
  }
}

.value-item {
  padding: 1rem 0;
}
@media (max-width: 991px) {
  .value-item {
    text-align: center;
  }
  .value-item img {
    margin: 0 auto;
    display: block;
  }
  .value-item h3 {
    text-align: center;
  }
  .value-item p {
    text-align: center;
    margin: 0 auto;
    max-width: 90%;
  }
}

.value-icon {
  width: 48px;
  height: 48px;
}

.custom-input,
.custom-textarea {
  background-color: var(--bg-light);
  border: 1px solid transparent;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 16px;
  transition: all 0.3s ease;
}

.custom-input:focus,
.custom-textarea:focus {
  background-color: var(--bg-light);
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 172, 29, 0.25);
}

.custom-textarea {
  resize: none;
  min-height: 182px;
}

.form-section {
  padding: 7rem 0;
}

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

.form-check-input:checked {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
}

.form-check-label {
  font-size: 14px;
  color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-title,
  h1 {
    font-size: 48px;
  }
  .section-title,
  h2 {
    font-size: 36px;
  }
  .mission-content,
  .values-content {
    padding: 0;
    margin-bottom: 3rem;
  }
  .mission-image,
  .values-image,
  .vision-image {
    height: 400px;
  }
  .hero-section,
  .vision-section,
  .mission-section,
  .values-section {
    padding: 4rem 0;
  }
}
@media (max-width: 767.98px) {
  .hero-title,
  h1 {
    font-size: 36px;
  }
  .section-title,
  h2 {
    font-size: 28px;
  }
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  .vision-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .navbar-nav {
    text-align: center;
    margin: 1rem 0;
  }
  .navbar .d-flex {
    justify-content: center;
    margin-top: 1rem;
  }
}
@media (max-width: 575.98px) {
  .hero-section,
  .vision-section,
  .mission-section,
  .values-section {
    padding: 3rem 0;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .mission-image,
  .values-image,
  .vision-image {
    height: 300px;
  }
}
/* Animations */
/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Button focus states */
.btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 172, 29, 0.25);
}

/* custom gap class for buttons */
.custom-gap {
  margin-right: 1rem;
}

@media (max-width: 767px) {
  .custom-gap {
    margin-right: 0rem;
  }
}
