/* Mulenco Engineering LLC - Design Matching CSS */

:root {
  --primary-green: #16a34a;
  --dark-green: #065f46;
  --light-green: #ecfdf5;
  --white: #ffffff;
  --dark-gray: #374151;
  --medium-gray: #6b7280;
  --light-gray: #f3f4f6;
  --border-gray: #e5e7eb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

.logo-img {
  width: 180px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  display: none;
}

.logo-main {
  display: none;
}

.logo-sub {
  display: none;
}

.navlinks {
  display: flex;
  gap: 30px;
  align-items: center;
}

.navlinks a {
  text-decoration: none;
  color: var(--medium-gray);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
}

.navlinks a:hover,
.navlinks a.active {
  color: var(--dark-gray);
  background: var(--light-green);
}

.header-icon {
  display: none;
}

.icon-plus {
  display: none;
}

#menuBtn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  color: var(--medium-gray);
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  position: relative;
}

#menuBtn:hover {
  background: var(--light-green);
  color: var(--dark-gray);
}

#menuBtn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

/* Hero Section */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.slider {
  position: relative;
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 900ms ease;
}

.slide.active {
  opacity: 1;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2) 40%, rgba(255,255,255,0.1));
}

.slider-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
}

.slider-controls button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--dark-gray);
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.slider-controls button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots button.active {
  background: white;
  border-color: white;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-text-box {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 20px;
  max-width: 600px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hero-text-box .kicker {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  display: block;
}

.hero-text-box h1 {
  color: var(--dark-gray);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text-box p {
  color: var(--medium-gray);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}

/* Welcome Section */
.welcome-section {
  padding: 80px 0;
  text-align: center;
}

.welcome-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.welcome-content h2 {
  font-size: 36px;
  font-weight: 400;
  color: var(--dark-gray);
}

.highlight {
  color: var(--primary-green);
  font-weight: 700;
}

.contact-btn {
  background: var(--primary-green);
  color: var(--white);
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background: var(--dark-green);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: var(--light-gray);
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  margin-bottom: 20px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-circle svg {
  color: var(--white);
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.feature-item p {
  color: var(--medium-gray);
  font-size: 14px;
  line-height: 1.5;
}

/* Services Section */
.services-section {
  padding: 80px 0;
}

.services-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.service-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(22, 163, 74, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-item:hover .service-overlay {
  opacity: 1;
}

.service-plus {
  color: var(--white);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}

/* Clients Section */
.clients-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.clients-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 50px;
}

.clients-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  padding: 20px 0;
  width: 100%;
  position: relative;
}

.clients-carousel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--light-gray) 0%, transparent 10%, transparent 90%, var(--light-gray) 100%);
  pointer-events: none;
  z-index: 1;
}

.client-item {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  padding: 15px;
  min-width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: scroll 20s linear infinite;
}

.client-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.client-item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-item:hover img {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.carousel-controls {
  display: none;
}

.carousel-btn {
  display: none;
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--medium-gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.contact-info p {
  color: var(--medium-gray);
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-icon {
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid #4b5563;
  padding-top: 20px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--medium-gray);
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 30px;
  height: 30px;
  background: #4b5563;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-green);
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--primary-green);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: var(--white);
}

.testimonials-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-item {
  background: var(--light-gray);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonial-content {
  margin-bottom: 30px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid var(--border-gray);
  padding-top: 20px;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 5px;
}

.author-info span {
  font-size: 14px;
  color: var(--medium-gray);
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.newsletter-content p {
  font-size: 16px;
  color: var(--medium-gray);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: var(--primary-green);
}

.newsletter-form button {
  background: var(--primary-green);
  color: var(--white);
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--dark-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .logo-img {
    width: 140px;
    height: 35px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Card tablet adjustments */
  .card {
    padding: 25px;
  }
  
  .card h3 {
    font-size: 22px;
  }
  
  .card .muted {
    font-size: 15px;
  }
  
  .welcome-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .logo-img {
    width: 120px;
    height: 30px;
  }
  
  .navlinks {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-gray);
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    display: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .navlinks.open {
    display: flex;
  }
  
  .navlinks a {
    padding: 12px 16px;
    width: 100%;
    text-align: center;
    border-radius: 8px;
  }
  
  #menuBtn {
    display: block;
  }
  
  /* Hide slider controls on mobile */
  .slider-controls {
    display: none;
  }
  
  .slider-dots {
    display: none;
  }
  
  /* Center hero content on mobile */
  .hero-content {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
  }
  
  .hero-text-box {
    padding: 40px 30px;
    max-width: 100%;
    text-align: center;
  }
  
  .hero-text-box h1 {
    font-size: 28px;
  }
  
  .hero-text-box p {
    font-size: 16px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .clients-carousel {
    gap: 15px;
    padding: 15px 0;
  }
  
  .client-item {
    min-width: 120px;
    height: 80px;
    padding: 10px;
  }
  
  .client-item img {
    max-height: 60px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  /* Grid responsive adjustments */
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  /* Team page mobile adjustments */
  .team-list {
    margin-bottom: 15px;
  }
  
  .team-item {
    margin-bottom: 12px;
    padding: 15px;
    gap: 12px;
  }
  
  .avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .team-item strong {
    font-size: 14px;
  }
  
  .team-item .muted {
    font-size: 12px;
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-2-4 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 15px;
  }
  
  /* Card mobile adjustments */
  .card {
    padding: 15px;
    min-height: auto;
  }
  
  .card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  
  .card .muted {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  
  .chips {
    gap: 4px;
  }
  
  .chip {
    font-size: 10px;
    padding: 3px 6px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .welcome-content h2 {
    font-size: 28px;
  }
  
  .features-section,
  .services-section,
  .clients-section,
  .stats-section,
  .testimonials-section,
  .newsletter-section {
    padding: 60px 0;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .newsletter-content h2 {
    font-size: 28px;
  }
  
  .clients-carousel {
    gap: 10px;
    padding: 10px 0;
  }
  
  .client-item {
    min-width: 100px;
    height: 70px;
    padding: 8px;
  }
  
  .client-item img {
    max-height: 50px;
  }
  
  /* Grid responsive adjustments for small screens */
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .grid-2-4 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  /* Team page 480px adjustments */
  .team-item {
    padding: 12px;
    gap: 10px;
  }
  
  .avatar {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  
  .team-item strong {
    font-size: 13px;
  }
  
  .team-item .muted {
    font-size: 11px;
  }
  
  /* Card adjustments for small screens */
  .card {
    padding: 12px;
    margin-bottom: 0;
    min-height: auto;
  }
  
  .card h3 {
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.1;
  }
  
  .card .muted {
    font-size: 11px;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  
  .chips {
    gap: 3px;
  }
  
  .chip {
    font-size: 9px;
    padding: 2px 4px;
  }
  
  /* Section padding adjustments */
  .section {
    padding: 40px 0;
  }
  
  .team-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
  }
}

/* Extra small mobile screens */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }
  
  .grid-2-4 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  /* Team page extra small mobile adjustments */
  .team-list {
    margin-bottom: 10px;
  }
  
  .team-item {
    margin-bottom: 8px;
    padding: 10px;
    gap: 8px;
  }
  
  .avatar {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
  
  .team-item strong {
    font-size: 12px;
  }
  
  .team-item .muted {
    font-size: 10px;
  }
  
  .card {
    padding: 10px;
    margin-bottom: 0;
    min-height: auto;
  }
  
  .card h3 {
    font-size: 13px;
    margin-bottom: 5px;
    line-height: 1.1;
  }
  
  .card .muted {
    font-size: 10px;
    line-height: 1.2;
    margin-bottom: 6px;
  }
  
  .chip {
    font-size: 8px;
    padding: 2px 3px;
  }
  
  .team-image {
    width: 70px;
    height: 70px;
    margin: 0 auto 8px;
  }
}

/* Page-specific styles */
.section {
  padding: 80px 0;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-2-4 {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.card .muted {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  padding: 6px 12px;
  background: var(--light-green);
  color: var(--dark-green);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.kicker {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: block;
}

.shell {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 600px;
}

.shell h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.shell p {
  color: var(--medium-gray);
  line-height: 1.6;
  font-size: 16px;
}

/* Team page specific */
.team-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.team-item strong {
  color: var(--dark-gray);
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

.team-item .muted {
  color: var(--medium-gray);
  font-size: 14px;
}

/* Contact form */
.input, textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
  margin-bottom: 15px;
}

.input:focus, textarea:focus {
  border-color: var(--primary-green);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.btn {
  background: var(--primary-green);
  color: var(--white);
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background: var(--dark-green);
}

.spaced > * + * {
  margin-top: 15px;
}

.hr {
  height: 1px;
  background: var(--border-gray);
  margin: 30px 0;
}

code {
  background: var(--light-gray);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: var(--dark-gray);
}

/* Team Member Styles */
.team-member {
  text-align: center;
}

.team-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .team-photo {
  transform: scale(1.05);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: var(--medium-gray);
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--dark-gray);
}

.modal-body {
  padding: 40px;
}

.modal-body h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.modal-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--medium-gray);
  margin-bottom: 30px;
}

.modal-features {
  margin-bottom: 30px;
}

.modal-features h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.modal-features ul {
  list-style: none;
  padding: 0;
}

.modal-features li {
  padding: 8px 0;
  color: var(--medium-gray);
  position: relative;
  padding-left: 25px;
}

.modal-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

.modal-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.modal-actions .btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
}
