:root {
  /* Primary Color Palette */
  --primary-cream: #f5f1e8;
  --primary-gold: #d4af37;
  --primary-brown: #8b4513;
  --primary-orange: #ff8c42;
  --primary-green: #7a9a4d;
  
  /* Light Shades */
  --light-cream: #faf8f3;
  --light-gold: #e6c566;
  --light-brown: #a0673a;
  --light-orange: #ffb57a;
  --light-green: #95b366;
  
  /* Dark Shades */
  --dark-cream: #e8e0d4;
  --dark-gold: #b8951f;
  --dark-brown: #6b340d;
  --dark-orange: #cc5f1a;
  --dark-green: #5c7538;
  
  /* Conservative font sizes */
  --fs-small: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.75rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-brown);
  background-color: var(--light-cream);
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header & Navigation */
.navbar-brand {
  font-size: var(--fs-xl) !important;
  font-weight: 600;
  color: var(--primary-brown) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-brown) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-gold) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-gold) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../WEL_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Typography */
h1 {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--primary-brown);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--primary-brown);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--fs-base);
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-gold), var(--primary-brown));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-gold);
  font-size: var(--fs-lg);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Services */
.services-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.services-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.price-tag {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

/* Team */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary-gold);
  margin: 0 auto 1rem;
  display: block;
}

/* Testimonials */
.testimonial-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin: 1rem;
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background: var(--primary-cream);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--light-gold);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--light-cream);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: var(--fs-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-brown), var(--primary-brown));
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-gold);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Utilities */
.bg-primary-cream { background-color: var(--primary-cream); }
.bg-primary-gold { background-color: var(--primary-gold); }
.bg-primary-brown { background-color: var(--primary-brown); }
.bg-primary-orange { background-color: var(--primary-orange); }
.bg-primary-green { background-color: var(--primary-green); }

.text-primary-cream { color: var(--primary-cream); }
.text-primary-gold { color: var(--primary-gold); }
.text-primary-brown { color: var(--primary-brown); }
.text-primary-orange { color: var(--primary-orange); }
.text-primary-green { color: var(--primary-green); }

/* Timeline Styles */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-item {
  background: white;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: var(--primary-gold);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--primary-gold);
}

/* Process Steps */
.process-step {
  position: relative;
  padding: 2rem 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Pricing Cards */
.pricing-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
}

.pricing-card.featured {
  border-color: var(--primary-gold);
  background: linear-gradient(135deg, var(--light-cream), var(--primary-cream));
}

.pricing-card.featured .card-body {
  overflow-x: hidden;
  position: relative;
}

.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gold);
  color: white;
  padding: 5px 20px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Career Items */
.career-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.career-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Info Cards */
.info-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Blog Cards */
.blog-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  border-radius: 8px;
}

/* Feature Items */
.feature-item {
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
}

/* Navbar Scrolled State */
.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-gold);
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Form States */
.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Alert Messages */
.alert {
  border: none;
  border-radius: 10px;
}

.alert-success {
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  color: white;
}

/* Back to Top Button */
.back-to-top {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 1000 !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  display: none !important;
  opacity: 0.8 !important;
  transition: all 0.3s ease !important;
}

.back-to-top:hover {
  opacity: 1 !important;
  transform: translateY(-2px) !important;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-brown);
  color: white;
  padding: 1rem;
  text-align: center;
  z-index: 10000;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

/* Keyboard Navigation Styles */
.keyboard-navigation button:focus,
.keyboard-navigation .btn:focus,
.keyboard-navigation .form-control:focus,
.keyboard-navigation .nav-link:focus {
  outline: 3px solid var(--primary-gold) !important;
  outline-offset: 2px !important;
}

/* Print Optimizations */
@media print {
  .hero-section {
    background: none !important;
    color: black !important;
  }
  
  .card,
  .services-item,
  .contact-form {
    border: 1px solid #ddd !important;
    box-shadow: none !important;
  }
} 