/* Import Bootstrap 5 */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/sal.js@0.8.5/dist/sal.css');

/* Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-green: #6bb683;
  --primary-blue: #68b3cd;
  --primary-orange: #dd965d;
  --primary-purple: #9389a7;
  --primary-coral: #e56f48;
  
  --light-green: #9adb9f;
  --light-blue: #b9d5dc;
  --light-orange: #f7ad86;
  --light-purple: #bdb5c5;
  --light-coral: #f49f89;
  
  --dark-green: #487554;
  --dark-blue: #4d7c93;
  --dark-orange: #cb8142;
  --dark-purple: #8b679f;
  --dark-coral: #b55432;
  
  --text-dark: #1b212f;
  --text-light: #627489;
  --bg-light: #f7fafc;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 16px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-green);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

p {
  font-size: 1rem;
  color: var(--text-light);
}

/* Header Styles */
.navbar {
  padding: 1rem 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: var(--light-orange);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(45deg);
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 250px;
}

.hero-image {
  position: relative;
  z-index: 2;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--bg-light);
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
  border: none;
  height: 100%;
  position: relative;
}

.price-card.featured {
  border: 3px solid var(--primary-green);
  transform: scale(1.05);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
}

.price-period {
  color: var(--text-light);
  font-size: 1rem;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 2rem;
  border: none;
  height: 100%;
}

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

/* Review Cards */
.review-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  border: none;
  height: 100%;
}

.review-stars {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* Case Study Cards */
.case-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  border: none;
  height: 100%;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

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

/* Timeline Items */
.timeline-item {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-coral);
  border: none;
}

/* Career Cards */
.career-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  border: none;
  height: 100%;
}

/* Core Info Cards */
.coreinfo-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  border: none;
  height: 100%;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 3rem;
}

.form-control {
  border: 2px solid #c7d2e0;
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(123, 181, 126, 0.25);
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  border-radius: 10px;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: none;
}

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

.faq-answer {
  color: var(--text-light);
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 2rem;
  border: none;
  height: 100%;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

/* Gallery */
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

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

.footer h5 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.footer a {
  color: #dcdcdc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-green);
}

.footer-bottom {
  border-top: 1px solid #61707f;
  padding-top: 2rem;
  margin-top: 2rem;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Utilities */
.text-primary-green {
  color: var(--primary-green);
}

.bg-primary-green {
  background-color: var(--primary-green);
}

.text-primary-blue {
  color: var(--primary-blue);
}

.bg-primary-blue {
  background-color: var(--primary-blue);
}

/* Spacing */
.mb-section {
  margin-bottom: 5rem;
}

.pt-section {
  padding-top: 5rem;
}

.pb-section {
  padding-bottom: 5rem;
} 


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.social-icons-grid {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
