:root {
  /* Primary Colors */
  --primary-1: #5a6acf; /* Main blue */
  --primary-2: #f39c63; /* Warm orange */
  --primary-3: #9e79bc; /* Soft purple */
  --primary-4: #62c6b3; /* Mint green */
  --primary-5: #e47c7c; /* Coral pink */
  
  /* Shades */
  --primary-1-light: #8b98e6;
  --primary-1-dark: #3f4e9d;
  --primary-2-light: #f7bc8f;
  --primary-2-dark: #d17b3e;
  --primary-3-light: #bea0d3;
  --primary-3-dark: #7d5a9a;
  --primary-4-light: #8fd8ca;
  --primary-4-dark: #45a495;
  --primary-5-light: #ee9e9e;
  --primary-5-dark: #c65959;
  
  /* Neutrals */
  --neutral-100: #ffffff;
  --neutral-200: #f8f9fa;
  --neutral-300: #e9ecef;
  --neutral-400: #dee2e6;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--neutral-800);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1-dark);
  text-decoration: none;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.btn-secondary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section-subtitle {
  margin-bottom: 2rem;
  color: var(--neutral-600);
  font-size: 1.2rem;
}

.section-description {
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* Header */
header {
  background-color: var(--neutral-100);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-1);
}

.nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  color: var(--neutral-700) !important;
}

.nav-link:hover, 
.nav-link.active {
  color: var(--primary-1) !important;
}

/* Hero Section */
.hero {
  background-color: var(--primary-1-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

/* About Section */
.about {
  background-color: var(--neutral-100);
}

.about-feature {
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-3);
}

/* Services Section */
.services {
  background-color: var(--neutral-200);
}

.service-item {
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  background-color: var(--neutral-100);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin-top: 1rem;
}

.service-features {
  margin-top: 1.5rem;
  padding-left: 0;
}

.service-features li {
  list-style: none;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-4);
}

/* Features Section */
.features {
  background-color: var(--neutral-100);
}

.feature-item {
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  background-color: var(--neutral-200);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-2);
}

/* Price Plans Section */
.priceplan {
  background-color: var(--neutral-200);
}

.price-item {
  padding: 3rem 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  background-color: var(--neutral-100);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-item.featured {
  background-color: var(--primary-1-light);
  border: 2px solid var(--primary-1);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 1.5rem 0;
}

.price-features {
  margin: 1.5rem 0;
  padding-left: 0;
}

.price-features li {
  list-style: none;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  text-align: left;
}

.price-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-4);
}

/* Team Section */
.team {
  background-color: var(--neutral-100);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.team-member-name {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.team-member-role {
  color: var(--primary-3);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background-color: var(--neutral-200);
  position: relative;
}

.review-item {
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--neutral-100);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.review-author {
  font-weight: 700;
  margin-top: 1.5rem;
  position: relative;
  padding-left: 60px;
  min-height: 50px;
  display: flex;
  align-items: center;
}

.review-author:before {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-3-light);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-size: cover;
  background-position: center;
}

.review-text {
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.review-text:before {
  content: """;
  font-size: 3rem;
  color: var(--primary-3-light);
  position: absolute;
  left: 0;
  top: -10px;
  font-family: serif;
}

/* Core Info Section */
.coreinfo {
  background-color: var(--neutral-100);
}

.coreinfo-item {
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  background-color: var(--neutral-200);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-4);
}

/* Contact Section */
.contact {
  background-color: var(--neutral-200);
}

.contact-form {
  background-color: var(--neutral-100);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 1px solid var(--neutral-400);
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(90, 106, 207, 0.25);
  border-color: var(--primary-1);
}

textarea.form-control {
  border-radius: 20px;
}

.form-check-input:checked {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.services-select {
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
}

.contact-info {
  padding: 2rem;
  background-color: var(--primary-1);
  color: white;
  border-radius: 10px;
  height: 100%;
}

.contact-info h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
  padding-left: 2.5rem;
  position: relative;
}

.contact-info-item i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 1.5rem;
}

/* Blog Section */
.blog {
  background-color: var(--neutral-100);
}

.blog-item {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  background-color: var(--neutral-100);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--neutral-600);
  margin-bottom: 1.5rem;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-1);
  display: inline-block;
  position: relative;
}

.blog-link:after {
  content: '\f061';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.blog-link:hover:after {
  margin-left: 0.75rem;
}

/* FAQ Section */
.faq {
  background-color: var(--neutral-200);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  padding: 1.25rem;
  font-weight: 600;
  border-radius: 10px;
  background-color: var(--neutral-100);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-1-light);
  color: var(--primary-1-dark);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  padding: 1.25rem;
  background-color: var(--neutral-100);
}

/* Gallery Section */
.gallery {
  background-color: var(--neutral-100);
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.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-800);
  color: var(--neutral-300);
  padding: 5rem 0 2rem;
}

footer h4 {
  color: white;
  margin-bottom: 1.5rem;
}

footer p {
  margin-bottom: 0.5rem;
}

footer ul {
  padding-left: 0;
  list-style: none;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: var(--neutral-400);
}

footer ul li a:hover {
  color: var(--primary-1-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

#site-copyright {
  font-size: 0.875rem;
  color: var(--neutral-500);
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-200);
}

/* Breadcrumb */
.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 16px;
  height: 16px;
}

/* Additional Pages */
.additional-page-section {
  padding: 5rem 0;
}

.additional-page-section:nth-child(odd) {
  background-color: var(--neutral-200);
}

.additional-page-section:nth-child(even) {
  background-color: var(--neutral-100);
}

/* Animations and Effects */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Shapes */
.shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.shape-fill {
  fill: var(--neutral-100);
}

.custom-shape-divider {
  position: absolute;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
} 