:root {
  /* Primary Color Palette - 5 colors plus shades */
  --primary-coral: #FF6B6B;
  --primary-teal: #4ECDC4;
  --primary-violet: #6C5CE7;
  --primary-orange: #FD79A8;
  --primary-emerald: #00B894;
  
  /* Light shades */
  --light-coral: #FFE0E0;
  --light-teal: #E0F8F7;
  --light-violet: #E8E6FF;
  --light-orange: #FFF0F5;
  --light-emerald: #E0F8F3;
  
  /* Dark shades */
  --dark-coral: #E74C3C;
  --dark-teal: #2D6A6B;
  --dark-violet: #5A4FCF;
  --dark-orange: #E84393;
  --dark-emerald: #00A085;
  
  /* Neutral colors */
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --border-gray: #E9ECEF;
}

/* Base Typography */
body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 16px;
}

h1 { font-size: 2rem; font-weight: 700; }
h2 { font-size: 1.75rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1.125rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
}

/* Header & Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-coral), var(--primary-teal));
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--white) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-coral) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-violet), var(--primary-orange));
  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('../FLA_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary-coral), var(--primary-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-header {
  background: linear-gradient(45deg, var(--primary-coral), var(--primary-teal));
  border: none;
  border-radius: 15px 15px 0 0;
  color: var(--white);
  text-align: center;
  padding: 1.5rem;
}

.card-body {
  overflow-x: hidden;
  padding: 2rem;
}

/* Services */
.service-card {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: var(--white);
  margin-bottom: 2rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin: 1rem 0;
}

/* Team */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border: 5px solid var(--primary-teal);
}

/* Reviews/Testimonials */
.review-card {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-coral);
  font-weight: bold;
}

/* Contact Form */
.contact-form {
  background: linear-gradient(135deg, var(--light-teal), var(--light-violet));
  border-radius: 15px;
  padding: 3rem;
  margin: 2rem 0;
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--border-gray);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25);
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-coral), var(--primary-teal));
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* FAQ */
.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  background: var(--primary-coral);
  color: var(--white);
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--dark-coral);
}

.faq-answer {
  background: var(--light-gray);
  padding: 1rem;
  border-radius: 10px;
  display: none;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--text-dark), var(--dark-violet));
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-coral);
}

/* Blog */
.blog-post {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
}

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 0;
  margin: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utilities */
.text-gradient {
  background: linear-gradient(45deg, var(--primary-coral), var(--primary-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-coral), var(--primary-teal));
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--primary-violet), var(--primary-orange));
} 