:root {
  /* Color palette */
  --primary-color-1: #3a7ca5; /* Deep blue */
  --primary-color-2: #f0c987; /* Golden yellow */
  --primary-color-3: #e5625e; /* Coral red */
  --primary-color-4: #7d8c81; /* Sage green */
  --primary-color-5: #563f4a; /* Plum purple */
  
  /* Light and dark shades */
  --primary-color-1-light: #a9d0f5;
  --primary-color-1-dark: #1d405c;
  --primary-color-2-light: #fae9c3;
  --primary-color-2-dark: #c79c3e;
  --primary-color-3-light: #f8b6b3;
  --primary-color-3-dark: #b63e39;
  --primary-color-4-light: #c1cbc5;
  --primary-color-4-dark: #4d554e;
  --primary-color-5-light: #a37d8c;
  --primary-color-5-dark: #2c1f25;
  
  /* Additional utility colors */
  --text-dark: #212529;
  --text-light: #f8f9fa;
  --bg-light: #ffffff;
  --bg-dark: #343a40;
  --grey-light: #f1f3f5;
  --grey-medium: #adb5bd;
  --grey-dark: #495057;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
  position: relative;
}

.bg-primary-1 {
  background-color: var(--primary-color-1);
  color: var(--text-light);
}

.bg-primary-2 {
  background-color: var(--primary-color-2);
}

.bg-primary-3 {
  background-color: var(--primary-color-3);
  color: var(--text-light);
}

.bg-primary-4 {
  background-color: var(--primary-color-4);
  color: var(--text-light);
}

.bg-primary-5 {
  background-color: var(--primary-color-5);
  color: var(--text-light);
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.bg-grey {
  background-color: var(--grey-light);
}

/* Card styles */
.service-card {
  background: var(--bg-light);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 2rem;
}

.service-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
}

.service-card ul {
  padding-left: 1.5rem;
}

/* Hero section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

/* About section styles */
.about-feature {
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  background-color: var(--bg-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color-1);
}

/* Features section */
.features-item {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.features-item:hover {
  transform: translateY(-10px);
}

.features-item i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-2);
}

/* Price plans */
.price-plan {
  background: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.price-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.price-plan-header {
  background: var(--primary-color-1);
  color: var(--text-light);
  padding: 2rem;
  text-align: center;
}

.price-plan-body {
  padding: 2rem;
}

.price-plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

.price-plan ul {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

/* Team section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 5px solid var(--bg-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Reviews section */
.review-item {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  position: relative;
}

.review-item::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  position: absolute;
  top: -20px;
  left: 20px;
  color: var(--grey-medium);
  opacity: 0.3;
}

.review-author {
  font-weight: 700;
  margin-top: 1.5rem;
  display: block;
}

/* Core info section */
.core-info-item {
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  background: var(--bg-light);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-5px);
}

.core-info-item i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color-3);
}

/* Contact form */
.contact-form {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  height: calc(2.5rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border: 1px solid var(--grey-medium);
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  box-shadow: 0 0 0 0.2rem rgba(58, 124, 165, 0.25);
}

textarea.form-control {
  height: auto;
  min-height: 150px;
}

/* Blog section */
.blog-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  background: var(--bg-light);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card .card-body {
  padding: 2rem;
}

/* FAQ section */
.accordion-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.accordion-header button {
  position: relative;
  padding: 1.25rem;
  background-color: var(--bg-light);
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  transition: all 0.3s ease;
}

.accordion-header button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: var(--text-light);
}

.accordion-body {
  padding: 1.25rem;
  background-color: var(--bg-light);
}

/* Gallery section */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

/* Footer styles */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

footer h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

footer p, footer a {
  color: var(--grey-medium);
}

footer a:hover {
  color: var(--text-light);
  text-decoration: none;
}

#site-copyright {
  border-top: 1px solid var(--grey-dark);
  padding-top: 1.5rem;
  margin-top: 3rem;
  display: block;
} 