:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-lavender: #fdfcff;
  --primary-mint: #F0FFF0;
  --primary-peach: #f8ece3;
  --primary-sky: #deeef7;
  --primary-rose: #eecacc;
  
  /* Light/Dark Shades */
  --lavender-light: #F5F5FF;
  --lavender-dark: #827cc8;
  --mint-light: #F8FFF8;
  --mint-dark: #aadca3;
  --peach-light: #f1ecdd;
  --peach-dark: #f5cd90;
  --sky-light: #F0FBFF;
  --sky-dark: #76caf9;
  --rose-light: #FFF0F1;
  --rose-dark: #f7a7b0;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-h1: 2rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --navbar-brand-size: 1.25rem;
}

/* 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;
  }
}

/* Conservative Typography */
body {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #242222;
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  margin-bottom: 0.95rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  margin-bottom: 0.88rem;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  margin-bottom: 0.71rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Navbar Brand Conservative Size */
.navbar-brand {
  font-size: var(--navbar-brand-size);
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-lavender), var(--primary-sky));
  position: relative;
  overflow: hidden;
}

.hero-decorative {
  position: absolute;
  opacity: 0.1;
  border-radius: 50%;
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-peach);
  top: 10%;
  right: 10%;
}

.hero-blob-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-mint);
  bottom: 20%;
  left: 5%;
}

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

.section-padding-sm {
  padding: 3rem 0;
}

/* About Section */
.about-section {
  background: var(--mint-light);
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Services Section */
.services-section {
  background: var(--sky-light);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-13px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.58rem;
}

.service-price {
  font-size: 1.54rem;
  font-weight: 700;
  color: var(--lavender-dark);
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background: var(--peach-light);
}

/* Price Plan Section */
.priceplan-section {
  background: var(--rose-light);
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.1);
  height: 100%;
  margin-bottom: 2rem;
}

.price-amount {
  font-size: 2.59rem;
  font-weight: 700;
  color: var(--sky-dark);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

/* Team Section */
.team-section {
  background: var(--lavender-light);
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 7px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: block;
}

/* Reviews Section */
.reviews-section {
  background: var(--mint-light);
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 9px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  margin-bottom: 2rem;
}

/* Case Study Section */
.casestudy-section {
  background: var(--sky-light);
}

.case-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  margin-bottom: 2rem;
}

/* Process Section */
.process-section {
  background: var(--peach-light);
}

.process-step {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  margin-bottom: 2rem;
}

/* Timeline Section */
.timeline-section {
  background: var(--rose-light);
}

.timeline-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  margin-bottom: 2rem;
}

/* Career Section */
.career-section {
  background: var(--lavender-light);
}

.career-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 9px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  margin-bottom: 2rem;
}

/* Core Info Section */
.coreinfo-section {
  background: var(--mint-light);
}

.coreinfo-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
  background: var(--sky-light);
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 8px;
  border: 1px solid #d2c3c1;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--lavender-dark);
  box-shadow: 0 0 0 0.2rem rgba(152, 159, 200, 0.25);
}

/* Blog Section */
.blog-section {
  background: var(--peach-light);
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  margin-bottom: 2rem;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

/* FAQ Section */
.faq-section {
  background: var(--rose-light);
}

.faq-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.55rem;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--lavender-dark);
}

.faq-answer {
  color: #626262;
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  background: var(--lavender-light);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: #2d2d2d;
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-lavender);
  margin-bottom: 1rem;
}

.footer a {
  color: #dbcecd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-lavender);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(45deg, var(--lavender-dark), var(--sky-dark));
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(45deg, var(--sky-dark), var(--lavender-dark));
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 1.68rem;
}

.section-title {
  color: var(--lavender-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #524b4c;
  margin-bottom: 2rem;
}

.section-description {
  color: #626262;
  margin-bottom: 3rem;
} 

.hero-section h1 {
    padding-top: 150px;
}


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
