/* Bootstrap 5 CSS */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');

/* FontAwesome Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* Lightbox2 CSS */
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

/* Sal.js CSS for animations */
@import url('https://cdn.jsdelivr.net/npm/sal.js@0.8.5/dist/sal.css');

/* CSS Variables for Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-sage: #c4db9e;
  --primary-lavender: #d0bacf;
  --primary-peach: #f9a48f;
  --primary-mint: #bff6d6;
  --primary-sky: #93dae5;
  
  /* Light shades */
  --light-sage: #cadebf;
  --light-lavender: #e9dae7;
  --light-peach: #ffbeb6;
  --light-mint: #b4e1c7;
  --light-sky: #c1dcf2;
  
  /* Dark shades */
  --dark-sage: #738062;
  --dark-lavender: #90748e;
  --dark-peach: #cf9374;
  --dark-mint: #82bda0;
  --dark-sky: #64a7d3;
  
  /* Text colors */
  --text-primary: #223347;
  --text-secondary: #6e7e90;
  --text-light: #94a5b7;
}

/* Prefers-reduced-motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Base typography - conservative font sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
}

/* Header navigation styling with smaller font sizes */
.navbar {
  padding: 0.5rem 1rem;
}

.navbar-brand {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--primary-sage);
}

.navbar .nav-link {
  font-size: 10px !important;
  padding: 0.4rem 0.5rem !important;
  color: var(--text-primary);
}

h1 {
  font-size: 2.28rem;
  color: var(--text-primary);
  font-weight: 600;
}

h2 {
  font-size: 1.83rem;
  color: var(--primary-sage);
  font-weight: 500;
}

h3 {
  font-size: 1.61rem;
  color: var(--text-primary);
  font-weight: 500;
}

h4 {
  font-size: 1.38rem;
  color: var(--primary-lavender);
  font-weight: 500;
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Conservative navbar brand size */
/* .navbar-brand {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-sage);
} */

/* Navbar links */
/* .nav-link {
    font-size: 0.9rem;
} */

/* Hero Section - Fullscreen */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-mint) 0%, var(--light-sky) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-decorative-shape {
  position: absolute;
  background: var(--primary-peach);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -100px;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: -50px;
  background: var(--primary-lavender);
}

/* Section spacing */
.section-padding {
  padding: 4rem 0;
}

/* Section titles and subtitles */
.section-title {
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-lavender);
  margin-bottom: 2rem;
}

.section-desc {
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

/* Services Cards */
.services-card {
  border: none;
  border-radius: 18px;
  box-shadow: 0 7px 110px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  background: white;
}

.services-card:hover {
  transform: translateY(-9px);
}

.services-card .card-img-top {
  border-radius: 15px 15px 0 0;
  height: 200px;
  object-fit: cover;
}

.services-price {
  color: var(--primary-sage);
  font-size: 1.84rem;
  font-weight: 600;
}

/* Features Cards */
.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 6px 10px rgba(0,0,0,0.1);
  height: 100%;
  text-align: center;
}

.feature-icon {
  color: var(--primary-mint);
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  border: 7px solid var(--light-sage);
  border-radius: 15px;
  text-align: center;
  height: 100%;
  background: white;
}

.price-card.featured {
  border-color: var(--primary-sage);
  transform: scale(1.05);
}

.price-amount {
  color: var(--primary-sage);
  font-size: 2.59rem;
  font-weight: 700;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Reviews/Testimonials - Static Cards Only */
.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  height: 100%;
  border-left: 6px solid var(--primary-mint);
}

.review-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.review-author {
  color: var(--primary-sage);
  font-weight: 600;
}

/* Case Study Cards */
.casestudy-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  background: var(--primary-peach);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.64rem;
  font-weight: 600;
}

/* Timeline */
.timeline-item {
  border-left: 4px solid var(--primary-sage);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 15px;
  height: 15px;
  background: var(--primary-sage);
  border-radius: 50%;
  position: absolute;
  left: -9px;
  top: 0;
}

/* Career Cards */
.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  height: 100%;
  border-top: 4px solid var(--primary-lavender);
}

/* Core Info Cards */
.coreinfo-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 7px 10px rgba(0,0,0,0.1);
  height: 100%;
  text-align: center;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--light-sage);
  padding: 12px 15px;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(163, 199, 130, 0.25);
}

.btn-primary {
  background: var(--primary-sage);
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--dark-sage);
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  height: 100%;
}

.blog-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* FAQ Static Cards - NO Accordion */
.faq-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border-left: 4px solid var(--primary-sky);
}

.faq-question {
  color: var(--primary-sage);
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--text-secondary);
}

/* Gallery */
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-mint);
}

.footer a {
  color: var(--light-mint);
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-mint);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  height: 20px;
  width: auto;
}

/* Utility Classes */
.text-primary-sage { color: var(--primary-sage); }
.text-primary-lavender { color: var(--primary-lavender); }
.text-primary-peach { color: var(--primary-peach); }
.text-primary-mint { color: var(--primary-mint); }
.text-primary-sky { color: var(--primary-sky); }

.bg-light-sage { background-color: var(--light-sage); }
.bg-light-lavender { background-color: var(--light-lavender); }
.bg-light-peach { background-color: var(--light-peach); }
.bg-light-mint { background-color: var(--light-mint); }
.bg-light-sky { background-color: var(--light-sky); }

/* Missing JavaScript Referenced Classes */

/* Navbar Scroll Effect */
.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.navbar-scrolled .navbar-brand {
  font-size: 0.9rem !important;
  color: var(--primary-sage) !important;
}

.navbar-scrolled .nav-link {
  font-size: 10px !important;
  color: var(--text-primary) !important;
  padding: 0.3rem 0.4rem !important;
}

/* Fade-in Animation for Lazy Loading */
.fade-in {
  opacity: 1;
  transition: opacity 0.3s ease-in;
}

.lozad {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

/* Badge Styling for Pricing Cards */
.badge {
  background: var(--primary-sage) !important;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Back to Top Button */
#b39acbk-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: none;
  background: var(--primary-sage);
  border: none;
  color: white;
  font-size: 1.26rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

#c4bcd4k-to-top:hover {
  background: var(--dark-sage);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Improved Select Form Control */
select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  appearance: none;
}

/* Loading Animation for Nanobar */
.nanobar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10000;
}

.nanobar .bar {
  background: var(--primary-sage);
  height: 100%;
  transition: width 0.3s ease;
}

/* Improved Team Grid Layout */
.team-member-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Animation Classes */
.animate {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Form Validation Styles */
.is-invalid {
  border-color: #d0233c !important;
}

.invalid-feedback {
  color: #db4b48;
  font-size: 0.94rem;
  margin-top: 0.39rem;
}

.is-valid {
  border-color: #30a75b !important;
} 

.hero-section h1 {
    padding-top: 100px;
}


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
