:root {
  --primary-gold: #D4AF37;
  --primary-navy: #1B2951;
  --primary-emerald: #50C878;
  --primary-crimson: #DC143C;
  --primary-charcoal: #36454F;
  --light-gold: #F4E4BC;
  --light-navy: #E8EBF3;
  --light-emerald: #E8F5E8;
  --light-crimson: #F8E8EA;
  --light-charcoal: #F0F1F2;
  --dark-gold: #B8941F;
  --dark-navy: #0F1A3A;
  --dark-emerald: #3A9B5C;
  --dark-crimson: #A0101E;
  --dark-charcoal: #2A3439;
}

* {
  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(--primary-charcoal);
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header */
.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--primary-gold) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--primary-navy) !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-navy) 0%, var(--primary-charcoal) 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('../SIB_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--light-gold);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--light-emerald);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--light-charcoal);
  margin-bottom: 2rem;
}

/* Sections */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--primary-emerald);
  margin-bottom: 1rem;
  text-align: center;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--primary-charcoal);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Services */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--primary-gold);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--primary-charcoal);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-crimson);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--primary-charcoal);
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-emerald);
  margin-right: 0.5rem;
}

/* Team */
.team-card {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-gold);
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-emerald);
  font-weight: 500;
}

/* Reviews */
.review-card {
  background: var(--light-navy);
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  text-align: center;
}

.review-text {
  font-style: italic;
  color: var(--primary-charcoal);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-navy);
}

/* Contact Form */
.contact-form {
  background: var(--light-gold);
  border-radius: 15px;
  padding: 3rem;
}

.form-control {
  border: 2px solid var(--primary-gold);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 0.2rem rgba(27, 41, 81, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--dark-gold) 0%, var(--primary-gold) 100%);
}

/* Footer */
.footer {
  background: var(--primary-navy);
  color: var(--light-charcoal);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-charcoal);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-gold);
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--light-gold);
  padding: 1.5rem;
  border-radius: 10px 10px 0 0;
  font-weight: 600;
  color: var(--primary-navy);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-gold);
  color: white;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--primary-charcoal);
  border-top: 1px solid var(--light-gold);
}

/* 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);
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-charcoal);
}

.breadcrumb-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
} 