:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-green: #28a745;
  --primary-green-light: #6fcf7f;
  --primary-green-dark: #1e7e34;
  
  --accent-blue: #17a2b8;
  --accent-blue-light: #7dd3df;
  --accent-blue-dark: #117a8b;
  
  --neutral-gray: #6c757d;
  --neutral-gray-light: #adb5bd;
  --neutral-gray-dark: #495057;
  
  --background-cream: #f8f9fa;
  --background-cream-light: #ffffff;
  --background-cream-dark: #e9ecef;
  
  --text-charcoal: #212529;
  --text-charcoal-light: #495057;
  --text-charcoal-dark: #000000;
}

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

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

/* Typography - Conservative Font Sizes */
.navbar-brand {
  font-size: 1.25rem;
}

h1, .display-4 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2, .h2 {
  font-size: 1.75rem;
  font-weight: 600;
}

h3, .h3 {
  font-size: 1.5rem;
}

h4, .h4, h5, .h5 {
  font-size: 1.25rem;
}

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

.lead {
  font-weight: 400;
}

/* Header Styles */
#header {
  background-color: var(--background-cream-light);
  border-bottom: 1px solid var(--background-cream-dark);
}

.navbar-brand {
  color: var(--primary-green) !important;
  font-weight: 700;
}

.navbar-nav .nav-link {
  color: var(--text-charcoal);
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-green);
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, var(--background-cream) 0%, var(--background-cream-light) 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: var(--primary-green-light);
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(50%, -50%);
}

#hero .btn-success {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

#hero .btn-success:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  transform: translateY(-2px);
}

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

/* Card Styles */
.card {
  border: none;
  border-radius: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

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

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-title {
  color: var(--text-charcoal);
  font-weight: 600;
}

.card-text {
  color: var(--text-charcoal-light);
}

/* Services Section */
#services .card {
  height: 100%;
}

#services .card-body {
  display: flex;
  flex-direction: column;
}

#services .card-text {
  flex-grow: 1;
}

/* Team Section */
#team img {
  border: 3px solid var(--primary-green-light);
  transition: transform 0.3s ease;
}

#team img:hover {
  transform: scale(1.05);
}

/* Process Section */
#process .bg-success {
  background-color: var(--primary-green) !important;
}

/* Buttons */
.btn-success {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  font-weight: 600;
}

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

.btn-outline-success {
  color: var(--primary-green);
  border-color: var(--primary-green);
  font-weight: 600;
}

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

/* Forms */
.form-control {
  border-radius: 0.5rem;
  border: 1px solid var(--neutral-gray-light);
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-label {
  font-weight: 600;
  color: var(--text-charcoal);
}

/* Gallery */
#gallery img {
  transition: transform 0.3s ease;
  border-radius: 0.5rem;
}

#gallery img:hover {
  transform: scale(1.05);
}

/* FAQ Cards */
#faq .card {
  margin-bottom: 1rem;
}

#faq .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-green);
}

/* Footer */
#footer {
  background-color: var(--text-charcoal-dark) !important;
}

#footer h5, #footer h6 {
  color: var(--background-cream-light);
  font-weight: 600;
}

#footer p {
  color: var(--neutral-gray-light);
}

#footer .text-white-50 {
  color: var(--neutral-gray-light) !important;
  text-decoration: none;
}

#footer .text-white-50:hover {
  color: var(--primary-green-light) !important;
}

/* Utility Classes */
.text-success {
  color: var(--primary-green) !important;
}

.bg-light {
  background-color: var(--background-cream) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Icon Styles */
.fa {
  color: var(--primary-green);
}

/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  padding: 0;
}

.breadcrumb-item img {
  opacity: 0.6;
}

/* Animation Classes for ScrollReveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Info Icons */
#contacts .fa-2x {
  margin-bottom: 1rem;
}

/* Pricing Cards */
#priceplan .border-success {
  border-color: var(--primary-green) !important;
  border-width: 2px !important;
}

/* Timeline Cards */
#timeline .card {
  border-left: 4px solid var(--primary-green);
}

/* Blog Grid */
#blog_grid .card-img-top {
  height: 180px;
  object-fit: cover;
}

/* Testimonials */
#reviews .card {
  border-left: 3px solid var(--primary-green-light);
}

/* Core Info Icons */
#coreinfo .fa-2x {
  margin-bottom: 1rem;
}

/* Features Section */
#features .fa-2x {
  margin-right: 1rem;
  margin-top: 0.25rem;
}

/* Career Cards */
#career .card {
  transition: border-color 0.3s ease;
}

#career .card:hover {
  border-color: var(--primary-green-light);
}

/* Case Study Cards */
#casestudy .card {
  border-top: 3px solid var(--accent-blue);
}

/* Additional Page Styling */
.card-body .fa-3x {
  margin-bottom: 1.5rem;
}

/* Hover Effects */
.card:hover .fa {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Mobile Optimizations - handled in responsive.css */ 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

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