:root {
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--color3) 100%);
  --gradient-hover: linear-gradient(135deg, var(--secondary) 0%, var(--color5) 100%);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius-sm: 0.5rem;
  --border-radius: 1rem;
  --border-radius-lg: 1.5rem;
  --transition-base: all 0.3s ease;
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--white);
}

.navbar {
  padding: 1.2rem 0;
  transition: all 0.3s ease;
  background: var(--color6) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--dark);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  text-decoration: none;
  transition: var(--transition-base);
  position: relative;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-base);
}

.navbar-brand:hover::after {
  width: 100%;
}

.navbar-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.navbar-brand:hover {
  transform: translateY(-1px);
}

.navbar-brand img {
  height: 40px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  padding: 0.7rem 1.2rem !important;
  margin: 0 0.3rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: var(--dark) !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-base);
  transform: translateX(-50%);
}

.nav-link:hover {
  background-color: var(--color3);
  color: var(--dark) !important;
  transform: translateY(-2px);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link.active {
  color: var(--primary) !important;
  background-color: rgba(88, 117, 44, 0.1);
}

.nav-link.active::after {
  width: 80%;
}

.navbar-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-button {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-button-primary {
  background: var(--gradient);
  color: white;
  border: none;
  box-shadow: var(--shadow-sm);
}

.navbar-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: var(--gradient-hover);
  color: white;
}

.navbar-button-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.navbar-button-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler i {
  color: var(--dark);
  font-size: 1.5rem;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--color6);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-link {
    margin: 0.5rem 0;
  }
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('https://images.unsplash.com/photo-1534670007418-fbb7f6cf32c3?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wyMDkyMnwwfDF8c2VhcmNofDJ8fGdyYXBoaWNzJTIwZGVzaWdufGVufDB8fHx8MTc0NzA4MTM4OXww&ixlib=rb-4.1.0&q=80&w=1080');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  z-index: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.1;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-button {
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-button-primary {
  background: var(--gradient);
  color: white;
  border: none;
  box-shadow: var(--shadow);
}

.hero-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-hover);
  color: white;
}

.hero-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.hero-stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-stat-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.hero-stat-content p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-stat-item {
    flex: 1 1 calc(50% - 1rem);
  }
}

.features-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(88, 117, 44, 0.02) 0%, rgba(194, 218, 158, 0.02) 100%);
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2358732c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.features-subtitle {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--gradient);
  color: white;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-icon {
  width: 65px;
  height: 65px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  color: white;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-content {
  position: relative;
  z-index: 1;
}

.feature-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(88, 117, 44, 0.1);
  line-height: 1;
  font-family: 'BioRhyme', serif;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
  transition: var(--transition-smooth);
}

.feature-text {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.feature-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  padding: 0.5rem 0;
}

.feature-link i {
  transition: transform 0.3s ease;
}

.feature-link:hover {
  color: var(--color3);
}

.feature-link:hover i {
  transform: translateX(5px);
}

