/* Global Styles */
:root {
  --primary-color: #2563eb;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --text-color: #4b5563;
  --heading-color: #1f2937;
  --light-bg: #f9fafb;
  --dark-bg: #111827;
  --light-card: #ffffff;
  --dark-card: #1e293b;
  --border-radius: 12px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--light-bg);
  transition: var(--transition);
}

.dark-theme {
  --text-color: #e5e7eb;
  --heading-color: #f9fafb;
  background-color: var(--dark-bg);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: #1d4ed8;
}

ul {
  list-style: none;
}

section {
  padding: 80px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #059669;
  color: white;
}

/* Header Styles */
header {
  padding: 20px 0;
  background-color: var(--light-card);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.dark-theme header {
  background-color: var(--dark-card);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.logo.large {
  width: 100px;
  height: 100px;
  font-size: 2.5rem;
}

.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--heading-color);
}

.tagline {
  font-size: 0.8rem;
  color: var(--text-color);
}

nav ul {
  display: flex;
  gap: 20px;
}

nav a {
  color: var(--text-color);
  font-weight: 500;
}

nav a.active {
  color: var(--primary-color);
  font-weight: 600;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
}

/* Hero Section */
.inner-page-hero {
  background: linear-gradient(135deg, var(--primary-color), #3b82f6);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.inner-page-hero h1, 
.inner-page-hero p {
  color: white;
}

.inner-page-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background-color: var(--light-bg);
}

.dark-theme .about-section {
  background-color: var(--dark-bg);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title p {
  color: var(--primary-color);
  font-weight: 500;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  background-color: #e5e7eb;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark-theme .image-placeholder {
  background-color: #374151;
}

.about-text h3 {
  margin-top: 20px;
}

.about-text ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 1rem;
}

.about-text li {
  margin-bottom: 0.5rem;
}

/* Team Section */
.team-section {
  background-color: var(--light-card);
}

.dark-theme .team-section {
  background-color: var(--dark-card);
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
  padding: 30px;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.dark-theme .team-member {
  background-color: #1f2937;
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image {
  font-size: 4rem;
  margin-bottom: 15px;
}

.member-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

/* Values Section */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  text-align: center;
  padding: 30px;
  background-color: var(--light-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.dark-theme .value-item {
  background-color: var(--dark-card);
}

.value-item:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-color), #34d399);
  color: white;
  text-align: center;
}

.cta-content h2,
.cta-content p {
  color: white;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: #e5e7eb;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info p {
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: white;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #e5e7eb;
}

.footer-links a:hover {
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  background-color: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.details {
  display: flex;
  flex-direction: column;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #374151;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .logo.large {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }
  
  .header-content {
    flex-direction: column;
    gap: 15px;
  }
  
  nav ul {
    justify-content: center;
  }
  
  section {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .team-member, 
  .value-item {
    padding: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo, 
  .social-links {
    justify-content: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 20px;
  }
}