:root {
  /* Color Palette */
  --primary-color-1: #5b3758; /* Deep purple */
  --primary-color-2: #e67e22; /* Vibrant orange */
  --primary-color-3: #2ecc71; /* Emerald green */
  --primary-color-4: #f1c40f; /* Golden yellow */
  --primary-color-5: #e84393; /* Pink */
  
  /* Shades and tints */
  --primary-color-1-light: #7d5277;
  --primary-color-1-dark: #3d253b;
  --primary-color-2-light: #f39c12;
  --primary-color-2-dark: #d35400;
  --primary-color-3-light: #6dcea8;
  --primary-color-3-dark: #27ae60;
  --primary-color-4-light: #f7dc6f;
  --primary-color-4-dark: #d4ac0d;
  --primary-color-5-light: #f78fb3;
  --primary-color-5-dark: #c2185b;
  
  /* Neutrals */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --black: #212529;
}

/* General Body Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-gray);
  overflow-x: hidden;
  background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

p {
  line-height: 1.6;
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

header .navbar-brand {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary-color-1);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--dark-gray);
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color-2);
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color-2-dark);
  border-color: var(--primary-color-2-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color-2);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--medium-gray);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(91, 55, 88, 0.9), rgba(61, 37, 59, 0.8)), url('../ELE_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-shape {
  position: absolute;
  right: -150px;
  bottom: -150px;
  width: 500px;
  height: 500px;
  background-color: rgba(230, 126, 34, 0.3);
  border-radius: 50%;
  z-index: 1;
}

/* Services Section */
.service-card {
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card:before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: rgba(230, 126, 34, 0.1);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  z-index: 0;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-2);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  margin-bottom: 1.5rem;
  color: var(--medium-gray);
  position: relative;
  z-index: 1;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 25px;
}

.service-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color-3);
  position: absolute;
  left: 0;
  top: 8px;
}

/* Features Section */
.features-container {
  position: relative;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  background-color: var(--white);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-color-2), var(--primary-color-2-dark));
}

/* Price Plan Section */
.price-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.price-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-header {
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-color-1), var(--primary-color-1-dark));
  color: var(--white);
  text-align: center;
}

.price-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price-period {
  font-size: 0.9rem;
  opacity: 0.8;
}

.price-body {
  padding: 2rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.price-features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 25px;
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color-3);
  position: absolute;
  left: 0;
}

/* Team Section */
.team-container {
  position: relative;
}

.team-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-slider {
  padding-bottom: 50px;
}

.review-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 1rem 0.5rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-top: 30px;
}

.review-text:before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 2rem;
  color: rgba(230, 126, 34, 0.2);
  position: absolute;
  top: -10px;
  left: -10px;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color-1);
}

/* Core Info Section */
.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.coreinfo-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.coreinfo-item:before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgba(46, 204, 113, 0.05);
  top: -75px;
  right: -75px;
  z-index: 0;
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-color-3);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.coreinfo-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.coreinfo-desc {
  color: var(--medium-gray);
  position: relative;
  z-index: 1;
}

/* Contact Section */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-form {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.form-control {
  border-radius: 5px;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-check-input {
  margin-right: 10px;
}

.contact-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: rgba(230, 126, 34, 0.05);
  border-radius: 50%;
  bottom: -200px;
  left: -200px;
  z-index: 1;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background-color: var(--white);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-color-2);
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-color-2-dark);
  text-decoration: none;
}

/* FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-header {
  background-color: var(--white);
}

.accordion-button {
  padding: 1.2rem;
  font-weight: 600;
  color: var(--primary-color-1);
}

.accordion-button:not(.collapsed) {
  background-color: var(--light-gray);
  color: var(--primary-color-1);
  box-shadow: none;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--medium-gray);
}

/* Gallery Section */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  color: var(--light-gray);
  padding: 4rem 0 2rem;
}

footer h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

footer p {
  opacity: 0.8;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.8rem;
}

footer ul li a {
  color: var(--light-gray);
  opacity: 0.8;
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: var(--primary-color-2);
  opacity: 1;
  text-decoration: none;
}

small#site-copyright {
  display: block;
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-in {
    animation: none;
  }
} 