:root {
  /* Primary Color Palette - 5 pastel high-contrast colors */
  --primary-lavender: #b4adff;
  --primary-blush: #ff9cae;
  --primary-mint: #9fe2c1;
  --primary-peach: #eace91;
  --primary-sky: #a8ddf6;
  
  /* Light shades */
  --light-lavender: #e1defd;
  --light-blush: #ffd3e1;
  --light-mint: #d0ffe7;
  --light-peach: #fef1df;
  --light-sky: #edf5ff;
  
  /* Dark shades */
  --dark-lavender: #5c4e60;
  --dark-blush: #85636a;
  --dark-mint: #708878;
  --dark-peach: #988771;
  --dark-sky: #576d7f;
  
  /* Typography */
  --text-primary: #30435d;
  --text-secondary: #475d6d;
  --text-light: #7c838e;
  
  /* Background */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-accent: #F1F5F9;
}

/* Typography - Conservative sizes */
.navbar-brand {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-lavender);
}

h1 {
  font-size: 2.60rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

h3 {
  font-size: 1.58rem;
  font-weight: 600;
  color: var(--text-primary);
}

h4 {
  font-size: 1.27rem;
  font-weight: 500;
  color: var(--text-primary);
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Progress Bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: transparent;
}

/* Navigation */
.navbar {
  transition: all 0.3s ease;
  backdrop-filter: blur(11px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-lavender);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-lavender) 0%, var(--light-sky) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-decorative-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-mint);
  opacity: 0.1;
  top: 20%;
  right: 10%;
  z-index: 1;
}

.hero-decorative-blob {
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--primary-peach);
  opacity: 0.15;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: 20%;
  left: 5%;
  z-index: 1;
}

/* Section Styling */
.section {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.section-desc {
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

/* Services Section */
.services-card {
  background: var(--bg-primary);
  border: 1px solid var(--light-mint);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(201, 186, 255, 0.15);
}

.services-price {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary-lavender);
}

/* About Features */
.about-feature {
  text-align: center;
  padding: 1.5rem;
}

.about-feature i {
  font-size: 2.62rem;
  color: var(--primary-blush);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.priceplan-card {
  background: var(--bg-primary);
  border: 2px solid var(--light-lavender);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  transition: border-color 0.3s ease;
}

.priceplan-card:hover {
  border-color: var(--primary-lavender);
}

.priceplan-card.featured {
  border-color: var(--primary-lavender);
  background: linear-gradient(135deg, var(--light-lavender) 0%, var(--light-blush) 100%);
}

/* Team Member Cards */
.team-member {
  text-align: center;
  padding: 1rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-mint);
}

/* Reviews Section */
.review-card {
  background: var(--bg-primary);
  border: 1px solid var(--light-sky);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

/* FAQ Section */
.faq-card {
  background: var(--bg-primary);
  border: 1px solid var(--light-peach);
  border-radius: 11px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.58rem;
}

.faq-answer {
  color: var(--text-secondary);
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 2rem;
}

.form-control {
  border: 1px solid var(--light-lavender);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-lavender);
  box-shadow: 0 0 0 0.2rem rgba(179, 144, 255, 0.25);
}

.btn-primary {
  background: var(--primary-lavender);
  border-color: var(--primary-lavender);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 500;
}

.btn-primary:hover {
  background: var(--dark-lavender);
  border-color: var(--dark-lavender);
}

/* Footer */
.footer {
  background: var(--dark-lavender);
  color: white;
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: var(--light-lavender);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-lavender);
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Blog Section */
.blog-card {
  background: var(--bg-primary);
  border: 1px solid var(--light-mint);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* Process/Timeline Items */
.process-item, .timeline-item {
  background: var(--bg-primary);
  border-left: 4px solid var(--primary-sky);
  padding: 1.5rem;
  margin-bottom: 1.73rem;
  border-radius: 0 8px 8px 0;
}

/* Career Items */
.career-item {
  background: var(--bg-secondary);
  border: 1px solid var(--light-peach);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.64rem;
}

/* Core Info Items */
.coreinfo-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-primary);
  border-radius: 8px;
  border: 1px solid var(--light-blush);
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--bg-secondary);
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
  opacity: 0.7;
}

/* Space Page */
#space {
  min-height: 70vh;
  background: linear-gradient(45deg, var(--light-lavender) 0%, var(--light-mint) 50%, var(--light-sky) 100%);
  border-radius: 12px;
  margin: 2rem 0;
}

/* Case Study Items */
.case-study-item {
  text-align: center;
  padding: 1rem;
  background: var(--bg-primary);
  border-radius: 8px;
  border: 1px solid var(--light-sky);
  height: 100%;
  transition: transform 0.3s ease;
}

.case-study-item:hover {
  transform: translateY(-3px);
}

.case-study-item img {
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Hover Effects */
.hover-effect {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(173, 156, 255, 0.20);
}

/* Image Placeholder */
.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 2px dashed var(--light-lavender);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  color: var(--text-light);
  min-height: 200px;
}

.image-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-lavender);
}

.image-placeholder p {
  margin: 0;
  font-size: 1.01rem;
}

/* Utilities */
.text-primary-custom {
  color: var(--primary-lavender);
}

.bg-light-custom {
  background-color: var(--bg-secondary);
}

.border-custom {
  border-color: var(--light-lavender);
} 

.hero-section h1 {
    padding-top: 250px;
}


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
