:root {
  --primary-1: #203354; /* Deep Navy */
  --primary-2: #9B8579; /* Taupe */
  --primary-3: #E3D3C2; /* Soft Beige */
  --primary-4: #A58D7F; /* Warm Brown */
  --primary-5: #485C77; /* Slate Blue */

  --light-1: #F5F0EB;
  --light-2: #F8F5F2;
  --dark-1: #1C2630;
  --dark-2: #2B3842;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-1);
  background-color: var(--light-2);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  padding: 0.75rem 2rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-5);
  border-color: var(--primary-5);
}

.btn-outline-primary {
  color: var(--primary-1);
  border-color: var(--primary-1);
  padding: 0.75rem 2rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  position: relative;
  margin-bottom: 60px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-2);
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Header */
.header {
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--primary-1);
}

.nav-link {
  color: var(--primary-1);
  font-weight: 500;
  margin: 0 15px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-2);
  transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background-color: var(--light-1);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 1;
  position: relative;
}

.hero-shape {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background-color: var(--primary-3);
  opacity: 0.3;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 0;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-img-wrapper {
  position: relative;
}

.about-shape {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background-color: var(--primary-2);
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
}

.about-feature {
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  background-color: var(--light-1);
  border-left: 3px solid var(--primary-2);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Services Section */
.services {
  background-color: var(--light-2);
}

.service-item {
  padding: 40px 30px;
  margin-bottom: 30px;
  background-color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary-2);
  transition: width 0.3s ease;
  z-index: -1;
}

.service-item:hover::before {
  width: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item:hover h3,
.service-item:hover p,
.service-item:hover .price {
  color: white;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-2);
}

.service-features {
  margin-top: 1.5rem;
  padding-left: 0;
  list-style: none;
}

.service-features li {
  margin-bottom: 0.5rem;
  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-2);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin-top: 1.5rem;
}

/* Features Section */
.features-item {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.features-item:hover {
  background-color: var(--light-1);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.features-icon {
  height: 70px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-icon i {
  font-size: 2.5rem;
  color: var(--primary-2);
}

/* Price Plan Section */
.priceplan {
  background-color: var(--light-1);
}

.price-item {
  padding: 50px 30px;
  background-color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.price-item:hover {
  transform: translateY(-10px);
}

.price-item.featured {
  border: 2px solid var(--primary-2);
}

.price-item h3 {
  margin-bottom: 15px;
}

.price-item .price-tag {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: 25px;
}

.price-features {
  margin-bottom: 25px;
  padding-left: 0;
  list-style: none;
}

.price-features li {
  margin-bottom: 10px;
  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-2);
}

/* Team Section */
.team-member {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  transition: all 0.5s ease;
  width: 100%;
}

.team-member:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  padding: 25px 20px;
  text-align: center;
  background-color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.team-info h4 {
  margin-bottom: 5px;
}

.team-info p {
  color: var(--primary-2);
  margin-bottom: 0;
}

/* Reviews Section */
.reviews {
  background-color: var(--light-2);
  position: relative;
  overflow: hidden;
}

.review-shape {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-3);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.review-item {
  padding: 40px;
  background-color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  margin: 15px;
  position: relative;
  z-index: 1;
}

.review-text {
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
}

.review-text::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--primary-3);
  position: absolute;
  left: 0;
  top: -10px;
}

.review-author {
  font-weight: 700;
  color: var(--primary-1);
}

/* Core Info Section */
.coreinfo {
  position: relative;
}

.coreinfo-item {
  padding: 40px 30px;
  margin-bottom: 30px;
  background-color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
}

.coreinfo-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Contact Section */
.contact {
  background-color: var(--light-1);
  position: relative;
  overflow: hidden;
}

.contact-form {
  padding: 40px;
  background-color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  height: 54px;
  padding: 0.375rem 1.2rem;
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-2);
}

textarea.form-control {
  min-height: 150px;
}

.form-check-input:checked {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.service-checkbox-label {
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.contact-info {
  padding: 40px 30px;
  background-color: var(--primary-1);
  height: 100%;
  color: white;
}

.contact-info h3 {
  color: white;
  margin-bottom: 30px;
}

.contact-info-item {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  margin-right: 15px;
  font-size: 1.2rem;
}

.contact-info-content {
  color: rgba(255, 255, 255, 0.8);
}

/* Blog Section */
.blog {
  position: relative;
}

.blog-item {
  margin-bottom: 30px;
  background-color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  transition: all 0.5s ease;
  width: 100%;
}

.blog-item:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-content h4 {
  margin-bottom: 15px;
}

.blog-content p {
  margin-bottom: 15px;
}

.blog-link {
  color: var(--primary-1);
  font-weight: 500;
  position: relative;
}

.blog-link::after {
  content: '\f054';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
  font-size: 0.8rem;
}

/* FAQ Section */
.faq {
  background-color: var(--light-2);
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 20px 25px;
  font-weight: 600;
  color: var(--primary-1);
  background-color: white;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-1);
  background-color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23203354'%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: 15px 25px 25px;
}

/* Gallery Section */
.gallery {
  overflow: hidden;
}

.gallery-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.gallery-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.gallery-img img {
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover .gallery-img img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background-color: var(--primary-1);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: white;
  margin-bottom: 25px;
  display: inline-block;
}

.footer-desc {
  margin-bottom: 30px;
}

.footer-title {
  color: white;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-2);
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-info {
  margin-bottom: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 50px;
}

.breadcrumb-section {
  background-color: var(--light-1);
  padding: 120px 0 30px;
  margin-bottom: 80px;
}

/* Additional Pages */
.add-page-sec {
  padding: 100px 0;
}

.add-page-sec:nth-child(even) {
  background-color: var(--light-1);
}

.add-page-title {
  position: relative;
  margin-bottom: 60px;
}

.add-page-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-2);
}

.text-center .add-page-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.add-page-item {
  padding: 40px 30px;
  margin-bottom: 30px;
  background-color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.add-page-item:hover {
  transform: translateY(-10px);
} 