:root {
  --primary-color-1: #1a2f60; /* Dark blue */
  --primary-color-2: #ffc857; /* Gold/Yellow */
  --primary-color-3: #e63946; /* Red accent */
  --primary-color-4: #2a9d8f; /* Teal */
  --primary-color-5: #f7f7f9; /* Light gray */
  
  --light-shade-1: #f8f9fa;
  --light-shade-2: #e9ecef;
  --dark-shade-1: #343a40;
  --dark-shade-2: #212529;
}

/* Base Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-shade-1);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

section {
  padding: 6rem 0;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 3rem;
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
  color: var(--dark-shade-1);
}

.btn-secondary {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
  color: var(--dark-shade-1);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  color: white;
}

/* Header Styles */
.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color-1);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--dark-shade-1);
  padding: 10px 20px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color-2);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background-color: var(--primary-color-5);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--primary-color-1);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* About Section */
.about-section {
  background-color: var(--light-shade-1);
}

.about-feature {
  padding: 30px 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-color-2);
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  background-color: white;
}

.service-card {
  padding: 40px 30px;
  border-radius: 10px;
  background-color: var(--light-shade-1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color-2);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 15px 0;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

.service-features {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: var(--primary-color-2);
  margin-right: 10px;
}

/* Features Section */
.features-section {
  background-color: var(--primary-color-5);
  position: relative;
  overflow: hidden;
}

.features-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background-color: var(--primary-color-2);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.feature-card {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-shade-1);
  border-radius: 50%;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-color-1);
}

/* Price Plan Section */
.price-plan-section {
  background-color: white;
}

.price-card {
  padding: 50px 30px;
  border-radius: 10px;
  background-color: var(--light-shade-1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  background-color: var(--primary-color-1);
  color: white;
}

.price-card.featured .price {
  color: var(--primary-color-2);
}

.price-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 20px 0;
}

.price-features {
  margin: 30px 0;
  padding-left: 0;
  list-style: none;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: var(--light-shade-1);
}

.team-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  background-color: white;
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  transition: all 0.5s ease;
  width: 100%;
  height: auto;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  padding: 25px 20px;
  text-align: center;
}

.team-info h4 {
  margin-bottom: 5px;
  font-weight: 700;
}

.team-info p {
  color: var(--primary-color-2);
  margin-bottom: 0;
}

/* Reviews Section */
.reviews-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-color-1);
  opacity: 0.05;
  border-radius: 50%;
}

.review-card {
  padding: 40px 30px;
  border-radius: 10px;
  background-color: var(--light-shade-1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 20px 10px;
  position: relative;
}

.review-card::after {
  content: '\f10e';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-size: 3rem;
  color: var(--primary-color-2);
  opacity: 0.1;
}

.review-text {
  font-style: italic;
}

.review-author {
  margin-top: 20px;
  font-weight: 700;
  color: var(--primary-color-1);
}

/* Core Info Section */
.core-info-section {
  background-color: var(--primary-color-5);
}

.core-info-card {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.core-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.core-info-card i {
  font-size: 2.5rem;
  color: var(--primary-color-2);
  margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
  background-color: white;
}

.contact-form {
  padding: 40px;
  background-color: var(--light-shade-1);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

.form-check-input:checked {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

.contact-info {
  padding: 40px;
  background-color: var(--primary-color-1);
  color: white;
  border-radius: 10px;
  height: 100%;
}

.contact-info h4 {
  margin-bottom: 30px;
}

.contact-info-item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.contact-info-item i {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 15px;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-shade-1);
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  background-color: white;
  height: 100%;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  transition: all 0.5s ease;
  width: 100%;
  height: auto;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 30px;
}

.blog-content h4 {
  margin-bottom: 10px;
}

.blog-content p {
  margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
  background-color: white;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 20px;
  font-weight: 600;
  color: var(--dark-shade-1);
  background-color: white;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color-1);
  background-color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  padding: 20px;
  background-color: var(--light-shade-1);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--light-shade-1);
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--dark-shade-1);
  color: white;
  padding: 70px 0 20px;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget h4 {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color-2);
}

.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color-2);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Space Page */
#space {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color-5);
  margin: 100px 0;
  border-radius: 20px;
}

/* Additional Pages */
.page-header {
  padding: 150px 0 100px;
  background-color: var(--primary-color-1);
  color: white;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-color-2);
  opacity: 0.1;
  border-radius: 50%;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@media (prefers-reduced-motion) {
  .animate-fade-in {
    animation: none;
  }
} 