.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  padding: 160px 0 80px;
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(217, 154, 41, 0.1) 0%, transparent 50%);
}
.page-hero-content {
  position: relative;
  text-align: center;
}
.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.breadcrumb {
  justify-content: center;
  margin-bottom: 0;
}
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb-item a:hover {
  color: var(--gold);
}
.breadcrumb-item.active {
  color: var(--gold);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}
.about-image-wrapper {
  position: relative;
}
.about-image img {
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.exp-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: white;
}
.exp-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}
.about-text {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.9;
}
.vision-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}
.vision-card:hover {
  transform: translateY(-5px);
}
.vision-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 24px;
}
.vision-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.vision-card p {
  color: var(--text-muted);
  margin: 0;
}
.achievement-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.achievement-card:hover {
  transform: translateY(-5px);
}
.achievement-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(217, 154, 41, 0.1), rgba(217, 154, 41, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.achievement-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}
.achievement-label {
  color: var(--text-muted);
  font-weight: 500;
}
.value-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.value-card:hover {
  transform: translateY(-5px);
}
.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}
.value-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.value-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}
.partners-slider {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.partner-item {
  opacity: 0.5;
  transition: var(--transition);
}
.partner-item:hover {
  opacity: 1;
}
.partner-logo {
  width: 120px;
  height: 60px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
}
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}
.cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(217, 154, 41, 0.2) 0%, transparent 50%);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-main {
  background: var(--dark);
  color: white;
  padding: 80px 0 0;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}
.footer-logo .brand-icon {
  color: var(--gold);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}
.footer-brand .social-links {
  display: flex;
  gap: 12px;
}
.footer-brand .social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}
.footer-brand .social-links a:hover {
  background: var(--gold);
}
.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 12px;
}
.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.footer-links ul li a:hover {
  color: var(--gold);
  padding-right: 8px;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact ul li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact ul li i {
  color: var(--gold);
  font-size: 1.1rem;
}
.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}
@media (max-width: 991px) {
  .section-title {
    font-size: 2rem;
  }
  .navbar-collapse {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 16px;
    box-shadow: var(--shadow);
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
}
