:root {
  /* Primary Pastel High-Contrast Color Palette */
  --primary-mint: #7FE4B8;
  --primary-citrus: #FFE066;
  --primary-berry: #FF8A95;
  --primary-sage: #9FD4B8;
  --primary-lavender: #B8A7E6;
  
  /* Light Shades */
  --light-mint: #E7F9F1;
  --light-citrus: #FFF9E6;
  --light-berry: #FFE8EA;
  --light-sage: #E8F4ED;
  --light-lavender: #F0ECF9;
  
  /* Dark Shades */
  --dark-mint: #4A9B6F;
  --dark-citrus: #CC9A00;
  --dark-berry: #CC4455;
  --dark-sage: #5A8A6F;
  --dark-lavender: #7A5FB8;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --black: #1A1A1A;
  --gray-light: #F5F5F5;
  --gray-medium: #8A8A8A;
  --gray-dark: #4A4A4A;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--black);
  font-size: 16px;
  background-color: var(--white);
}

/* Conservative Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-sage);
}

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

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

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

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

/* Header Styles */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-sage);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--gray-dark);
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-mint) 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: 300px;
  height: 300px;
  background: var(--primary-citrus);
  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(--primary-berry);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
}

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

/* Button Styles */
.btn-primary {
  background-color: var(--primary-mint);
  border-color: var(--primary-mint);
  color: var(--white);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  border-color: var(--primary-sage);
  color: var(--primary-sage);
  background-color: transparent;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

/* Section Spacing */
section {
  padding: 80px 0;
}

/* About Section */
.about-section {
  background-color: var(--light-sage);
}

.feature-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: none;
  height: 100%;
}

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

.feature-icon {
  font-size: 3rem;
  color: var(--primary-mint);
  margin-bottom: 20px;
}

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

.service-card {
  background: var(--light-mint);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.service-card:hover {
  border-color: var(--primary-mint);
  transform: translateY(-5px);
}

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

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

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-citrus);
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 2px solid var(--gray-light);
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  border-color: var(--primary-citrus);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.price-card.featured {
  border-color: var(--primary-citrus);
  background: linear-gradient(135deg, var(--light-citrus) 0%, var(--white) 100%);
}

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

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

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

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-sage);
}

.review-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: none;
  height: 100%;
}

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

.case-card {
  background: var(--light-mint);
  border-radius: 15px;
  padding: 30px 25px;
  transition: transform 0.3s ease;
  height: 100%;
}

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

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

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.process-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--primary-lavender);
  color: var(--white);
  border-radius: 50%;
  line-height: 60px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--light-citrus);
}

.timeline-item {
  background: var(--white);
  border-radius: 15px;
  padding: 30px 25px;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary-citrus);
  position: relative;
}

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

.career-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px 25px;
  border: 2px solid var(--gray-light);
  transition: all 0.3s ease;
  height: 100%;
}

.career-card:hover {
  border-color: var(--primary-mint);
  transform: translateY(-5px);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--light-berry);
}

.info-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

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

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  padding: 15px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-mint);
  box-shadow: 0 0 0 0.2rem rgba(127, 228, 184, 0.25);
}

.contact-info {
  background: var(--primary-mint);
  color: var(--white);
  border-radius: 20px;
  padding: 40px;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-lavender);
}

.blog-card {
  background: var(--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);
}

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

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

.faq-card {
  background: var(--white);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  border: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.faq-answer {
  color: var(--gray-dark);
  margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--white);
  padding: 80px 0;
}

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

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

/* Footer */
footer {
  background-color: var(--black);
  color: var(--white);
  padding: 60px 0 30px;
}

footer .container {
  max-width: 1200px;
}

footer h5 {
  color: var(--primary-mint);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

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

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

footer .list-unstyled li {
  margin-bottom: 8px;
}

.footer-divider {
  border-top: 1px solid var(--gray-dark);
  margin: 40px 0 20px;
}

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

/* Utility Classes */
.text-primary-mint { color: var(--primary-mint); }
.text-primary-citrus { color: var(--primary-citrus); }
.text-primary-berry { color: var(--primary-berry); }
.text-primary-sage { color: var(--primary-sage); }
.text-primary-lavender { color: var(--primary-lavender); }

.bg-light-mint { background-color: var(--light-mint); }
.bg-light-citrus { background-color: var(--light-citrus); }
.bg-light-berry { background-color: var(--light-berry); }
.bg-light-sage { background-color: var(--light-sage); }
.bg-light-lavender { background-color: var(--light-lavender); }

.shadow-soft {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.rounded-lg {
  border-radius: 15px;
}

.rounded-xl {
  border-radius: 20px;
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
