:root {
  /* Color palette - pastel colors */
  --color-primary: #6a9ac4;
  --color-secondary: #e6b89c;
  --color-accent: #b17a94;
  --color-neutral: #e8e6e1;
  --color-highlight: #a4d4b4;
  
  /* Shades */
  --color-primary-light: #8fb5d6;
  --color-primary-dark: #4c7da5;
  --color-secondary-light: #f2d2bf;
  --color-secondary-dark: #c39378;
  --color-accent-light: #c799ae;
  --color-accent-dark: #945a74;
  --color-neutral-light: #f5f4f1;
  --color-neutral-dark: #c5c3bf;
  --color-highlight-light: #bfe2ca;
  --color-highlight-dark: #7fb590;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
}

/* Base styles */
html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: var(--line-height-base);
  color: #333;
  background-color: var(--color-neutral-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

.btn {
  padding: 0.625rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
}

.btn-accent {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}

.btn-accent:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

/* Section styles */
section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--color-accent);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  color: #777;
  font-size: 1.1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary-dark);
}

.nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  position: relative;
  font-size: 12px;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 70%;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  background-color: var(--color-neutral);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 8rem;
}

.hero-title {
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  color: #fff;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.swiper-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-slide-hero {
  background-size: cover;
  background-position: center;
  position: relative;
}

.swiper-slide-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
  background-color: #fff;
}

.about-feature {
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--color-neutral-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.about-feature h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background-color: var(--color-neutral-light);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../PEN_images/pattern-bg.png');
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-card-body {
  padding: 1.5rem;
}

.service-price {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-features {
  list-style-type: none;
  padding-left: 0;
  margin-top: 1rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-neutral);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: var(--color-highlight-dark);
  margin-right: 0.5rem;
}

/* Features Section */
.features {
  background-color: #fff;
}

.feature-item {
  text-align: center;
  margin-bottom: 3rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: var(--color-highlight-light);
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--color-highlight-dark);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background-color: var(--color-highlight);
  color: white;
  transform: rotateY(180deg);
}

/* Price Plan Section */
.priceplan {
  background-color: var(--color-neutral-light);
}

.price-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
}

.price-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card-header {
  background-color: var(--color-primary);
  color: white;
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.price-card:nth-child(2) .price-card-header {
  background-color: var(--color-secondary);
}

.price-card:nth-child(3) .price-card-header {
  background-color: var(--color-accent);
}

.price-card-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price-card-period {
  font-size: 0.875rem;
  opacity: 0.8;
}

.price-card-body {
  padding: 2rem 1.5rem;
}

.price-card-features {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.price-card-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-neutral);
}

.price-card-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team {
  background-color: #fff;
}

.team-card {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-card-img {
  position: relative;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.team-card:hover .team-card-img img {
  transform: scale(1.1);
}

.team-card-body {
  background-color: #fff;
  padding: 1.5rem;
  text-align: center;
}

.team-card-name {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.team-card-role {
  color: var(--color-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Reviews Section */
.reviews {
  background-color: var(--color-neutral-light);
  position: relative;
}

.reviews-slider {
  overflow: hidden;
  padding-bottom: 3rem;
}

.review-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 0 15px;
}

.review-text {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-text:before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -2rem;
  left: -1rem;
  color: var(--color-neutral);
  font-family: serif;
  opacity: 0.3;
}

.review-author {
  font-weight: 700;
  color: var(--color-primary-dark);
}

/* Core Info Section */
.coreinfo {
  background-color: #fff;
}

.coreinfo-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 10px;
  background-color: var(--color-neutral-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.coreinfo-item-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.coreinfo-item h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  background-color: var(--color-neutral-light);
}

.contact-form {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border-radius: 5px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-neutral);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--color-primary);
}

.service-option {
  display: block;
  margin-bottom: 0.5rem;
}

/* Blog Section */
.blog {
  background-color: #fff;
}

.blog-card {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-card-body {
  padding: 1.5rem;
  background-color: #fff;
}

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blog-card-excerpt {
  color: #777;
  margin-bottom: 1.5rem;
}

.blog-card-link {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-block;
}

/* Footer */
.footer {
  background-color: var(--color-primary-dark);
  color: #fff;
  padding: 4rem 0 0;
}

.footer-widget {
  margin-bottom: 3rem;
}

.footer-widget h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-widget p {
  margin-bottom: 1rem;
}

.footer-widget a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-widget a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom small {
  opacity: 0.7;
}

/* Shape decorations */
.shape-decorator {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
  border-radius: 53% 47% 52% 48% / 36% 41% 59% 64%;
  background-color: rgba(var(--color-primary-rgb), 0.1);
  animation: morph 12s linear infinite;
}

.shape-2 {
  bottom: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  border-radius: 53% 47% 52% 48% / 36% 41% 59% 64%;
  background-color: rgba(var(--color-accent-rgb), 0.1);
  animation: morph 15s linear infinite reverse;
}

@keyframes morph {
  0% {
    border-radius: 53% 47% 52% 48% / 36% 41% 59% 64%;
  }
  25% {
    border-radius: 63% 37% 56% 44% / 49% 56% 44% 51%;
  }
  50% {
    border-radius: 42% 58% 51% 49% / 65% 43% 57% 35%;
  }
  75% {
    border-radius: 55% 45% 64% 36% / 37% 50% 50% 63%;
  }
  100% {
    border-radius: 53% 47% 52% 48% / 36% 41% 59% 64%;
  }
}

/* Additional pages */
.page-header {
  height: 40vh;
  min-height: 300px;
  background-color: var(--color-primary);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.page-header h1 {
  color: #fff;
  font-size: 3rem;
  position: relative;
  z-index: 2;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../PEN_images/pattern-overlay.png');
  background-size: cover;
  opacity: 0.1;
}

/* Space page */
#space {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-neutral-light);
} 