:root {
  /* Color Palette */
  --primary-color-1: #FF8A00; /* Orange */
  --primary-color-2: #5C63FF; /* Blue-Purple */
  --primary-color-3: #00C2A8; /* Teal */
  --primary-color-4: #FF5252; /* Red */
  --primary-color-5: #FFCF54; /* Yellow */

  /* Light/Dark variations */
  --primary-color-1-light: #FFA940;
  --primary-color-1-dark: #D97300;
  --primary-color-2-light: #7A80FF;
  --primary-color-2-dark: #4248D9;
  --primary-color-3-light: #40D9C8;
  --primary-color-3-dark: #00A18E;
  --primary-color-4-light: #FF7575;
  --primary-color-4-dark: #D93E3E;
  --primary-color-5-light: #FFDB85;
  --primary-color-5-dark: #EFBB30;

  /* Neutrals */
  --white: #ffffff;
  --light-gray: #f7f7f7;
  --medium-gray: #e0e0e0;
  --dark-gray: #333333;
  --black: #121212;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--primary-color-1);
}

.section-description {
  font-size: 1rem;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background-color: var(--primary-color-1);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-scrolled {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color-1);
}

.nav-link {
  font-weight: 500;
  color: var(--dark-gray);
  margin: 0 10px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color-1);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color-2-light), var(--primary-color-1));
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 30px;
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-img {
  position: relative;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
}

/* About Section */
.about-section {
  position: relative;
}

.about-feature {
  padding: 30px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color-1);
}

.about-feature-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Services Section */
.services-section {
  background-color: var(--light-gray);
}

.service-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-item-content {
  padding: 25px;
}

.service-item-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.service-item-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color-3);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
}

.service-features {
  margin-top: 20px;
}

.service-features li {
  margin-bottom: 10px;
  list-style-type: none;
  position: relative;
  padding-left: 25px;
}

.service-features li:before {
  content: "✓";
  color: var(--primary-color-3);
  position: absolute;
  left: 0;
}

/* Features Section */
.features-section {
  position: relative;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color-2);
}

.feature-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-gray);
}

.price-item {
  background: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-popular {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--primary-color-1);
  color: white;
  transform: rotate(45deg);
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: 600;
}

.price-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color-2);
}

.price-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 25px 0;
  color: var(--primary-color-1);
}

.price-features {
  margin: 25px 0;
  padding: 0;
}

.price-features li {
  margin-bottom: 10px;
  list-style-type: none;
}

/* Team Section */
.team-section {
  position: relative;
}

.team-member {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-content {
  padding: 20px;
  text-align: center;
  background: var(--white);
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-color-1);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-gray);
}

.review-item {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color-1);
}

.review-item:before {
  content: '"';
  font-size: 5rem;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
  line-height: 1;
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
}

.coreinfo-item {
  text-align: center;
  padding: 30px 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.coreinfo-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--primary-color-4);
}

.coreinfo-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--primary-color-3-light), var(--primary-color-3));
  color: var(--white);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: none;
  border-bottom: 1px solid var(--medium-gray);
  border-radius: 0;
  padding: 10px 0;
  margin-bottom: 25px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  box-shadow: none;
}

.form-group label {
  color: var(--dark-gray);
  margin-bottom: 10px;
}

.form-check-label {
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.contact-info-item {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
}

.contact-info-icon {
  margin-right: 15px;
  font-size: 1.5rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--white);
}

.blog-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.blog-excerpt {
  margin-bottom: 20px;
}

.blog-link {
  color: var(--primary-color-1);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-color-1-dark);
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-gray);
}

.accordion-item {
  border: none;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background-color: var(--white);
  box-shadow: none;
  font-weight: 600;
  padding: 20px;
}

.accordion-button:not(.collapsed) {
  background-color: var(--white);
  color: var(--primary-color-1);
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.accordion-body {
  padding: 20px;
  background-color: var(--white);
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  color: var(--white);
  font-size: 2rem;
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-brand {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-desc {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color-1);
}

.footer-contact-item {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact-icon {
  margin-right: 15px;
  color: var(--primary-color-1);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 50px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb-section {
  background-color: var(--light-gray);
  padding: 120px 0 30px;
}

/* Additional Pages */
.add-page-section {
  padding: 100px 0;
}

.add-page-section:nth-child(even) {
  background-color: var(--light-gray);
}

.space-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
} 