:root {
  --color-primary: #2C3E50;
  --color-secondary: #E5D0C5;
  --color-accent: #D4AF37;
  --color-light: #F5F5F5;
  --color-dark: #121212;
  
  --color-primary-light: #3E5871;
  --color-primary-dark: #1A2530;
  --color-secondary-light: #F2E5DE;
  --color-secondary-dark: #C4B0A5;
  --color-accent-light: #F7E394;
  --color-accent-dark: #AA8C2C;
}

/* Base Styles */
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--color-dark);
  background-color: var(--color-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  bottom: -10px;
  left: 0;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--color-primary);
}

/* Header */
header {
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

header.sticky {
  background-color: rgba(44, 62, 80, 0.9);
  position: fixed;
  top: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-light);
}

.navbar-nav .nav-link {
  color: var(--color-light);
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-accent);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4.5rem;
  color: var(--color-light);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-secondary);
  margin-bottom: 30px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--color-light);
  margin-bottom: 40px;
  max-width: 600px;
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-content {
  padding: 30px 0;
}

.about-feature {
  margin: 30px 0;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: var(--color-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background: var(--color-secondary-light);
}

.about-feature i {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.about-feature h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.about-feature p {
  color: var(--color-primary);
}

/* Services Section */
.services-section {
  background-color: var(--color-light);
  position: relative;
}

.service-item {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--color-accent);
}

.service-img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-img img {
  transition: transform 0.5s ease;
}

.service-item:hover .service-img img {
  transform: scale(1.05);
}

.service-name {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.service-desc {
  margin-bottom: 15px;
  color: var(--color-primary);
}

.service-features {
  margin-bottom: 20px;
}

.service-features ul {
  list-style: none;
  padding-left: 0;
}

.service-features ul li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.service-features ul li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-top: 20px;
}

/* Features Section */
.features-section {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.features-section .section-title h2:after {
  background: var(--color-accent);
}

.features-section .section-title p {
  color: var(--color-secondary);
}

.feature-item {
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
  height: 100%;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}

.feature-item i {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.feature-item h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--color-light);
}

.feature-item p {
  color: var(--color-secondary-light);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.price-item {
  background: #fff;
  border-radius: 10px;
  padding: 50px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  margin-bottom: 30px;
  text-align: center;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--color-accent);
}

.price-name {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.price-desc {
  margin-bottom: 25px;
  color: var(--color-primary);
  min-height: 50px;
}

.price-features {
  margin-bottom: 30px;
  text-align: left;
}

.price-features ul {
  list-style: none;
  padding-left: 0;
}

.price-features ul li {
  padding: 8px 0;
  position: relative;
  padding-left: 30px;
}

.price-features ul li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 20px;
}

.price-tag span {
  font-size: 1rem;
  color: var(--color-primary-light);
  font-weight: 400;
}

/* Team Section */
.team-section {
  background-color: var(--color-secondary-light);
  position: relative;
}

.team-member {
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  transition: all 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  background: #fff;
  padding: 25px;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--color-primary);
}

.team-role {
  color: var(--color-accent);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  position: relative;
  overflow: hidden;
}

.review-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 20px 10px;
  position: relative;
}

.review-item:after {
  content: '\f10e';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2rem;
  opacity: 0.1;
  color: var(--color-primary);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-name {
  font-weight: 700;
  color: var(--color-primary);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--color-primary);
  color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.coreinfo-section .section-title h2:after {
  background: var(--color-accent);
}

.coreinfo-section .section-title p {
  color: var(--color-secondary);
}

.coreinfo-item {
  padding: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.coreinfo-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.coreinfo-item h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--color-light);
}

.coreinfo-item p {
  color: var(--color-secondary-light);
}

/* Contact Section */
.contact-section {
  position: relative;
  background-color: var(--color-light);
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  height: 52px;
  background: var(--color-light);
  border: none;
  border-radius: 5px;
  padding: 0 20px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-accent);
}

textarea.form-control {
  height: 140px;
  padding: 20px;
}

.contact-info {
  padding: 40px;
  background: var(--color-primary);
  color: var(--color-light);
  border-radius: 10px;
  height: 100%;
}

.contact-info h3 {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.contact-info h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-accent);
}

.contact-info p {
  margin-bottom: 30px;
}

.contact-info p i {
  margin-right: 15px;
  color: var(--color-accent);
}

.submit-btn {
  background: var(--color-accent);
  color: var(--color-dark);
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

.services-checkbox {
  margin-right: 10px;
}

/* Blog Section */
.blog-section {
  background-color: var(--color-light);
  position: relative;
}

.blog-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.05);
}

.blog-info {
  padding: 25px;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.blog-excerpt {
  margin-bottom: 20px;
  color: var(--color-primary);
}

.blog-link {
  color: var(--color-accent);
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding-right: 20px;
  transition: all 0.3s ease;
}

.blog-link:after {
  content: '\f061';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--color-accent-dark);
  padding-right: 25px;
}

/* FAQ Section */
.faq-section {
  position: relative;
  overflow: hidden;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background: #fff;
  padding: 20px;
  font-weight: 600;
  color: var(--color-primary);
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: var(--color-primary);
  color: var(--color-light);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--color-accent);
}

.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='%23fff'%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;
  background: #fff;
}

/* Gallery Section */
.gallery-section {
  position: relative;
  overflow: hidden;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery-img img {
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-img img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--color-primary-dark);
  color: var(--color-light);
  padding: 80px 0 30px;
  position: relative;
}

footer h4 {
  color: var(--color-light);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

footer h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-accent);
}

footer p {
  margin-bottom: 15px;
}

footer a {
  color: var(--color-light);
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  position: relative;
  padding-left: 15px;
}

.footer-links ul li a:before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--color-accent);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#site-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Shapes */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--color-accent);
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 8s ease-in-out infinite;
}

.shape-2 {
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: var(--color-primary);
  opacity: 0.1;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 8s ease-in-out infinite alternate;
}

@keyframes morph {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  100% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

/* Add some space styling */
#space {
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: linear-gradient(45deg, var(--color-primary), var(--color-primary-dark));
} 