:root {
  /* Primary color palette */
  --primary-1: #5b7e98; /* Muted blue */
  --primary-2: #d3a972; /* Rich gold */
  --primary-3: #4a6d5a; /* Forest green */
  --primary-4: #b85c65; /* Dusky rose */
  --primary-5: #524961; /* Deep purple */
  
  /* Shades */
  --primary-1-light: #8ba6bb;
  --primary-1-dark: #395166;
  --primary-2-light: #e3c79d;
  --primary-2-dark: #a78446;
  --primary-3-light: #799f86;
  --primary-3-dark: #2e4638;
  --primary-4-light: #d68b92;
  --primary-4-dark: #8c373f;
  --primary-5-light: #7f7697;
  --primary-5-dark: #332b3d;
  
  /* Neutrals */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #cccccc;
  --dark-gray: #333333;
  --black: #0a0a0a;
}

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-3);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-3-dark);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-1);
}

.navbar-nav {
  display: flex;
  list-style: none;
  flex-direction: row;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-2);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-2);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
#hero {
  height: 100vh;
  background-color: var(--primary-1-light);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hero-title-1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle-1 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-desc-1 {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Section Styling */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-3);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--primary-2);
  margin-bottom: 20px;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto;
}

/* About Section */
#about {
  background-color: var(--white);
}

.about-feature {
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  background-color: var(--light-gray);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-2);
  margin-bottom: 20px;
}

.about-feature-name {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-1);
}

/* Services Section */
#services {
  background-color: var(--light-gray);
}

.services-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-item-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.services-item-content {
  padding: 30px;
}

.services-item-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-3);
}

.services-item-desc {
  margin-bottom: 15px;
}

.services-item-features {
  list-style: none;
  margin-bottom: 20px;
}

.services-item-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.services-item-features li::before {
  content: '\f00c';
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  color: var(--primary-4);
}

.services-item-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-2);
}

/* Features Section */
#features {
  background-color: var(--white);
}

.features-item {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
}

.features-item-icon {
  font-size: 3rem;
  color: var(--primary-1);
  margin-bottom: 20px;
}

.features-item-name {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-5);
}

/* Price Plan Section */
#priceplan {
  background-color: var(--light-gray);
}

.priceplan-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  text-align: center;
  padding: 40px 30px;
  position: relative;
}

.priceplan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.priceplan-item-name {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-3);
}

.priceplan-item-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-2);
  margin-bottom: 20px;
}

.priceplan-item-desc {
  margin-bottom: 30px;
}

.priceplan-item-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.priceplan-item-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.priceplan-item-features li::before {
  content: '\f00c';
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  color: var(--primary-4);
}

/* Team Section */
#team {
  background-color: var(--white);
}

.team-member {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-member-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member-info {
  padding: 20px;
  text-align: center;
  background-color: var(--white);
}

.team-member-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--primary-1);
}

.team-member-role {
  color: var(--primary-2);
  font-style: italic;
}

/* Reviews Section */
#reviews {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.reviews-container {
  position: relative;
}

.review-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-item-author {
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: 10px;
}

.review-item-text {
  font-style: italic;
}

/* Core Info Section */
#coreinfo {
  background-color: var(--white);
}

.coreinfo-item {
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: var(--light-gray);
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.coreinfo-item-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-5);
}

/* Contact Section */
#contact {
  background-color: var(--light-gray);
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 5px;
  font-size: 1rem;
}

textarea.form-control {
  min-height: 150px;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-check-input {
  margin-right: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-3);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-3-dark);
}

/* Blog Section */
#blog {
  background-color: var(--white);
}

.blog-item {
  background-color: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-item-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-item-content {
  padding: 30px;
}

.blog-item-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-1);
}

.blog-item-excerpt {
  margin-bottom: 20px;
}

.blog-item-link {
  color: var(--primary-2);
  font-weight: 500;
}

/* FAQ Section */
#faq {
  background-color: var(--light-gray);
}

.accordion {
  margin-bottom: 30px;
}

.accordion-item {
  background-color: var(--white);
  border: none;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.accordion-button {
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-1);
  background-color: var(--white);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-2);
  background-color: var(--white);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 20px;
}

/* Gallery Section */
#gallery {
  background-color: var(--white);
  padding-bottom: 50px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 20px;
}

.gallery-item {
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-section {
  margin-bottom: 40px;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary-2);
}

.footer-nav {
  list-style: none;
}

.footer-nav-item {
  margin-bottom: 10px;
}

.footer-nav-link {
  color: var(--medium-gray);
}

.footer-nav-link:hover {
  color: var(--primary-2);
}

.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

#site-copyright {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb {
  padding: 120px 0 30px;
  background-color: var(--primary-1-light);
  text-align: center;
}

.breadcrumb-container {
  position: relative;
}

/* Additional Pages */
.page-section {
  padding: 80px 0;
}

.page-section:nth-child(odd) {
  background-color: var(--light-gray);
}

.page-section:nth-child(even) {
  background-color: var(--white);
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Shapes */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background-color: var(--primary-2-light);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.2;
}

.shape-2 {
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background-color: var(--primary-4-light);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.2;
}

/* Media Queries will be in responsive.css */ 