:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-color: #8B5A8C;
  --secondary-color: #6B9BD2;
  --accent-color: #E8A87C;
  --success-color: #7FB069;
  --warning-color: #F4A261;
  
  /* Light/Dark Shades */
  --primary-light: #B08BB1;
  --primary-dark: #654167;
  --secondary-light: #9BB8E0;
  --secondary-dark: #4A7AB8;
  --accent-light: #F0BFA0;
  --accent-dark: #D18A58;
  --success-light: #A5C88D;
  --success-dark: #5B8C4A;
  --warning-light: #F7B885;
  --warning-dark: #E8943D;
  
  /* Neutral Colors */
  --light-bg: #FEFEFE;
  --dark-text: #2C2C2C;
  --medium-gray: #6C757D;
  --light-gray: #F8F9FA;
}

/* Typography - Conservative Font Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--light-bg);
    overflow-x: hidden;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--secondary-dark);
  margin-bottom: 0.625rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.lead {
  font-size: 1.125rem;
  color: var(--medium-gray);
}

/* Conservative Navbar Brand */
.navbar-brand {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Hero Section - Fullscreen */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--accent-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

#hero .container {
  position: relative;
  z-index: 1;
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(139, 90, 140, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--light-gray);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(139, 90, 140, 0.15);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Testimonials - Static Bootstrap Cards */
.testimonial-card {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 2px 15px rgba(107, 155, 210, 0.08);
}

/* FAQ Cards - Static Only */
.faq-card {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(107, 155, 210, 0.1);
  border: 1px solid var(--light-gray);
  height: 100%;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--accent-light);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(139, 90, 140, 0.1);
}

.form-control {
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 90, 140, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

/* Footer - High Contrast Colors Only */
#footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 3rem 0 1rem;
}

#footer h5 {
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

#footer p, #footer a {
  color: #E9ECEF;
}

#footer a:hover {
  color: var(--accent-light);
  text-decoration: none;
}

/* Sections Spacing */
section {
  padding: 4rem 0;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px 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 {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Breadcrumbs - Image Only */
.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 16px;
  height: 16px;
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-color);
}

.bg-light-custom {
  background-color: var(--light-gray);
}

.border-primary-custom {
  border-color: var(--primary-color);
} 


/* 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;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    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;
    }
}
