:root {
  /* Color Palette */
  --primary-1: #e0c8af; /* Sand Gold */
  --primary-2: #2a3542; /* Deep Navy */
  --primary-3: #8a6d5a; /* Copper Brown */
  --primary-4: #d8e1e9; /* Soft Sky */
  --primary-5: #627f7d; /* Sage Green */
  
  /* Variations */
  --primary-1-light: #f2e7d9;
  --primary-1-dark: #c3a887;
  --primary-2-light: #3d4d62;
  --primary-2-dark: #1c2531;
  --primary-3-light: #a58b7b;
  --primary-3-dark: #6d5647;
  --primary-4-light: #f1f5f8;
  --primary-4-dark: #b5c5d3;
  --primary-5-light: #7e9e9c;
  --primary-5-dark: #4d6462;
  
  /* Neutral Colors */
  --neutral-white: #ffffff;
  --neutral-black: #1a1a1a;
  --neutral-gray: #f7f7f7;
  --neutral-gray-dark: #e2e2e2;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--neutral-black);
  background-color: var(--neutral-white);
  line-height: 1.6;
  overflow-x: hidden;
}

section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-2);
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
}

a {
  color: var(--primary-2);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-3);
}

.btn {
  padding: 12px 28px;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
}

.btn-primary:hover {
  background-color: var(--primary-2-light);
  border-color: var(--primary-2-light);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-2);
  color: var(--primary-2);
}

.btn-outline:hover {
  background-color: var(--primary-2);
  color: white;
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 20px 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--primary-2);
}

.nav-link {
  font-weight: 500;
  margin: 0 15px;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-3);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-4);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--neutral-white) 20%, transparent 80%);
}

/* About Section */
.about {
  background-color: var(--neutral-white);
}

.about-feature {
  padding: 30px;
  border: 1px solid var(--neutral-gray-dark);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.about-feature:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 48px;
  color: var(--primary-3);
  margin-bottom: 20px;
}

/* Services Section */
.services {
  background-color: var(--neutral-gray);
  position: relative;
}

.service-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--neutral-white);
  clip-path: polygon(0 80%, 100% 0, 100% 100%, 0% 100%);
}

.service-item {
  background-color: var(--neutral-white);
  padding: 40px 30px;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-1-light);
  border-radius: 50%;
  margin-bottom: 25px;
}

.service-icon i {
  font-size: 36px;
  color: var(--primary-3);
}

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--primary-2);
  margin: 15px 0;
}

.service-features {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--neutral-gray-dark);
}

.service-features li i {
  color: var(--primary-3);
  margin-right: 10px;
}

/* Features Section */
.features {
  position: relative;
  overflow: hidden;
}

.features-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--primary-1-light);
  border-radius: 50%;
  transform: translate(150px, -150px);
  z-index: -1;
}

.feature-item {
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.feature-item i {
  font-size: 42px;
  color: var(--primary-5);
  margin-bottom: 20px;
}

.feature-img {
  position: relative;
}

.feature-img::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 5px solid var(--primary-1);
  z-index: -1;
}

/* Price Plan Section */
.priceplan {
  background-color: var(--neutral-gray);
}

.price-item {
  background-color: var(--neutral-white);
  padding: 50px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-3);
}

.price-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 15px;
}

.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--primary-2);
  margin: 20px 0;
}

.price-features {
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--neutral-gray-dark);
}

.price-features li i {
  color: var(--primary-3);
  margin-right: 10px;
}

/* Team Section */
.team {
  position: relative;
  overflow: hidden;
}

.team-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: var(--primary-1-light);
  clip-path: polygon(0 50%, 100% 20%, 100% 100%, 0% 100%);
  z-index: -1;
}

.team-member {
  margin-bottom: 40px;
  position: relative;
}

.team-member-img {
  position: relative;
  overflow: hidden;
}

.team-member-img img {
  transition: transform 0.5s ease;
}

.team-member:hover .team-member-img img {
  transform: scale(1.05);
}

.team-member-info {
  background-color: var(--neutral-white);
  padding: 20px;
  text-align: center;
  position: relative;
  margin-top: -30px;
  margin-left: 20px;
  margin-right: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-member-name {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-member-role {
  color: var(--primary-3);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background-color: var(--primary-4-light);
  position: relative;
  overflow: hidden;
}

.reviews-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background-color: var(--primary-4);
  border-radius: 50%;
  transform: translate(-150px, -150px);
  z-index: 0;
}

.review-item {
  background-color: var(--neutral-white);
  padding: 40px;
  border-radius: 10px;
  margin: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.review-text::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 24px;
  color: var(--primary-1);
  opacity: 0.3;
}

.review-author {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-2);
}

/* Core Info Section */
.coreinfo {
  position: relative;
}

.coreinfo-item {
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--neutral-white);
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
  font-size: 42px;
  color: var(--primary-3);
  margin-bottom: 20px;
}

/* Contact Form Section */
.contact {
  background-color: var(--neutral-gray);
  position: relative;
}

.contact-form {
  background-color: var(--neutral-white);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  height: 54px;
  border: 1px solid var(--neutral-gray-dark);
  border-radius: 0;
  margin-bottom: 20px;
  padding: 10px 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-3);
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.form-check-input:checked {
  background-color: var(--primary-3);
  border-color: var(--primary-3);
}

.contact-img {
  position: relative;
  height: 100%;
}

.contact-img img {
  height: 100%;
  object-fit: cover;
}

.contact-img::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 5px solid var(--primary-1);
  z-index: -1;
}

/* Blog Section */
.blog {
  position: relative;
  overflow: hidden;
}

.blog-item {
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
  overflow: hidden;
  position: relative;
}

.blog-img img {
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 30px;
  background-color: var(--neutral-white);
}

.blog-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.blog-excerpt {
  margin-bottom: 20px;
}

/* FAQ Section */
.faq {
  background-color: var(--neutral-white);
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 20px;
  font-family: 'Playfair Display', serif;
  color: var(--primary-2);
  font-weight: 600;
  background-color: var(--neutral-white);
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-2);
  background-color: var(--neutral-white);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--neutral-gray-dark);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238a6d5a'%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;
  background-color: var(--neutral-white);
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
}

.gallery-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--primary-2);
  padding: 80px 0 0;
  color: var(--neutral-gray);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--neutral-white);
  margin-bottom: 20px;
}

.footer-desc {
  margin-bottom: 30px;
}

.footer-heading {
  color: var(--neutral-white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-3);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--neutral-gray);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-1);
  padding-left: 5px;
}

.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.contact-info p i {
  margin-right: 15px;
  color: var(--primary-1);
}

.copyright {
  background-color: var(--primary-2-dark);
  padding: 20px 0;
  margin-top: 60px;
}

.copyright p {
  margin-bottom: 0;
}

/* Space Page */
#space {
  height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-gray);
}

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}

.fade-right.active {
  opacity: 1;
  transform: translateX(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s ease;
}

.fade-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* Additional Page Styles */
.page-header {
  height: 300px;
  background-color: var(--primary-1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 80px;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(42, 53, 66, 0.7), rgba(138, 109, 90, 0.5));
}

.page-title {
  color: var(--neutral-white);
  position: relative;
  z-index: 1;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  background-color: transparent;
}

.breadcrumb-item {
  color: var(--neutral-white);
}

.breadcrumb-item.active {
  color: var(--primary-1-light);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--neutral-white);
}

.additional-section {
  padding: 80px 0;
}

.additional-section:nth-child(even) {
  background-color: var(--neutral-gray);
}

.additional-section:nth-child(odd) {
  background-color: var(--neutral-white);
} 