:root {
  /* Primary Color Palette */
  --primary-burgundy: #8B1538;
  --primary-gold: #D4A574;
  --primary-forest: #2D5016;
  --primary-charcoal: #333333;
  --primary-cream: #F5F2E8;
  
  /* Light/Dark Shades */
  --burgundy-light: #A52A44;
  --burgundy-dark: #6B1129;
  --gold-light: #E6C29A;
  --gold-dark: #B8925F;
  --forest-light: #3A6B1C;
  --forest-dark: #1F3A0F;
  --charcoal-light: #555555;
  --charcoal-dark: #222222;
  --cream-light: #FEFCF7;
  --cream-dark: #E8E5DB;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--charcoal-dark);
  background-color: var(--cream-light);
  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 Styles */
.navbar {
  background: linear-gradient(135deg, var(--burgundy-dark), var(--primary-burgundy));
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream-light) !important;
}

.nav-link {
  font-size: 10px;
  color: var(--cream-light) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--gold-light) !important;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-forest), var(--forest-light));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../TRA_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--cream-light);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--cream-light);
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-burgundy);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--charcoal-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
#about {
  background: var(--cream-light);
}

.about-feature {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-burgundy);
  margin-bottom: 1rem;
}

.about-feature h4 {
  color: var(--primary-burgundy);
  margin-bottom: 1rem;
}

/* Services Section */
#services {
  background: linear-gradient(135deg, var(--cream-dark), var(--cream-light));
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-burgundy), var(--primary-gold));
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-burgundy);
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

/* Features Section */
#features {
  background: var(--primary-cream);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

/* Price Plan Section */
#priceplan {
  background: linear-gradient(135deg, var(--primary-burgundy), var(--burgundy-light));
  color: white;
}

.price-card {
  background: white;
  color: var(--charcoal-dark);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  margin-bottom: 2rem;
  position: relative;
}

.price-card.featured {
  transform: scale(1.05);
  border: 3px solid var(--primary-gold);
}

.price-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-burgundy);
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

/* Team Section */
#team {
  background: var(--cream-light);
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  display: block;
  border: 4px solid var(--primary-gold);
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-burgundy);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-gold);
  font-weight: 500;
}

/* Reviews Section */
#reviews {
  background: linear-gradient(135deg, var(--forest-dark), var(--primary-forest));
  color: white;
}

.review-item {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 600;
  color: var(--gold-light);
}

/* Other Sections */
#casestudy, #process, #timeline, #career, #coreinfo {
  padding: 4rem 0;
}

#casestudy {
  background: var(--cream-dark);
}

#process {
  background: white;
}

#timeline {
  background: var(--cream-light);
}

#career {
  background: linear-gradient(135deg, var(--charcoal-dark), var(--charcoal-light));
  color: white;
}

#coreinfo {
  background: var(--primary-cream);
}

.timeline-item, .process-item, .casestudy-item, .career-item, .coreinfo-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#career .career-item {
  background: rgba(255,255,255,0.1);
  color: white;
}

/* Contact Section */
#contact {
  background: linear-gradient(135deg, var(--primary-burgundy), var(--burgundy-dark));
  color: white;
}

.contact-form {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.form-control {
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark));
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  color: var(--charcoal-dark);
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--gold-light), var(--primary-gold));
}

/* Blog Section */
#blog {
  background: var(--cream-light);
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-burgundy);
  margin-bottom: 1rem;
}

/* FAQ Section */
#faq {
  background: white;
}

.faq-item {
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--cream-light);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-burgundy);
  margin: 0;
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  color: var(--charcoal-light);
}

/* Gallery Section */
#gallery {
  background: var(--charcoal-dark);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--charcoal-dark), var(--primary-charcoal));
  color: white;
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold-light);
}

.footer-link {
  color: var(--cream-light);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold-light);
}

#site-copyright {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid var(--charcoal-light);
  margin-top: 2rem;
  color: var(--cream-dark);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb img {
  height: 20px;
  width: auto;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--primary-forest), var(--forest-light));
  display: flex;
  align-items: center;
  justify-content: center;
} 