:root {
  /* Color Palette */
  --primary-color: #3a5a78; /* Deep blue */
  --secondary-color: #d8a47f; /* Warm peach */
  --accent-color: #7c9a86; /* Sage green */
  --neutral-color: #f5f5f5; /* Light gray */
  --dark-color: #2b3a42; /* Dark slate */
  
  /* Shades */
  --primary-light: #5177a0;
  --primary-dark: #294561;
  --secondary-light: #e3c1a7;
  --secondary-dark: #b88a61;
  --accent-light: #9cb5a8;
  --accent-dark: #5c7664;
  --neutral-light: #ffffff;
  --neutral-dark: #e0e0e0;
  --dark-light: #485c68;
  --dark-dark: #1a252c;
}

/* General Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--neutral-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

.section-title.text-center h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

/* Header Styles */
.site-header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  padding: 10px 0;
}

.site-header .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.site-header .nav-link {
  font-weight: 500;
  padding: 10px 15px !important;
  color: var(--dark-color);
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background-color: var(--neutral-color);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--dark-light);
}

.hero-image {
  position: relative;
}

.hero-shape {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--secondary-light);
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  z-index: 1;
}

/* About Section */
.about-section {
  position: relative;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.about-shape {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--accent-light);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
}

.about-feature {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--neutral-light);
  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 20px 40px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

/* Services Section */
.services-section {
  background-color: var(--neutral-light);
}

.service-card {
  padding: 40px 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary-color);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.service-price {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-light);
  color: var(--dark-color);
  padding: 5px 15px;
  border-radius: 30px;
  font-weight: 600;
}

.service-features {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.service-features li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.service-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* Features Section */
.features-section {
  background-color: var(--neutral-color);
  position: relative;
}

.feature-item {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--neutral-color);
  color: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 2rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--neutral-light);
}

.price-card {
  padding: 40px 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  border: 2px solid var(--secondary-color);
}

.price-card.featured:before {
  content: 'Popular';
  position: absolute;
  top: 20px;
  right: -30px;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 5px 40px;
  transform: rotate(45deg);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  margin: 20px 0;
  color: var(--primary-color);
}

.price-period {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-light);
}

.price-features {
  margin: 30px 0;
  padding-left: 0;
  list-style: none;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--neutral-dark);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: var(--neutral-color);
}

.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.team-img {
  width: 100%;
  transition: all 0.3s ease;
}

.team-member:hover .team-img {
  transform: scale(1.05);
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: #fff;
  transition: all 0.3s ease;
}

.team-member:hover .team-info {
  padding-bottom: 40px;
}

.team-name {
  margin: 0;
  font-size: 1.4rem;
  color: #fff;
}

.team-role {
  color: var(--secondary-light);
  margin: 5px 0 0;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--neutral-light);
}

.reviews-slider {
  padding: 40px 20px;
}

.review-item {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 10px;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--dark-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;
  margin: 0;
}

.review-author-info {
  color: var(--dark-light);
  font-size: 0.9rem;
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
  background-color: var(--neutral-color);
}

.coreinfo-item {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  position: relative;
  background-color: var(--neutral-light);
}

.contact-form {
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  height: 50px;
  border-radius: 25px;
  padding: 0.375rem 1.2rem;
  border: 1px solid var(--neutral-dark);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(58, 90, 120, 0.25);
}

textarea.form-control {
  height: auto;
  border-radius: 20px;
}

.contact-info {
  padding: 40px;
  border-radius: 10px;
  background-color: var(--primary-color);
  color: #fff;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-info-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--secondary-light);
}

/* Blog Section */
.blog-section {
  background-color: var(--neutral-light);
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 10px 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.3s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 30px;
}

.blog-date {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--primary-light);
  color: #fff;
  border-radius: 30px;
  font-size: 0.8rem;
  margin-bottom: 15px;
}

.blog-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.blog-title a {
  color: var(--dark-color);
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-excerpt {
  margin-bottom: 20px;
  color: var(--dark-light);
}

/* FAQ Section */
.faq-section {
  background-color: var(--neutral-light);
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  padding: 20px 30px;
  font-weight: 600;
  background-color: #fff;
  color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-body {
  padding: 20px 30px;
  background-color: #fff;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--neutral-color);
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-img {
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(43, 58, 66, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  color: #fff;
  font-size: 2rem;
}

/* Footer */
.site-footer {
  background-color: var(--dark-color);
  color: #fff;
  padding: 80px 0 20px;
}

.footer-logo {
  margin-bottom: 20px;
  color: #fff;
}

.footer-desc {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.contact-info-footer {
  margin-bottom: 15px;
  display: flex;
}

.contact-info-footer i {
  width: 30px;
  color: var(--secondary-color);
}

.footer-bottom {
  padding-top: 20px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#site-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Animation */
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

.float-animation {
  animation: floatAnimation 3s ease-in-out infinite;
}

/* Space Page */
.space-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--neutral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
} 