:root {
  /* Color Palette */
  --primary-color: #e6c4a3; /* Warm Sand */
  --secondary-color: #bde0fe; /* Soft Blue */
  --accent-color: #a3b18a; /* Sage Green */
  --neutral-color: #e5e5e5; /* Light Gray */
  --dark-color: #3d405b; /* Dark Slate */
  
  /* Shades */
  --primary-light: #f2e2d2;
  --primary-dark: #c4a280;
  --secondary-light: #d8eefe;
  --secondary-dark: #9bbdd4;
  --accent-light: #c4d6b0;
  --accent-dark: #818d6f;
  --neutral-light: #f8f8f8;
  --neutral-dark: #bebebe;
  --dark-light: #565873;
  --dark-darker: #2a2c3f;

  /* Font sizes */
  --fs-xxl: 3.5rem;
  --fs-xl: 2.5rem;
  --fs-lg: 1.75rem;
  --fs-md: 1.25rem;
  --fs-sm: 1rem;
  --fs-xs: 0.875rem;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--neutral-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dark-color);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 5rem 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-weight: 500;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--dark-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: white;
}

.btn-accent {
  background-color: var(--accent-color);
  color: white;
}

.btn-accent:hover {
  background-color: var(--accent-dark);
}

/* Section titles */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: var(--fs-xl);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title h3 {
  font-size: var(--fs-md);
  font-weight: 400;
  color: var(--dark-light);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo a {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--dark-color);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 1rem;
}

.nav-menu a {
  font-weight: 500;
  color: var(--dark-color);
  position: relative;
  font-size: 10px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background-color: var(--neutral-light);
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  position: relative;
  max-width: 600px;
}

.hero-content h1 {
  font-size: var(--fs-xxl);
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.hero-content p {
  font-size: var(--fs-md);
  margin-bottom: 2rem;
  color: var(--dark-light);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 90%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Section */
.about-section {
  position: relative;
  background-color: var(--neutral-light);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  padding: 1.5rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.feature-title {
  font-size: var(--fs-md);
  margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
  background-color: white;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(189, 224, 254, 0.1) 0%, rgba(163, 177, 138, 0.1) 100%);
  z-index: 1;
}

.services-content {
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  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 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-details {
  padding: 1.5rem;
}

.service-title {
  font-size: var(--fs-md);
  margin-bottom: 0.5rem;
}

.service-description {
  color: var(--dark-light);
  margin-bottom: 1rem;
}

.service-price {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Features Section */
.features-section {
  background-color: var(--primary-light);
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.feature-block {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-block:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--dark-color);
}

.feature-title {
  margin-bottom: 1rem;
}

/* Price Plan Section */
.price-plan-section {
  background-color: white;
}

.price-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.price-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--neutral-color);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
  padding: 2rem;
  background-color: var(--primary-light);
  text-align: center;
}

.price-title {
  font-size: var(--fs-lg);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.price-amount span {
  font-size: var(--fs-sm);
  font-weight: 400;
}

.price-body {
  padding: 2rem;
}

.price-description {
  margin-bottom: 1.5rem;
  text-align: center;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-features li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.price-action {
  text-align: center;
}

/* Team Section */
.team-section {
  background-color: var(--neutral-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-image {
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: var(--fs-md);
  margin-bottom: 0.3rem;
}

.team-role {
  color: var(--accent-dark);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background-color: white;
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 196, 163, 0.1) 0%, rgba(189, 224, 254, 0.1) 100%);
  z-index: 1;
}

.reviews-content {
  position: relative;
  z-index: 2;
}

.swiper-reviews {
  padding-bottom: 3rem;
}

.review-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.review-text {
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

.review-text::before, .review-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--accent-light);
  position: absolute;
}

.review-text::before {
  top: -10px;
  left: -10px;
}

.review-text::after {
  bottom: -30px;
  right: -10px;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.review-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-name {
  font-weight: 600;
}

.review-author-title {
  font-size: var(--fs-xs);
  color: var(--dark-light);
}

/* Core Info Section */
.core-info-section {
  background-color: var(--secondary-light);
  position: relative;
  overflow: hidden;
}

.core-info-section::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.core-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.core-info-item {
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-5px);
}

.core-info-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.core-info-title {
  font-size: var(--fs-md);
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
  background-color: white;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.contact-info {
  padding: 2rem;
  background-color: var(--primary-light);
  border-radius: 10px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.contact-info-content h4 {
  margin-bottom: 0.3rem;
}

.contact-form {
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--neutral-color);
  border-radius: 5px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--neutral-color);
  border-radius: 5px;
  font-family: inherit;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233d405b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1em;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Blog Section */
.blog-section {
  background-color: var(--neutral-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  display: inline-block;
  font-size: var(--fs-xs);
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: var(--fs-md);
  margin-bottom: 0.8rem;
}

.blog-excerpt {
  color: var(--dark-light);
  margin-bottom: 1rem;
}

.blog-link {
  font-weight: 500;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
}

.blog-link i {
  margin-left: 0.3rem;
  transition: transform 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(3px);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-logo {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.footer-desc {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  font-size: var(--fs-md);
  margin-bottom: 1.5rem;
  position: relative;
  color: white;
}

.footer-title::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
  bottom: -5px;
  left: 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  margin-right: 1rem;
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-xs);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Shape decorations */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  background-color: rgba(189, 224, 254, 0.3);
  border-radius: 50%;
}

.shape-2 {
  bottom: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  background-color: rgba(230, 196, 163, 0.2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-3 {
  top: 30%;
  right: 20%;
  width: 100px;
  height: 100px;
  background-color: rgba(163, 177, 138, 0.2);
  border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;
}

/* Extra decorations */
.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Space page styles */
.space-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
}

/* Additional page styles */
.additional-section {
  padding: 5rem 0;
}

.additional-section:nth-child(odd) {
  background-color: white;
}

.additional-section:nth-child(even) {
  background-color: var(--neutral-light);
}

/* Swiper overrides */
.swiper-pagination-bullet {
  background-color: var(--accent-color);
}

.swiper-button-next, .swiper-button-prev {
  color: var(--accent-color);
} 