:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-sage: #919f9b;
  --primary-rust: #cdab6a;
  --primary-slate: #6b758d;
  --primary-cream: #f3ecd7;
  --primary-charcoal: #394d57;
  
  /* Light/Dark Shades */
  --sage-light: #b1c1bb;
  --sage-dark: #718f80;
  --rust-light: #d7b18d;
  --rust-dark: #a78262;
  --slate-light: #869bb2;
  --slate-dark: #475566;
  --cream-light: #faf8f3;
  --cream-dark: #e1ddd5;
  --charcoal-light: #3a4e5f;
  --charcoal-dark: #2e3f42;
}

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

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

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-charcoal);
}

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

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

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

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

/* Header & Navigation */
.navbar {
  background-color: var(--primary-cream);
  box-shadow: 0 2px 4px rgba(44, 71, 79, 0.10);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--primary-charcoal);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

/* 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-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: var(--primary-rust);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 150px;
  height: 150px;
  background: var(--primary-slate);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

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

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

.section-title {
  color: var(--primary-charcoal);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-slate);
  margin-bottom: 1rem;
}

.section-description {
  color: var(--charcoal-light);
  margin-bottom: 3rem;
}

/* Cards */
.custom-card {
  border: none;
  box-shadow: 0 4px 6px rgba(46, 73, 78, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--primary-cream);
  border-radius: 12px;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(44, 58, 69, 0.15);
}

.card-header {
  background-color: var(--sage-light);
  border-bottom: 1px solid var(--sage-dark);
  border-radius: 12px 12px 0 0;
}

/* Services Section */
.service-item {
  margin-bottom: 2rem;
}

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

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.features-list li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-sage);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form .form-control {
  border: 2px solid var(--sage-light);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(155, 164, 160, 0.25);
}

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

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

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

.footer h5 {
  color: var(--primary-cream);
}

.footer p, .footer a {
  color: var(--cream-dark);
}

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

/* FAQ Section */
.faq-item {
  margin-bottom: 1.5rem;
}

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

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

/* Gallery */
.gallery-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

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

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

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

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

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

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

/* Career Items */
.career-item {
  border-left: 4px solid var(--primary-sage);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

/* Core Info */
.core-info-item {
  text-align: center;
  padding: 2rem 1rem;
}

.core-info-icon {
  font-size: 3rem;
  color: var(--primary-rust);
  margin-bottom: 1rem;
}

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

.breadcrumb-image {
  width: 30px;
  height: 30px;
  border-radius: 4px;
}

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

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

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

.page-element {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: var(--cream-light);
  border-radius: 8px;
} 


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