:root {
  --primary-color-1: #E6A36D; /* Warm coral */
  --primary-color-2: #5D8C9F; /* Soft teal */
  --primary-color-3: #F3D9C2; /* Soft beige */
  --primary-color-4: #7A6563; /* Warm brown */
  --primary-color-5: #D3B88C; /* Muted gold */
  
  --light-1: #F9F6F2;
  --light-2: #F0EBE5;
  --dark-1: #2E2B29;
  --dark-2: #4A4544;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-1);
  background-color: var(--light-1);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color-2);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-1);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color-1);
  color: var(--light-1);
  border: 2px solid var(--primary-color-1);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color-1);
}

.btn-secondary {
  background-color: var(--primary-color-2);
  color: var(--light-1);
  border: 2px solid var(--primary-color-2);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--primary-color-2);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color-1);
  border: 2px solid var(--primary-color-1);
}

.btn-outline:hover {
  background-color: var(--primary-color-1);
  color: var(--light-1);
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--primary-color-1);
  margin-bottom: 15px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
}

/* Header */
.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;
  height: 80px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-1);
}

.logo span {
  color: var(--primary-color-1);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  font-weight: 600;
  color: var(--dark-1);
}

.nav-menu a:hover {
  color: var(--primary-color-1);
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--light-2);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--primary-color-1);
}

.hero-desc {
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-shape {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background-color: rgba(93, 140, 159, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.hero-shape-2 {
  position: absolute;
  top: -100px;
  right: 20%;
  width: 200px;
  height: 200px;
  background-color: rgba(230, 163, 109, 0.1);
  border-radius: 50%;
  z-index: 1;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-img {
  flex: 1;
  position: relative;
}

.about-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.about-feature {
  padding: 20px;
  background-color: var(--light-2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.about-feature-icon {
  font-size: 2rem;
  color: var(--primary-color-1);
  margin-bottom: 15px;
}

.about-feature-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-feature-desc {
  font-size: 0.9rem;
}

/* Services Section */
.services {
  background-color: var(--light-2);
  position: relative;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--light-1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px 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-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-name {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.service-desc {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.service-features {
  margin-bottom: 20px;
}

.service-features ul {
  list-style: none;
}

.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-2);
  margin-bottom: 20px;
}

.service-price span {
  font-size: 1rem;
  color: var(--dark-2);
  font-weight: 400;
}

/* Features Section */
.features {
  position: relative;
}

.features-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.features-content {
  flex: 1;
}

.features-img {
  flex: 1;
}

.features-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  padding: 20px;
  background-color: var(--light-2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-color-2);
  margin-bottom: 15px;
}

.feature-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9rem;
}

/* Price Plan Section */
.priceplan {
  background-color: var(--light-2);
  position: relative;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.price-card {
  background-color: var(--light-1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-name {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-2);
  margin-bottom: 30px;
}

.price-value span {
  font-size: 1rem;
  color: var(--dark-2);
  font-weight: 400;
}

.price-desc {
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.price-features {
  text-align: left;
  margin-bottom: 30px;
}

.price-features ul {
  list-style: none;
}

.price-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.price-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
}

/* Team Section */
.team {
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: var(--light-1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  transition: all 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.1);
}

.team-content {
  padding: 20px;
  text-align: center;
}

.team-name {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team-role {
  font-size: 0.9rem;
  color: var(--primary-color-1);
  margin-bottom: 15px;
}

/* Reviews Section */
.reviews {
  background-color: var(--light-2);
  position: relative;
}

.reviews-slider {
  overflow: hidden;
  padding-bottom: 50px;
}

.review-item {
  background-color: var(--light-1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.review-text {
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  padding: 0 20px;
}

.review-text:before, .review-text:after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color-3);
  position: absolute;
  opacity: 0.3;
}

.review-text:before {
  top: -20px;
  left: -10px;
}

.review-text:after {
  bottom: -40px;
  right: -10px;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-name {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Core Info Section */
.coreinfo {
  position: relative;
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.coreinfo-item {
  padding: 30px;
  background-color: var(--light-2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

.coreinfo-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.coreinfo-desc {
  font-size: 0.9rem;
}

/* Contact Form Section */
.contact {
  background-color: var(--light-2);
  position: relative;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  padding: 30px;
  background-color: var(--light-1);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color-3);
  color: var(--primary-color-1);
  border-radius: 50%;
  margin-right: 15px;
  font-size: 1.2rem;
}

.contact-form {
  padding: 30px;
  background-color: var(--light-1);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-2);
  outline: none;
  box-shadow: 0 0 0 3px rgba(93, 140, 159, 0.2);
}

.form-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  font-size: 1rem;
  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='%23464646' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 15px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.form-checkbox input {
  margin-top: 5px;
  margin-right: 10px;
}

.form-checkbox label {
  font-size: 0.9rem;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  background-color: var(--primary-color-1);
  color: var(--light-1);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--primary-color-2);
}

/* Blog Section */
.blog {
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-item {
  background-color: var(--light-1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.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: 25px;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--primary-color-1);
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.blog-excerpt {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-color-2);
}

.blog-link:hover {
  color: var(--primary-color-1);
}

/* FAQ Section */
.faq {
  background-color: var(--light-2);
  position: relative;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  background-color: var(--light-1);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--primary-color-3);
}

.accordion-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.accordion-icon {
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background-color: var(--light-1);
  transition: all 0.3s ease;
}

.accordion-body {
overflow-x: hidden;
  padding: 20px;
}

.accordion-item.active .accordion-header {
  background-color: var(--primary-color-3);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

/* Gallery Section */
.gallery {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  color: var(--light-1);
  font-size: 2rem;
}

/* Footer */
.footer {
  background-color: var(--dark-1);
  color: var(--light-1);
  padding: 80px 0 30px;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col {
  position: relative;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.footer-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color-1);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--light-2);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a:before {
  content: "›";
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color-1);
  padding-left: 20px;
}

.footer-links a:hover:before {
  left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  padding: 15px 0;
  margin-top: 80px;
}

.breadcrumb img {
  height: 20px;
  margin: 0 10px;
}

/* Space Page */
#space {
  height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Additional Pages */
.add-page-section {
  padding: 80px 0;
}

.add-page-section:nth-child(even) {
  background-color: var(--light-2);
}

.add-page-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.add-page-content {
  flex: 1;
}

.add-page-img {
  flex: 1;
}

.add-page-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.add-page-elements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.add-page-element {
  padding: 20px;
  background-color: var(--light-1);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.add-page-element:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.add-page-element-icon {
  font-size: 2rem;
  color: var(--primary-color-1);
  margin-bottom: 15px;
}

.add-page-element-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.add-page-element-desc {
  font-size: 0.9rem;
} 