/* Additional styles for za1jovi-jekava.sbs */

/* General section styling */
section {
  padding: 5rem 0;
}

/* Fix for navbar */
.navbar {
  padding: 1rem 0;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: var(--primary-green);
}

/* Fix header padding for fixed navbar */
#header {
  padding-top: 80px;
}

/* Feature items */
.feature-item {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

/* Service cards */
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-card h4 {
  margin-bottom: 1rem;
}

.service-card p {
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
  text-align: left;
}

.service-price {
  font-weight: bold;
  color: var(--primary-green);
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Team member */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-member h5 {
  margin-bottom: 0.25rem;
}

.team-member p {
  color: var(--gray);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Price cards */
.price-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.price-card.featured {
  border: 2px solid var(--primary-green);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.price-card h4 {
  margin-bottom: 1rem;
}

.price-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.price-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
  text-align: left;
}

/* Review cards */
.review-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
}

.review-card:before {
  content: '"';
  font-size: 5rem;
  color: var(--light-green);
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
  opacity: 0.3;
}

.review-card p {
  position: relative;
  z-index: 1;
}

.review-card h6 {
  font-weight: 600;
  margin-top: 1.5rem;
  color: var(--dark-gray);
}

/* Case study cards */
.case-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.case-card h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Process steps */
.process-step {
  text-align: center;
  margin-bottom: 2rem;
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

/* Timeline items */
.timeline-item {
  position: relative;
  padding-left: 30px;
  padding-bottom: 2rem;
  border-left: 2px solid var(--primary-green);
}

.timeline-item:last-child {
  border-left: none;
}

.timeline-item:before {
  content: '';
  width: 16px;
  height: 16px;
  background-color: var(--primary-green);
  border-radius: 50%;
  position: absolute;
  left: -9px;
  top: 5px;
}

/* Career cards */
.career-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Info cards */
.info-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

/* Contact form */
.contact-form {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info {
  background-color: var(--light-green);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

/* FAQ cards */
.faq-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

/* Gallery items */
.gallery-item {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Footer styling */
.footer-section {
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section p {
  color: #f0f0f0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #93c5fd;
  text-decoration: underline;
}

.footer-section ul li a:hover {
  color: #dbeafe;
  text-decoration: underline;
}

#footer small {
  color: #e0e0e0;
}

/* High contrast footer adjustments */
#footer {
  background-color: #1a1a1a;
}

#footer h5 {
  color: #ffffff;
  font-weight: 600;
}

#footer p, #footer small {
  color: #f0f0f0;
}

#footer hr {
  border-color: rgba(255, 255, 255, 0.2);
}

#footer a {
  color: #93c5fd;
  text-decoration: underline;
}

#footer a:hover, #footer a:focus {
  color: #dbeafe;
  text-decoration: underline;
}

#footer a:focus {
  outline: 2px solid #dbeafe;
  outline-offset: 2px;
}

@media (prefers-contrast: more) {
  #footer {
    background-color: #000000;
  }
  
  #footer h5, #footer p, #footer small {
    color: #ffffff;
  }
  
  #footer a {
    color: #6cb2ff;
    text-decoration: underline;
  }
  
  #footer a:hover, #footer a:focus {
    color: #ffffff;
    text-decoration: underline;
  }
}

/* Additional utility styles */
.text-primary {
  color: var(--primary-green) !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}
