:root {
  --primary-color-1: #8A5A44; /* Rich terracotta - main brand color */
  --primary-color-2: #D6A692; /* Soft clay pink - secondary color */
  --primary-color-3: #F2E8DC; /* Cream/ivory - background color */
  --primary-color-4: #2D4356; /* Deep slate - accent color */
  --primary-color-5: #A67F5D; /* Warm taupe - complementary color */
  
  --light-1: #F8F5F1;
  --light-2: #FFFFFF;
  --dark-1: #333333;
  --dark-2: #555555;
}

* {
  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: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-1);
  background-color: var(--light-1);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
header {
  background-color: var(--light-2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-color-1);
  font-size: 1.8rem;
}

.navbar-nav .nav-link {
  color: var(--dark-1);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color-1);
}

/* Hero Section */
.hero-section {
  background-color: var(--primary-color-3);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title-1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color-1);
}

.hero-subtitle-1 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-1);
}

.hero-desc-1 {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--dark-2);
}

.hero-image {
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: var(--light-2);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color-4);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color-5);
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 8px;
  background-color: var(--light-1);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color-4);
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: var(--primary-color-3);
}

.service-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--light-2);
  height: 100%;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color-1);
}

.service-price {
  font-weight: 700;
  color: var(--primary-color-5);
  margin-bottom: 1rem;
}

.service-desc {
  margin-bottom: 1rem;
  color: var(--dark-2);
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: var(--light-2);
}

.features-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.features-icon {
  font-size: 3rem;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  padding: 5rem 0;
  background-color: var(--primary-color-3);
}

.price-card {
  background-color: var(--light-2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
  transition: transform 0.3s;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-header {
  background-color: var(--primary-color-1);
  color: var(--light-2);
  padding: 2rem;
  text-align: center;
}

.price-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

.price-content {
  padding: 2rem;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
  padding-left: 1.5rem;
}

.price-features li:before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background-color: var(--light-2);
}

.team-card {
  background-color: var(--light-1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-weight: 600;
  color: var(--primary-color-4);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color-5);
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background-color: var(--primary-color-3);
}

.review-slider {
  margin-top: 3rem;
}

.review-card {
  background-color: var(--light-2);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.review-card:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2rem;
  color: rgba(138, 90, 68, 0.1);
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.review-text {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color-1);
}

/* Core Info Section */
.coreinfo-section {
  padding: 5rem 0;
  background-color: var(--light-2);
}

.coreinfo-card {
  padding: 2rem;
  border-radius: 8px;
  background-color: var(--light-1);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.coreinfo-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color-4);
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: var(--primary-color-3);
}

.contact-form {
  background-color: var(--light-2);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.8rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--primary-color-4);
  border-color: var(--primary-color-4);
}

/* Blog Section */
.blog-section {
  padding: 5rem 0;
  background-color: var(--light-2);
}

.blog-card {
  background-color: var(--light-1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color-4);
}

.blog-excerpt {
  margin-bottom: 1.5rem;
  color: var(--dark-2);
}

.blog-link {
  color: var(--primary-color-1);
  font-weight: 500;
  transition: color 0.3s;
}

.blog-link:hover {
  color: var(--primary-color-4);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: var(--primary-color-3);
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--light-2);
  color: var(--primary-color-4);
  font-weight: 600;
  padding: 1.2rem;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: var(--light-2);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0,0,0,0.1);
}

.accordion-button::after {
  background-size: 1.2rem;
  transition: all 0.3s;
}

.accordion-body {
overflow-x: hidden;
  background-color: var(--light-2);
  padding: 1.5rem;
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background-color: var(--light-2);
}

.gallery-item {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--primary-color-4);
  color: var(--light-1);
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-desc {
  margin-bottom: 2rem;
  opacity: 0.8;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.contact-info {
  margin-bottom: 0.8rem;
}

.contact-info i {
  margin-right: 0.5rem;
  width: 20px;
}

.copyright-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

.copyright-text {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb-item {
  background: transparent;
}

/* Special page styles */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
} 