:root {
  --primary-orange: #ff6b35;
  --dark-navy: #1e3a5f;
  --teal: #26c6da;
  --light-gray-bg: #f5f7fa;
  --text-gray: #6c757d;
  --dark-footer: #2c3e50;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark-navy);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

/* Navbar */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-orange) !important;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: var(--dark-navy);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

.lang-selector {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--primary-orange);
  border-radius: 20px;
  color: var(--primary-orange);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--primary-orange);
  color: white;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #2a4f75 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  top: -200px;
  right: -100px;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.about-hero p {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 700px;
  position: relative;
  z-index: 1;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-navy);
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--primary-orange);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Story Section */
.story-section {
  background: white;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.story-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image img {
  width: 100%;
  height: auto;
}

.story-text {
  flex: 1;
}

.story-text h3 {
  color: var(--dark-navy);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.story-text p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Values Section */
.values-section {
  background: var(--light-gray-bg);
}

.value-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
}

.value-card.teal .value-icon {
  background: linear-gradient(135deg, var(--teal) 0%, #4dd0e1 100%);
}

.value-card h4 {
  color: var(--dark-navy);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  background: white;
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-avatar {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.team-member h5 {
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
  color: white;
  padding: 60px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* CTA Section */
.cta-section {
  background: var(--light-gray-bg);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--dark-navy);
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-primary-custom {
  background: var(--primary-orange);
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  background: #e55a2a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  color: white;
}

/* Footer */
.footer {
  background: var(--dark-footer);
  color: white;
  padding: 60px 0 30px;
}

.footer h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  color: white;
}

@media (max-width: 992px) {
  .story-content {
    flex-direction: column;
    gap: 40px;
  }
}

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

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

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

  .navbar-brand {
    font-size: 1.2rem;
  }
}
