:root {
  /* Primary Color Palette - 5 pastel high-contrast colors */
  --primary-lavender: #B8A9FF;
  --primary-blush: #FFB3C1;
  --primary-mint: #B3F5D1;
  --primary-peach: #FFD4A3;
  --primary-sky: #A3D5FF;
  
  /* Light shades */
  --light-lavender: #E6E0FF;
  --light-blush: #FFE6EB;
  --light-mint: #E6FDF2;
  --light-peach: #FFF2E6;
  --light-sky: #E6F4FF;
  
  /* Dark shades */
  --dark-lavender: #6B5B73;
  --dark-blush: #8B6B73;
  --dark-mint: #6B8B73;
  --dark-peach: #8B7B6B;
  --dark-sky: #6B7B8B;
  
  /* Typography */
  --text-primary: #2C3E50;
  --text-secondary: #5A6C7D;
  --text-light: #8194A5;
  
  /* Background */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-accent: #F1F5F9;
}

/* Typography - Conservative sizes */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-lavender);
}

h1 {
  font-size: 2.5rem;
  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.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

h4 {
  font-size: 1.25rem;
  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(10px);
}

.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(184, 169, 255, 0.15);
}

.services-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-lavender);
}

/* About Features */
.about-feature {
  text-align: center;
  padding: 1.5rem;
}

.about-feature i {
  font-size: 2.5rem;
  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: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.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(184, 169, 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(--primary-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.5rem;
  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.5rem;
}

/* 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(184, 169, 255, 0.2);
}

/* 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: 0.9rem;
}

/* 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: 275px;
}


/* 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;
    }
}
