/* Plant Identification Website - Main Styles */

/* Color Variables */
:root {
  --primary-green: #1f4f0f;
  --accent-green: #558b69;
  --earth-brown: #a25e11;
  --natural-beige: #fdffef;
  --forest-dark: #1e5212;
  --light-green: #98bf96;
  --light-brown: #deb281;
  --light-beige: #fefefe;
  --dark-green: #102108;
  --dark-brown: #672c08;
  --font-size-base: 16px;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.8rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--forest-dark);
  background-color: var(--light-beige);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1.17rem;
  color: var(--primary-green);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }

.navbar {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  box-shadow: 0 3px 14px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.54rem !important;
  font-weight: 700;
  color: white !important;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-green) !important;
}

.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: linear-gradient(rgba(29, 60, 18, 0.80), rgba(77, 137, 99, 0.80)), url('../ZOV_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
}

.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 3.13rem; }

.about-section { background-color: var(--natural-beige); }
.services-section { background: linear-gradient(135deg, var(--light-green), var(--natural-beige)); }
.features-section { background-color: white; }
.priceplan-section { background: linear-gradient(135deg, var(--earth-brown), var(--accent-green)); color: white; }
.team-section { background-color: var(--natural-beige); }
.reviews-section { background: linear-gradient(135deg, var(--primary-green), var(--forest-dark)); color: white; }
.casestudy-section { background-color: white; }
.process-section { background: linear-gradient(135deg, var(--light-green), white); }
.timeline-section { background-color: var(--natural-beige); }
.career-section { background-color: white; }
.coreinfo-section { background: linear-gradient(135deg, var(--accent-green), var(--earth-brown)); color: white; }
.contact-section { background-color: var(--natural-beige); }
.blog-section { background-color: white; }
.faq-section { background: linear-gradient(135deg, var(--natural-beige), var(--light-green)); }
.gallery-section { background-color: var(--natural-beige); }

.service-item {
  background: white;
  border-radius: 211px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 2.22rem;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-price {
  font-size: 2.02rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

.feature-item {
  padding: 2rem;
  text-align: center;
}

.feature-item i {
  font-size: 2.60rem;
  color: var(--accent-green);
  margin-bottom: 1.17rem;
}

.priceplan-item {
  background: rgba(255,255,255,0.95);
  color: var(--forest-dark);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 2.22rem;
  transition: transform 0.3s ease;
}

.priceplan-item:hover {
  transform: translateY(-10px);
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  margin-bottom: 2.22rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary-green);
  margin-bottom: 1.17rem;
}

.review-item {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2.22rem;
  backdrop-filter: blur(10px);
}

.casestudy-item {
  background: var(--natural-beige);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2.22rem;
  border-left: 5px solid var(--primary-green);
}

.process-item {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.54rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2.22rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  background: var(--primary-green);
  border-radius: 50%;
}

.career-item {
  background: var(--natural-beige);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2.22rem;
  transition: transform 0.3s ease;
}

.career-item:hover {
  transform: translateY(-5px);
}

.coreinfo-item {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2.22rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-green);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.17rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(46, 73, 14, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--forest-dark), var(--primary-green));
}

.blog-item {
  background: var(--natural-beige);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2.22rem;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-content {
  padding: 2rem;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1.17rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-green);
  color: white;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--forest-dark);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
}

.faq-answer.active {
  display: block;
}

.gallery-item {
  margin-bottom: 2.22rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.footer {
  background: linear-gradient(135deg, var(--forest-dark), var(--primary-green));
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--light-green);
  margin-bottom: 1.17rem;
}

.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--light-green);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2.21rem;
  margin-top: 2.11rem;
  text-align: center;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-pagination-bullet {
  background: var(--primary-green);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-green);
}

.breadcrumb-section {
  background: linear-gradient(135deg, var(--light-green), var(--natural-beige));
  padding: 2rem 0;
}

.breadcrumb-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 5px;
}

#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--natural-beige), var(--light-green));
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
