:root {
  /* Color palette */
  --primary-color: #f08c5a; /* Warm orange */
  --secondary-color: #5a9a8e; /* Teal */
  --accent-color: #916bd3; /* Purple */
  --neutral-color: #f5e6d8; /* Cream */
  --dark-color: #2c3e50; /* Dark blue */
  
  /* Shade variants */
  --primary-light: #fad4be;
  --secondary-light: #c2ded9;
  --accent-light: #d9cff0;
  --neutral-light: #fcf7f3;
  --dark-light: #546e7a;
  
  /* Font variables */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  
  /* Spacing */
  --section-spacing: 100px;
  --element-spacing: 30px;
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
overflow-x: hidden;
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--neutral-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

section {
  padding: 90px 0;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

.btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 20px;
}

.section-title p {
  color: var(--dark-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Header styles */
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
  padding: 15px 0;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--dark-color);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--dark-color);
  padding: 10px 15px;
  margin: 0 5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

/* Hero section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}

/* About section */
.about-section {
  background-color: white;
}

.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
}

.feature-box {
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  background-color: var(--neutral-light);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

/* Services section */
.services-section {
  background-color: var(--neutral-light);
}

.service-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  background-position: center;
  background-size: cover;
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 20px 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features section */
.features-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: var(--neutral-light);
  margin-bottom: 30px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Price plans section */
.price-plan-section {
  background-color: var(--neutral-light);
}

.price-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card-header {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.price-card-header h3 {
  margin-bottom: 0;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 20px 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Team section */
.team-section {
  background-color: white;
}

.team-card {
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  transition: all 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  padding: 25px;
  text-align: center;
  background-color: white;
}

.team-info h3 {
  margin-bottom: 5px;
}

.team-info p {
  color: var(--dark-light);
  margin-bottom: 0;
}

/* Reviews section */
.reviews-section {
  background-color: var(--neutral-light);
  position: relative;
}

.review-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  margin: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.review-text {
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.review-text::before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  left: 0;
  top: -20px;
  color: var(--primary-color);
  opacity: 0.3;
}

.review-author {
  font-weight: 700;
  font-size: 1.1rem;
}

/* Core info section */
.core-info-section {
  background-color: white;
}

.info-card {
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  background-color: var(--neutral-light);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Contact section */
.contact-section {
  background-color: var(--neutral-light);
}

.contact-info {
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 20px;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 20px;
  min-width: 30px;
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border-radius: 10px;
  padding: 0 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

textarea.form-control {
  height: 150px;
  padding: 20px;
}

/* Blog section */
.blog-section {
  background-color: white;
}

.blog-card {
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: white;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 250px;
  background-position: center;
  background-size: cover;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  margin-bottom: 15px;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 15px;
  display: inline-block;
}

/* FAQ section */
.faq-section {
  background-color: var(--neutral-light);
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: none;
}

.accordion-button {
  padding: 20px;
  font-weight: 600;
  background-color: white;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}

.accordion-body {
overflow-x: hidden;
  padding: 20px;
  background-color: white;
}

/* Gallery section */
.gallery-section {
  background-color: white;
  padding-bottom: 70px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 20px;
}

footer h3 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

footer p {
  margin-bottom: 10px;
}

.site-info {
  margin-bottom: 40px;
}

.site-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-info p i {
  margin-right: 15px;
  color: var(--primary-color);
}

.copyright {
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* Shapes & decorations */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-light);
  border-radius: 50%;
}

.shape-2 {
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--accent-light);
  border-radius: 50%;
}

.blob {
  position: absolute;
  z-index: 0;
}

.blob-1 {
  top: 10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background-color: var(--secondary-light);
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  opacity: 0.2;
  animation: blob-movement 8s infinite alternate;
}

.blob-2 {
  bottom: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background-color: var(--primary-light);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.2;
  animation: blob-movement 8s infinite alternate-reverse;
}

@keyframes blob-movement {
  0% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: translate(0, 0);
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: translate(20px, 10px);
  }
}

/* Utilities */
.rounded-img {
  border-radius: 20px;
  overflow: hidden;
}

.shadow-img {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
}

.breadcrumb-section {
  height: 50px;
  background-color: var(--neutral-light);
}

/* Additional pages */
.page-header {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 80px;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.page-title {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

.page-title h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: white;
}

.page-section {
  padding: 80px 0;
}

.page-section:nth-child(odd) {
  background-color: white;
}

.page-section:nth-child(even) {
  background-color: var(--neutral-light);
} 