:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-sage: #8FBC8F;
  --primary-concrete: #E0E4E7;
  --primary-earth: #D2B48C;
  --primary-ocean: #87CEEB;
  --primary-charcoal: #2F4F4F;
  
  /* Light & Dark Shades */
  --light-sage: #B8E6B8;
  --dark-sage: #556B55;
  --light-concrete: #F5F7F8;
  --dark-concrete: #B0B4B7;
  --light-earth: #E8D4B0;
  --dark-earth: #A08965;
  --light-ocean: #B8E0F5;
  --dark-ocean: #5A9BC2;
  --light-charcoal: #4A6F6F;
  --dark-charcoal: #1F3A3A;
}

/* Custom Styles - No Bootstrap Overrides */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-concrete) 0%, var(--primary-concrete) 100%);
  display: flex;
  align-items: center;
}

.hero-blob {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-sage);
  border-radius: 50% 40% 60% 30%;
  opacity: 0.1;
  z-index: 1;
}

.hero-blob:nth-child(1) {
  top: 10%;
  right: 15%;
  animation: float 6s ease-in-out infinite;
}

.hero-blob:nth-child(2) {
  bottom: 20%;
  left: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-blob {
    animation: none;
  }
}

.service-card {
  background: var(--light-concrete);
  border: 1px solid var(--primary-concrete);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(47, 79, 79, 0.15);
}

.price-badge {
  background: var(--primary-sage);
  color: var(--dark-charcoal);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
}

.team-member-card {
  background: var(--light-concrete);
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--primary-concrete);
}

.process-step {
  position: relative;
  padding: 2rem;
  background: var(--light-ocean);
  border-radius: 10px;
  margin-bottom: 2rem;
}

.process-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--primary-charcoal);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.timeline-item {
  border-left: 3px solid var(--primary-sage);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 10px;
  width: 12px;
  height: 12px;
  background: var(--primary-sage);
  border-radius: 50%;
}

.faq-card {
  background: var(--light-concrete);
  border: 1px solid var(--primary-concrete);
  margin-bottom: 1rem;
}

.contact-form {
  background: var(--light-concrete);
  padding: 2rem;
  border-radius: 15px;
}

.gallery-item {
  background: var(--primary-concrete);
  height: 200px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.footer-section {
  background: var(--primary-charcoal);
  color: var(--light-concrete);
}

.footer-section a {
  color: var(--light-ocean);
  text-decoration: none;
}

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

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

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-charcoal);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-charcoal);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-charcoal);
  margin-bottom: 0.5rem;
}

h5 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark-charcoal);
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-charcoal);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--primary-charcoal);
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--primary-sage);
  border-color: var(--dark-sage);
  color: var(--dark-charcoal);
  font-weight: 500;
}

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

.btn-outline-custom {
  border-color: var(--primary-sage);
  color: var(--primary-sage);
}

.btn-outline-custom:hover {
  background-color: var(--primary-sage);
  color: var(--dark-charcoal);
}

/* Section spacing */
.section-padding {
  padding: 4rem 0;
}

/* Card styles */
.card-custom {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(47, 79, 79, 0.1);
  background: var(--light-concrete);
}

.card-custom .card-body {
  padding: 2rem;
}

/* Blog styles */
.blog-card {
  background: var(--light-concrete);
  border: 1px solid var(--primary-concrete);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: var(--primary-concrete);
  border-bottom: 1px solid var(--primary-concrete);
}

/* Case study styles */
.case-study-card {
  background: var(--light-earth);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Features icons placeholder */
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-ocean);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--dark-charcoal);
  font-size: 1.5rem;
}

/* Career card styles */
.career-card {
  background: var(--light-ocean);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-sage);
}

/* Core info styles */
.core-info-item {
  background: var(--light-sage);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

/* Mobile animations disabled */
@media (max-width: 768px) {
  .hero-blob {
    animation: none !important;
  }
  
  .service-card:hover {
    transform: none;
  }
  
  .blog-card:hover {
    transform: none;
  }
} 

.hero-section h1 {
    padding-top: 225px;
}


/* 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);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.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;
    }
}
