:root {
  /* Color Palette */
  --primary-1: #304d6d; /* Deep Blue */
  --primary-2: #7c9a92; /* Sage Green */
  --primary-3: #daa520; /* Golden Yellow */
  --primary-4: #7d3c50; /* Burgundy */
  --primary-5: #2f4f4f; /* Dark Slate */
  
  --primary-1-light: #4a6b8e;
  --primary-2-light: #9ab8b0;
  --primary-3-light: #ffc44d;
  --primary-4-light: #9e5a6e;
  --primary-5-light: #4d6b6b;
  
  --primary-1-dark: #1e3040;
  --primary-2-dark: #5e7c74;
  --primary-3-dark: #a67e18;
  --primary-4-dark: #5f2c3c;
  --primary-5-dark: #1a2929;
  
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --gray: #888888;
  --dark-gray: #333333;
  --black: #0a0a0a;
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

/* Global Styles */
html, body {
  font-family: var(--font-primary);
  color: var(--dark-gray);
  line-height: 1.6;
  font-size: 16px;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-5);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1-dark);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 20px;
  color: var(--primary-1);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

.btn-primary {
  background-color: var(--primary-3);
  border-color: var(--primary-3);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-3-dark);
  border-color: var(--primary-3-dark);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-1);
  color: var(--primary-1);
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--primary-1);
  color: var(--white);
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-1);
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-3);
}

.navbar-nav .nav-link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-3);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-1);
  color: var(--white);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title-1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero-subtitle-1 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-desc-1 {
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* About Section */
.about-section {
  position: relative;
  background-color: var(--white);
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-feature {
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border-radius: 5px;
  background-color: var(--light-gray);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-3);
  margin-bottom: 15px;
}

/* Services Section */
.services-section {
  background-color: var(--light-gray);
  position: relative;
}

.service-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px 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 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-1-light);
  color: var(--white);
  font-size: 2rem;
  border-radius: 50%;
  margin-bottom: 20px;
}

.service-price {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-3);
  color: var(--white);
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 20px;
}

.service-features {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--primary-3);
  margin-right: 10px;
}

/* Features Section */
.features-section {
  position: relative;
  overflow: hidden;
}

.features-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-2-light);
  opacity: 0.2;
  border-radius: 50%;
  z-index: -1;
}

.feature-item {
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background-color: var(--primary-2);
  transition: all 0.3s ease;
}

.feature-item:hover::before {
  height: 100%;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-2);
  margin-bottom: 20px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-gray);
  position: relative;
}

.price-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.price-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: var(--primary-3-light);
  opacity: 0.1;
  border-radius: 0 0 0 100%;
  z-index: -1;
}

.price-card-popular {
  position: absolute;
  top: 0;
  right: 30px;
  background-color: var(--primary-3);
  color: var(--white);
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 0 0 5px 5px;
  z-index: 2;
}

.price-card-name {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-1);
}

.price-card-price {
  font-size: 2.5rem;
  color: var(--primary-3);
  font-weight: 700;
  margin-bottom: 20px;
}

.price-card-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.price-card-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
}

.price-card-features li i {
  color: var(--primary-3);
  margin-right: 10px;
}

/* Team Section */
.team-section {
  position: relative;
}

.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.team-member img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.05);
}

.team-member-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  color: var(--white);
  transition: all 0.3s ease;
}

.team-member:hover .team-member-info {
  background: linear-gradient(to top, var(--primary-1), rgba(0,0,0,0));
}

.team-member-name {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team-member-role {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-1);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--white);
  opacity: 0.05;
  border-radius: 50%;
}

.reviews-section .section-title h2 {
  color: var(--white);
}

.review-item {
  background-color: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 10px;
  margin: 15px;
  transition: all 0.3s ease;
}

.review-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255,255,255,0.15);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.review-text::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary-3);
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-name {
  font-weight: 700;
  margin-bottom: 0;
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
}

.coreinfo-item {
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.coreinfo-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: var(--primary-4-light);
  opacity: 0.1;
  border-radius: 50% 0 0 0;
  z-index: -1;
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-4);
  margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-gray);
  position: relative;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-control {
  border: 1px solid var(--gray);
  padding: 12px 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.form-select {
  border: 1px solid var(--gray);
  padding: 12px 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  background-color: var(--white);
}

.form-check-input {
  margin-right: 10px;
}

.contact-info {
  padding: 40px;
  background-color: var(--primary-5);
  color: var(--white);
  border-radius: 10px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-3);
  color: var(--white);
  border-radius: 50%;
  margin-right: 15px;
  font-size: 1rem;
}

/* Blog Section */
.blog-section {
  position: relative;
}

.blog-grid {
  position: relative;
}

.blog-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  background-color: var(--white);
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-item-img {
  position: relative;
  overflow: hidden;
}

.blog-item-img img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.1);
}

.blog-item-content {
  padding: 25px;
}

.blog-item-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.blog-item-excerpt {
  margin-bottom: 20px;
}

.blog-item-link {
  display: inline-block;
  color: var(--primary-3);
  font-weight: 600;
  position: relative;
}

.blog-item-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-3);
  transition: all 0.3s ease;
}

.blog-item-link:hover::after {
  width: 100%;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-gray);
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border: none;
}

.accordion-button {
  background-color: var(--white);
  color: var(--primary-5);
  font-weight: 600;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-1);
  color: var(--white);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-1);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e");
  transition: all 0.3s ease;
}

.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='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px;
  background-color: var(--white);
}

/* Gallery Section */
.gallery-section {
  position: relative;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-5-dark);
  color: var(--white);
  padding: 60px 0 20px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-1), var(--primary-2), var(--primary-3), var(--primary-4), var(--primary-5));
}

.footer-logo {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-desc {
  margin-bottom: 30px;
  max-width: 80%;
}

.footer-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 10px;
  font-size: 1.3rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-3);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links li a {
  color: var(--light-gray);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links li a:hover {
  color: var(--primary-3);
  transform: translateX(5px);
}

.footer-links li a i {
  margin-right: 10px;
  color: var(--primary-3);
}

.footer-contact {
  list-style: none;
  padding-left: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-contact-icon {
  margin-right: 15px;
  color: var(--primary-3);
  font-size: 1.2rem;
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
}

.footer-bottom small {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Space Page */
.space-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
  padding: 100px 0;
}

/* Breadcrumb */
.breadcrumb-section {
  background-color: var(--light-gray);
  padding: 15px 0;
  margin-top: 80px;
}

.breadcrumb-item a {
  color: var(--primary-1);
}

.breadcrumb-item.active {
  color: var(--gray);
}

/* Animation Utilities */
.animate-up {
  animation: animateUp 0.5s ease-out forwards;
}

@keyframes animateUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries for Responsive Design */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Helpers */
.shadow-lg {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.rounded-lg {
  border-radius: 15px !important;
}

.text-primary {
  color: var(--primary-1) !important;
}

.text-secondary {
  color: var(--primary-3) !important;
}

.bg-primary {
  background-color: var(--primary-1) !important;
}

.bg-secondary {
  background-color: var(--primary-3) !important;
} 