:root {
  /* Color Palette */
  --primary-color: #ff6b35; /* Vibrant Orange - Primary Brand Color */
  --secondary-color: #2ec4b6; /* Teal - Secondary Accent */
  --tertiary-color: #f9c80e; /* Yellow - Highlight Color */
  --neutral-color: #323031; /* Dark Gray - Text Color */
  --light-color: #fdfffc; /* Off-White - Background Color */
  
  /* Shades */
  --primary-light: #ff8a5f;
  --primary-dark: #e45525;
  --secondary-light: #4fdecf;
  --secondary-dark: #1fa99c;
  --tertiary-light: #ffd443;
  --tertiary-dark: #e0b400;
  --neutral-light: #4a484a;
  --neutral-dark: #1e1d1e;
}

/* Base Styles */
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--neutral-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--neutral-dark);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

/* Header */
header {
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-color);
}

.nav-link {
  color: var(--neutral-color);
  font-weight: 600;
}

.nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.8) 0%, rgba(46, 196, 182, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Sections */
section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

/* Services */
.service-card {
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 3px solid var(--primary-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 15px;
}

/* Features */
.feature-item {
  text-align: center;
  margin-bottom: 40px;
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Price Plans */
.price-card {
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--tertiary-color);
}

.price-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.price-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.price-features li {
  padding: 8px 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team */
.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  padding: 20px;
  background-color: var(--light-color);
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
}

/* Reviews */
.review-card {
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  background-color: var(--light-color);
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(255, 107, 53, 0.2);
  font-family: Georgia, serif;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* Core Info */
.core-info-item {
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  background-color: var(--light-color);
  transition: all 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.core-info-icon {
  font-size: 3rem;
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  background-color: var(--light-color);
}

.form-control {
  border-radius: 4px;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

/* Blog */
.blog-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-excerpt {
  margin-bottom: 15px;
}

/* FAQ */
.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  font-weight: 600;
  padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: var(--light-color);
}

/* Gallery */
.gallery-item {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--neutral-dark);
  color: var(--light-color);
  padding: 60px 0 30px;
}

footer h5 {
  color: var(--light-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--primary-color);
}

#site-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* Animation elements */
.shape {
  position: absolute;
  z-index: -1;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 107, 53, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 10s linear infinite;
}

.shape-2 {
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background-color: rgba(46, 196, 182, 0.1);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 13s linear infinite;
}

@keyframes morph {
  0% {
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
  }
  100% {
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  }
}

/* Swiper Slider */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0.03);
}

.breadcrumb-item {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  text-indent: -9999px;
}

/* Space Page */
#space {
  min-height: 500px;
} 