:root {
  /* Primary color palette */
  --primary-1: #3E8989; /* Teal */
  --primary-2: #F2B872; /* Amber */
  --primary-3: #5E4352; /* Eggplant */
  --primary-4: #F4F1DE; /* Cream */
  --primary-5: #E07A5F; /* Terracotta */
  
  /* Shades */
  --primary-1-light: #6AACAC;
  --primary-1-dark: #2E6565;
  --primary-2-light: #FFD499;
  --primary-2-dark: #D99A54;
  --primary-3-light: #7E5D6E;
  --primary-3-dark: #3E2D36;
  --primary-4-light: #FFFBEF;
  --primary-4-dark: #E6E3D0;
  --primary-5-light: #F09D86;
  --primary-5-dark: #C4573B;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-3);
}

p {
  margin-bottom: 1.5rem;
}

section {
  padding: 5rem 0;
}

.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);
  color: var(--primary-3-dark);
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
  color: var(--primary-3-dark);
}

/* Header */
header {
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

header .navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-3);
}

header .nav-link {
  color: var(--primary-3);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

header .nav-link:hover {
  color: var(--primary-1);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background-color: var(--primary-4);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--primary-2-light);
  opacity: 0.5;
  top: -150px;
  right: -150px;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--primary-5-light);
  opacity: 0.3;
  bottom: -100px;
  left: -100px;
}

/* About Section */
.about-section {
  position: relative;
  background-color: #fff;
}

.about-feature {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  background-color: #fff;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-1);
  margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
  position: relative;
  background-color: var(--primary-4-light);
}

.service-card {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: #fff;
  height: 100%;
  border-top: 5px solid var(--primary-1);
}

.service-card:hover {
  transform: translateY(-10px);
  border-top-color: var(--primary-2);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-3);
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  background-color: var(--primary-4);
  margin: 1rem 0;
}

.service-features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-1);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

/* Features Section */
.features-section {
  position: relative;
  background-color: #fff;
}

.feature-item {
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-2);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
  position: relative;
  background-color: var(--primary-4-light);
}

.price-card {
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  border: 2px solid var(--primary-1);
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-3);
  margin: 1.5rem 0;
}

.price-features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-features li {
  padding: 0.5rem 0;
}

/* Team Section */
.team-section {
  position: relative;
  background-color: #fff;
}

.team-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: #fff;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-role {
  color: var(--primary-1);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  position: relative;
  background-color: var(--primary-4-light);
}

.review-card {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: #fff;
  height: 100%;
  position: relative;
}

.review-card::before {
  content: '\f10d';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 3rem;
  color: var(--primary-4-dark);
  position: absolute;
  top: 1rem;
  left: 1rem;
  opacity: 0.2;
}

.review-author {
  font-weight: 700;
  color: var(--primary-3);
  margin-top: 1rem;
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
  background-color: #fff;
}

.coreinfo-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.coreinfo-icon {
  font-size: 3rem;
  color: var(--primary-5);
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
  position: relative;
  background-color: var(--primary-4-light);
}

.contact-form-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 3rem;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(62, 137, 137, 0.25);
}

/* Blog Section */
.blog-section {
  position: relative;
  background-color: #fff;
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: #fff;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.blog-link {
  color: var(--primary-1);
  font-weight: 500;
  text-decoration: none;
}

.blog-link:hover {
  color: var(--primary-1-dark);
}

/* FAQ Section */
.faq-section {
  position: relative;
  background-color: var(--primary-4-light);
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background-color: #fff;
  color: var(--primary-3);
  font-weight: 600;
  padding: 1.5rem;
  border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-1);
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-body {
  padding: 1.5rem;
  background-color: #fff;
}

/* Gallery Section */
.gallery-section {
  position: relative;
  background-color: #fff;
}

.gallery-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background-color: var(--primary-3);
  color: #fff;
  padding: 4rem 0 2rem;
}

footer h4 {
  color: #fff;
  margin-bottom: 1.5rem;
}

footer p {
  opacity: 0.8;
}

footer small {
  opacity: 0.6;
}

footer a {
  color: var(--primary-2);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--primary-2-light);
  text-decoration: underline;
}

/* Space page */
#space {
  min-height: 500px;
}

/* Shape elements */
.shape-blob-1 {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: var(--primary-1-light);
  opacity: 0.3;
  border-radius: 30% 70% 70% 30% / 30% 52% 48% 70%;
  z-index: -1;
}

.shape-blob-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: var(--primary-2-light);
  opacity: 0.2;
  border-radius: 58% 42% 33% 67% / 60% 30% 70% 40%;
  z-index: -1;
}

/* Additional Utility Classes */
.overflow-hidden {
  overflow: hidden;
}

.text-primary {
  color: var(--primary-1) !important;
}

.bg-primary {
  background-color: var(--primary-1) !important;
}

.text-secondary {
  color: var(--primary-2) !important;
}

.bg-light {
  background-color: var(--primary-4-light) !important;
} 