:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-sage: #8FBC8F;
  --primary-cream: #F5F5DC;
  --primary-coral: #FF7F7F;
  --primary-lavender: #E6E6FA;
  --primary-mint: #98FB98;
  
  /* Light/Dark Shades */
  --sage-light: #A9CDA9;
  --sage-dark: #6B8E6B;
  --cream-light: #FFFFF0;
  --cream-dark: #E6E6CD;
  --coral-light: #FF9999;
  --coral-dark: #E65555;
  --lavender-light: #F0F0FF;
  --lavender-dark: #CCCCF0;
  --mint-light: #BFFFBF;
  --mint-dark: #7FE57F;
  
  /* Typography */
  --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-h1: 2rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-h5: 1.1rem;
  --font-size-h6: 1rem;
  
  /* Spacing */
  --section-padding: 80px 0;
  --section-padding-sm: 60px 0;
}

/* Global Typography - Conservative Sizes */
body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
  background-color: var(--cream-light);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--sage-dark);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Conservative Navbar Brand Size */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sage-dark);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: var(--mint-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: var(--coral-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

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

/* Services Section */
.services-section {
  padding: var(--section-padding);
  background-color: var(--cream-light);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  border: 2px solid var(--lavender-light);
}

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

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

/* About Section */
.about-section {
  padding: var(--section-padding);
  background: linear-gradient(45deg, var(--lavender-light) 0%, var(--mint-light) 100%);
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

/* Features Section */
.features-section {
  padding: var(--section-padding);
  background-color: var(--cream-light);
}

/* Price Plan Section */
.priceplan-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--cream-light) 100%);
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border: 3px solid var(--sage-light);
  height: 100%;
}

.price-featured {
  border-color: var(--coral-dark);
  transform: scale(1.05);
}

/* Team Section */
.team-section {
  padding: var(--section-padding);
  background-color: var(--lavender-light);
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

/* Reviews Section */
.reviews-section {
  padding: var(--section-padding);
  background: linear-gradient(45deg, var(--cream-light) 0%, var(--coral-light) 100%);
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-left: 5px solid var(--sage-dark);
  height: 100%;
}

/* Case Study Section */
.casestudy-section {
  padding: var(--section-padding);
  background-color: var(--mint-light);
}

/* Process Section */
.process-section {
  padding: var(--section-padding);
  background-color: var(--cream-light);
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
}

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral-dark);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Timeline Section */
.timeline-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--sage-light) 100%);
}

/* Career Section */
.career-section {
  padding: var(--section-padding);
  background-color: var(--cream-light);
}

/* Core Info Section */
.coreinfo-section {
  padding: var(--section-padding);
  background: linear-gradient(45deg, var(--mint-light) 0%, var(--lavender-light) 100%);
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding);
  background-color: var(--cream-light);
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--lavender-light);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 0.2rem rgba(143, 188, 143, 0.25);
}

.btn-primary {
  background-color: var(--sage-dark);
  border-color: var(--sage-dark);
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

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

/* Blog Section */
.blog-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--coral-light) 0%, var(--mint-light) 100%);
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

/* FAQ Section */
.faq-section {
  padding: var(--section-padding);
  background-color: var(--lavender-light);
}

.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border-left: 4px solid var(--sage-dark);
}

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

/* Gallery Section */
.gallery-section {
  padding: var(--section-padding-sm);
  background-color: var(--cream-light);
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

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

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

/* Footer - High Contrast Colors Only */
.footer {
  background-color: var(--sage-dark);
  color: var(--cream-light);
  padding: 3rem 0 1rem;
}

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

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

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--cream-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

/* Section Spacing */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--sage-dark);
  font-size: var(--font-size-small);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Utility Classes */
.text-primary-sage { color: var(--sage-dark); }
.text-primary-coral { color: var(--coral-dark); }
.bg-primary-sage { background-color: var(--sage-light); }
.bg-primary-coral { background-color: var(--coral-light); }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} 


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