:root {
  --primary-color-1: #FF7D3B; /* Energetic orange */
  --primary-color-2: #2B4F60; /* Dark teal */
  --primary-color-3: #F5EFE6; /* Soft cream */
  --primary-color-4: #D9B48F; /* Warm sand */
  --primary-color-5: #8C5E58; /* Earthy terracotta */
  
  --light-1: #ffffff;
  --light-2: #f8f9fa;
  --dark-1: #212529;
  --dark-2: #343a40;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-1);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 15px;
  font-size: 42px;
  font-weight: 800;
}

.section-subtitle {
  margin-bottom: 30px;
  font-size: 20px;
  color: var(--primary-color-1);
}

.section-desc {
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: var(--light-1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 800;
  font-size: 24px;
  color: var(--primary-color-1) !important;
}

.nav-link {
  font-weight: 600;
  margin: 0 10px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-3);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background-color: var(--primary-color-1);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

/* About Section */
.about-section {
  background-color: var(--light-2);
  position: relative;
}

.about-feature {
  padding: 30px;
  background-color: var(--light-1);
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
  transform: translateY(-10px);
}

.about-feature-icon {
  font-size: 48px;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  background-color: var(--light-1);
}

.service-card {
  padding: 40px 30px;
  border-radius: 15px;
  background-color: var(--light-2);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-color-1);
  transition: all 0.3s ease;
}

.service-card:hover::before {
  height: 100%;
  opacity: 0.1;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 54px;
  color: var(--primary-color-1);
  margin-bottom: 25px;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 15px 0;
}

.service-features {
  padding-left: 0;
  list-style: none;
}

.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
}

/* Features Section */
.features-section {
  background-color: var(--primary-color-2);
  color: var(--light-1);
}

.features-section .section-title,
.features-section .section-desc {
  color: var(--light-1);
}

.features-section .section-subtitle {
  color: var(--primary-color-4);
}

.feature-item {
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
  font-size: 48px;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-2);
}

.price-card {
  padding: 50px 30px;
  border-radius: 15px;
  background-color: var(--light-1);
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--primary-color-1);
  transform: translateY(-10px);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-card .price {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-color-1);
  margin: 20px 0;
}

.price-features {
  padding-left: 0;
  list-style: none;
  margin-bottom: 30px;
}

.price-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.price-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
}

/* Team Section */
.team-section {
  background-color: var(--light-1);
}

.team-member {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.team-info {
  padding: 20px;
  background-color: var(--light-1);
}

.team-role {
  color: var(--primary-color-1);
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-color-3);
  position: relative;
}

.review-item {
  padding: 30px;
  border-radius: 15px;
  background-color: var(--light-1);
  transition: all 0.3s ease;
  margin: 30px 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.review-author {
  font-weight: 700;
  color: var(--primary-color-2);
  margin-top: 20px;
}

.review-text {
  font-style: italic;
  position: relative;
  padding: 20px 10px;
}

.review-text::before,
.review-text::after {
  content: '"';
  font-size: 50px;
  color: var(--primary-color-1);
  opacity: 0.2;
  position: absolute;
}

.review-text::before {
  top: -10px;
  left: -15px;
}

.review-text::after {
  bottom: -40px;
  right: -15px;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--light-2);
}

.coreinfo-item {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--light-1);
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.coreinfo-item:hover {
  transform: translateY(-10px);
}

.coreinfo-icon {
  font-size: 48px;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-1);
  position: relative;
}

.contact-form {
  padding: 50px;
  border-radius: 15px;
  background-color: var(--light-1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  height: 60px;
  padding: 15px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  margin-bottom: 20px;
}

textarea.form-control {
  min-height: 160px;
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  padding: 15px 40px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
  transform: translateY(-5px);
}

/* Blog Section */
.blog-section {
  background-color: var(--light-2);
}

.blog-item {
  border-radius: 15px;
  overflow: hidden;
  background-color: var(--light-1);
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-link {
  color: var(--primary-color-1);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-1);
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  padding: 20px 30px;
  font-weight: 600;
  background-color: var(--light-2);
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: var(--light-1);
}

.accordion-body {
  padding: 20px 30px;
  background-color: var(--light-2);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--primary-color-3);
  padding: 100px 0;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  height: 300px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-color-2);
  color: var(--light-1);
  padding: 80px 0 30px;
}

footer h4 {
  color: var(--primary-color-4);
  margin-bottom: 25px;
  font-weight: 700;
}

footer p {
  margin-bottom: 15px;
}

footer a {
  color: var(--light-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--primary-color-1);
}

#site-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px;
  display: block;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Additional Pages */
.page-header {
  padding: 200px 0 100px;
  background-color: var(--primary-color-2);
  position: relative;
}

.page-title {
  color: var(--light-1);
  font-size: 48px;
  font-weight: 800;
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-2);
}

/* Breadcrumb */
.breadcrumb-item {
  display: flex;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
} 