:root {
  /* Primary Color Palette - 5 Colors */
  --color-primary: #ff6b35;      /* Orange - Energy/Action */
  --color-secondary: #1a1a1a;    /* Black - Street/Urban */
  --color-accent: #00d4aa;       /* Teal - Fresh/Cool */
  --color-neutral: #f4f4f4;      /* Light Gray - Clean */
  --color-warning: #ffd23f;      /* Yellow - Highlight */
  
  /* Shades */
  --color-primary-light: #ff8a5c;
  --color-primary-dark: #e04a1b;
  --color-secondary-light: #333333;
  --color-secondary-dark: #000000;
  --color-accent-light: #33ddb7;
  --color-accent-dark: #00b897;
  --color-neutral-light: #ffffff;
  --color-neutral-dark: #e0e0e0;
  
  /* Typography */
  --font-primary: 'Roboto', sans-serif;
  --font-secondary: 'Oswald', sans-serif;
  
  /* Conservative font sizes */
  --font-size-xs: 0.75rem;
  --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;
  
  /* Shadows and Effects */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-secondary);
  background-color: var(--color-neutral-light);
}

/* Respect reduced motion preferences */
@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(--font-size-xl) !important;
  font-weight: 700;
  color: var(--color-primary) !important;
  font-family: var(--font-secondary);
}

.navbar {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
  box-shadow: var(--shadow-md);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
  color: var(--color-neutral-light) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 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: url('../FIN_images/faw_hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

#hero-title-1 {
  font-family: var(--font-secondary);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#hero-subtitle-1 {
  font-size: var(--font-size-xl);
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

#hero-desc-1 {
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Sections */
.section-padding {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--font-secondary);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
}

.section-desc {
  font-size: var(--font-size-base);
  color: var(--color-secondary-light);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background-color: var(--color-neutral);
}

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-item h4 {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

/* Services Section */
.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  overflow-x: hidden;
  padding: 1.5rem;
}

.service-card h4 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 1rem;
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--color-primary);
}

.team-member h4 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--color-accent);
  font-weight: 500;
}

/* Reviews/Testimonials */
.swiper {
  padding: 2rem 0;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  margin: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--color-secondary-light);
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
}

/* Contact Form */
.contact-section {
  background: linear-gradient(135deg, var(--color-neutral) 0%, var(--color-neutral-dark) 100%);
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.form-control {
  border: 2px solid var(--color-neutral-dark);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

/* FAQ Section */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  background: var(--color-neutral);
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: var(--color-secondary);
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--color-neutral-dark);
}

.faq-answer {
  padding: 1rem 1.5rem;
  color: var(--color-secondary-light);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery */
.gallery-item {
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  color: var(--color-neutral-light);
  padding: 3rem 0 1rem;
}

footer h5 {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
}

footer a {
  color: var(--color-neutral-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--color-primary);
}

#site-copyright {
  border-top: 1px solid var(--color-secondary-light);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  color: var(--color-neutral-dark);
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--color-neutral);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
}

/* Price Plans */
.price-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.price-card h4 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
}

.price-amount {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-neutral-dark);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Utility Classes */
.text-primary { color: var(--color-primary) !important; }
.text-secondary { color: var(--color-secondary) !important; }
.text-accent { color: var(--color-accent) !important; }
.bg-primary { background-color: var(--color-primary) !important; }
.bg-secondary { background-color: var(--color-secondary) !important; }
.bg-accent { background-color: var(--color-accent) !important; }
.bg-neutral { background-color: var(--color-neutral) !important; }

.gradient-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.gradient-secondary {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
}
