:root {
  /* 5 Primary Colors + Light/Dark Shades */
  --primary-red: #e74c3c;
  --primary-red-light: #ff6b6b;
  --primary-red-dark: #c0392b;
  
  --primary-blue: #3498db;
  --primary-blue-light: #74b9ff;
  --primary-blue-dark: #2980b9;
  
  --primary-yellow: #f1c40f;
  --primary-yellow-light: #fdcb6e;
  --primary-yellow-dark: #f39c12;
  
  --primary-green: #2ecc71;
  --primary-green-light: #55a3ff;
  --primary-green-dark: #27ae60;
  
  --primary-purple: #9b59b6;
  --primary-purple-light: #a29bfe;
  --primary-purple-dark: #8e44ad;
  
  /* Neutral Colors */
  --white: #ffffff;
  --black: #2c3e50;
  --gray-light: #ecf0f1;
  --gray-dark: #34495e;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
  --gradient-secondary: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  --gradient-hero: linear-gradient(135deg, var(--primary-red-light), var(--primary-blue-light));
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 1.125rem;
  --h1-size: 2.5rem;
  --h2-size: 2rem;
  --h3-size: 1.5rem;
  --navbar-brand-size: 1.25rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--black);
}

/* Header & Navigation */
.navbar-brand {
  font-size: var(--navbar-brand-size) !important;
  font-weight: 700;
  color: var(--primary-red) !important;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
  font-weight: 500;
  color: var(--black) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-red) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: var(--h1-size);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: var(--font-size-large);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: var(--font-size-base);
  color: var(--white);
  margin-bottom: 2rem;
}

/* Section Styling */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: var(--h2-size);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--black);
}

.section-subtitle {
  font-size: var(--font-size-large);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

.section-desc {
  font-size: var(--font-size-base);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--gray-dark);
}

/* Cards & Items */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 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;
}

.card-title {
  font-size: var(--h3-size);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: var(--font-size-base);
  color: var(--gray-dark);
}

/* Services Section */
.services-item {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.services-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.services-item-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-red);
  margin: 1rem 0;
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 5px solid var(--primary-yellow);
}

/* Reviews Section */
.review-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin: 1rem;
  text-align: center;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

.review-author {
  font-weight: 600;
  color: var(--primary-red);
}

/* FAQ Section */
.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 1rem;
  font-weight: 600;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--gradient-secondary);
}

.faq-answer {
  background: var(--gray-light);
  padding: 1rem;
  border-radius: 0 0 10px 10px;
  display: none;
}

/* Gallery Section */
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  padding: 0.75rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-yellow);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-yellow);
}

.footer .copyright {
  border-top: 1px solid var(--gray-dark);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  font-size: var(--font-size-small);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 