:root {
  /* Color Palette */
  --primary-color-1: #3a5a78; /* Deep blue */
  --primary-color-2: #8fbcbb; /* Seafoam green */
  --primary-color-3: #ebcb8b; /* Warm yellow */
  --primary-color-4: #d08770; /* Terracotta */
  --primary-color-5: #5e81ac; /* Medium blue */
  
  /* Light/Dark Shades */
  --primary-color-1-light: #4c7aa3;
  --primary-color-1-dark: #2d4860;
  --primary-color-2-light: #a1d6d5;
  --primary-color-2-dark: #7a9e9d;
  --primary-color-3-light: #f5dba7;
  --primary-color-3-dark: #d4b675;
  --primary-color-4-light: #e5a48c;
  --primary-color-4-dark: #bf7054;
  --primary-color-5-light: #7ea0cb;
  --primary-color-5-dark: #45628b;
  
  /* Neutrals */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #cccccc;
  --dark-gray: #4f4f4f;
  --black: #202020;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--black);
  overflow-x: hidden;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

a {
  color: var(--primary-color-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-1-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* Section Styling */
section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 500;
  color: var(--primary-color-5);
}

.section-description {
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Button Styles */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  border-color: var(--primary-color-1-dark);
}

.btn-secondary {
  background-color: var(--primary-color-3);
  border-color: var(--primary-color-3);
  color: var(--black);
}

.btn-secondary:hover {
  background-color: var(--primary-color-3-dark);
  border-color: var(--primary-color-3-dark);
}

/* Header & Navigation */
.navbar {
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color-1);
}

.nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  margin: 0 0.2rem;
  color: var(--black) !important;
}

.nav-link:hover {
  color: var(--primary-color-1) !important;
}

.nav-link.active {
  color: var(--primary-color-1) !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--light-gray);
  overflow: hidden;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--primary-color-2-light);
  opacity: 0.1;
  z-index: 0;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

/* About Section */
.about-feature {
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-4);
}

/* Services Section */
.services-item {
  padding: 2.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary-color-2);
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-3);
}

.services-price {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--primary-color-1);
}

.services-features {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.services-features li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.services-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-3);
}

/* Features Section */
.features-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  background-color: var(--white);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.features-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-5);
  background: linear-gradient(135deg, var(--primary-color-2-light), var(--primary-color-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Price Plan Section */
.priceplan-item {
  padding: 3rem 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  background-color: var(--white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.priceplan-item.popular {
  background-color: var(--primary-color-1);
  color: var(--white);
}

.priceplan-item.popular .priceplan-price {
  color: var(--primary-color-3);
}

.priceplan-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-color: var(--primary-color-2-light);
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(30%, 30%);
}

.priceplan-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.priceplan-price {
  font-size: 3rem;
  font-weight: 800;
  margin: 1.5rem 0;
  color: var(--primary-color-1);
}

.priceplan-features {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
  text-align: left;
}

.priceplan-features li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.8rem;
}

.priceplan-features li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-3);
}

.priceplan-item.popular .priceplan-features li::before {
  color: var(--primary-color-3);
}

/* Team Section */
.team-member {
  position: relative;
  margin-bottom: 2.5rem;
  border-radius: 15px;
  overflow: hidden;
}

.team-img {
  border-radius: 15px;
  transition: all 0.5s ease;
}

.team-details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: var(--white);
  transition: all 0.3s ease;
}

.team-member:hover .team-img {
  transform: scale(1.05);
}

.team-name {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Reviews Section */
.reviews-container {
  position: relative;
  padding: 3rem 0;
}

.review-item {
  padding: 2.5rem;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 1rem 0.5rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-top: 1.5rem;
}

.review-text::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.5rem;
  color: var(--primary-color-2);
}

.review-author {
  font-weight: 700;
  margin-top: 1rem;
}

/* Core Info Section */
.coreinfo-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  background-color: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-3);
}

/* Contact Section */
.contact-form {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.form-control {
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  border: 1px solid var(--medium-gray);
  margin-bottom: 1.5rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

textarea.form-control {
  border-radius: 20px;
  min-height: 150px;
}

.form-check-input:checked {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

.service-checkbox-group {
  margin: 2rem 0;
}

/* Blog Section */
.blog-item {
  margin-bottom: 2.5rem;
  border-radius: 15px;
  overflow: hidden;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 250px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-accordion .accordion-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-button {
  padding: 1.5rem;
  font-weight: 600;
  background-color: var(--white);
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-color-1);
  background-color: var(--white);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

.faq-accordion .accordion-body {
  padding: 1.5rem;
}

/* Gallery Section */
.gallery {
  padding-bottom: 0;
}

.gallery-item {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  padding: 5rem 0 2rem;
  color: var(--white);
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-desc {
  margin-bottom: 2rem;
  opacity: 0.8;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color-3);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--medium-gray);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color-3);
  padding-left: 5px;
}

.footer-contact-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact-icon {
  margin-right: 1rem;
  color: var(--primary-color-3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Breadcrumb */
.breadcrumb-section {
  background-color: var(--light-gray);
  padding: 2rem 0;
}

/* Additional Pages */
.add-page-section {
  padding: 5rem 0;
}

.add-page-title {
  margin-bottom: 1.5rem;
}

.add-page-subtitle {
  margin-bottom: 2rem;
  color: var(--primary-color-5);
}

.add-page-element {
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.add-page-element:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Space Page */
.space-wrapper {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shape elements */
.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: 150px;
}

.shape-divider .shape-fill {
  fill: var(--white);
}

.bg-shape-1 {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--primary-color-2-light);
  opacity: 0.1;
  z-index: -1;
}

.bg-shape-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--primary-color-3-light);
  opacity: 0.1;
  z-index: -1;
} 