/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background-color: #00754a;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-nav {
  background-color: #00754a;
  padding: 8px 0;
  font-size: 12px;
}

.top-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.utility-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.utility-link:hover {
  opacity: 0.8;
}

.separator {
  color: #ccc;
  margin: 0 4px;
}

.search-container {
  display: flex;
  align-items: center;
}

.search-input {
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  width: 200px;
}

.search-btn {
  background: white;
  border: 1px solid #ccc;
  padding: 6px 10px;
  margin-left: -1px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.main-nav {
  padding: 15px 0;
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 28px;
  font-weight: bold;
  font-style: italic;
}

.logo a {
  color: white;
  text-decoration: none;
}

.primary-nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: opacity 0.3s;
}

.nav-link:hover {
  opacity: 0.8;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  /* background: linear-gradient(135deg, #00754a 0%, #005a3a 100%); */
  background: white;
  color: black;
  padding: 80px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Button Styles */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary {
  background-color: #ff6b35;
  color: white;
}

.btn-primary:hover {
  background-color: #e55a2b;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: #00754a;
}

.btn-outline {
  background-color: transparent;
  color: #00754a;
  border: 2px solid #00754a;
}

.btn-outline:hover {
  background-color: #00754a;
  color: white;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: white;
}

.features h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #00754a;
}

.feature-card p {
  font-size: 16px;
  color: #666;
}

/* Main Content */
.main-content {
  background-color: white;
  min-height: 60vh;
  padding: 40px 0;
}

.page-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-header h1 {
  font-size: 42px;
  color: #333;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  color: #666;
}

/* About Page Styles */
.about-section {
  max-width: 800px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 28px;
  color: #00754a;
  margin: 40px 0 20px 0;
}

.about-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.bg-green {
  background: #00754a;
  color: white;
}
.btn-guide {
  background: white;
  color: black;
}
.values-grid,
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.value-card,
.leader-card {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #00754a;
}

.value-card h3,
.leader-card h4 {
  color: #00754a;
  margin-bottom: 10px;
}

/* Contact Page Styles */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-methods {
  display: grid;
  gap: 25px;
}

.contact-card {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.contact-card h3 {
  color: #00754a;
  margin-bottom: 15px;
}

.contact-card p {
  margin-bottom: 10px;
  color: #555;
}

.contact-form-section h2 {
  color: #00754a;
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00754a;
}

/* Pricing Page Styles */
.pricing-section {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-highlight {
  background: linear-gradient(135deg, #00754a 0%, #005a3a 100%);
  color: white;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 50px;
}

.pricing-highlight h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.pricing-tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.pricing-table {
  background-color: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 25px;
}

.pricing-table h3 {
  color: #00754a;
  margin-bottom: 20px;
  font-size: 20px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f3f4;
}

.price-item:last-child {
  border-bottom: none;
}

.service {
  font-size: 14px;
  color: #555;
}

.price {
  font-weight: 600;
  color: #00754a;
}

.advisory-pricing {
  margin: 50px 0;
}

.advisory-pricing h2 {
  text-align: center;
  color: #00754a;
  margin-bottom: 40px;
}

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.advisory-card {
  background-color: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
}

.advisory-card h3 {
  color: #00754a;
  margin-bottom: 10px;
}

.advisory-price {
  font-size: 24px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 15px;
}

.advisory-card ul {
  list-style: none;
  margin-top: 20px;
}

.advisory-card li {
  padding: 5px 0;
  color: #555;
}

.advisory-card li:before {
  content: "✓";
  color: #00754a;
  margin-right: 10px;
}

.pricing-notes {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #ff6b35;
}

.pricing-notes h3 {
  color: #333;
  margin-bottom: 15px;
}

.pricing-notes ul {
  list-style-type: disc;
  margin-left: 20px;
}

.pricing-notes li {
  margin-bottom: 8px;
  color: #555;
}

/* Legal Pages Styles */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  color: #00754a;
  font-size: 24px;
  margin-bottom: 15px;
}

.legal-section h3 {
  color: #333;
  font-size: 20px;
  margin: 20px 0 10px 0;
}

.legal-section p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

.legal-section ul {
  margin: 15px 0 15px 25px;
}

.legal-section li {
  margin-bottom: 8px;
  color: #555;
}

/* FAQ Page Styles */
.faq-search {
  margin: 30px 0;
  text-align: center;
}

.faq-search .search-input {
  width: 100%;
  max-width: 500px;
  padding: 15px;
  font-size: 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.category-btn {
  padding: 10px 20px;
  border: 2px solid #00754a;
  background-color: transparent;
  color: #00754a;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}

.category-btn.active,
.category-btn:hover {
  background-color: #00754a;
  color: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question h3 {
  color: #333;
  font-size: 18px;
  margin: 0;
}

.faq-toggle {
  font-size: 24px;
  color: #00754a;
  font-weight: bold;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px 20px;
  max-height: 200px;
}

.faq-answer p {
  color: #555;
  line-height: 1.6;
}

.faq-contact {
  text-align: center;
  margin: 60px 0;
  padding: 40px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.faq-contact h2 {
  color: #00754a;
  margin-bottom: 15px;
}

.faq-contact p {
  margin-bottom: 25px;
  color: #555;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Footer Styles */
.footer {
  background-color: #333;
  color: white;
  padding: 50px 0 20px 0;
  margin-top: 50px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h4 {
  color: #00754a;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.footer-section p {
  color: #ccc;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 20px;
  text-align: center;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .top-nav .container {
    flex-direction: column;
    gap: 15px;
  }

  .utility-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .search-input {
    width: 250px;
  }

  .primary-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-categories {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .category-btn {
    white-space: nowrap;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .features h2 {
    font-size: 28px;
  }

  .pricing-tables {
    grid-template-columns: 1fr;
  }

  .advisory-grid {
    grid-template-columns: 1fr;
  }
}

/* Desktop background for hero */
@media (min-width: 992px) {
  .hero.bg-lg-cover {
    background-image: url("/asset/img/bg.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
  }

  .hero.bg-lg-cover .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* Hide menu on small screens by default */
.primary-nav {
  display: none;
}

@media (max-width: 768px) {
  .primary-nav.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #00754a;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
}
