:root {
  /* Primary Color Palette - Pastel High-Contrast Colors */
  --primary-sage: #8FBC8F;
  --primary-sage-light: #B8D4B8;
  --primary-sage-dark: #6B8E6B;
  
  --primary-coral: #F08080;
  --primary-coral-light: #FFB3B3;
  --primary-coral-dark: #CD5C5C;
  
  --primary-cream: #F5F5DC;
  --primary-cream-light: #FEFEF2;
  --primary-cream-dark: #E6E6D3;
  
  --primary-slate: #708090;
  --primary-slate-light: #A9B5C4;
  --primary-slate-dark: #4F5B6B;
  
  --primary-lavender: #E6E6FA;
  --primary-lavender-light: #F3F3FF;
  --primary-lavender-dark: #CCCCF0;
  
  /* 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;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-slate-dark);
  background-color: var(--primary-cream);
    overflow-x: hidden;
}

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

/* Conservative Typography */
.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-slate-dark);
}

h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--primary-slate-dark);
  margin-bottom: 1rem;
}

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

h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-slate-dark);
  margin-bottom: 0.5rem;
}

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

/* Header */
#header {
  background-color: var(--primary-cream);
  border-bottom: 1px solid var(--primary-sage-light);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar {
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--primary-slate-dark);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-lavender) 0%, var(--primary-cream) 100%);
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.hero-content {
  z-index: 2;
    padding-top: 125px;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  background-color: var(--primary-sage);
  top: 10%;
  left: 5%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--primary-coral);
  bottom: 15%;
  right: 10%;
}

/* About Section */
#about {
  padding: 5rem 0;
  background-color: var(--primary-cream-light);
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

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

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

/* Services Section */
#services {
  padding: 5rem 0;
  background-color: var(--primary-lavender-light);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

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

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-coral-dark);
  margin-top: 1rem;
}

/* Features Section */
#features {
  padding: 5rem 0;
  background-color: var(--primary-cream);
}

/* Price Plan Section */
#priceplan {
  padding: 5rem 0;
  background-color: var(--primary-sage-light);
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-coral), var(--primary-sage));
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-coral-dark);
  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(--primary-cream);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
#team {
  padding: 5rem 0;
  background-color: var(--primary-lavender-light);
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  height: 100%;
}

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

/* Reviews Section */
#reviews {
  padding: 5rem 0;
  background-color: var(--primary-cream-light);
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-sage-light);
  font-weight: 700;
}

.review-author {
  font-weight: 600;
  color: var(--primary-slate-dark);
  margin-top: 1rem;
}

/* Case Study Section */
#casestudy {
  padding: 5rem 0;
  background-color: var(--primary-sage-light);
}

.case-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  height: 100%;
}

/* Process Section */
#process {
  padding: 5rem 0;
  background-color: var(--primary-lavender-light);
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-coral);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  padding: 5rem 0;
  background-color: var(--primary-cream);
}

.timeline-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-left: 4px solid var(--primary-sage);
}

/* Career Section */
#career {
  padding: 5rem 0;
  background-color: var(--primary-slate-light);
}

.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  height: 100%;
}

.career-role {
  color: var(--primary-coral-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Core Info Section */
#coreinfo {
  padding: 5rem 0;
  background-color: var(--primary-lavender-light);
}

.info-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.info-icon {
  font-size: 2rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Contact Section */
#contacts {
  padding: 5rem 0;
  background-color: var(--primary-cream-light);
}

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

.form-control {
  border: 2px solid var(--primary-sage-light);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(143, 188, 143, 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(--primary-sage-dark);
  border-color: var(--primary-sage-dark);
}

.contact-info {
  background: var(--primary-lavender);
  border-radius: 15px;
  padding: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-coral);
  margin-right: 1rem;
  width: 30px;
}

/* Blog Section */
#blog {
  padding: 5rem 0;
  background-color: var(--primary-sage-light);
}

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

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

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

.blog-content {
  padding: 1.5rem;
}

.blog-link {
  color: var(--primary-coral-dark);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--primary-coral);
}

/* FAQ Section */
#faq {
  padding: 5rem 0;
  background-color: var(--primary-lavender-light);
}

.faq-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-slate-dark);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--primary-slate);
  line-height: 1.6;
}

/* Gallery Section */
#gallery {
  padding: 5rem 0;
  background-color: var(--primary-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

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

/* Footer */
#footer {
  background-color: var(--primary-slate-dark);
  color: var(--primary-cream);
  padding: 3rem 0 1rem;
}

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

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

.footer-link {
  color: var(--primary-cream-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-sage-light);
}

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

/* Utilities */
.section-padding {
  padding: 5rem 0;
}

.text-primary-sage {
  color: var(--primary-sage);
}

.text-primary-coral {
  color: var(--primary-coral);
}

.bg-primary-sage {
  background-color: var(--primary-sage);
}

.bg-primary-coral {
  background-color: var(--primary-coral);
}

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

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


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