:root {
  /* Primary Color Palette - Pastel high-contrast colors */
  --primary-tea-green: #8FBC8F;
  --primary-tea-brown: #8B4513;
  --primary-cream: #FDF5E6;
  --primary-sage: #9CAF88;
  --primary-terracotta: #D2691E;
  
  /* Light/Dark Shades */
  --light-green: #E8F5E8;
  --dark-green: #556B2F;
  --light-brown: #DEB887;
  --dark-brown: #654321;
  --light-cream: #FFFEF7;
  --dark-cream: #F5DEB3;
  --light-sage: #F0F5ED;
  --dark-sage: #708238;
  --light-terracotta: #F4A460;
  --dark-terracotta: #A0522D;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
}

/* Reset and base styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-brown);
  background-color: var(--light-cream);
  line-height: 1.6;
  font-size: var(--font-size-base);
    overflow-x: hidden;
}

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

/* Header styles */
.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-tea-brown);
}

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--primary-sage);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(15deg);
}

.hero-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--primary-tea-brown);
  margin-bottom: 1rem;
    padding-top: 275px;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--dark-green);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: var(--font-size-lg);
  color: var(--dark-sage);
  max-width: 500px;
}

/* Section headers */
.section-title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--primary-tea-brown);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: var(--font-size-base);
  color: var(--dark-sage);
  margin-bottom: 3rem;
}

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

.service-card:hover, .feature-card:hover, .priceplan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
}

.service-card img, .feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-name, .feature-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--primary-tea-brown);
  margin-bottom: 0.5rem;
}

.service-desc, .feature-desc {
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-terracotta);
  margin-top: auto;
}

/* Team member cards */
.team-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid var(--light-sage);
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-sage);
}

.team-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--primary-tea-brown);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--dark-sage);
  font-style: italic;
}

/* Review cards */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid var(--light-sage);
  margin-bottom: 2rem;
}

.review-text {
  font-style: italic;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-tea-brown);
}

/* FAQ cards */
.faq-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid var(--light-sage);
  margin-bottom: 1.5rem;
}

.faq-question {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--primary-tea-brown);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--dark-sage);
}

/* Contact form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  border: 2px solid var(--light-sage);
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
}

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

.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-tea-brown);
  border-color: var(--primary-tea-brown);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

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

.footer h5 {
  color: var(--primary-cream);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

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

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

.footer-bottom {
  border-top: 1px solid var(--primary-sage);
  padding-top: 1rem;
  margin-top: 2rem;
}

/* Gallery */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Process/Timeline items */
.process-card, .timeline-card, .casestudy-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid var(--light-sage);
  margin-bottom: 2rem;
  position: relative;
}

.process-number {
  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;
}

/* Blog cards */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--light-sage);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--primary-tea-brown);
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

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

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

/* Utility classes */
.text-tea-brown { color: var(--primary-tea-brown); }
.text-sage { color: var(--primary-sage); }
.text-terracotta { color: var(--primary-terracotta); }
.bg-light-sage { background-color: var(--light-sage); }
.bg-light-cream { background-color: var(--light-cream); }

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

.section-padding-lg {
  padding: 6rem 0;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .hero-title {
    font-size: var(--font-size-2xl);
    padding-top: 275px;
}
  
  .section-title {
    font-size: var(--font-size-xl);
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .contact-form {
    padding: 2rem;
  }
} 


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

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

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