:root {
  /* Color Palette */
  --primary-color: #4e7aff;
  --secondary-color: #ff7e50;
  --accent-color: #7a4eff;
  --neutral-color: #2f3542;
  --light-color: #f9fafb;
  
  /* Shades and tints */
  --primary-light: #ccd7ff;
  --primary-dark: #2951cc;
  --secondary-light: #ffd3c2;
  --secondary-dark: #c95a2e;
  --accent-light: #d2c8ff;
  --accent-dark: #4e2dab;
  --neutral-light: #c6c9d1;
  --neutral-dark: #1a1e27;
}

/* Base Styles */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--neutral-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(78, 122, 255, 0.2);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 126, 80, 0.2);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 10px;
}

.section-title p {
  font-size: 18px;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
  padding: 20px 0;
}

header.scrolled {
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-brand {
  font-size: 14px !important;
  font-weight: 700;
  color: var(--light-color);
}

header.scrolled .navbar-brand {
  color: var(--neutral-dark);
}

.nav-link {
  font-weight: 600;
  color: var(--light-color);
  margin: 0 15px;
  position: relative;
}

header.scrolled .nav-link {
  color: var(--neutral-dark);
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxNTBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0xMjgwIDBsLTI2NiA5MS41MmE3Mi41OSA3Mi41OSAwIDAgMS0zMC43NiAzLjcxTDAgMHYxNDBoMTI4MHoiIGZpbGwtb3BhY2l0eT0iLjUiLz48cGF0aCBkPSJNMTI4MCAwbC0yNjIuMSAxMTYuMjZhNzMuMjkgNzMuMjkgMCAwIDEtMzkuMDkgNkwwIDB2MTQwaDEyODB6Ii8+PC9nPjwvc3ZnPg==');
  background-size: 100% 100%;
  z-index: 1;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-image {
  position: relative;
  z-index: 2;
}

/* About Section */
.about-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.about-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background-color: var(--primary-light);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-image {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-feature {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-feature h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Services Section */
.services-section {
  background-color: var(--light-color);
  position: relative;
}

.services-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 40%;
  background-color: var(--secondary-light);
  border-radius: 0 100% 0 0;
  z-index: 0;
}

.service-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-price {
  display: inline-block;
  background-color: var(--accent-light);
  color: var(--accent-dark);
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 700;
  margin-top: 15px;
}

.service-features {
  margin-top: 20px;
  padding-left: 20px;
}

.service-features li {
  margin-bottom: 10px;
}

/* Features Section */
.features-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.features-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary-light) 10%, transparent 10%);
  background-size: 30px 30px;
  opacity: 0.5;
  z-index: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.feature-icon {
  min-width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  margin-right: 25px;
  font-size: 30px;
}

.feature-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

/* Price Plan Section */
.price-section {
  background-color: var(--light-color);
  position: relative;
}

.price-card {
  background-color: white;
  padding: 50px 30px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
}

.price-card.featured .price-amount {
  color: white;
}

.price-icon {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.price-card.featured .price-icon {
  color: white;
}

.price-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.price-amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.price-features {
  margin-bottom: 30px;
  text-align: left;
}

.price-features li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.price-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
}

.price-card.featured .price-features li:before {
  color: white;
}

/* Team Section */
.team-section {
  background-color: white;
  position: relative;
}

.team-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  transition: all 0.8s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  padding: 25px 20px;
  text-align: center;
}

.team-info h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.reviews-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--secondary-light);
  border-radius: 50%;
  z-index: 0;
  transform: translate(150px, 150px);
}

.review-card {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  height: 100%;
}

.review-text {
  position: relative;
  padding-top: 30px;
  margin-bottom: 25px;
}

.review-text:before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  color: var(--primary-light);
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-name {
  font-weight: 600;
  font-size: 18px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-color);
}

/* Core Info Section */
.core-info-section {
  background-color: white;
  position: relative;
}

.core-info-item {
  background-color: var(--light-color);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.core-info-icon {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.core-info-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-color);
  position: relative;
}

.contact-form {
  background-color: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  height: 50px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(78, 122, 255, 0.25);
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Blog Section */
.blog-section {
  background-color: white;
  position: relative;
}

.blog-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.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.8s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.blog-excerpt {
  margin-bottom: 20px;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-color);
}

.blog-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-color);
  position: relative;
}

.accordion-item {
  border: none;
  background-color: transparent;
  margin-bottom: 15px;
}

.accordion-button {
  background-color: white;
  border-radius: 10px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  font-weight: 600;
  padding: 20px 25px;
  color: var(--neutral-dark);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 5px 15px rgba(78, 122, 255, 0.1);
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232f3542'%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-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%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: 20px 25px;
  background-color: white;
  border-radius: 0 0 10px 10px;
}

/* Gallery Section */
.gallery-section {
  background-color: white;
  position: relative;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
}

.gallery-item img {
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: 80px 0 20px;
  position: relative;
}

footer h4 {
  font-size: 22px;
  margin-bottom: 25px;
  color: white;
}

footer p, footer small {
  color: var(--neutral-light);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--neutral-light);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.contact-info {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 15px;
  font-size: 18px;
  color: var(--primary-color);
}

.site-copyright {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Space Page */
.space-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
}

/* Additional Pages */
.page-header {
  height: 30vh;
  min-height: 300px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.breadcrumb-item {
  color: white !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: white;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Utility Classes */
.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-accent {
  background-color: var(--accent-color) !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.rounded-lg {
  border-radius: 15px;
}

.shadow-lg {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.overflow-hidden {
  overflow: hidden;
} 