:root {
  /* Color Palette - 5 primary colors + shades */
  --primary-rose: #e6deb5;
  --primary-sage: #a1b38b;
  --primary-cream: #edeadb;
  --primary-terracotta: #cfaf75;
  --primary-charcoal: #393534;
  
  /* Light/Dark Shades */
  --light-rose: #fff9f0;
  --dark-sage: #6c855a;
  --light-cream: #fffcf5;
  --dark-terracotta: #a17b57;
  --light-charcoal: #727272;
}

/* Base Typography */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--primary-charcoal);
  background-color: var(--primary-cream);
}

/* Add image loading styles for lazy loaded images */
.lozad {
  transition: opacity 0.3s ease;
  min-height: 50px;
}

/* Ensure images are displayed even if animations are disabled */
[data-sal] img {
  opacity: 1 !important;
}

/* Fix for mobile sal.js animations - ensure they're visible */
@media (max-width: 767.98px) {
  [data-sal] {
    opacity: 1 !important;
    transform: none !important;
  }
  
  img[data-src] {
    opacity: 1 !important;
  }
}

/* Conservative font sizes */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-charcoal);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-charcoal);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-charcoal);
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-charcoal);
}

p {
  font-size: 1rem;
  color: var(--light-charcoal);
}

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

/* Header */
.navbar {
  background-color: var(--primary-cream);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--primary-charcoal);
  font-weight: 500;
  margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--primary-rose);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  opacity: 0.3;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-sage);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  opacity: 0.2;
}

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

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

/* Cards */
.custom-card {
  background: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.card-img-top {
  border-radius: 12px 12px 0 0;
  height: 200px;
  object-fit: cover;
}

/* Services Cards */
.service-card {
  background: white;
  border: 2px solid var(--primary-rose);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

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

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

/* Team Cards */
.team-card {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

/* Reviews */
.review-card {
  background: var(--light-rose);
  border: none;
  border-radius: 15px;
  padding: 2rem;
}

/* FAQ */
.faq-card {
  background: white;
  border: 1px solid var(--primary-rose);
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1.5rem;
}

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

.faq-answer {
  color: var(--light-charcoal);
}

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

.form-control {
  border: 2px solid var(--primary-rose);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(145, 172, 121, 0.25);
}

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

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

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

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

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

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

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
}

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

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

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

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

.price-card.featured {
  border-color: var(--primary-sage);
  background: var(--light-rose);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Contact Info */
.contact-info {
  background: var(--light-rose);
  border-radius: 15px;
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary-sage);
  margin-right: 1rem;
  width: 30px;
}

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

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

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 80px;
  height: 80px;
  background: var(--primary-sage);
  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 */
.timeline-item {
  background: white;
  border-left: 4px solid var(--primary-sage);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Career Cards */
.career-card {
  background: white;
  border: 1px solid var(--primary-rose);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.career-card:hover {
  border-color: var(--primary-sage);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Case Study Cards */
.case-study-card {
  background: var(--light-cream);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

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

/* Core Info Cards */
.core-info-card {
  background: white;
  border-top: 4px solid var(--primary-sage);
  border-radius: 0 0 15px 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
} 

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


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