:root {
  /* Primary Color Palette - 5 main colors with light/dark shades */
  --primary-orange: #ff8b39;
  --primary-orange-light: #ff906d;
  --primary-orange-dark: #fa6518;
  
  --primary-blue: #208195;
  --primary-blue-light: #499ebf;
  --primary-blue-dark: #1c496b;
  
  --primary-green: #b7f3dc;
  --primary-green-light: #e0ffee;
  --primary-green-dark: #75b598;
  
  --primary-gray: #F8F9FA;
  --primary-gray-light: #FFFFFF;
  --primary-gray-dark: #dfe5f1;
  
  --primary-charcoal: #434d55;
  --primary-charcoal-light: #899096;
  --primary-charcoal-dark: #121419;
  
  /* 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;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-charcoal);
  background-color: var(--primary-gray-light);
}

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

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-orange);
  border-radius: 50%;
  top: 10%;
  right: 10%;
  opacity: 0.1;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--primary-green);
  border-radius: 50%;
  bottom: 20%;
  left: 5%;
  opacity: 0.1;
}

/* Sections Styling */
.section-padding {
  padding: 80px 0;
}

.section-title {
  color: var(--primary-blue-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-charcoal-light);
  margin-bottom: 2rem;
}

.section-desc {
  color: var(--primary-charcoal);
  font-size: var(--font-size-lg);
  margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  margin-bottom: 30px;
}

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

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-orange);
}

/* Feature Cards */
.feature-card {
  background: var(--primary-gray);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 30px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

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

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

/* Price Plan Cards */
.price-card {
  background: white;
  border: 2px solid var(--primary-gray-dark);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-orange);
  transform: translateY(-3px);
}

.price-card.featured {
  border-color: var(--primary-orange);
  background: linear-gradient(135deg, var(--primary-orange-light) 0%, var(--primary-orange) 100%);
  color: white;
  transform: scale(1.05);
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  margin-bottom: 30px;
}

.team-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--primary-gray);
}

/* Review Cards */
.review-card {
  background: white;
  border-left: 4px solid var(--primary-green);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.review-author {
  font-weight: 600;
  color: var(--primary-blue-dark);
  margin-top: 1rem;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border: 1px solid var(--primary-gray-dark);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-blue-dark);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--primary-charcoal);
  margin-bottom: 0;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--primary-gray-dark);
  border-radius: 8px;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

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

.btn-primary-custom {
  background: var(--primary-orange);
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary-custom:hover {
  background: var(--primary-orange-dark);
}

/* Footer */
.footer {
  background: var(--primary-charcoal-dark);
  color: white;
  padding: 50px 0 20px;
}

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

.footer a {
  color: var(--primary-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px 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);
}

/* Process Steps */
.process-step {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

/* Timeline Items */
.timeline-item {
  background: white;
  border-left: 4px solid var(--primary-blue);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin-bottom: 30px;
  position: relative;
}

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

/* Case Study Cards */
.case-study-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-3px);
}

/* Career Cards */
.career-card {
  background: var(--primary-gray);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 30px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

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

/* Core Info Cards */
.core-info-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.core-info-icon {
  font-size: 2.5rem;
  color: var(--primary-green-dark);
  margin-bottom: 1rem;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

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

/* Contact Info */
.contact-info {
  background: var(--primary-blue);
  color: white;
  border-radius: 15px;
  padding: 2rem;
  margin-top: 2rem;
}

.contact-info i {
  color: var(--primary-orange);
  margin-right: 10px;
}

/* Removed Sal.js animations */

/* Breadcrumbs */
.breadcrumb-container {
  padding: 20px 0;
  background: var(--primary-gray);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
} 

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


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