:root {
  /* Main color palette */
  --primary-color-1: #FF7A48; /* Warm Orange */
  --primary-color-2: #4E937A; /* Teal Green */
  --primary-color-3: #FFCC80; /* Light Apricot */
  --primary-color-4: #645CAA; /* Soft Purple */
  --primary-color-5: #F9F3E5; /* Cream */
  
  /* Shades and tints */
  --primary-color-1-light: #FFA57E;
  --primary-color-1-dark: #D65A28;
  --primary-color-2-light: #6EADA0;
  --primary-color-2-dark: #3E735A;
  --primary-color-3-light: #FFDDA0;
  --primary-color-3-dark: #D9AC60;
  --primary-color-4-light: #847CBF;
  --primary-color-4-dark: #4E4A8A;
  --primary-color-5-light: #FFFFFF;
  --primary-color-5-dark: #E9E3D5;
  
  /* Text colors */
  --text-dark: #333333;
  --text-light: #FFFFFF;
  --text-muted: #777777;
  
  /* Additional colors */
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
}

/* General styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--primary-color-5-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-1-dark);
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  border-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: 50px;
  height: 3px;
  background-color: var(--primary-color-1);
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
}

/* Header */
header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color-1);
}

.navbar-nav .nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  margin: 0 0.2rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color-1);
}

.navbar-nav .nav-link.active {
  color: var(--primary-color-1);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-color-2);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--text-light);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease;
}

/* About Section */
.about-section {
  position: relative;
}

.about-img {
  position: relative;
  height: 100%;
}

.about-img img {
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  padding: 30px 0;
}

.about-feature {
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  background-color: #fff;
  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);
}

.about-feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color-1-light);
  color: var(--primary-color-1);
  border-radius: 50%;
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  background-color: var(--primary-color-5);
}

.service-item {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color-3-light);
  color: var(--primary-color-1);
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-price {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary-color-1);
  margin-bottom: 15px;
}

.service-features {
  list-style: none;
  padding-left: 0;
}

.service-features li {
  margin-bottom: 10px;
  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-2);
}

/* Features Section */
.features-section {
  position: relative;
  overflow: hidden;
}

.features-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.feature-item {
  margin-bottom: 30px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color-2-light);
  color: var(--text-light);
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-color-5);
}

.price-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-header {
  padding: 30px 20px;
  background-color: var(--primary-color-4);
  color: var(--text-light);
  text-align: center;
}

.price-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-content {
  padding: 30px;
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.price-features li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.price-features li:before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-2);
}

/* Team Section */
.team-section {
  position: relative;
}

.team-member {
  position: relative;
  margin-bottom: 30px;
}

.team-img {
  border-radius: 10px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  transition: all 0.3s ease;
}

.team-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  color: var(--text-light);
  border-radius: 0 0 10px 10px;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-role {
  font-style: italic;
  opacity: 0.8;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-color-5);
}

.review-item {
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.review-text {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}

.review-text:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color-3);
  font-size: 1.2rem;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-author-name {
  font-weight: 600;
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
}

.coreinfo-item {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color-4-light);
  color: var(--text-light);
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

/* Contact Section */
.contact-section {
  position: relative;
}

.contact-form {
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0 15px;
}

textarea.form-control {
  height: 150px;
  padding: 15px;
}

.form-check-label {
  font-size: 0.9rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--primary-color-5);
}

.blog-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 30px;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.blog-excerpt {
  margin-bottom: 20px;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-color-1);
}

/* FAQ Section */
.faq-section {
  position: relative;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  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: #fff;
  color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: var(--text-light);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 20px;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--primary-color-5);
}

.gallery-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-color-4-dark);
  color: var(--text-light);
  padding: 80px 0 30px;
  position: relative;
}

.footer-content {
  margin-bottom: 50px;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.footer-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color-1);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: var(--text-light);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  opacity: 1;
  color: var(--primary-color-1);
  padding-left: 5px;
}

.contact-info p {
  margin-bottom: 15px;
  opacity: 0.8;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color-1);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Utilities */
.bg-primary {
  background-color: var(--primary-color-1) !important;
}

.bg-secondary {
  background-color: var(--primary-color-2) !important;
}

.text-primary {
  color: var(--primary-color-1) !important;
}

.rounded-lg {
  border-radius: 10px !important;
}

.shadow-lg {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.shape-divider .shape-fill {
  fill: #FFFFFF;
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 150px 0 80px;
  background-color: var(--primary-color-2);
  color: var(--text-light);
  position: relative;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.breadcrumb-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.breadcrumb-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.breadcrumb-nav {
  padding: 10px 20px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}

.breadcrumb-nav a {
  color: var(--text-light);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.breadcrumb-nav a:hover {
  opacity: 1;
}

.breadcrumb-nav span {
  margin: 0 10px;
}

/* Additional Page Sections */
.add-page-section {
  padding: 100px 0;
  position: relative;
}

.add-page-section:nth-child(odd) {
  background-color: var(--primary-color-5);
}

.add-page-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.add-page-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.add-page-img {
  height: 200px;
  overflow: hidden;
}

.add-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.add-page-item:hover .add-page-img img {
  transform: scale(1.1);
}

.add-page-content {
  padding: 30px;
}

.add-page-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
} 