:root {
  /* Color Palette - 5 primary colors + their shades */
  --primary-1: #e0c3a0;
  --primary-1-light: #f3e4ce;
  --primary-1-dark: #c19b6c;
  
  --primary-2: #496a81;
  --primary-2-light: #7296ae;
  --primary-2-dark: #2e4757;
  
  --primary-3: #b0c4b1;
  --primary-3-light: #d3e2d4;
  --primary-3-dark: #86a287;
  
  --primary-4: #8e7f7f;
  --primary-4-light: #b8acac;
  --primary-4-dark: #635858;
  
  --primary-5: #f2ebe6;
  --primary-5-light: #ffffff;
  --primary-5-dark: #d9c8be;
  
  /* Font variables */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Raleway', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--primary-2-dark);
  background-color: var(--primary-5);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-2-dark);
}

p {
  margin-bottom: var(--spacing-sm);
}

a {
  text-decoration: none;
  color: var(--primary-2);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-2-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--primary-2);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-2-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--primary-1);
  color: var(--primary-2-dark);
}

.btn-secondary:hover {
  background-color: var(--primary-1-dark);
}

.section-padding {
  padding: var(--spacing-lg) 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-fast);
}

.header-scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.navbar-brand {
  font-size: 1rem !important;
  font-weight: 800;
  color: var(--primary-2-dark);
}

.navbar-links {
  display: flex;
  list-style: none;
}

.navbar-links li {
  margin-left: var(--spacing-md);
}

.navbar-links a {
  font-weight: 600;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-2);
  transition: width var(--transition-fast);
}

.navbar-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-2-dark);
}

/* Hero section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 70px;
}

.hero-slider {
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-sm);
  color: white;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--primary-1-light);
}

.hero-desc {
  margin-bottom: var(--spacing-md);
}

/* About section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: var(--primary-3-light);
  border-radius: 50%;
  right: -150px;
  top: -150px;
  z-index: -1;
  opacity: 0.5;
}

.about-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: var(--primary-1);
  bottom: -30px;
  left: -30px;
  z-index: -1;
  border-radius: var(--radius-sm);
}

.about-content {
  flex: 1;
}

.about-title {
  font-size: 2.5rem;
}

.about-subtitle {
  color: var(--primary-2);
  margin-bottom: var(--spacing-md);
}

/* Services section */
.services-section {
  background-color: var(--primary-5-light);
  position: relative;
  overflow: hidden;
}

.services-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: var(--primary-1-light);
  border-radius: 50%;
  left: -200px;
  bottom: -200px;
  z-index: 0;
  opacity: 0.4;
}

.services-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.services-title {
  font-size: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.service-item {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-fast);
  position: relative;
  z-index: 1;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: var(--spacing-md);
}

.service-name {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.service-desc {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-4);
}

.service-features {
  list-style: none;
  margin-bottom: var(--spacing-sm);
}

.service-features li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-3-dark);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-2);
}

/* Features section */
.features-section {
  background-color: var(--primary-2-dark);
  color: white;
  position: relative;
}

.features-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.features-title, .features-subtitle {
  color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.feature-item {
  text-align: center;
  padding: var(--spacing-md);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast);
}

.feature-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-1);
}

.feature-name {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
  color: white;
}

.feature-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* Price Plan section */
.priceplan-section {
  background-color: var(--primary-5);
}

.priceplan-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.price-item {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-fast);
  position: relative;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-item.featured {
  border: 2px solid var(--primary-2);
  transform: scale(1.05);
}

.price-item.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-2);
  color: white;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.price-header {
  background-color: var(--primary-1-light);
  padding: var(--spacing-md);
  text-align: center;
}

.price-name {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.price-content {
  padding: var(--spacing-md);
}

.price-desc {
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.price-features {
  list-style: none;
  margin-bottom: var(--spacing-md);
}

.price-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-3-dark);
}

.price-amount {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-2);
  margin-bottom: var(--spacing-sm);
}

.price-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary-4);
}

.price-action {
  text-align: center;
}

/* Team section */
.team-section {
  background-color: var(--primary-5-light);
}

.team-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-md);
}

.team-member {
  text-align: center;
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-fast);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.team-member:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: var(--spacing-sm);
}

.team-name {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-4);
  font-size: 0.9rem;
}

/* Reviews section */
.reviews-section {
  background-color: var(--primary-5);
  position: relative;
  overflow: hidden;
}

.reviews-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: var(--primary-3-light);
  border-radius: 50%;
  right: -150px;
  bottom: -150px;
  z-index: 0;
  opacity: 0.5;
}

.reviews-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.reviews-slider {
  position: relative;
  z-index: 1;
  padding-bottom: var(--spacing-md);
}

.review-item {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: var(--spacing-md);
  position: relative;
  margin: 0 var(--spacing-sm);
}

.review-text {
  position: relative;
  padding: 0 var(--spacing-sm) var(--spacing-sm) var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.review-text::before {
  content: '"';
  font-size: 4rem;
  font-family: Georgia, serif;
  position: absolute;
  top: -20px;
  left: -10px;
  color: var(--primary-1-light);
  z-index: -1;
}

.review-author {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-2-dark);
  text-align: right;
}

/* Core info section */
.coreinfo-section {
  background-color: var(--primary-2);
  color: white;
}

.coreinfo-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.coreinfo-title, .coreinfo-subtitle {
  color: white;
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.coreinfo-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  transition: transform var(--transition-fast);
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.coreinfo-item-title {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-xs);
  color: var(--primary-1);
}

.coreinfo-item-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* Contact section */
.contact-section {
  background-color: var(--primary-5-light);
  position: relative;
  overflow: hidden;
}

.contact-shape {
  position: absolute;
  width: 250px;
  height: 250px;
  background-color: var(--primary-1-light);
  border-radius: var(--radius-lg);
  transform: rotate(45deg);
  top: -125px;
  right: -125px;
  z-index: 0;
  opacity: 0.5;
}

.contact-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.contact-form {
  background-color: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  padding: var(--spacing-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--primary-2);
  margin-right: var(--spacing-sm);
}

.contact-info-content {
  flex: 1;
}

.contact-info-title {
  font-weight: 600;
  margin-bottom: 5px;
}

/* Footer styles */
footer {
  background-color: var(--primary-2-dark);
  color: white;
  padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--spacing-md);
}

.footer-brand {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
}

.footer-desc {
  opacity: 0.8;
  margin-bottom: var(--spacing-md);
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-contact-item {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Animation classes */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-up {
  animation: slideUp 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Space page styles */
.space-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}



/* Page transitions */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

.page-transition.active {
  transform: translateY(0);
}

/* Additional pages styles */
.page-hero {
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.page-title {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.page-subtitle {
  font-size: 1.2rem;
} 