:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-mint: #a8e6cf;
  --primary-coral: #ffb3ba;
  --primary-lavender: #d4c5f9;
  --primary-peach: #ffd3a5;
  --primary-sky: #a8d8ea;
  
  /* Light/Dark Shades */
  --mint-light: #d4f2e2;
  --mint-dark: #7dd3a3;
  --coral-light: #ffd9dd;
  --coral-dark: #ff8a94;
  --lavender-light: #e8ddfb;
  --lavender-dark: #c0a4f5;
  --peach-light: #ffe6d1;
  --peach-dark: #ffbf7a;
  --sky-light: #d1e9f2;
  --sky-dark: #7cc5dd;
  
  /* Typography */
  --font-size-small: 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.75rem;
}

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

/* Conservative Typography */
.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 600;
}

h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Header Styles */
#header {
  background: linear-gradient(135deg, var(--primary-mint), var(--mint-light));
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  color: var(--mint-dark);
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--mint-dark);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-sky), var(--sky-light));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-decorative {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-coral);
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-blob-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-lavender);
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 125px;
}

/* About Section */
#about {
  background: var(--mint-light);
  padding: 5rem 0;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

/* Services Section */
#services {
  background: white;
  padding: 5rem 0;
}

.service-card {
  background: linear-gradient(135deg, var(--lavender-light), white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

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

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-coral);
  margin-top: 1rem;
}

/* Features Section */
#features {
  background: var(--peach-light);
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary-peach);
  margin-bottom: 1rem;
}

/* Price Plan Section */
#priceplan {
  background: var(--sky-light);
  padding: 5rem 0;
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-sky);
  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 {
  background: white;
  padding: 5rem 0;
}

.team-card {
  background: var(--lavender-light);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-lavender);
}

/* Reviews Section */
#reviews {
  background: var(--coral-light);
  padding: 5rem 0;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #555;
}

.review-author {
  font-weight: 600;
  color: var(--primary-coral);
}

/* Case Study Section */
#casestudy {
  background: var(--mint-light);
  padding: 5rem 0;
}

.case-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 100%;
}

/* Process Section */
#process {
  background: white;
  padding: 5rem 0;
}

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

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

/* Timeline Section */
#timeline {
  background: var(--sky-light);
  padding: 5rem 0;
}

.timeline-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary-sky);
  border-radius: 50%;
}

/* Career Section */
#career {
  background: var(--lavender-light);
  padding: 5rem 0;
}

.career-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 100%;
}

.career-role {
  color: var(--primary-lavender);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Core Info Section */
#coreinfo {
  background: var(--peach-light);
  padding: 5rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.info-item i {
  font-size: 2rem;
  color: var(--primary-peach);
  margin-bottom: 1rem;
}

/* Contact Section */
#contacts {
  background: var(--mint-light);
  padding: 5rem 0;
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 8px;
  border: 2px solid #e9ecef;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-mint);
  box-shadow: 0 0 0 0.2rem rgba(168, 230, 207, 0.25);
}

.btn-primary {
  background: var(--primary-coral);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

/* Blog Section */
#blog {
  background: white;
  padding: 5rem 0;
}

.blog-card {
  background: var(--sky-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.blog-content {
  padding: 2rem;
}

/* FAQ Section */
#faq {
  background: var(--lavender-light);
  padding: 5rem 0;
}

.faq-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-lavender);
  margin-bottom: 1rem;
}

.faq-answer {
  color: #666;
  margin-bottom: 0;
}

/* Gallery Section */
#gallery {
  background: var(--peach-light);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
#footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--primary-mint);
  margin-bottom: 1rem;
}

.footer-link {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-mint);
}

#site-copyright {
  color: #95a5a6;
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #34495e;
  margin-top: 2rem;
}

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: #666;
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

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

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Image Placeholders */
.img-placeholder {
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: var(--font-size-small);
  border-radius: 8px;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
