:root {
  /* Primary color palette */
  --primary-1: #f0c47d; /* Warm gold - primary brand color */
  --primary-2: #7a93ac; /* Muted blue - secondary accent */
  --primary-3: #e16952; /* Coral - attention/accent */
  --primary-4: #4a6670; /* Deep teal - professional tone */
  --primary-5: #a9c47f; /* Sage green - fresh/educational */
  
  /* Light and dark variations */
  --primary-1-light: #f8e2bd;
  --primary-1-dark: #d3a55a;
  
  --primary-2-light: #a7b7c9;
  --primary-2-dark: #5a708e;
  
  --primary-3-light: #f09d8e;
  --primary-3-dark: #c14d38;
  
  --primary-4-light: #7a919a;
  --primary-4-dark: #354a52;
  
  --primary-5-light: #c9dcab;
  --primary-5-dark: #87a359;
  
  /* Neutral shades */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #495057;
  --black: #212529;
  
  /* Font settings */
  --body-font: 'Nunito', sans-serif;
  --heading-font: 'Montserrat', sans-serif;
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  color: var(--primary-1-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1);
}

.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);
}

/* Header styles */
.navbar {
  padding: 1rem 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-4-dark);
}

.nav-link {
  font-weight: 600;
  color: var(--dark-gray);
  margin: 0 0.5rem;
  padding: 0.5rem 0.75rem;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-1);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-1);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: var(--primary-4-dark);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary-4);
}

.hero-shape {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background-color: var(--primary-5-light);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-4-dark);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-1);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--primary-3);
  margin-bottom: 2rem;
}

.about-feature {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  background-color: var(--light-gray);
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-1);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.service-item {
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item i {
  font-size: 3rem;
  color: var(--primary-3);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--medium-gray);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--primary-5);
  font-size: 1rem;
  margin-right: 0.5rem;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-2);
  margin-bottom: 1.5rem;
  display: inline-block;
  background-color: var(--primary-2-light);
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
}

/* Price Plan Section */
.priceplan-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.price-card {
  padding: 3rem 2rem;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-3);
}

.price-card:hover {
  transform: scale(1.03);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-3);
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--medium-gray);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li i {
  color: var(--primary-5);
  margin-right: 0.5rem;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.team-member {
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-member-img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.team-member:hover .team-member-img {
  transform: scale(1.05);
}

.team-member-info {
  padding: 1.5rem;
  background-color: var(--white);
}

.team-member-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-2);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.review-item {
  padding: 2rem;
  border-radius: 15px;
  background-color: var(--white);
  margin: 1rem 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1rem;
}

.review-text::before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  top: -2rem;
  left: -1rem;
  color: var(--primary-1-light);
  opacity: 0.5;
}

.review-author {
  font-weight: 700;
  color: var(--primary-4-dark);
}

/* Core Info Section */
.coreinfo-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.coreinfo-item {
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--light-gray);
  margin-bottom: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--primary-4);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.contact-form {
  padding: 3rem;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  padding: 0.75rem 1.25rem;
  border-radius: 30px;
  border: 1px solid var(--medium-gray);
  margin-bottom: 1.5rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-check {
  margin-bottom: 1.5rem;
}

.btn-submit {
  background-color: var(--primary-1);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--primary-1-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(240, 196, 125, 0.4);
}

/* Blog Section */
.blog-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.blog-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-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(--dark-gray);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-1);
  font-weight: 600;
}

.blog-link:hover {
  color: var(--primary-1-dark);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  padding: 1.25rem;
  font-weight: 600;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-1-light);
  color: var(--primary-4-dark);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-1);
}

.accordion-body {
  padding: 1.5rem;
  background-color: var(--white);
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  padding: 3rem 0 2rem;
  background-color: var(--primary-4-dark);
  color: var(--white);
}

#contact-info-phone,
#contact-info-email,
#contact-info-address {
  margin-bottom: 0.5rem;
}

#contact-info-phone i,
#contact-info-email i,
#contact-info-address i {
  margin-right: 0.5rem;
  color: var(--primary-1);
}

#site-copyright {
  display: block;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Space Page */
#space {
  min-height: 500px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Animations and decorative elements */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
  opacity: 0.5;
}

.blob-1 {
  background-color: var(--primary-1);
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  animation: blob-move 15s infinite alternate ease-in-out;
}

.blob-2 {
  background-color: var(--primary-5);
  width: 200px;
  height: 200px;
  bottom: 100px;
  left: -50px;
  animation: blob-move 20s infinite alternate-reverse ease-in-out;
}

.blob-3 {
  background-color: var(--primary-3-light);
  width: 250px;
  height: 250px;
  bottom: -100px;
  right: 200px;
  animation: blob-move 17s infinite alternate ease-in-out;
}

@keyframes blob-move {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, 20px) scale(1.05);
  }
  50% {
    transform: translate(0, 40px) scale(0.95);
  }
  75% {
    transform: translate(-20px, 20px) scale(1.05);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
} 