.feature-shape {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 8rem;
  height: 8rem;
  background: var(--gradient);
  opacity: 0.05;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-shape {
  transform: scale(1.2);
  opacity: 0.1;
}

@media (max-width: 991.98px) {
  .features-header {
    margin-bottom: 3rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .feature-icon {
    width: 55px;
    height: 55px;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .feature-number {
    font-size: 2.5rem;
  }

  .feature-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .feature-text {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .features-header {
    margin-bottom: 2rem;
  }

  .features-subtitle {
    font-size: 0.85rem;
    padding: 0.4rem 1.25rem;
  }

  .feature-card {
    padding: 1.5rem 1.25rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .feature-number {
    font-size: 2rem;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-text {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .feature-shape {
    width: 6rem;
    height: 6rem;
  }
}

.pricing-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(88, 117, 44, 0.02) 0%, rgba(194, 218, 158, 0.02) 100%);
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2358732c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.pricing-subtitle {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--gradient);
  color: white;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.pricing-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
}

.pricing-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.pricing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.pricing-card:hover .pricing-image img {
  transform: scale(1.1);
}

.pricing-content {
  padding: 2rem;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.pricing-card.popular .pricing-badge {
  background: var(--primary);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}

.pricing-price {
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  font-family: 'BioRhyme', serif;
}

.pricing-price .period {
  font-size: 1rem;
  color: var(--secondary);
  margin-left: 0.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--secondary);
  font-size: 0.95rem;
}

.pricing-features li i {
  color: var(--primary);
  font-size: 1rem;
}

.pricing-button {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition-smooth);
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  box-shadow: var(--shadow);
}

.pricing-button i {
  transition: transform 0.3s ease;
}

.pricing-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-hover);
  color: white;
}

.pricing-button:hover i {
  transform: translateX(5px);
}

@media (max-width: 991.98px) {
  .pricing-header {
    margin-bottom: 3rem;
  }

  .pricing-content {
    padding: 1.5rem;
  }

  .pricing-image {
    height: 180px;
  }

  .pricing-title {
    font-size: 1.25rem;
  }

  .pricing-price .amount {
    font-size: 2.5rem;
  }

  .pricing-features li {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .pricing-header {
    margin-bottom: 2rem;
  }

  .pricing-subtitle {
    font-size: 0.85rem;
    padding: 0.4rem 1.25rem;
  }

  .pricing-content {
    padding: 1.25rem;
  }

  .pricing-image {
    height: 160px;
  }

  .pricing-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }

  .pricing-title {
    font-size: 1.1rem;
  }

  .pricing-price .amount {
    font-size: 2rem;
  }

  .pricing-features li {
    font-size: 0.85rem;
  }

  .pricing-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(88, 117, 44, 0.02) 0%, rgba(194, 218, 158, 0.02) 100%);
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2358732c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.contact-form {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.contact-form:hover {
  box-shadow: var(--shadow-xl);
}

.contact-form:hover::before {
  transform: scaleX(1);
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.contact-info {
  background: var(--gradient);
  padding: 2rem;
  border-radius: var(--border-radius);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-info-item:hover .contact-info-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.contact-info-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-content p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.contact-form-content {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-col {
  flex: 1;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.floating-label {
  position: relative;
}

.floating-label label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--secondary);
  transition: all 0.3s ease;
  pointer-events: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-label label i {
  color: var(--primary);
  font-size: 1.1rem;
}

.floating-label .form-control:focus + label,
.floating-label .form-control:not(:placeholder-shown) + label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.85rem;
  background: white;
  padding: 0 0.25rem;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  transition: var(--transition-base);
  font-size: 1rem;
  background: var(--light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(88, 117, 44, 0.1);
  background: white;
}

.message-field textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow);
}

.btn-submit span {
  position: relative;
  z-index: 1;
}

.btn-submit i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hover);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn-submit:hover::before {
  transform: translateX(0);
}

.btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 991.98px) {
  .contact-form {
    padding: 2rem;
  }

  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    padding: 1.5rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-col {
    width: 100%;
  }

  .form-group {
    margin-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  .contact-form {
    padding: 1.5rem;
  }

  .contact-info {
    padding: 1.25rem;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .contact-info-content h4 {
    font-size: 1rem;
  }

  .contact-info-content p {
    font-size: 0.9rem;
  }

  .form-control {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }

  .btn-submit {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

footer {
  background: var(--color9);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 2rem;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.1;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-brand-wrapper {
  margin-bottom: 2rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: var(--transition-base);
}

.footer-brand:hover {
  color: var(--color3);
  transform: translateY(-2px);
}

.footer-logo {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.footer-brand:hover .footer-logo {
  transform: scale(1.1);
}

.footer-description {
  color: var(--color3);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 2rem;
}

.footer-contact {
  margin-bottom: 2rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-base);
}

.footer-contact-item:hover {
  transform: translateX(5px);
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.footer-contact-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-label {
  color: var(--color3);
  font-size: 0.9rem;
}

.footer-contact-value {
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition-base);
}

.footer-contact-value:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition-base);
}

.footer-social-link:hover {
  transform: translateY(-3px);
}

.footer-social-link:hover::before {
  opacity: 1;
}

.footer-social-link i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.footer-social-link:hover i {
  transform: scale(1.2);
}

.footer-links-title {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  font-family: 'BioRhyme', serif;
}

.footer-links-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  display: block;
  color: var(--color3);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: var(--transition-base);
  font-size: 1.1rem;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: var(--transition-base);
}

.footer-link:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-link:hover::before {
  opacity: 1;
}

.footer-newsletter-text {
  color: var(--color3);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.footer-newsletter-form .input-group {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-base);
}

.footer-newsletter-form .input-group:focus-within {
  background: rgba(255, 255, 255, 0.15);
}

.footer-newsletter-form .form-control {
  background: transparent;
  border: none;
  color: var(--white);
  padding: 1rem 1.25rem;
  font-size: 1rem;
}

.footer-newsletter-form .form-control::placeholder {
  color: var(--color3);
}

.footer-newsletter-form .form-control:focus {
  box-shadow: none;
}

.btn-newsletter {
  background: var(--gradient);
  color: var(--white);
  border: none;
  padding: 0 1.5rem;
  transition: var(--transition-base);
}

.btn-newsletter:hover {
  background: var(--gradient-hover);
}

.btn-newsletter i {
  transition: transform 0.3s ease;
}

.btn-newsletter:hover i {
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: var(--color3);
  font-size: 1rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer-bottom-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color3);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-base);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
}

.footer-bottom-link i {
  font-size: 1.1rem;
  color: var(--primary);
  transition: var(--transition-base);
}

.footer-bottom-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer-bottom-link:hover i {
  transform: scale(1.1);
}

@media (max-width: 991.98px) {
  footer {
    padding: 4rem 0 2rem;
  }

  .footer-content {
    text-align: center;
  }

  .footer-brand {
    font-size: 1.5rem;
    justify-content: center;
  }

  .footer-logo {
    height: 35px;
  }

  .footer-description {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact-item {
    margin-bottom: 1rem;
    justify-content: center;
  }

  .footer-contact-content {
    align-items: center;
  }

  .footer-contact-value {
    font-size: 1rem;
  }

  .footer-links-title {
    font-size: 1.2rem;
    text-align: center;
  }

  .footer-links-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-link {
    font-size: 1rem;
    text-align: center;
    padding-left: 0;
  }

  .footer-link::before {
    display: none;
  }
}

@media (max-width: 767.98px) {
  footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-content .row {
    justify-content: center;
  }

  .footer-content [class*='col-'] {
    text-align: center;
    margin-bottom: 2rem;
  }

  .footer-content [class*='col-']:last-child {
    margin-bottom: 0;
  }

  .footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
  }

  .footer-copyright {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-bottom-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.875rem;
  }
}

@media (max-width: 575.98px) {
  .footer-content [class*='col-'] {
    margin-bottom: 1.5rem;
  }

  .footer-brand {
    font-size: 1.25rem;
  }

  .footer-logo {
    height: 30px;
  }

  .footer-description {
    font-size: 0.95rem;
  }

  .footer-contact-item i {
    font-size: 1.1rem;
  }

  .footer-contact-value {
    font-size: 0.95rem;
  }

  .footer-links-title {
    font-size: 1.1rem;
  }

  .footer-link {
    font-size: 0.95rem;
    padding: 0.4rem 0;
  }

  .footer-bottom-link {
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
  }

  .footer-bottom-link i {
    font-size: 1rem;
  }
}

.bg-color5 {
  background: var(--color5) !important;
}

.bg-color6 {
  background: var(--color6) !important;
}

.bg-color7 {
  background: var(--color7) !important;
}

.bg-color8 {
  background: var(--color8) !important;
}

.bg-color9 {
  background: var(--color9) !important;
}

.bg-color10 {
  background: var(--color10) !important;
}

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

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

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

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

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

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

.carousel-indicators {
  list-style: none;
}

a[class*='bg-color'],
button[class*='bg-color'] {
  transition: 0.3s;
}

a[class*='bg-color']:hover,
button[class*='bg-color']:hover {
  opacity: 0.8;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(88, 117, 44, 0.03) 0%, rgba(194, 218, 158, 0.03) 100%);
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: 2rem;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.1;
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--color3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.about-feature-content p {
  color: var(--secondary);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.about-stat {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
}

.about-stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.about-stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'BioRhyme', serif;
}

.about-stat-text {
  color: var(--secondary);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 991.98px) {
  .about-section {
    padding: 4rem 0;
  }

  .about-content {
    padding: 1rem 0;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .about-feature {
    padding: 1.25rem;
  }

  .about-stat {
    padding: 1.25rem;
  }

  .about-stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .about-section {
    padding: 3rem 0;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-feature-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .about-stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .about-feature-content h4 {
    font-size: 1rem;
  }

  .about-feature-content p {
    font-size: 0.9rem;
  }
}
