:root {
  /* Color palette */
  --primary-1: #3e7cb1; /* Deep blue */
  --primary-2: #f2b035; /* Warm gold */
  --primary-3: #81b29a; /* Sage green */
  --primary-4: #f4a261; /* Terracotta */
  --primary-5: #e76f51; /* Coral */
  
  /* Shades */
  --primary-1-light: #5c9bd3;
  --primary-1-dark: #2b5a83;
  --primary-2-light: #ffc966;
  --primary-2-dark: #d19020;
  --primary-3-light: #a3d0b9;
  --primary-3-dark: #5e8971;
  --primary-4-light: #f6be8d;
  --primary-4-dark: #d8834c;
  --primary-5-light: #eb9179;
  --primary-5-dark: #c55a3e;
  
  /* Neutral colors */
  --neutral-100: #ffffff;
  --neutral-200: #f8f9fa;
  --neutral-300: #e9ecef;
  --neutral-400: #dee2e6;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--neutral-800);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

/* Header */
.site-header {
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  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);
}

.site-header.scrolled {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-1);
}

.nav-link {
  font-weight: 500;
  color: var(--neutral-700);
  margin: 0 0.5rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link:focus {
  color: var(--primary-1);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-1);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--neutral-100);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--neutral-200);
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  color: var(--neutral-300);
}

/* Section styling */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-1);
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--neutral-600);
}

.section-desc {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--neutral-700);
}

/* About section */
.about-section {
  background-color: var(--neutral-100);
}

.about-feature {
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-1);
}

.about-feature-name {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.about-feature-desc {
  color: var(--neutral-600);
}

/* Services section */
.services-section {
  background-color: var(--neutral-200);
}

.service-card {
  background-color: var(--neutral-100);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-img-container {
  height: 200px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-name {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-1);
}

.service-desc {
  color: var(--neutral-700);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-300);
  color: var(--neutral-700);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: var(--primary-2);
  margin-right: 0.5rem;
}

.service-price {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-1);
}

/* Features section */
.features-section {
  background-color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.features-shape {
  position: absolute;
  z-index: 1;
}

.features-shape-1 {
  top: -150px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-3-light);
  opacity: 0.1;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.features-shape-2 {
  bottom: -150px;
  left: -100px;
  width: 350px;
  height: 350px;
  background-color: var(--primary-2-light);
  opacity: 0.1;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: var(--neutral-100);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-3);
}

.feature-name {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-1);
}

.feature-desc {
  color: var(--neutral-600);
}

/* Price plans section */
.priceplan-section {
  background-color: var(--neutral-200);
}

.price-card {
  background-color: var(--neutral-100);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card-header {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-1), var(--primary-1-dark));
  color: var(--neutral-100);
}

.price-name {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price-period {
  font-size: 0.9rem;
  opacity: 0.8;
}

.price-body {
  padding: 2rem;
}

.price-desc {
  margin-bottom: 1.5rem;
  color: var(--neutral-700);
  text-align: center;
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--neutral-300);
  color: var(--neutral-700);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features i {
  color: var(--primary-2);
  margin-right: 0.5rem;
}

/* Team section */
.team-section {
  background-color: var(--neutral-100);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-img-container {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--neutral-200);
  transition: transform 0.3s ease;
}

.team-member:hover .team-img-container {
  transform: scale(1.05);
  border-color: var(--primary-1-light);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-name {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-1);
}

.team-member-role {
  color: var(--neutral-600);
  font-style: italic;
}

/* Reviews section */
.reviews-section {
  background-color: var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.reviews-shape {
  position: absolute;
  z-index: 1;
}

.reviews-shape-1 {
  top: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background-color: var(--primary-4-light);
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.reviews-shape-2 {
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-5-light);
  opacity: 0.1;
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

.review-item {
  background-color: var(--neutral-100);
  border-radius: 0.5rem;
  padding: 2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.review-text {
  margin-bottom: 1.5rem;
  color: var(--neutral-700);
  font-style: italic;
}

.review-author {
  font-weight: 600;
  color: var(--primary-1);
}

/* Core info section */
.coreinfo-section {
  background-color: var(--neutral-100);
}

.coreinfo-item {
  text-align: center;
  margin-bottom: 2rem;
}

.coreinfo-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-4);
}

.coreinfo-title {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-1);
}

.coreinfo-desc {
  color: var(--neutral-600);
}

/* Contact section */
.contact-section {
  background-color: var(--primary-1);
  color: var(--neutral-100);
}

.contact-section .section-title,
.contact-section .section-subtitle,
.contact-section .section-desc {
  color: var(--neutral-100);
}

.contact-form {
  background-color: var(--neutral-100);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-label {
  font-weight: 500;
  color: var(--neutral-700);
}

.form-control {
  padding: 0.75rem 1rem;
  border: 1px solid var(--neutral-300);
  border-radius: 0.25rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.25rem rgba(62, 124, 177, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
  transform: translateY(-3px);
}

/* Blog section */
.blog-section {
  background-color: var(--neutral-200);
}

.blog-card {
  background-color: var(--neutral-100);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-img-container {
  height: 200px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-1);
}

.blog-excerpt {
  color: var(--neutral-700);
  margin-bottom: 1.5rem;
}

.blog-link {
  font-weight: 500;
  color: var(--primary-1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.blog-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* FAQ section */
.faq-section {
  background-color: var(--neutral-100);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--neutral-800);
  background-color: var(--neutral-100);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-1);
  background-color: var(--neutral-100);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--neutral-300);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23212529' viewBox='0 0 16 16'%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' width='16' height='16' fill='%233e7cb1' viewBox='0 0 16 16'%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 1.5rem;
  color: var(--neutral-700);
}

/* Gallery section */
.gallery-section {
  background-color: var(--neutral-200);
  padding: 5rem 0;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Footer */
.footer {
  background-color: var(--neutral-900);
  color: var(--neutral-100);
  padding: 4rem 0 2rem;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--neutral-100);
}

.footer-desc {
  color: var(--neutral-400);
  margin-bottom: 2rem;
}

.footer-heading {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--neutral-100);
}

.footer-link {
  color: var(--neutral-400);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-link:hover {
  color: var(--primary-2);
}

.contact-info {
  color: var(--neutral-400);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 0.75rem;
  color: var(--primary-1);
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

.contact-info-content {
  flex: 1;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--neutral-500);
  font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--neutral-200);
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: var(--primary-1);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--neutral-600);
}

/* Space page */
.space-container {
  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-fadeIn {
  animation: fadeIn 1s ease forwards;
}

/* Utility classes */
.bg-primary {
  background-color: var(--primary-1) !important;
}

.text-primary {
  color: var(--primary-1) !important;
}

.rounded-custom {
  border-radius: 0.5rem;
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Decorative shapes */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-2-light);
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background-color: var(--primary-3-light);
  opacity: 0.1;
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
} 