:root {
  /* Color Palette - Pastel real estate theme */
  --primary-color: #a8d0db; /* Soft blue */
  --secondary-color: #f6c6a0; /* Warm peach */
  --accent-color: #b6dcb0; /* Mint green */
  --neutral-color: #e9e1d3; /* Cream */
  --dark-accent: #9a8478; /* Taupe */
  
  /* Light/Dark variations */
  --primary-light: #c4e2eb;
  --primary-dark: #86b5c2;
  --secondary-light: #fad9be;
  --secondary-dark: #e0b08a;
  --accent-light: #d1eed0;
  --accent-dark: #94c08d;
  --neutral-light: #f8f4ee;
  --neutral-dark: #d0c7b9;
  --dark-accent-light: #b5a599;
  --dark-accent-dark: #7c6a5f;
  
  /* Text colors */
  --text-dark: #2c3e50;
  --text-medium: #5d6d7e;
  --text-light: #ffffff;
}

/* Base styles */
html {
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--neutral-light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-dark);
}

.btn {
  border-radius: 0.25rem;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-light);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--text-light);
}

/* Section styles */
section {
  padding: 5rem 0;
}

section.hero {
  padding: 0;
}

/* Header styles */
header {
  background-color: var(--neutral-light);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(248, 244, 238, 0.95);
  backdrop-filter: blur(5px);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark-accent);
}

.nav-link {
  font-weight: 600;
  color: var(--text-medium);
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-dark);
}

/* Hero section */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.hero .swiper {
  height: 100%;
  width: 100%;
}

.hero .swiper-slide {
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.hero-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* About section */
.about {
  background-color: var(--neutral-light);
}

.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  padding: 2rem 0;
}

.feature-item {
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  background-color: var(--text-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Services section */
.services {
  background-color: var(--primary-light);
  position: relative;
  overflow: hidden;
}

.service-item {
  background-color: var(--text-light);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-item:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--text-dark);
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.service-features {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
}

/* Features section */
.features {
  background-color: var(--text-light);
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  background-color: var(--neutral-light);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  background-color: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

/* Pricing Plans section */
.price-plan {
  background-color: var(--neutral-light);
  position: relative;
  overflow: hidden;
}

.price-card {
  background-color: var(--text-light);
  border-radius: 0.5rem;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.price-card.featured {
  background-color: var(--primary-light);
  border-color: var(--primary-color);
}

.price-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1.5rem 0;
  color: var(--primary-dark);
}

.price-card .currency {
  font-size: 1.2rem;
  vertical-align: super;
}

.price-card ul {
  margin: 2rem 0;
  padding-left: 0;
  list-style: none;
}

.price-card li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.price-card li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  color: var(--accent-dark);
}

/* Team section */
.team {
  background-color: var(--text-light);
}

.team-member {
  background-color: var(--neutral-light);
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h4 {
  margin-bottom: 0.5rem;
}

.team-info p {
  color: var(--primary-dark);
  font-weight: 600;
}

/* Reviews section */
.reviews {
  background-color: var(--primary-light);
  position: relative;
  overflow: hidden;
}

.reviews .swiper {
  padding-bottom: 3rem;
}

.review-item {
  background-color: var(--text-light);
  border-radius: 0.5rem;
  padding: 2rem;
  margin: 1rem 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-text:before {
  content: "\201C";
  font-size: 3rem;
  position: absolute;
  left: -1rem;
  top: -1rem;
  color: var(--neutral-dark);
  opacity: 0.3;
}

.review-author {
  font-weight: 700;
  color: var(--dark-accent);
}

/* Core info section */
.core-info {
  background-color: var(--neutral-light);
}

.info-item {
  background-color: var(--text-light);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-color);
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-item:nth-child(2n) {
  border-left-color: var(--secondary-color);
}

.info-item:nth-child(3n) {
  border-left-color: var(--accent-color);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

/* Contact section */
.contact {
  background-color: var(--text-light);
}

.contact-form {
  background-color: var(--neutral-light);
  padding: 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid var(--neutral-dark);
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 0.25rem;
}

.contact-info {
  background-color: var(--primary-light);
  padding: 2.5rem;
  border-radius: 0.5rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--primary-dark);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--text-light);
  border-radius: 50%;
}

/* Blog section */
.blog {
  background-color: var(--neutral-light);
}

.blog-item {
  background-color: var(--text-light);
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

/* Additional pages */
.page-header {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.page-header-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  text-align: center;
}

.page-section {
  padding: 5rem 0;
}

.page-section:nth-child(even) {
  background-color: var(--neutral-light);
}

.page-section:nth-child(odd) {
  background-color: var(--text-light);
}

/* Footer */
footer {
  background-color: var(--dark-accent-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-desc {
  margin-bottom: 2rem;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-light);
}

.footer-contact-item {
  display: flex;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  margin-right: 1rem;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
}

/* Shape decorations */
.shape-decorator {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background-color: var(--primary-light);
  opacity: 0.5;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphing 15s ease-in-out infinite;
}

.shape-2 {
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background-color: var(--secondary-light);
  opacity: 0.5;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morphing 20s ease-in-out infinite alternate;
}

@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* Animations on scroll */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Space page */
#space {
  min-height: calc(100vh - 300px);
} 