:root {
  /* Color Palette - 5 primary colors with light/dark shades */
  --primary-sage: #9CAF88;
  --primary-cream: #F5F1E8;
  --primary-lavender: #D4C4E0;
  --primary-terra: #C7956D;
  --primary-mint: #A8C8A5;
  
  /* Light shades */
  --light-sage: #B8C9A8;
  --light-cream: #FDFCF8;
  --light-lavender: #E8DCF0;
  --light-terra: #D9B085;
  --light-mint: #C0D8BD;
  
  /* Dark shades */
  --dark-sage: #7A9568;
  --dark-cream: #E8E1D0;
  --dark-lavender: #BFA8D0;
  --dark-terra: #B07E55;
  --dark-mint: #90B88D;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --h1-size: 2.5rem;
  --h2-size: 2rem;
  --h3-size: 1.75rem;
  --h4-size: 1.5rem;
  --navbar-brand-size: 1.25rem;
}

/* General Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-sage);
  background-color: var(--light-cream);
  line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark-sage);
  font-weight: 600;
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }

.navbar-brand {
  font-size: var(--navbar-brand-size);
  color: var(--dark-sage);
  font-weight: 700;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--primary-cream) 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: var(--primary-lavender);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: var(--primary-mint);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 100px;
}

/* Header */
#header {
  background-color: var(--light-cream);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--dark-sage);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-terra);
}

/* Sections */
section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background-color: var(--primary-cream);
}

/* About Features */
.about-feature {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  color: var(--primary-sage);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Services Items */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  border-top: 4px solid var(--primary-sage);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-terra);
  margin-top: 1rem;
}

/* Features Section */
.feature-item {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  margin-bottom: 2rem;
}

.feature-item i {
  color: var(--primary-lavender);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

/* Price Plans */
.price-card {
  background: white;
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-sage);
  transform: translateY(-10px);
}

.price-card.featured {
  border-color: var(--primary-terra);
  transform: scale(1.05);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-terra);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-cream);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Members */
.team-member {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--primary-mint);
}

.team-role {
  color: var(--primary-terra);
  font-style: italic;
}

/* Reviews/Testimonials */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-lavender);
}

.review-author {
  font-weight: 600;
  color: var(--dark-sage);
  margin-top: 1rem;
}

/* Case Studies */
.case-study-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

/* Process Steps */
.process-step {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.step-number {
  background: var(--primary-sage);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1.5rem;
}

/* Timeline */
.timeline-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-mint);
}

/* Career */
.career-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.career-role {
  color: var(--primary-terra);
  font-weight: 600;
}

/* Core Info */
.coreinfo-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  margin-bottom: 2rem;
}

.coreinfo-item i {
  color: var(--primary-sage);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-cream);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(156, 175, 136, 0.25);
}

.btn-primary {
  background-color: var(--primary-sage);
  border-color: var(--primary-sage);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--dark-sage);
  border-color: var(--dark-sage);
}

/* Blog */
.blog-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-link {
  color: var(--primary-terra);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

/* Gallery */
#gallery {
  padding: 4rem 0;
}

.gallery-item {
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Footer */
#footer {
  background-color: var(--dark-sage);
  color: white;
  padding: 3rem 0 1rem;
}

#footer h5 {
  color: var(--light-cream);
  margin-bottom: 1.5rem;
}

#footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--primary-cream);
}

.footer-content {
  border-bottom: 1px solid var(--primary-sage);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

/* Utility Classes */
.text-primary-sage { color: var(--primary-sage); }
.text-primary-terra { color: var(--primary-terra); }
.text-primary-lavender { color: var(--primary-lavender); }

.bg-primary-sage { background-color: var(--primary-sage); }
.bg-primary-cream { background-color: var(--primary-cream); }
.bg-light-cream { background-color: var(--light-cream); }

/* Breadcrumbs */
.breadcrumb-nav {
  padding: 1rem 0;
  background-color: var(--light-cream);
}

.breadcrumb-nav img {
  height: 30px;
  width: auto;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    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;
    }
}
