:root {
  /* Color Palette */
  --primary-color-1: #b78e41; /* Gold */
  --primary-color-2: #222831; /* Dark Navy */
  --primary-color-3: #f0f0f0; /* Light Gray */
  --primary-color-4: #d63447; /* Red Accent */
  --primary-color-5: #394867; /* Slate Blue */
  
  --primary-color-1-light: #d7b06f;
  --primary-color-1-dark: #8e6c28;
  --primary-color-2-light: #454c59;
  --primary-color-2-dark: #151a20;
  --primary-color-3-light: #ffffff;
  --primary-color-3-dark: #dedede;
  --primary-color-4-light: #e65d6e;
  --primary-color-4-dark: #ab2434;
  --primary-color-5-light: #566585;
  --primary-color-5-dark: #27324a;

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

/* General Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--primary-color-2);
  background-color: var(--primary-color-3);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color-2);
}

p {
  margin-bottom: 1rem;
}

.btn-custom {
  background-color: var(--primary-color-1);
  border: none;
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: var(--primary-color-1-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: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60%;
  height: 3px;
  background-color: var(--primary-color-1);
}

.card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Header Styles */
header {
  background-color: var(--primary-color-2);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(34, 40, 49, 0.95);
  padding: 15px 0;
}

.navbar-brand {
  color: var(--primary-color-1);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.8rem;
}

.navbar-nav .nav-link {
  color: white;
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color-1);
}

/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-2);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  color: white;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary-color-1);
  margin-bottom: 2rem;
}

/* About Section */
.about-feature {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

/* Services Section */
.services {
  background-color: var(--primary-color-3-light);
}

.service-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-item:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-price {
  font-size: 1.8rem;
  color: var(--primary-color-1);
  font-weight: 700;
  margin-bottom: 15px;
}

.service-features {
  margin-top: 15px;
}

.service-features ul {
  list-style: none;
  padding-left: 0;
}

.service-features li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.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 {
  background-color: var(--primary-color-2);
  color: white;
}

.features .section-title h2 {
  color: white;
}

.feature-item {
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  background-color: var(--primary-color-2-light);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  background-color: var(--primary-color-1);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

.feature-item:hover i {
  color: white;
}

.feature-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Price Plan Section */
.price-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 30px;
  height: 100%;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.price-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.price-value {
  font-size: 3rem;
  color: var(--primary-color-1);
  font-weight: 700;
  margin-bottom: 30px;
}

.price-features {
  margin-bottom: 30px;
}

.price-features ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 25px;
}

.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-member {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-img {
  height: 300px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-color-1);
  font-weight: 600;
}

/* Reviews Section */
.reviews {
  background-color: var(--primary-color-3-light);
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 40px 20px 20px;
}

.review-text {
  margin-bottom: 30px;
  font-style: italic;
  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-1);
  font-size: 1.2rem;
}

.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-info h5 {
  margin-bottom: 5px;
}

.review-author-info span {
  color: var(--primary-color-1);
  font-size: 0.9rem;
}

/* Core Info Section */
.core-info {
  background-color: var(--primary-color-2);
  color: white;
}

.core-info .section-title h2 {
  color: white;
}

.core-info-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--primary-color-2-light);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.core-info-item:hover {
  transform: translateY(-10px);
}

.core-info-item i {
  font-size: 3rem;
  color: var(--primary-color-1);
  margin-bottom: 20px;
}

.core-info-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Blog Section */
.blog-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.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-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.blog-excerpt {
  margin-bottom: 20px;
}

.blog-date {
  color: var(--primary-color-1);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

/* Contact Section */
.contact {
  position: relative;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  border-radius: 30px;
  padding: 12px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

.custom-checkbox .custom-control-label::before {
  border-radius: 2px;
  border: 2px solid var(--primary-color-1);
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

.contact-info {
  margin-top: 30px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 20px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color-1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
}

.contact-info-content h5 {
  margin-bottom: 5px;
}

/* FAQ Section */
.faq {
  background-color: var(--primary-color-3-light);
}

.accordion {
  border-radius: 10px;
  overflow: hidden;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 20px;
  font-weight: 600;
  background-color: white;
  color: var(--primary-color-2);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  padding: 20px;
}

/* Gallery Section */
.gallery {
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  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(183, 142, 65, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  width: 50px;
  height: 50px;
  background-color: white;
  color: var(--primary-color-1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

/* Footer Styles */
footer {
  background-color: var(--primary-color-2-dark);
  color: white;
  padding: 80px 0 20px;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget h4 {
  color: white;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
}

.footer-widget h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color-1);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links li a:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
}

.footer-links li a:hover {
  color: var(--primary-color-1);
  padding-left: 20px;
}

.footer-contact li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-color-1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}

#site-copyright {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  display: block;
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 150px 0 100px;
  background-color: var(--primary-color-2);
  position: relative;
}

.breadcrumb-container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
  color: white;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--primary-color-1);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
} 