:root {
  /* Color Palette */
  --primary-color-1: #5a7d9a; /* Rich Teal Blue */
  --primary-color-2: #d4a373; /* Warm Sand */
  --primary-color-3: #8b5e83; /* Muted Purple */
  --primary-color-4: #6b9080; /* Sage Green */
  --primary-color-5: #dda15e; /* Soft Orange */

  /* Shades */
  --primary-color-1-light: #7a9dba;
  --primary-color-1-dark: #3a5d7a;
  --primary-color-2-light: #f4c393;
  --primary-color-2-dark: #b48353;
  --primary-color-3-light: #ab7ea3;
  --primary-color-3-dark: #6b3e63;
  --primary-color-4-light: #8bb0a0;
  --primary-color-4-dark: #4b7060;
  --primary-color-5-light: #fdc17e;
  --primary-color-5-dark: #bd813e;

  /* Font settings */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: var(--line-height-base);
  color: #333;
  overflow-x: hidden;
  background-color: #f8f9fa;
}

a {
  text-decoration: none;
  color: var(--primary-color-1);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-1-dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #333;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Header */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-1);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  padding: 0 1.2rem;
}

.nav-menu a {
  color: #333;
  position: relative;
  font-weight: 600;
}

.nav-menu a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color-1);
  left: 0;
  bottom: -3px;
  transition: width 0.3s ease;
}

.nav-menu a:hover:after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, rgba(90, 125, 154, 0.9), rgba(139, 94, 131, 0.8)), url('../VIL_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease-out;
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1.4s ease-out;
}

/* About Section */
.about-section {
  background-color: #f8f9fa;
}

.about-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  padding-right: 3rem;
}

.about-title {
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.about-subtitle {
  margin-bottom: 1.5rem;
}

.about-desc {
  margin-bottom: 2rem;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature h4 {
  color: var(--primary-color-1);
  margin-bottom: 0.8rem;
}

/* Services Section */
.services-section {
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.section-subtitle {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-name {
  color: var(--primary-color-1);
  margin-bottom: 0.5rem;
}

.service-desc {
  margin-bottom: 1rem;
  color: #555;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: #666;
}

.service-features li:before {
  content: "✓";
  color: var(--primary-color-4);
  position: absolute;
  left: 0;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color-2);
}

/* Features Section */
.features-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.feature-item {
  display: flex;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color-1-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-content h4 {
  color: var(--primary-color-1);
  margin-bottom: 0.8rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: white;
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.priceplan-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  position: relative;
  border: 1px solid #eee;
}

.priceplan-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color-1-light);
}

.priceplan-header {
  background: var(--primary-color-1-light);
  padding: 2rem;
  color: white;
  text-align: center;
}

.priceplan-name {
  margin-bottom: 0.5rem;
}

.priceplan-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.priceplan-content {
  padding: 2rem;
}

.priceplan-desc {
  margin-bottom: 1.5rem;
  text-align: center;
}

.priceplan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.priceplan-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 1.5rem;
}

.priceplan-features li:before {
  content: "✓";
  color: var(--primary-color-4);
  position: absolute;
  left: 0;
}

/* Team Section */
.team-section {
  background-color: #f8f9fa;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.team-member {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.team-img {
  height: 280px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.1);
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  margin-bottom: 0.5rem;
  color: var(--primary-color-1);
}

.team-role {
  color: var(--primary-color-3);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.reviews-slider {
  position: relative;
  overflow: hidden;
}

.review-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.review-text:before {
  content: '"';
  font-size: 3rem;
  font-family: Georgia, serif;
  position: absolute;
  left: 0;
  top: -1rem;
  color: var(--primary-color-1-light);
  opacity: 0.3;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color-1);
}

/* Core Info Section */
.coreinfo-section {
  background-color: #f8f9fa;
  position: relative;
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.coreinfo-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color-1-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.coreinfo-icon i {
  font-size: 1.8rem;
  color: white;
}

.coreinfo-title {
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.coreinfo-desc {
  color: #666;
}

/* Contact Section */
.contact-section {
  background-color: white;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  outline: none;
}

textarea.form-control {
  height: 120px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.form-check-label {
  font-size: 0.9rem;
}

.form-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-option {
  display: flex;
  align-items: center;
}

.service-option input {
  margin-right: 0.5rem;
}

.submit-btn {
  background: var(--primary-color-1);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: var(--primary-color-1-dark);
}

.contact-info {
  padding: 2rem;
}

.contact-info h3 {
  color: var(--primary-color-1);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color-1-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.contact-icon i {
  font-size: 1.2rem;
  color: white;
}

.contact-detail {
  color: #555;
}

/* Blog Section */
.blog-section {
  background-color: #f8f9fa;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
  color: #555;
}

.blog-link {
  color: var(--primary-color-1);
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.blog-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color-1);
  left: 0;
  bottom: -3px;
  transition: width 0.3s ease;
}

.blog-link:hover:after {
  width: 100%;
}

/* FAQ Section */
.faq-section {
  background-color: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  background: #f8f9fa;
  padding: 1rem;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  color: var(--primary-color-1);
}

.accordion-header:after {
  content: '+';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header:after {
  content: '-';
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 1rem;
  max-height: 1000px;
}

/* Gallery Section */
.gallery-section {
  background-color: #f8f9fa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  color: white;
  font-size: 2rem;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 3rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-desc {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.footer-title {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.contact-info-footer {
  color: #ccc;
}

.contact-info-item {
  margin-bottom: 1rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  color: #ccc;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Special Page - index_space.html */
#space {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Breadcrumb */
.breadcrumb {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #f8f9fa;
  border-radius: 0.25rem;
}

.breadcrumb-item {
  display: inline-block;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: #6c757d;
  content: "/";
}

/* Additional Pages */
.additional-page-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

/* Media Queries */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
} 