:root {
  /* Color Palette - 5 primary pastel high-contrast colors */
  --primary-sage: #9CAF88;
  --primary-lavender: #C8A8E9;
  --primary-cream: #F5E6D3;
  --primary-coral: #F4A261;
  --primary-mint: #A8DADC;
  
  /* Light/Dark shades */
  --sage-light: #B8C7A6;
  --sage-dark: #7A8B6A;
  --lavender-light: #DBC4F0;
  --lavender-dark: #A68BC7;
  --cream-light: #FAF0E6;
  --cream-dark: #E6D1B8;
  --coral-light: #F7B885;
  --coral-dark: #E8894A;
  --mint-light: #C1E5E7;
  --mint-dark: #8BC5C8;
  
  /* Conservative font sizes */
  --navbar-brand-size: 1.25rem;
  --h1-size: 2rem;
  --h2-size: 1.75rem;
  --h3-size: 1.5rem;
  --p-size: 1rem;
  --small-size: 0.875rem;
}

/* Base Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--cream-light);
    overflow-x: hidden;
}

/* Conservative heading sizes */
h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
p { font-size: var(--p-size); }

/* Navbar brand conservative size */
.navbar-brand {
  font-size: var(--navbar-brand-size);
  font-weight: 600;
  color: var(--sage-dark);
}

.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--mint-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  background: var(--sage-light);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 15%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  background: var(--lavender-light);
}

/* Services Section */
#services {
  background-color: var(--cream-light);
  padding: 80px 0;
}

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

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

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

/* About Section */
#about {
  background-color: white;
  padding: 80px 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Features Section */
#features {
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--lavender-light) 100%);
  padding: 80px 0;
}

/* Price Plan Section */
#priceplan {
  background-color: var(--cream-light);
  padding: 80px 0;
}

.price-card {
  background: white;
  border: 2px solid var(--sage-light);
  border-radius: 15px;
  position: relative;
  height: 100%;
}

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

.price-header {
  background: var(--sage-light);
  color: white;
  padding: 20px;
  border-radius: 13px 13px 0 0;
  text-align: center;
}

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

/* Team Section */
#team {
  background-color: white;
  padding: 80px 0;
}

.team-card {
  text-align: center;
  background: var(--cream-light);
  border-radius: 15px;
  padding: 30px 20px;
  height: 100%;
}

.team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--sage-light);
}

/* Reviews Section */
#reviews {
  background: var(--mint-light);
  padding: 80px 0;
}

.review-card {
  background: white;
  border: none;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  position: relative;
}

.review-quote {
  font-size: 3rem;
  color: var(--sage-light);
  position: absolute;
  top: 10px;
  left: 20px;
}

/* Process Section */
#process {
  background-color: white;
  padding: 80px 0;
}

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

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

/* FAQ Section */
#faq {
  background: var(--cream-light);
  padding: 80px 0;
}

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

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

/* Contact Section */
#contact {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--mint-light) 100%);
  padding: 80px 0;
}

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

.form-control {
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  padding: 12px 15px;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(156, 175, 136, 0.25);
}

.btn-primary {
  background: var(--primary-sage);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--sage-dark);
}

/* Footer */
#footer {
  background: var(--sage-dark);
  color: white;
  padding: 50px 0 20px;
}

.footer-section h5 {
  color: var(--mint-light);
  margin-bottom: 20px;
}

.footer-link {
  color: white;
  text-decoration: none;
  opacity: 0.8;
}

.footer-link:hover {
  opacity: 1;
  color: var(--mint-light);
}

/* Gallery Section */
#gallery {
  padding: 80px 0;
  background: white;
}

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

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

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

/* Blog Section */
#blog {
  background: var(--cream-light);
  padding: 80px 0;
}

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

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

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 20px 0;
}

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

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

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

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

.section-padding {
  padding: 80px 0;
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
} 


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