:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-blue: #3b8dd3;
  --primary-green: #6eda23;
  --primary-red: #d13649;
  --primary-purple: #b81cff;
  --primary-orange: #ffa439;
  
  /* Light Shades */
  --light-blue: #f1f1f2;
  --light-green: #ffffff;
  --light-red: #f5e1e4;
  --light-purple: #f7e7ff;
  --light-orange: #f2f2f2;
  
  /* Dark Shades */
  --dark-blue: #42759b;
  --dark-green: #448324;
  --dark-red: #ae2c24;
  --dark-purple: #4d159a;
  --dark-orange: #bb4b14;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #868a90;
  --dark-gray: #2f3034;
  --black: #000000;
}

/* Global Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.1rem;
  font-weight: 600;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
  display: flex;
  align-items: center;
}

.hero-decorative {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-blue);
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative.blob-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 15%;
}

.hero-decorative.blob-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  background: var(--primary-purple);
}

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

.section.bg-light {
  background-color: var(--light-gray);
}

/* Service Cards */
.service-card {
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Team Cards */
.team-card {
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Review Cards */
.review-card {
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  background: var(--white);
  height: 100%;
}

/* FAQ Cards */
.faq-card {
  border: 1px solid #f4f4f4;
  margin-bottom: 1rem;
  border-radius: 8px;
}

/* Price Plan Cards */
.price-card {
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.price-card.featured {
  border: 2px solid var(--primary-blue);
  transform: scale(1.05);
}

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

.price-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 2rem;
}

.form-control {
  border: 2px solid #bfccd8;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

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

/* Buttons */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}

.btn-outline-primary {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
}

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

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--light-gray);
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
}

/* Reduced Motion Support */
@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;
  }
}

/* Process Steps */
.process-step {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Timeline Items */
.timeline-item {
  border-left: 3px solid var(--primary-blue);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 13px;
  height: 13px;
  background: var(--primary-blue);
  border-radius: 50%;
}

/* Blog Cards */
.blog-card {
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

/* Case Study Cards */
.case-study-card {
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

/* Career Cards */
.career-card {
  border: 1px solid #c0ccda;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s ease;
}

.career-card:hover {
  border-color: var(--primary-blue);
}

/* Core Info Cards */
.info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  text-align: center;
  height: 100%;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
} 

.hero-section h1 {
    padding-top: 275px;
}


/* 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;
    }
}
