:root {
  /* Color Palette */
  --primary-color: #FF6B35; /* Vibrant orange - primary for calls to action */
  --secondary-color: #4CB5AE; /* Teal - secondary accent color */
  --accent-color: #FFD23F; /* Warm yellow - highlights and accents */
  --neutral-color: #5A5A66; /* Slate gray - text and neutral elements */
  --background-color: #F0F7EE; /* Light mint - background color */
  
  /* Shades and tints */
  --primary-light: #FF8D66;
  --primary-dark: #D95529;
  --secondary-light: #7DCCC7;
  --secondary-dark: #3A8F89;
  --accent-light: #FFDF75;
  --accent-dark: #E6B82E;
  --neutral-light: #83838D;
  --neutral-dark: #44444D;
  --background-dark: #DDE8D8;
}

/* Base Elements */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--neutral-dark);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-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-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);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Section Styling */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  transform: translateX(-50%);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--neutral-color);
}

/* Header Styles */
header {
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.nav-link {
  font-weight: 600;
  color: var(--neutral-dark);
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* About Section */
.about-section {
  background-color: white;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: white;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background-color: var(--background-color);
}

.service-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: white;
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-features {
  margin-bottom: 1.5rem;
}

.service-features ul {
  padding-left: 1.2rem;
}

.service-features li {
  margin-bottom: 0.5rem;
}

/* Features Section */
.features-section {
  background-color: white;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-item-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.feature-item h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--background-color);
}

.price-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: white;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--primary-color);
}

.price-card.featured {
  transform: scale(1.05);
  z-index: 2;
}

.price-card.featured::before {
  background-color: var(--accent-color);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.price-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.price-features {
  margin-bottom: 2rem;
}

.price-features ul {
  list-style: none;
  padding-left: 0;
}

.price-features li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
}

/* Team Section */
.team-section {
  background-color: white;
}

.team-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: white;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
  height: 300px;
  background-size: cover;
  background-position: center top;
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--background-color);
}

.review-card {
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem;
}

.review-text {
  font-style: italic;
  position: relative;
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

.review-text::before,
.review-text::after {
  content: '"';
  font-size: 2rem;
  position: absolute;
  color: var(--accent-color);
  font-family: Georgia, serif;
}

.review-text::before {
  top: -10px;
  left: 0;
}

.review-text::after {
  bottom: -20px;
  right: 0;
}

.review-author {
  font-weight: 700;
  color: var(--neutral-dark);
}

/* Core Info Section */
.coreinfo-section {
  background-color: white;
}

.info-card {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.info-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.info-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--background-color);
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
}

.contact-form {
  padding: 2rem;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

textarea.form-control {
  border-radius: 20px;
  min-height: 120px;
}

/* Blog Section */
.blog-section {
  background-color: white;
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: white;
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--background-color);
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: none;
}

.accordion-button {
  padding: 1.25rem;
  font-weight: 600;
  color: var(--neutral-dark);
  background-color: white;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B35'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.25rem;
  background-color: white;
}

/* Gallery Section */
.gallery-section {
  background-color: 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-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: 4rem 0 2rem;
}

footer h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

footer p, footer small {
  color: rgba(255, 255, 255, 0.7);
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

#site-copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}

/* Decorative shapes */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: -50px;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--accent-light);
  border-radius: 50%;
  opacity: 0.1;
}

.shape-2 {
  bottom: -50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background-color: var(--primary-light);
  border-radius: 50%;
  opacity: 0.1;
}

.shape-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background-color: var(--secondary-light);
  border-radius: 50%;
  opacity: 0.05;
}

/* Animation effects */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* Additional styling for space page */
#space {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color);
}

/* Breadcrumb styling */
.breadcrumb-section {
  padding: 0.5rem 0;
  background-color: var(--background-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Additional Page Styling */
.add-page-section {
  padding: 5rem 0;
}

.add-page-section:nth-child(odd) {
  background-color: white;
}

.add-page-section:nth-child(even) {
  background-color: var(--background-color);
} 