:root {
  --primary-color-1: #9e78a3; /* Soft purple */
  --primary-color-2: #e3b5a4; /* Peachy tone */
  --primary-color-3: #7da9af; /* Muted teal */
  --primary-color-4: #efd3a3; /* Warm sand */
  --primary-color-5: #b4c7a3; /* Sage green */
  
  --primary-color-1-light: #c8b0cc;
  --primary-color-1-dark: #7a5b7e;
  --primary-color-2-light: #f5d7cc;
  --primary-color-2-dark: #c08c7d;
  --primary-color-3-light: #a7c5c9;
  --primary-color-3-dark: #5b7d83;
  --primary-color-4-light: #f8e6c6;
  --primary-color-4-dark: #c7ac7d;
  --primary-color-5-light: #d6e0cc;
  --primary-color-5-dark: #8fa380;
  
  --text-dark: #3a3a3a;
  --text-medium: #686868;
  --text-light: #f8f9fa;
  --bg-light: #f8f9fa;
  --bg-medium: #e9ecef;
  --bg-dark: #212529;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
overflow-x: hidden;
  font-family: 'Raleway', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: capitalize;
  color: var(--primary-color-1-dark);
}

.section-title p {
  font-size: 16px;
  margin-bottom: 0;
}

/* Header Styles */
header {
  background: var(--bg-light);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

header.sticky {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
}

.navbar-brand {
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-color-1);
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color-1);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-3-light);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../LUX_images/courthouse-bg.webp') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--primary-color-1-dark);
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.hero-image {
  position: relative;
  z-index: 2;
}

/* About Section */
.about-section {
  background-color: var(--bg-light);
}

.about-feature {
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: #fff;
  height: 100%;
  border-left: 5px solid var(--primary-color-2);
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color-2);
}

.about-feature h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.about-image {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
  background-color: var(--bg-medium);
  position: relative;
}

.services-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services-item-header {
  padding: 25px;
  background-color: var(--primary-color-1-light);
}

.services-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color-1-dark);
}

.services-item-body {
overflow-x: hidden;
  padding: 25px;
}

.services-item-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.services-item-features li {
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
}

.services-item-features li:last-child {
  border-bottom: none;
}

.services-item-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 20px 0;
}

/* Features Section */
.features-section {
  background-color: var(--bg-light);
}

.features-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.features-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-item i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color-3);
}

.features-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--bg-medium);
}

.priceplan-item {
  padding: 40px 30px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.priceplan-item:hover {
  border-color: var(--primary-color-4);
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.priceplan-item h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.priceplan-item-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-4-dark);
  margin: 20px 0;
}

.priceplan-item-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.priceplan-item-features li {
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
}

.priceplan-item-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: var(--bg-light);
}

.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  background-color: #fff;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-member-image {
  overflow: hidden;
  position: relative;
}

.team-member-image img {
  width: 100%;
  transition: all 0.4s ease;
}

.team-member:hover .team-member-image img {
  transform: scale(1.1);
}

.team-member-info {
  padding: 25px;
  text-align: center;
}

.team-member-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-member-info p {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--bg-medium);
  position: relative;
}

.reviews-container {
  position: relative;
  padding: 30px 0;
}

.reviews-item {
  padding: 30px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}

.reviews-item::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 2rem;
  color: var(--primary-color-3-light);
  opacity: 0.3;
}

.reviews-item-text {
  font-style: italic;
  margin-bottom: 20px;
}

.reviews-item-author {
  font-weight: 700;
  color: var(--primary-color-3-dark);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--bg-light);
}

.coreinfo-item {
  padding: 30px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--primary-color-5);
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color-5);
}

.coreinfo-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-medium);
  position: relative;
}

.contact-form {
  padding: 40px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.form-control {
  height: 55px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

textarea.form-control {
  height: 150px;
  padding: 15px 25px;
}

.btn-submit {
  height: 55px;
  background-color: var(--primary-color-1);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 0 30px;
  border: none;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--primary-color-1-dark);
}

.contact-info {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-info-header {
  padding: 30px;
  background-color: var(--primary-color-1);
  color: #fff;
}

.contact-info-body {
overflow-x: hidden;
  padding: 30px;
  background-color: #fff;
}

.contact-info-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  margin-right: 20px;
  font-size: 1.5rem;
  color: var(--primary-color-1);
}

/* Blog Section */
.blog-section {
  background-color: var(--bg-light);
  position: relative;
}

.blog-item {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  overflow: hidden;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-item-image {
  overflow: hidden;
  position: relative;
}

.blog-item-image img {
  width: 100%;
  transition: all 0.4s ease;
}

.blog-item:hover .blog-item-image 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;
}

/* FAQ Section */
.faq-section {
  background-color: var(--bg-medium);
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 20px 25px;
  font-weight: 600;
  background-color: #fff;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color-1-dark);
  background-color: var(--primary-color-1-light);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, .125);
}

.accordion-body {
overflow-x: hidden;
  padding: 20px 25px;
  background-color: #fff;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--bg-light);
  padding: 100px 0;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 15px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 250px;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer Styles */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 0;
}

.footer-top {
  padding-bottom: 50px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer-desc {
  margin-bottom: 30px;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 25px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color-1-light);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 20px;
}

.footer-contact-icon {
  margin-right: 15px;
  color: var(--primary-color-1-light);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Additional Page Styles */
.page-header {
  height: 400px;
  background-color: var(--primary-color-1-light);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../LUX_images/page-header-bg.webp') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-title {
  position: relative;
  z-index: 2;
}

.page-title h1 {
  font-size: 2.5rem;
  color: var(--primary-color-1-dark);
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--primary-color-1-dark);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--text-medium);
}

/* Shape Elements */
.shape-1 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--primary-color-2-light);
  opacity: 0.5;
  z-index: 0;
}

.shape-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--primary-color-3-light);
  opacity: 0.3;
  z-index: 0;
}

.shape-blob {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background-color: var(--primary-color-4-light);
  border-radius: 71% 29% 65% 35% / 33% 56% 44% 67%;
  opacity: 0.2;
  z-index: 0;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* Space Page */
#space {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
} 