/* Remote Workshop Facilitation Toolkit - Main CSS */

/* Color Palette - 5 Primary Colors + Shades */
:root {
  --primary-blue: #6d80f4;
  --primary-blue-light: #b8bff7;
  --primary-blue-dark: #2c30dd;
  
  --primary-green: #1cc199;
  --primary-green-light: #71d3a4;
  --primary-green-dark: #008e4e;
  
  --primary-orange: #e08e15;
  --primary-orange-light: #f7b012;
  --primary-orange-dark: #d37318;
  
  --primary-purple: #9960e0;
  --primary-purple-light: #c6b3ff;
  --primary-purple-dark: #5b21e2;
  
  --primary-pink: #e9518d;
  --primary-pink-light: #e78cc3;
  --primary-pink-dark: #f3357f;
  
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #d7d7d7;
  --neutral-300: #dae5ee;
  --neutral-400: #7d91a6;
  --neutral-500: #737e90;
  --neutral-600: #5b7081;
  --neutral-700: #233543;
  --neutral-800: #131825;
  --neutral-900: #11203f;
}

/* Base Typography - Conservative Font Sizes */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--neutral-700);
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.27rem;
  font-weight: 600;
  color: var(--primary-blue);
}

h1 {
  font-size: 2.58rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.95rem;
}

h3 {
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 0.80rem;
}

p {
  font-size: 1rem;
  color: var(--neutral-600);
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-purple-light));
  display: flex;
  align-items: center;
  position: relative;
}

.hero-decoration {
  position: absolute;
  background: var(--primary-pink-light);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-decoration-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.hero-decoration-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 5%;
}

/* Services Section */
.services-card {
  background: white;
  border-radius: 17px;
  padding: 2rem;
  box-shadow: 0 7px 9px -1px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.services-card .card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.services-price {
  font-size: 1.57rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* About Features */
.about-feature {
  padding: 1.5rem;
  background: var(--neutral-50);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.about-feature i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Features Section */
.features-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 17px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.features-item i {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.priceplan-card {
  background: white;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 7px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
}

.priceplan-card.featured {
  border: 6px solid var(--primary-blue);
}

.priceplan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 1rem 0;
}

.priceplan-features {
  list-style: none;
  padding: 0;
}

.priceplan-features li {
  padding: 0.5rem 0;
  color: var(--neutral-600);
}

.priceplan-features li i {
  color: var(--primary-green);
  margin-right: 0.5rem;
}

/* Team Section */
.team-member {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 13px;
  box-shadow: 0 7px 4px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.reviews-card .card-body {
  position: relative;
}

.reviews-card .card-body::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-blue-light);
  position: absolute;
  top: -20px;
  left: -10px;
}

/* Case Studies */
.casestudy-item {
  background: white;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

/* Process Steps */
.process-item {
  position: relative;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.process-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--primary-purple);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.process-container {
  counter-reset: step-counter;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  margin-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--primary-orange);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: -24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-orange-light);
}

.timeline-item:last-child::after {
  display: none;
}

/* Career Section */
.career-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.career-role {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Core Info */
.coreinfo-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  text-align: center;
}

.coreinfo-item i {
  font-size: 2.56rem;
  color: var(--primary-pink);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-info {
  background: var(--neutral-50);
  border-radius: 12px;
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.95rem;
}

.contact-info-item i {
  font-size: 1.60rem;
  color: var(--primary-blue);
  margin-right: 1rem;
  width: 30px;
}

/* Footer Contact Items */
.contact-footer-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--neutral-300);
}

.contact-footer-item i {
  font-size: 1rem;
  color: var(--primary-blue-light);
  margin-right: 0.5rem;
  margin-top: 0.2rem;
  min-width: 20px;
}

.contact-footer-item span {
  line-height: 1.5;
  word-break: break-word;
}

/* Blog Section */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  height: 200px;
  object-fit: cover;
}

/* FAQ Section */
.faq-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.faq-question {
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--neutral-600);
}

/* Gallery */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--neutral-800);
  color: var(--neutral-300);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1rem;
}

.footer a {
  color: var(--neutral-300);
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-blue-light);
}

/* Utilities */
.section-padding {
  padding: 5rem 0;
}

.text-primary-blue {
  color: var(--primary-blue);
}

.text-primary-green {
  color: var(--primary-green);
}

.text-primary-orange {
  color: var(--primary-orange);
}

.text-primary-purple {
  color: var(--primary-purple);
}

.text-primary-pink {
  color: var(--primary-pink);
}

.bg-light-blue {
  background-color: var(--primary-blue-light);
}

.bg-light-green {
  background-color: var(--primary-green-light);
}

.bg-light-orange {
  background-color: var(--primary-orange-light);
}

.bg-light-purple {
  background-color: var(--primary-purple-light);
}

.bg-light-pink {
  background-color: var(--primary-pink-light);
}

/* Navbar Scroll Effect */
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.navbar-hidden {
  display: none;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.35rem;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top:hover {
  background: var(--primary-blue-dark);
  color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Progress Bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--primary-blue);
  z-index: 9999;
}

/* Mobile Menu Toggle Animation */
.navbar-toggler.active .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 18L18 6M6 6l12 12'/%3e%3c/svg%3e");
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary-blue);
  border-top: 2px solid transparent;
  border-radius: 50%;
}

/* Accessibility Improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--primary-blue);
  color: white;
  text-decoration: none;
  z-index: 10000;
}

/* Focus Styles */
.btn:focus,
.form-control:focus,
.form-check-input:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Error States */
.form-control.is-invalid {
  border-color: #ec5053;
  box-shadow: 0 0 0 0.2rem rgba(204, 57, 52, 0.25);
}

.form-control.is-valid {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(17, 187, 125, 0.25);
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.54rem;
  font-size: 0.90rem;
  color: #eb3841;
}

/* Disable ALL Animations and Transitions */
* {
  animation: none !important;
  transition: none !important;
}

/* Disable hover transform effects specifically but preserve positioning transforms */
.services-card:hover,
.blog-card:hover,
.gallery-item:hover img,
.social-link:hover,
.back-to-top:hover,
.hero-decoration-1,
.hero-decoration-2 {
  transform: none !important;
}

/* Ensure positioning transforms still work */
.timeline-item::before,
.process-item::before {
  animation: none !important;
  transition: none !important;
}

/* Force show all elements with data-sal attributes (in case sal.js fails) */
[data-sal] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Force show all lozad lazy-loaded images */
.lozad {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-decoration-1,
  .hero-decoration-2 {
    animation: none !important;
  }
} 

.hero-section h1 {
    padding-top: 100px;
}


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
