:root {
  --primary-color-1: #d3b88c; /* Elegant gold */
  --primary-color-2: #4a4138; /* Rich brown */
  --primary-color-3: #8a795d; /* Warm taupe */
  --primary-color-4: #f5f1eb; /* Soft cream */
  --primary-color-5: #a67c52; /* Burnt sienna */
  
  --light-1: #ffffff;
  --light-2: #f8f5f0;
  --dark-1: #282624;
  --dark-2: #3c3a36;
  
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
}

/* Global Styles */
* {
  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: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-1);
  background-color: var(--light-2);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-1);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color-3);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color-5);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color-1);
  color: var(--dark-1);
  border: none;
  border-radius: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-5);
  color: var(--light-1);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 2rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color-1);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 20px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

header.scrolled {
  padding: 15px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-nav {
  flex-direction: row;
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark-1);
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-1);
  transition: var(--transition);
}

.nav-link:hover:after {
  width: 100%;
}

.mobile-nav-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--dark-1);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--light-1);
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero-subtitle {
  color: var(--light-1);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

/* About Section */
.about-feature {
  padding: 25px;
  margin-bottom: 30px;
  background-color: var(--light-1);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 1.5rem;
}

/* Services Section */
.services-item {
  padding: 40px 30px;
  margin-bottom: 30px;
  background-color: var(--light-1);
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.services-item:hover {
  border-bottom: 3px solid var(--primary-color-1);
  transform: translateY(-10px);
}

.services-item-icon {
  font-size: 3rem;
  color: var(--primary-color-1);
  margin-bottom: 1.5rem;
}

.services-item-price {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-5);
  margin: 1.5rem 0;
}

.services-item-features {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
}

.services-item-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.services-item-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
}

/* Features Section */
.features-item {
  display: flex;
  margin-bottom: 30px;
}

.features-item-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--light-1);
  margin-right: 20px;
}

.features-item-content h4 {
  margin-bottom: 0.5rem;
}

/* Price Plan Section */
.priceplan-item {
  padding: 40px 30px;
  margin-bottom: 30px;
  background-color: var(--light-1);
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.priceplan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.priceplan-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--primary-color-1);
}

.priceplan-item-price {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color-5);
  margin: 1.5rem 0;
}

.priceplan-item-features {
  list-style: none;
  margin: 1.5rem 0;
}

.priceplan-item-features li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.priceplan-item-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
}

/* Team Section */
.team-member {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.team-member-img {
  overflow: hidden;
}

.team-member-img img {
  width: 100%;
  transition: var(--transition);
}

.team-member:hover .team-member-img img {
  transform: scale(1.1);
}

.team-member-info {
  padding: 25px;
  background-color: var(--light-1);
}

.team-member-name {
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-color-3);
  font-weight: 500;
}

/* Testimonials Section */
.reviews-slider {
  padding: 30px 0;
}

.reviews-item {
  padding: 40px;
  background-color: var(--light-1);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  margin: 15px;
}

.reviews-item-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-top: 30px;
}

.reviews-item-text:before {
  content: '"';
  font-family: serif;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 3rem;
  color: var(--primary-color-1);
  line-height: 1;
}

.reviews-item-author {
  font-weight: 600;
  color: var(--primary-color-2);
}

/* Core Info Section */
.coreinfo-item {
  display: flex;
  margin-bottom: 30px;
  background-color: var(--light-1);
  padding: 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-item-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--light-1);
  margin-right: 20px;
}

.coreinfo-item-content h4 {
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-form {
  background-color: var(--light-1);
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e9e9e9;
  border-radius: 0;
  background-color: #f8f8f8;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color-1);
  box-shadow: 0 0 0 3px rgba(211, 184, 140, 0.2);
}

textarea.form-control {
  min-height: 150px;
}

.form-check {
  margin-bottom: 1.5rem;
}

/* Blog Section */
.blog-item {
  margin-bottom: 30px;
  background-color: var(--light-1);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-item-img {
  overflow: hidden;
}

.blog-item-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.1);
}

.blog-item-content {
  padding: 25px;
}

.blog-item-title {
  margin-bottom: 1rem;
}

.blog-item-excerpt {
  margin-bottom: 1.5rem;
}

.blog-item-link {
  font-weight: 600;
  color: var(--primary-color-3);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
  padding-right: 20px;
}

.blog-item-link:after {
  content: '→';
  position: absolute;
  right: 0;
  transition: var(--transition);
}

.blog-item-link:hover:after {
  right: -5px;
}

/* FAQ Section */
.faq-item {
  margin-bottom: 1rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.25rem;
  background-color: var(--light-1);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  border: none;
  width: 100%;
  text-align: left;
  outline: none;
  transition: var(--transition);
}

.faq-question:after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: var(--transition);
}

.faq-question.active:after {
  content: '-';
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background-color: var(--light-2);
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 1.25rem;
}

/* Gallery Section */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 250px;
  border-radius: 5px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--dark-1);
  color: var(--light-1);
  padding-top: 80px;
}

.footer-content {
  padding-bottom: 50px;
}

.footer-logo {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--light-1);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.footer-desc {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--light-1);
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 0.8rem;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-link a:hover {
  color: var(--primary-color-1);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  margin-right: 15px;
  color: var(--primary-color-1);
  font-size: 1.2rem;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
} 