:root {
  /* Color Palette - 5 primary colors with light/dark shades */
  --primary-sage: #7da783;
  --primary-teal: #1da0af;
  --primary-coral: #ff959f;
  --primary-cream: #dedfc9;
  --primary-slate: #636f7b;
  
  /* Light shades */
  --light-sage: #c8f4d0;
  --light-teal: #bee7e3;
  --light-coral: #ffb7b2;
  --light-cream: #FEFEFE;
  --light-slate: #90a3b3;
  
  /* Dark shades */
  --dark-sage: #537232;
  --dark-teal: #009e8d;
  --dark-coral: #bd514a;
  --dark-cream: #e5de9b;
  --dark-slate: #476864;
  
  /* Text colors */
  --text-primary: #3a6861;
  --text-secondary: #8195a4;
  --text-light: #FFFFFF;
}

/* Base styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--light-cream);
}

/* Conservative typography */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-slate);
}

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

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

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-slate);
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

.hero-decorative-shape {
  position: absolute;
  background: var(--primary-coral);
  opacity: 0.1;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  top: 10%;
  right: -150px;
}

/* Services Cards */
.service-card {
  background: var(--text-light);
  border: 1px solid var(--light-slate);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

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

/* Team Cards */
.team-card {
  background: var(--text-light);
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(49, 86, 82, 0.10);
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--light-teal);
}

/* Testimonials */
.review-card {
  background: var(--text-light);
  border-left: 4px solid var(--primary-sage);
  box-shadow: 0 2px 10px rgba(47, 79, 79, 0.08);
}

/* FAQ Cards */
.faq-card {
  background: var(--text-light);
  border: 1px solid var(--light-slate);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.faq-question {
  background: var(--light-sage);
  color: var(--dark-slate);
  font-weight: 600;
  padding: 1rem;
  margin: 0;
  border-radius: 8px 8px 0 0;
}

.faq-answer {
  padding: 1rem;
  background: var(--text-light);
  border-radius: 0 0 8px 8px;
}

/* Contact Form */
.contact-form {
  background: var(--text-light);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(56, 102, 104, 0.10);
  padding: 2rem;
}

.form-control {
  border: 1px solid var(--light-slate);
  border-radius: 6px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(27, 193, 186, 0.25);
}

.btn-primary {
  background-color: var(--primary-teal);
  border-color: var(--primary-teal);
  border-radius: 6px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

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

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

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

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

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

/* Gallery */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(64, 96, 92, 0.10);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

/* Blog Cards */
.blog-card {
  background: var(--text-light);
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(41, 79, 73, 0.10);
  transition: transform 0.3s ease;
}

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

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--primary-sage);
}

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

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
}

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

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-cream);
}

.breadcrumb-image {
  width: 20px;
  height: 20px;
}

/* Case Studies */
.case-study-card {
  background: var(--text-light);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(46, 84, 78, 0.10);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

/* Price Plan Cards */
.price-plan-card {
  background: var(--text-light);
  border: 2px solid var(--light-sage);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.price-plan-card:hover {
  border-color: var(--primary-teal);
  transform: translateY(-5px);
}

.price-plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-teal);
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility classes */
.text-primary-sage { color: var(--primary-sage); }
.text-primary-teal { color: var(--primary-teal); }
.text-primary-coral { color: var(--primary-coral); }
.bg-light-sage { background-color: var(--light-sage); }
.bg-light-teal { background-color: var(--light-teal); }
.bg-light-coral { background-color: var(--light-coral); } 

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


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