:root {
  /* Primary Color Palette */
  --primary-color-1: #ffa364; /* Warm Orange */
  --primary-color-2: #55c9a6; /* Mint Green */
  --primary-color-3: #6c7ae0; /* Periwinkle */
  --primary-color-4: #f5d575; /* Soft Yellow */
  --primary-color-5: #fc85ae; /* Soft Pink */

  /* Shades */
  --primary-color-1-light: #ffc299;
  --primary-color-1-dark: #e57e45;
  
  --primary-color-2-light: #8edcc4;
  --primary-color-2-dark: #3aa785;
  
  --primary-color-3-light: #a1aaed;
  --primary-color-3-dark: #4f56b3;
  
  --primary-color-4-light: #f8e4a5;
  --primary-color-4-dark: #e5bd45;
  
  --primary-color-5-light: #feaac8;
  --primary-color-5-dark: #db5989;

  /* Neutral Colors */
  --light-bg: #f9f9f9;
  --dark-bg: #333333;
  --text-color: #333333;
  --light-text: #ffffff;
}

/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--primary-color-3);
  transition: all 0.3s ease;
}

section {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 15px;
  font-weight: 800;
  color: var(--primary-color-3-dark);
}

.section-subtitle {
  margin-bottom: 30px;
  font-weight: 300;
  color: var(--primary-color-3);
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  padding: 12px 30px;
  border-radius: 30px;
  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);
}

.btn-outline-primary {
  border-color: var(--primary-color-1);
  color: var(--primary-color-1);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color-1);
  color: white;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 800;
  color: var(--primary-color-3-dark);
}

.navbar-nav .nav-link {
  padding: 25px 15px;
  font-weight: 600;
  color: var(--text-color);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color-1);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-color-3-light) 0%, var(--primary-color-2) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../PRO_images/pattern.webp');
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: white;
  margin-bottom: 30px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

/* About Section */
.about-section {
  background-color: var(--light-bg);
}

.about-feature {
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color-2-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color-2-dark);
  font-size: 1.8rem;
}

.about-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color-3-dark);
}

/* Services Section */
.services-section {
  background-color: white;
}

.services-item {
  padding: 30px;
  background-color: var(--light-bg);
  border-radius: 15px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.services-item:hover {
  border-color: var(--primary-color-1-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.services-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color-3-dark);
}

.services-item-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color-1-light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color-1-dark);
  font-size: 1.8rem;
}

.services-item-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color-1);
  margin: 20px 0;
}

.services-item-features {
  margin: 20px 0;
}

.services-item-features li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--primary-color-4-light) 0%, var(--primary-color-5-light) 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('../PRO_images/pattern.webp');
  opacity: 0.1;
}

.features-content {
  position: relative;
  z-index: 1;
}

.features-item {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.features-item:hover {
  transform: translateY(-10px);
}

.features-item-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color-4-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color-4-dark);
  font-size: 1.5rem;
}

.features-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color-3-dark);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-bg);
}

.priceplan-item {
  background-color: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.priceplan-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--primary-color-2);
}

.priceplan-item.featured::before {
  background-color: var(--primary-color-1);
}

.priceplan-item h3 {
  font-size: 1.8rem;
  margin: 20px 0;
  color: var(--primary-color-3-dark);
}

.priceplan-item-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color-3);
  margin: 30px 0;
}

.priceplan-item-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-color);
}

.priceplan-item-features {
  margin: 20px 0;
  text-align: left;
}

.priceplan-item-features li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.priceplan-item.featured {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-section {
  background-color: white;
}

.team-member {
  position: relative;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  height: 400px;
}

.team-member-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  border-radius: 0 0 15px 15px;
  color: white;
}

.team-member-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-member-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.review-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  margin: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.review-text::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -10px;
  color: var(--primary-color-3-light);
  opacity: 0.2;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.review-author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary-color-3-dark);
}

.review-author-info p {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.7;
  margin-bottom: 0;
}

/* Core Info Section */
.coreinfo-section {
  background-color: white;
}

.coreinfo-item {
  text-align: center;
  margin-bottom: 30px;
}

.coreinfo-item-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color-5-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color-5-dark);
  font-size: 2rem;
}

.coreinfo-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color-3-dark);
}

/* Contact Form Section */
.contact-section {
  background: linear-gradient(135deg, var(--primary-color-3-light) 0%, var(--primary-color-2) 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('../PRO_images/pattern.webp');
  opacity: 0.1;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.form-control {
  padding: 12px 15px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

textarea.form-control {
  border-radius: 15px;
  min-height: 150px;
}

.form-check-input:checked {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

/* Blog Section */
.blog-section {
  background-color: var(--light-bg);
}

.blog-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color-3-dark);
}

.blog-content p {
  margin-bottom: 20px;
  color: var(--text-color);
  opacity: 0.8;
}

/* FAQ Section */
.faq-section {
  background-color: white;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background-color: white;
  font-weight: 600;
  color: var(--primary-color-3-dark);
  padding: 20px;
  border-radius: 15px !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-3-light);
  color: var(--primary-color-3-dark);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  padding: 20px;
  background-color: white;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--light-bg);
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: white;
  padding: 80px 0 20px;
}

footer h4 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: white;
}

footer p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

footer ul {
  padding-left: 0;
  list-style: none;
}

footer ul li {
  padding: 8px 0;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.7);
}

footer ul li a:hover {
  color: var(--primary-color-1);
}

footer .sitename {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

small#site-copyright {
  display: block;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
} 