:root {
  /* Primary Color Palette - Pastel High-Contrast Colors */
  --primary-sage: #87A96B;
  --primary-cream: #F5F1E8;
  --primary-burgundy: #8B4513;
  --primary-gold: #DAA520;
  --primary-charcoal: #36454F;
  
  /* Light/Dark Shades */
  --sage-light: #B5D397;
  --sage-dark: #5A7147;
  --cream-light: #FEFBF6;
  --cream-dark: #E8E1D3;
  --burgundy-light: #B8654A;
  --burgundy-dark: #5D2A0A;
  --gold-light: #F4D03F;
  --gold-dark: #B8860B;
  --charcoal-light: #556B7D;
  --charcoal-dark: #1C2529;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --line-height-base: 1.6;
}

/* Global Styles */
body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--charcoal-dark);
  background-color: var(--cream-light);
}

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

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

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--charcoal-dark);
  margin-bottom: 0.875rem;
}

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

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

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

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--charcoal-light);
}

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

.hero-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: var(--gold-light);
  border-radius: 50%;
  opacity: 0.1;
  top: 10%;
  right: 15%;
  z-index: 1;
}

.hero-decoration::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background-color: var(--burgundy-light);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: -60px;
  left: -60px;
  opacity: 0.8;
}

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

/* Service Cards */
.service-card {
  background: var(--cream-light);
  border: 2px solid var(--sage-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(54, 69, 79, 0.15);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy-dark);
  margin-top: 1rem;
}

/* Team Cards */
.team-card {
  background: var(--cream-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(54, 69, 79, 0.1);
  transition: transform 0.3s ease;
}

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

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: var(--sage-light);
}

/* Review Cards */
.review-card {
  background: var(--cream-light);
  border-left: 4px solid var(--gold-dark);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(54, 69, 79, 0.08);
}

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

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

.faq-answer {
  color: var(--charcoal-light);
  font-size: var(--font-size-small);
}

/* Contact Form */
.contact-form {
  background: var(--cream-light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(54, 69, 79, 0.1);
}

.form-control {
  border: 2px solid var(--sage-light);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 0.2rem rgba(135, 169, 107, 0.25);
}

.btn-primary {
  background-color: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  color: var(--cream-light);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: var(--burgundy-light);
  border-color: var(--burgundy-light);
}

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

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

.footer a {
  color: var(--cream-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--gold-light);
}

/* Gallery */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(54, 69, 79, 0.1);
}

.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: var(--sage-light);
  transition: transform 0.3s ease;
}

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

/* Breadcrumbs */
.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
}

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

/* Additional Page Sections */
.additional-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--sage-light);
}

.additional-section:last-child {
  border-bottom: none;
}

/* Price Plan Cards */
.price-card {
  background: var(--cream-light);
  border: 2px solid var(--sage-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  position: relative;
}

.price-card.featured {
  border-color: var(--gold-dark);
  transform: scale(1.05);
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--burgundy-dark);
}

/* Feature Items */
.feature-item {
  text-align: center;
  padding: 1.5rem;
}

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

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

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

/* Timeline Items */
.timeline-item {
  padding: 1.5rem;
  border-left: 3px solid var(--gold-dark);
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background-color: var(--gold-dark);
  border-radius: 50%;
  position: absolute;
  left: -7.5px;
  top: 1.5rem;
}

/* Case Study Cards */
.case-study-card {
  background: var(--cream-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(54, 69, 79, 0.1);
  height: 100%;
}

.case-study-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: var(--sage-light);
}

/* Career Items */
.career-item {
  background: var(--cream-light);
  border: 1px solid var(--sage-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.career-role {
  font-size: var(--font-size-small);
  color: var(--burgundy-dark);
  font-weight: 600;
}

/* Core Info Items */
.core-info-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--cream-light);
  border-radius: 8px;
  height: 100%;
  box-shadow: 0 3px 10px rgba(54, 69, 79, 0.05);
}

/* Blog Cards */
.blog-card {
  background: var(--cream-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(54, 69, 79, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

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

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: var(--sage-light);
}

.blog-content {
  padding: 1.5rem;
}

.blog-link {
  color: var(--burgundy-dark);
  font-weight: 600;
  text-decoration: none;
}

.blog-link:hover {
  color: var(--burgundy-light);
} 

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


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

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

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

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

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
