:root {
  /* Primary Colors - Pastel High-Contrast */
  --primary-color-1: #786cfd; /* Indigo */
  --primary-color-2: #9577fd; /* Purple */
  --primary-color-3: #13bae6; /* Cyan */
  --primary-color-4: #00a879; /* Emerald */
  --primary-color-5: #dca008; /* Amber */
  
  /* Light Shades */
  --primary-light-1: #e2e9ff;
  --primary-light-2: #ffffff;
  --primary-light-3: #d9fffc;
  --primary-light-4: #e2f3ec;
  --primary-light-5: #e8e2b1;
  
  /* Dark Shades */
  --primary-dark-1: #272fd1;
  --primary-dark-2: #7c27de;
  --primary-dark-3: #0099b9;
  --primary-dark-4: #0da089;
  --primary-dark-5: #e6761a;
  
  /* Typography */
  --font-size-base: 111px;
  --font-size-sm: 17px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 28px;
  --font-size-3xl: 28px;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --section-padding-sm: 3rem 0;
}

/* Animation library integration - Sal.js */
[data-sal] {
  transition-duration: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  [data-sal] {
    transition: none !important;
  }
}

/* Global Typography - Conservative sizes */
body {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #2f3c52;
}

h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--primary-color-2);
  margin-bottom: 1.12rem;
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-color-3);
  margin-bottom: 1.04rem;
}

h4 {
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: var(--primary-color-4);
  margin-bottom: 1.04rem;
}

h5 {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--primary-color-5);
  margin-bottom: 0.81rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: #4d5668;
}

/* Conservative navbar brand size */
.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--primary-color-1);
}

/* Section spacing */
section {
  padding: var(--section-padding);
}

/* Hero section - fullscreen height */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-light-1) 0%, var(--primary-light-3) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-light-2) 0%, transparent 70%);
  opacity: 0.3;
  transform: rotate(45deg);
}

/* Service cards */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid var(--primary-light-1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-color-1);
}

/* Team member cards */
.team-member {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-3px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border: 3px solid var(--primary-light-1);
}

/* Review cards - static only */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-color-2);
  height: 100%;
}

/* FAQ cards - static only */
.faq-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--primary-light-1);
}

.faq-question {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--primary-color-1);
  margin-bottom: 0.72rem;
}

.faq-answer {
  font-size: var(--font-size-base);
  color: #737a83;
  line-height: 1.6;
}

/* Gallery images */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Contact form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid var(--primary-light-1);
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
}

.contact-form .form-control:focus {
  border-color: var(--primary-color-1);
  box-shadow: 0 0 0 0.2rem rgba(97, 83, 217, 0.25);
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark-1);
  border-color: var(--primary-dark-1);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-dark-1) 0%, var(--primary-dark-2) 100%);
  color: white;
  padding: 3rem 0 1rem;
}

footer h5 {
  color: white;
  margin-bottom: 1rem;
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
  color: white;
  text-decoration: none;
}

/* Utility classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color-1), var(--primary-color-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-bg {
  background: var(--primary-light-1);
}

.section-bg-alt {
  background: var(--primary-light-2);
}

/* Decorative elements */
.decorative-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color-3), var(--primary-color-4));
  opacity: 0.1;
  z-index: -1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 10%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 70%;
}

/* Navbar scroll effect */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Loading state */
body.loading {
  overflow: hidden;
}

body.loading::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-light-1);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.loading::after {
  content: 'Loading...';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  font-size: var(--font-size-lg);
  color: var(--primary-color-1);
  font-weight: 600;
}

/* Back to top button enhancements */
.back-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color-1);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: none;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.back-to-top-btn:hover {
  background: var(--primary-dark-1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Breadcrumb styling */
.breadcrumb {
  background: transparent;
  padding: 0.5rem 0;
  margin-bottom: 0;
}

.breadcrumb-item img {
  filter: opacity(0.7);
  transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
  filter: opacity(1);
}

/* Additional production-ready enhancements */
.navbar-brand:hover {
  color: var(--primary-dark-1);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color-1);
  transition: color 0.3s ease;
}

/* Error handling for missing images */
img {
  max-width: 100%;
  height: auto;
}

img:not([src]),
img[src=""],
img[src="#"] {
  opacity: 0;
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-color-1);
  outline-offset: 2px;
}

/* Loading animation for images */
img[data-src] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[data-src].loaded {
  opacity: 1;
}

/* Smooth transitions for interactive elements */
.service-card,
.team-member,
.review-card,
.faq-card {
  transition: all 0.3s ease;
}

/* Print optimizations */
@media print {
  .navbar,
  .back-to-top-btn,
  .decorative-shape {
    display: none !important;
  }
  
  .container {
    max-width: none !important;
    width: 100% !important;
  }
  
  .hero-section {
    background: white !important;
    color: black !important;
  }
} 

.hero-section h1 {
    padding-top: 225px;
}


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
