/* Main styles for JOOP website */

:root {
  --primary-color: #2563eb; /* Blue */
  --primary-dark: #1e40af;
  --primary-light: #dbeafe;
  --secondary-color: #64748b; /* Grey */
  --secondary-light: #f1f5f9;
  --dark-color: #0f172a;
  --light-color: #ffffff;
  --success-color: #10b981;
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
}

/* Base Styles */
body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* Navigation */
.navbar {
  background-color: var(--primary-color);
  padding: 1rem 0;
}

.navbar.sticky-top {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1030;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: white;
}

/* Language Selector */
.language-selector .nav-link {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.language-selector .nav-link:hover {
  color: white;
}

.language-selector .dropdown-menu {
  min-width: 120px;
  padding: 0.5rem 0;
}

.language-selector .dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.language-selector .dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

.language-selector .dropdown-item.active {
  background-color: var(--primary-color);
  color: white;
}

/* Hero Section */
.hero {
  background-color: var(--secondary-light);
  padding: 5rem 0;
}

.hero h1 {
  color: var(--dark-color);
}

.image-placeholder {
  background-color: #e0e0e0;
  border-radius: 8px;
  height: 300px;
  width: 100%;
}

/* Services Section */
.services {
  padding: 5rem 0;
}

.service-card {
  padding: 2rem;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-box i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* Case Studies */
.case-studies {
  background-color: var(--secondary-light);
  padding: 5rem 0;
}

.case-card {
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Stats Section */
.stats {
  padding: 5rem 0;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.stat-card h3 {
  margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
  background-color: var(--secondary-light);
  padding: 5rem 0;
}

.testimonial-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 30px;
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: white transparent;
}

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  color: white;
  padding: 5rem 0;
}

.cta h2,
.cta p {
  color: white;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 3rem 0;
}

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

.footer a {
  color: rgba(255, 255, 255, 0.75);
}

.footer a:hover {
  color: white;
}

.social-icons a {
  margin-right: 1rem;
  font-size: 1.25rem;
}

/* Page Header */
.page-header {
  padding: 5rem 0;
  background-color: var(--secondary-light);
}

/* Services Page */
.service-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-title {
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
}

.process-timeline {
  position: relative;
  margin: 2rem 0;
}

.process-timeline:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 4px;
  background-color: var(--primary-light);
  left: 20px;
  top: 0;
}

.process-step {
  margin-bottom: 3rem;
  position: relative;
  padding-left: 60px;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 1;
}

.step-content {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Pricing Cards */
.pricing-card {
  border: none;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-header {
  background-color: var(--primary-light);
  padding: 2rem;
  text-align: center;
}

.pricing-body {
  padding: 2rem;
}

.pricing-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  margin-bottom: 0.75rem;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0;
  color: var(--primary-color);
}

.custom-package {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--primary-light);
  border-radius: 8px;
}

/* Case Studies Page */
.case-filters {
  margin-bottom: 2rem;
}

.case-header {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.case-description {
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.results-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.results-list li {
  margin-bottom: 0.5rem;
}

.client-quote {
  font-style: italic;
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--primary-color);
}

.quote-author {
  font-weight: 500;
  text-align: right;
}

.result-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.result-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.result-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.result-label {
  color: var(--secondary-color);
}

/* Contact Page */
.contact-section {
  padding: 5rem 0;
}

.contact-info {
  background-color: var(--primary-light);
  border-radius: 8px;
  height: 100%;
}

.available-slots {
  margin: 1.5rem 0;
}

.call-back {
  background-color: var(--primary-light);
  padding: 5rem 0;
}

.call-back-form {
  max-width: 600px;
  margin: 0 auto;
}

/* Timestamps */
.timestamp {
  color: var(--secondary-color);
  margin-top: 0.5rem;
}

#contactContainer {
  max-width: 100vw;
  padding-left: calc(var(--bs-gutter-x) * 1) !important;
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-card.featured {
    transform: none;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

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

@media (max-width: 768px) {
  .process-timeline:before {
    left: 19px;
  }

  .hero,
  .services,
  .case-studies,
  .stats,
  .testimonials,
  .cta {
    padding: 3rem 0;
  }
}
