:root {
  /* Color Palette - Pastel High Contrast Colors */
  --primary-sage: #b8b8b8;
  --primary-terracotta: #bf917e;
  --primary-cream: #fff2e1;
  --primary-slate: #7a827c;
  --primary-amber: #dac9a2;
  
  /* Light/Dark Variations */
  --sage-light: #b4c6bb;
  --sage-dark: #637b72;
  --terracotta-light: #cb9c91;
  --terracotta-dark: #cd7f52;
  --cream-light: #faf8f1;
  --cream-dark: #d5d5d4;
  --slate-light: #64766b;
  --slate-dark: #485d3d;
  --amber-light: #dfcba2;
  --amber-dark: #f4c6ab;
}

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

.navbar-brand {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--slate-dark);
}

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

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

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

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

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

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

.hero-blob {
  position: absolute;
  background: var(--terracotta-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
}

.hero-blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 15%;
}

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

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

/* Cards */
.service-card,
.feature-card,
.price-card,
.team-card,
.review-card,
.case-card,
.process-card,
.timeline-card,
.career-card,
.core-card,
.blog-card {
  background: var(--cream-light);
  border: 1px solid var(--sage-light);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

/* FAQ cards get their own specific styling */
.faq-card {
  background: var(--cream-light);
  border: 1px solid var(--sage-light);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: auto;
  overflow: visible;
  margin-bottom: 1.5rem;
}

.service-card:hover,
.feature-card:hover,
.price-card:hover,
.team-card:hover,
.review-card:hover,
.case-card:hover,
.process-card:hover,
.timeline-card:hover,
.career-card:hover,
.core-card:hover,
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(78, 101, 79, 0.10);
}

.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(78, 101, 79, 0.10);
}

/* Buttons */
.btn-primary {
  background-color: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--cream-light);
  font-weight: 500;
}

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

.btn-outline-primary {
  color: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

.btn-outline-primary:hover {
  background-color: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--cream-light);
}

/* Navigation */
.navbar {
  background-color: var(--cream-light);
  box-shadow: 0 2px 10px rgba(99, 132, 101, 0.10);
}

.navbar-nav .nav-link {
  color: var(--slate-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
  color: var(--terracotta-dark);
}

/* Team Photos */
.team-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--sage-light);
}

/* Price Tags */
.price-tag {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terracotta-dark);
}

/* Contact Form */
.form-control {
  border: 1px solid var(--sage-light);
  background-color: var(--cream-light);
  color: var(--slate-dark);
}

.form-control:focus {
  border-color: var(--terracotta-light);
  box-shadow: 0 0 0 0.2rem rgba(224, 155, 139, 0.25);
  background-color: var(--cream-light);
  color: var(--slate-dark);
}

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

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

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

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

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}

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

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

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  background-color: var(--terracotta-dark);
  border-radius: 50%;
}

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

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

/* Breadcrumbs */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

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

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


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

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

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

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