/* Main styles for zojo1xo-cuvoca.sbs */

/* Global Styles */
:root {
  --primary-color: #0d6efd;
  --primary-dark: #0a58ca;
  --secondary-color: #6c757d;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --success-color: #198754;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --border-radius: 0.25rem;
  --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --transition: all 0.3s ease-in-out;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

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

/* Header and Navigation */
#header {
  transition: var(--transition);
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

.nav-link {
  font-weight: 500;
}

/* Hero Section */
.hero-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-decorative-shape {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  transform: skewY(-3deg);
  z-index: -1;
}

/* Feature Cards */
.feature-card {
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

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

.feature-card i {
  color: var(--primary-color);
}

/* Service Cards */
.service-card {
  transition: var(--transition);
  border: none;
  box-shadow: var(--shadow);
  height: 100%;
}

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

.service-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

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

.service-card ul {
  padding-left: 1.2rem;
  margin-top: 1rem;
  list-style-type: disc;
}

/* Feature Items */
.feature-item {
  margin-bottom: 1.5rem;
}

.feature-icon {
  color: var(--primary-color);
}

/* Pricing Cards */
.pricing-card {
  transition: var(--transition);
  border: none;
  box-shadow: var(--shadow);
}

.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);
  position: relative;
  overflow: hidden;
}

.price-display {
  margin: 1.5rem 0;
}

.price-display .display-4 {
  font-weight: bold;
  color: var(--primary-color);
}

.price-display small {
  color: var(--secondary-color);
}

/* Team Members */
.team-member {
  margin-bottom: 1.5rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: var(--shadow);
}

.social-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--light-color);
  color: var(--dark-color);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Review Cards */
.review-card {
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.stars {
  color: #ffc107;
}

/* Case Study Cards */
.case-study-card {
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

/* Process Steps */
.process-step {
  position: relative;
  padding: 1.5rem;
}

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

/* Timeline Items */
.timeline-item {
  position: relative;
  padding: 1.5rem;
}

.timeline-year {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 2rem;
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  border-radius: var(--border-radius);
  margin: 0 auto 1rem;
}

/* Career Cards */
.career-card {
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

/* Info Cards */
.info-card {
  padding: 1.5rem;
  transition: var(--transition);
}

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

.info-card i {
  color: var(--primary-color);
}

/* FAQ Cards */
.faq-card {
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.faq-card .card-title {
  color: var(--primary-color);
  font-weight: bold;
}

/* Gallery */
#gallery img {
  transition: var(--transition);
  border-radius: var(--border-radius);
}

#gallery img:hover {
  transform: scale(1.05);
}

/* Contact Form */
.contact-info {
  background-color: var(--light-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

.contact-item i {
  color: var(--primary-color);
}

/* Footer */
#footer {
  background-color: #1a1a1a;
  color: #ffffff;
}

#footer h5, #footer h6 {
  color: #ffffff;
  margin-bottom: 1rem;
}

#footer p {
  color: #f0f0f0;
}

#footer .text-muted {
  color: #e0e0e0 !important;
}

#footer a.text-light {
  color: #93c5fd !important;
  text-decoration: underline;
}

#footer a.text-light:hover {
  color: #dbeafe !important;
}

#footer hr {
  background-color: rgba(255, 255, 255, 0.1);
}

#footer small {
  color: #e0e0e0;
}

/* Contact Form */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Accessibility Focus Styles */
a:focus, button:focus, input:focus, textarea:focus, .btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (forced-colors: active) {
  * {
    forced-color-adjust: none;
  }
  
  a, button, .btn {
    color: LinkText !important;
  }
  
  a:hover, button:hover, .btn:hover {
    color: ActiveText !important;
  }
}

/* Form Validation Styles */
.form-control.is-invalid {
  border-color: var(--danger-color);
}

.invalid-feedback {
  color: var(--danger-color);
}
