:root {
  /* Color Palette - 5 primary pastel high-contrast colors */
  --primary-coral: #FF6B6B;
  --primary-lavender: #E0A3E0;
  --primary-mint: #4ECDC4;
  --primary-peach: #FFE5AD;
  --primary-sage: #95D5B2;
  
  /* Light shades */
  --coral-light: #FFB3B3;
  --lavender-light: #F0D3F0;
  --mint-light: #A7E6E2;
  --peach-light: #FFF2D6;
  --sage-light: #C7E7D9;
  
  /* Dark shades */
  --coral-dark: #E55555;
  --lavender-dark: #C992C9;
  --mint-dark: #3BB5AD;
  --peach-dark: #E6CC97;
  --sage-dark: #7FC99B;
  
  /* Typography */
  --font-size-sm: 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;
}

/* Prefers-reduced-motion respect */
@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;
  }
}

/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
    overflow-x: hidden;
}

/* Header */
#header {
  background: var(--primary-coral);
  color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: white !important;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--peach-light) !important;
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, var(--primary-lavender), var(--lavender-light));
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--coral-dark);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: var(--font-size-lg);
  color: #555;
  margin-bottom: 2rem;
}

/* About Section */
#about {
  background: var(--peach-light);
  padding: 4rem 0;
}

.feature-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-2px);
}

.feature-card .fas {
  color: var(--primary-mint);
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Services Section */
#services {
  background: white;
  padding: 4rem 0;
}

.service-card {
  background: white;
  border: 2px solid var(--mint-light);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--primary-mint);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-price {
  color: var(--primary-coral);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-top: auto;
}

/* Features Section */
#features {
  background: var(--sage-light);
  padding: 4rem 0;
}

/* Price Plan Section */
#priceplan {
  background: white;
  padding: 4rem 0;
}

.price-card {
  background: white;
  border: 2px solid var(--lavender-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  border-color: var(--primary-lavender);
  transform: translateY(-4px);
}

.price-value {
  color: var(--primary-coral);
  font-size: var(--font-size-3xl);
  font-weight: 700;
}

/* Team Section */
#team {
  background: var(--mint-light);
  padding: 4rem 0;
}

.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Reviews Section */
#reviews {
  background: white;
  padding: 4rem 0;
}

.review-card {
  background: var(--peach-light);
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
}

/* Case Studies Section */
#casestudy {
  background: var(--sage-light);
  padding: 4rem 0;
}

.case-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Process Section */
#process {
  background: white;
  padding: 4rem 0;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

.process-number {
  background: var(--primary-coral);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  background: var(--lavender-light);
  padding: 4rem 0;
}

.timeline-item {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-mint);
}

/* Career Section */
#career {
  background: white;
  padding: 4rem 0;
}

.career-card {
  background: var(--mint-light);
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
}

/* Core Info Section */
#coreinfo {
  background: var(--peach-light);
  padding: 4rem 0;
}

.info-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-card .fas {
  color: var(--primary-coral);
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Contact Section */
#contact {
  background: white;
  padding: 4rem 0;
}

.contact-form {
  background: var(--sage-light);
  border-radius: 12px;
  padding: 2rem;
}

.form-control {
  border: 2px solid var(--mint-light);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-mint);
  box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25);
}

.btn-primary {
  background: var(--primary-coral);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: var(--coral-dark);
}

/* Blog Section */
#blog {
  background: var(--lavender-light);
  padding: 4rem 0;
}

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-2px);
}

/* FAQ Section */
#faq {
  background: white;
  padding: 4rem 0;
}

.faq-card {
  background: var(--peach-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--coral-dark);
  margin-bottom: 0.5rem;
}

/* Gallery Section */
#gallery {
  background: var(--sage-light);
  padding: 4rem 0;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
#footer {
  background: var(--coral-dark);
  color: white;
  padding: 3rem 0 1rem;
}

#footer h5 {
  color: var(--peach-light);
  margin-bottom: 1rem;
}

#footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--peach-light);
}

/* Section Titles */
.section-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--coral-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: #666;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-desc {
  color: #555;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Decorative Elements */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-coral);
  top: 20%;
  right: 10%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-mint);
  bottom: 20%;
  left: 10%;
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
