:root {
  /* Color Variables */
  --primary-1: #E6C4A0; /* Soft Sand */
  --primary-2: #D5A68C; /* Dusty Rose */
  --primary-3: #B0D4B8; /* Sage Green */
  --primary-4: #A1BACF; /* Powder Blue */
  --primary-5: #F2D5CC; /* Blush Pink */
  
  --dark-1: #2C3333;
  --dark-2: #3F4E4F;
  --light-1: #F9F9F9;
  --light-2: #E8E8E8;
  
  --font-main: 'Montserrat', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
overflow-x: hidden;
  font-family: var(--font-main);
  color: var(--dark-1);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-1);
}

.section-title p {
  font-size: 18px;
  color: var(--dark-2);
  max-width: 700px;
  margin: 0 auto;
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.site-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-3);
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-3);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark-1);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background-color: var(--light-1);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.shape-element {
  position: absolute;
  z-index: 1;
}

.shape-1 {
  top: 20%;
  right: 5%;
  width: 150px;
  height: 150px;
  background-color: var(--primary-5);
  opacity: 0.6;
  border-radius: 50%;
}

.shape-2 {
  bottom: 15%;
  left: 10%;
  width: 100px;
  height: 100px;
  background-color: var(--primary-3);
  opacity: 0.5;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* About Section */
.about-section {
  background-color: var(--light-1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 30px;
}

.feature-card {
  padding: 20px;
  background-color: var(--light-1);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  margin-bottom: 15px;
  color: var(--primary-3);
  font-size: 24px;
}

/* Services Section */
.services-section {
  background-color: var(--light-2);
}

.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 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.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-content {
  padding: 25px;
}

.service-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark-1);
  font-weight: 600;
}

.service-desc {
  margin-bottom: 15px;
  color: var(--dark-2);
}

.service-features {
  margin-bottom: 15px;
}

.service-features li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--primary-3);
  margin-right: 10px;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-2);
}

/* Team Section */
.team-section {
  background-color: var(--light-1);
}

.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 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  height: 300px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-2);
  font-size: 16px;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-2);
}

.reviews-slider {
  padding: 30px 0;
}

.review-card {
  background-color: var(--light-1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 20px;
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-2);
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  color: var(--dark-1);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--light-1);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.coreinfo-item {
  padding: 25px;
  background-color: var(--light-1);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-icon {
  font-size: 36px;
  color: var(--primary-3);
  margin-bottom: 15px;
}

.coreinfo-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background-color: var(--light-1);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  font-family: var(--font-main);
  font-size: 16px;
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-group input {
  margin-right: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-3);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--primary-2);
  transform: translateY(-3px);
}

.service-selection {
  margin-bottom: 20px;
}

.service-selection h4 {
  margin-bottom: 10px;
}

.service-option {
  margin-bottom: 10px;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-1);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background-color: var(--light-1);
  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: 25px;
}

.blog-title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-excerpt {
  color: var(--dark-2);
  margin-bottom: 15px;
}

.blog-link {
  color: var(--primary-3);
  font-weight: 500;
  display: inline-block;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-2);
}

.accordion {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--light-1);
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-header {
  padding: 15px 20px;
  background-color: var(--light-1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: rgba(176, 212, 184, 0.1);
}

.accordion-header h3 {
  font-size: 18px;
  font-weight: 500;
}

.accordion-header i {
  transition: transform 0.3s ease;
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
  padding: 20px;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding: 0 0 20px 0;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--light-1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer Styles */
footer {
  background-color: var(--dark-1);
  color: var(--light-1);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--light-1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--light-2);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-3);
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-3);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 14px;
  color: var(--light-2);
} 