:root {
  /* Primary Color Palette - 5 colors + shades */
  --primary-sage: #8fbc92;
  --primary-terracotta: #c78272;
  --primary-cream: #F5F3F0;
  --primary-forest: #314c38;
  --primary-gold: #c4a372;
  
  /* Light shades */
  --sage-light: #d5dbd6;
  --terracotta-light: #cb776b;
  --cream-light: #FAFAF9;
  --forest-light: #497b58;
  --gold-light: #d5b78b;
  
  /* Dark shades */
  --sage-dark: #78a37d;
  --terracotta-dark: #b16d43;
  --cream-dark: #f3f3f3;
  --forest-dark: #131e15;
  --gold-dark: #ba8f62;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--forest-dark);
  background: var(--cream-light);
}

/* Conservative font sizes */
h1 { font-size: 2.30rem; font-weight: 600; }
h2 { font-size: 1.93rem; font-weight: 500; }
h3 { font-size: 1.42rem; font-weight: 500; }
h4 { font-size: 1.28rem; font-weight: 500; }
p { font-size: 1.12rem; }
.navbar-brand { font-size: 1.41rem !important; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--cream-light), var(--sage-light));
  box-shadow: 0 4px 14px rgba(50, 83, 54, 0.10);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--forest-dark) !important;
  font-weight: 600;
}

.nav-link {
  color: var(--forest-dark) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-sage) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: linear-gradient(45deg, var(--sage-light), var(--cream-light));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../XUV_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-gold), var(--gold-light));
  opacity: 0.1;
  z-index: 1;
}

.blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
}

.blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  color: var(--forest-dark);
  margin-bottom: 1.24rem;
}

.section-subtitle {
  color: var(--primary-sage);
  margin-bottom: 2.11rem;
}

.section-desc {
  color: var(--forest-light);
  margin-bottom: 3.17rem;
}

/* Services */
.service-card {
  background: white;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(40, 69, 44, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2.11rem;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 10px 30px rgba(48, 74, 54, 0.15);
}

.service-price {
  font-size: 1.56rem;
  font-weight: 600;
  color: var(--primary-terracotta);
}

/* Features */
.feature-item {
  background: var(--cream-light);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.72rem;
  border-left: 4px solid var(--primary-sage);
}

/* Team */
.team-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(34, 69, 42, 0.10);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Reviews/Testimonials */
.review-card {
  background: linear-gradient(135deg, var(--cream-light), white);
  border-radius: 110px;
  padding: 2rem;
  margin: 1rem 0;
  box-shadow: 0 8px 17px rgba(40, 80, 41, 0.10);
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1.24rem;
  overflow: hidden;
  box-shadow: 0 9px 10px rgba(47, 79, 51, 0.05);
}

.faq-question {
  background: var(--sage-light);
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--forest-dark);
}

.faq-answer {
  padding: 1rem 1.5rem;
  display: none;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 25px rgba(42, 63, 43, 0.10);
}

.form-control {
  border: 2px solid var(--sage-light);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1.24rem;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(130, 173, 138, 0.25);
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-sage), var(--sage-dark));
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(45deg, var(--sage-dark), var(--primary-forest));
  transform: translateY(-2px);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2.11rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(52, 96, 60, 0.10);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Blog */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(66, 104, 74, 0.10);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--forest-dark), var(--primary-forest));
  color: var(--cream-light);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--sage-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--cream-light);
}

/* Price Plans */
.price-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(31, 57, 30, 0.10);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card.featured {
  border: 3px solid var(--primary-gold);
}

.price-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--primary-gold);
  color: white;
  padding: 0.5rem 3rem;
  transform: rotate(45deg);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Process Steps */
.process-step {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2.11rem;
  box-shadow: 0 3px 15px rgba(44, 66, 43, 0.10);
  position: relative;
}

.process-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -15px;
  left: 2rem;
  background: var(--primary-terracotta);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.process-container {
  counter-reset: step-counter;
}

/* Timeline */
.timeline-item {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.72rem;
  box-shadow: 0 3px 15px rgba(61, 95, 70, 0.10);
  border-left: 4px solid var(--primary-gold);
}

/* Career */
.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2.11rem;
  box-shadow: 0 5px 20px rgba(55, 91, 58, 0.10);
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-3px);
}

/* Case Studies */
.case-study-card {
  background: linear-gradient(135deg, white, var(--cream-light));
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2.11rem;
  box-shadow: 0 5px 20px rgba(42, 64, 47, 0.10);
}

/* Core Info */
.core-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.11rem;
}

.core-info-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(62, 100, 70, 0.10);
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
