:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-1: #6366f1; /* Indigo */
  --primary-2: #06b6d4; /* Cyan */
  --primary-3: #8b5cf6; /* Violet */
  --primary-4: #f59e0b; /* Amber */
  --primary-5: #ef4444; /* Red */
  
  /* Light Shades */
  --primary-1-light: #a5b4fc;
  --primary-2-light: #67e8f9;
  --primary-3-light: #c4b5fd;
  --primary-4-light: #fbbf24;
  --primary-5-light: #fca5a5;
  
  /* Dark Shades */
  --primary-1-dark: #4338ca;
  --primary-2-dark: #0891b2;
  --primary-3-dark: #7c3aed;
  --primary-4-dark: #d97706;
  --primary-5-dark: #dc2626;
  
  /* Neutral Colors */
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-400: #94a3b8;
  --neutral-500: #64748b;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;
  
  /* 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;
  --font-size-4xl: 2.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --section-padding-sm: 3rem 0;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--neutral-700);
  background-color: var(--neutral-50);
}

/* Conservative Typography */
h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  line-height: 1.2;
  color: var(--neutral-800);
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  line-height: 1.3;
  color: var(--neutral-800);
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 1.4;
  color: var(--neutral-700);
}

h4 {
  font-size: var(--font-size-lg);
  font-weight: 500;
  line-height: 1.4;
  color: var(--neutral-700);
}

p {
  font-size: var(--font-size-base);
  color: var(--neutral-600);
  margin-bottom: 1rem;
}

/* Links */
a {
  color: var(--primary-1);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-1-dark);
}

/* Header */
.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-1);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--neutral-600);
  transition: color 0.2s ease;
}

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: var(--primary-2-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 225px;
}

/* Sections */
section {
  padding: var(--section-padding);
}

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

.section-subtitle {
  color: var(--primary-1);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: white;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

/* Services Cards */
.service-card {
  height: 100%;
  text-align: center;
  padding: 2rem;
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-1);
  margin-top: 1rem;
}

/* Features */
.feature-item {
  text-align: center;
  padding: 2rem;
}

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

/* Price Plans */
.price-plan {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

.price-plan:hover {
  transform: translateY(-4px);
}

.price-plan.featured {
  border: 2px solid var(--primary-1);
  transform: scale(1.05);
}

.price-value {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--primary-1);
}

.price-period {
  color: var(--neutral-500);
  font-size: var(--font-size-sm);
}

/* Team */
.team-member {
  text-align: center;
}

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

/* Reviews */
.review-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.review-stars {
  color: var(--primary-4);
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--neutral-700);
  margin-top: 1rem;
}

/* FAQ */
.faq-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-1);
}

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

.faq-answer {
  color: var(--neutral-600);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.form-control {
  border: 2px solid var(--neutral-200);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

/* Buttons */
.btn {
  border-radius: 8px;
  font-weight: 500;
  padding: 0.75rem 2rem;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

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

.btn-outline-primary {
  color: var(--primary-1);
  border-color: var(--primary-1);
}

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

/* Footer */
footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: 3rem 0 1rem;
}

footer h5 {
  color: white;
  margin-bottom: 1rem;
}

footer a {
  color: var(--neutral-400);
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--primary-1-light);
}

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

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

/* Gallery */
.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Animations - Sal.js compatible */
.sal-animate {
  transition-duration: 0.5s;
  transition-timing-function: ease;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .sal-animate {
    transition: none !important;
  }
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-light-gradient {
  background: linear-gradient(135deg, var(--neutral-50), var(--primary-1-light));
}

.border-primary {
  border-color: var(--primary-1);
}

.text-primary-1 { color: var(--primary-1); }
.text-primary-2 { color: var(--primary-2); }
.text-primary-3 { color: var(--primary-3); }
.text-primary-4 { color: var(--primary-4); }
.text-primary-5 { color: var(--primary-5); }

.bg-primary-1 { background-color: var(--primary-1); }
.bg-primary-2 { background-color: var(--primary-2); }
.bg-primary-3 { background-color: var(--primary-3); }
.bg-primary-4 { background-color: var(--primary-4); }
.bg-primary-5 { background-color: var(--primary-5); } 


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

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

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

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