:root {
  /* Color Palette */
  --primary-color: #bd7f55;
  --secondary-color: #4a3c31;
  --accent-color: #e4c6a6;
  --neutral-color: #f7f4f1;
  --dark-color: #2b2522;
  
  /* Light and dark shades */
  --primary-light: #d5a983;
  --primary-dark: #9b663f;
  --secondary-light: #6a584a;
  --secondary-dark: #322821;
  --accent-light: #f2e2cf;
  --accent-dark: #c7a380;
  --neutral-light: #ffffff;
  --neutral-dark: #e8e1d9;
}

/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--secondary-color);
  background-color: var(--neutral-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--secondary-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  position: relative;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-title p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* Header Styles */
header {
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
  transition: all 0.3s ease;
}

header.sticky {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--secondary-color);
}

.nav-link {
  font-weight: 500;
  padding: 10px 20px !important;
  position: relative;
  color: var(--secondary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: 5px;
  left: 20px;
  transition: all 0.3s ease;
}

.nav-link:hover::after {
  width: calc(100% - 40px);
}

/* Hero Section */
#hero {
  height: 100vh;
  background-color: var(--neutral-color);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-color: var(--accent-light);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* About Section */
#about {
  position: relative;
  overflow: hidden;
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.about-feature {
  padding: 30px;
  background-color: var(--neutral-light);
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-feature i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Services Section */
#services {
  background-color: var(--neutral-color);
  position: relative;
  overflow: hidden;
}

.service-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  background-color: var(--neutral-light);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
}

.service-price {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.service-features {
  margin-top: 20px;
  padding-left: 0;
  list-style-type: none;
}

.service-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 30px;
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--primary-color);
}

/* Features Section */
#features {
  position: relative;
}

.feature-item {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  background-color: var(--neutral-light);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.feature-icon i {
  font-size: 36px;
  color: var(--primary-color);
}

/* Price Plan Section */
#priceplan {
  background-color: var(--neutral-color);
  position: relative;
}

.price-card {
  background-color: var(--neutral-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.price-header {
  background-color: var(--accent-light);
  padding: 30px;
  text-align: center;
  color: var(--secondary-color);
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 20px 0;
}

.price-content {
  padding: 30px;
}

.price-features {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--neutral-dark);
  position: relative;
  padding-left: 30px;
}

.price-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--primary-color);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
#team {
  position: relative;
}

.team-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-content {
  padding: 30px;
  text-align: center;
  background-color: var(--neutral-light);
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 5px;
}

/* Reviews Section */
#reviews {
  background-color: var(--neutral-color);
  position: relative;
}

.reviews-slider {
  overflow: hidden;
  padding-bottom: 50px;
}

.review-card {
  background-color: var(--neutral-light);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  padding-left: 30px;
}

.review-text::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-size: 20px;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

.review-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-info h5 {
  margin-bottom: 5px;
}

.review-author-info span {
  color: var(--primary-color);
  font-weight: 500;
}

/* Core Info Section */
#coreinfo {
  position: relative;
}

.coreinfo-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.coreinfo-item:hover {
  background-color: var(--neutral-light);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transform: translateY(-10px);
}

.coreinfo-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.coreinfo-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

/* Contact Section */
#contact {
  background-color: var(--neutral-color);
  position: relative;
}

.contact-form {
  background-color: var(--neutral-light);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.form-control {
  height: 55px;
  border: 2px solid var(--neutral-dark);
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0.25rem;
}

.contact-info {
  background-color: var(--primary-color);
  color: white;
  padding: 50px;
  border-radius: 10px;
  height: 100%;
}

.contact-info h3 {
  color: white;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.contact-info-icon i {
  font-size: 20px;
  color: white;
}

.contact-info-content h5 {
  color: white;
  margin-bottom: 5px;
}

.contact-info-content p {
  margin: 0;
  opacity: 0.8;
}

/* Blog Section */
#blog {
  position: relative;
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
}

.blog-content {
  padding: 30px;
  background-color: var(--neutral-light);
}

.blog-content h4 {
  margin-bottom: 15px;
}

.blog-excerpt {
  margin-bottom: 20px;
}

/* FAQ Section */
#faq {
  background-color: var(--neutral-color);
  position: relative;
}

.accordion-item {
  margin-bottom: 20px;
  border: none;
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion-button {
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  background-color: var(--neutral-light);
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: var(--neutral-light);
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--neutral-dark);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23bd7f55'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23bd7f55'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px 30px;
  background-color: var(--neutral-light);
}

/* Gallery Section */
#gallery {
  position: relative;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(74, 60, 49, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  transform: scale(0);
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 80px 0 20px;
  position: relative;
}

footer h4 {
  color: white;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  list-style-type: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.contact-info-footer {
  margin-bottom: 20px;
  display: flex;
}

.contact-info-footer i {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-color);
}

.site-copyright {
  text-align: center;
  padding-top: 20px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
} 