:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-blue: #4A90E2;
  --primary-green: #7ED321;
  --primary-purple: #9013FE;
  --primary-orange: #F5A623;
  --primary-pink: #E91E63;
  
  /* Light/Dark Shades */
  --light-blue: #E3F2FD;
  --dark-blue: #1565C0;
  --light-green: #F1F8E9;
  --dark-green: #388E3C;
  --light-purple: #F3E5F5;
  --dark-purple: #6A1B9A;
  --light-orange: #FFF3E0;
  --dark-orange: #E65100;
  --light-pink: #FCE4EC;
  --dark-pink: #AD1457;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #6C757D;
  --dark-gray: #343A40;
  --black: #000000;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.375rem;
  --font-size-h2: 1.5rem;
  --font-size-h1: 1.75rem;
}

/* Reset and Base */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: var(--font-size-lg) !important;
  font-weight: 600;
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.625rem;
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.lead {
  font-size: var(--font-size-lg);
}

/* Header */
#header {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-gray);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-green);
  opacity: 0.1;
  top: 10%;
  right: 10%;
}

.hero-decoration::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-orange);
  opacity: 0.8;
  top: -50px;
  left: -50px;
}

/* About Section */
#about {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1.5rem;
}

/* Services Section */
#services {
  padding: 80px 0;
  background-color: var(--white);
}

.service-card {
  border: none;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-blue);
  margin-top: 1rem;
}

/* Features Section */
#features {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Price Plan Section */
#priceplan {
  padding: 80px 0;
  background-color: var(--white);
}

.price-card {
  border: 2px solid var(--light-gray);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-3px);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  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 var(--light-gray);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
#team {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  height: 100%;
}

.team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--light-blue);
}

/* Reviews Section */
#reviews {
  padding: 80px 0;
  background-color: var(--white);
}

.review-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 2rem;
  border: none;
  height: 100%;
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--medium-gray);
}

.review-author {
  font-weight: 600;
  color: var(--dark-gray);
}

/* Case Study Section */
#casestudy {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.case-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: none;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Process Section */
#process {
  padding: 80px 0;
  background-color: var(--white);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-purple);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

/* Contact Section */
#contact {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  padding: 0.75rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  transform: translateY(-2px);
}

/* Blog Section */
#blog {
  padding: 80px 0;
  background-color: var(--white);
}

.blog-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-image {
  height: 200px;
  object-fit: cover;
}

/* FAQ Section */
#faq {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.faq-card {
  background: var(--white);
  border: none;
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--medium-gray);
  margin-bottom: 0;
}

/* Gallery Section */
#gallery {
  padding: 80px 0;
  background-color: var(--white);
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
#footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-section h5 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  border-top: 1px solid var(--medium-gray);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

/* Utilities */
.section-padding {
  padding: 80px 0;
}

.text-muted {
  color: var(--medium-gray) !important;
}

.bg-light {
  background-color: var(--light-gray) !important;
}

.bg-primary {
  background-color: var(--primary-blue) !important;
}

/* Accessibility - Respect 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;
  }
  
  .service-card:hover,
  .blog-card:hover,
  .price-card:hover,
  .gallery-item:hover,
  .btn-primary:hover {
    transform: none;
  }
} 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

.x-link::after {
    content: '✦';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
