:root {
  /* Primary color palette */
  --primary-1: #ff7b54; /* Coral orange */
  --primary-2: #ffb26b; /* Sandy amber */
  --primary-3: #4ecdc4; /* Teal */
  --primary-4: #6d67e4; /* Lavender purple */
  --primary-5: #f7fff7; /* Mint white */
  
  /* Shades */
  --primary-1-light: #ff9778;
  --primary-1-dark: #e56343;
  --primary-2-light: #ffc68e;
  --primary-2-dark: #e09a4e;
  --primary-3-light: #6bded6;
  --primary-3-dark: #3ab3ab;
  --primary-4-light: #8a85f0;
  --primary-4-dark: #5550c7;
  --primary-5-light: #ffffff;
  --primary-5-dark: #e5efe5;
  
  /* Text colors */
  --text-dark: #333333;
  --text-medium: #6c757d;
  --text-light: #f8f9fa;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
}

/* Base styles */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--primary-5);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

p {
  color: var(--text-medium);
  line-height: 1.7;
}

a {
  color: var(--primary-3);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-3-dark);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.btn {
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-4);
  color: var(--primary-4);
}

.btn-outline:hover {
  background-color: var(--primary-4);
  color: white;
}

/* Section styles */
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-sm);
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-4);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
  padding: 0.7rem 0;
  background-color: white;
}

header .navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-1);
}

header .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  margin: 0 0.2rem;
  position: relative;
}

header .nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-3);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

header .nav-link:hover:after,
header .nav-link.active:after {
  width: 70%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background-color: var(--primary-5-light);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: var(--primary-2-light);
  opacity: 0.1;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--primary-4-light);
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.hero-content h4 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  color: var(--primary-1);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  max-width: 100%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* About Section */
.about-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.about-image {
  position: relative;
  z-index: 1;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-feature {
  padding: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-3-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.about-feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.about-feature h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
  background-color: var(--primary-5);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('pattern.svg');
  background-size: cover;
  opacity: 0.03;
  z-index: 0;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-2-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-2-dark);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-sm);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: var(--spacing-sm);
}

.service-features {
  margin-bottom: var(--spacing-sm);
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--primary-5-dark);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  background-color: white;
  position: relative;
}

.feature-card {
  padding: var(--spacing-md);
  border-radius: 10px;
  margin-bottom: var(--spacing-md);
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-4-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.feature-icon i {
  font-size: 1.8rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-sm);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-5);
  position: relative;
}

.priceplan-card {
  background-color: white;
  border-radius: 10px;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 2px solid transparent;
}

.priceplan-card:hover {
  border-color: var(--primary-3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.priceplan-card.featured {
  border-color: var(--primary-3);
  transform: scale(1.05);
}

.priceplan-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.priceplan-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.priceplan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-1);
  margin-bottom: var(--spacing-sm);
}

.priceplan-features {
  margin-bottom: var(--spacing-md);
}

.priceplan-features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--primary-5-dark);
}

.priceplan-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: white;
  position: relative;
}

.team-member {
  margin-bottom: var(--spacing-md);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-member-img {
  position: relative;
  overflow: hidden;
}

.team-member-img img {
  transition: all 0.5s ease;
  width: 100%;
}

.team-member:hover .team-member-img img {
  transform: scale(1.05);
}

.team-member-info {
  padding: var(--spacing-md);
  background-color: white;
  text-align: center;
}

.team-member-name {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.team-member-role {
  color: var(--primary-3);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-5);
  position: relative;
}

.review-card {
  background-color: white;
  border-radius: 10px;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-top: 30px;
}

.review-text:before {
  content: '\201C';
  font-size: 5rem;
  position: absolute;
  top: -20px;
  left: -10px;
  color: var(--primary-3-light);
  opacity: 0.3;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.review-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-info h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.review-author-info p {
  font-size: 0.9rem;
  color: var(--primary-3);
  margin-bottom: 0;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--primary-3);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-3);
}

/* Core Info Section */
.coreinfo-section {
  background-color: white;
  position: relative;
}

.coreinfo-card {
  background-color: var(--primary-5);
  border-radius: 10px;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-1-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.coreinfo-icon i {
  font-size: 1.8rem;
  color: white;
}

.coreinfo-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-xs);
}

/* Contact Form Section */
.contact-section {
  background-color: var(--primary-5);
  position: relative;
}

.contact-form {
  background-color: white;
  border-radius: 10px;
  padding: var(--spacing-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-control {
  border: 1px solid var(--primary-5-dark);
  border-radius: 5px;
  padding: 0.8rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-3);
  box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-3);
  border-color: var(--primary-3);
}

.contact-info {
  margin-top: var(--spacing-md);
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-3-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.contact-info-icon i {
  font-size: 1.2rem;
  color: white;
}

/* Blog Section */
.blog-section {
  background-color: white;
  position: relative;
}

.blog-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: var(--spacing-md);
}

.blog-title {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-xs);
  display: block;
}

.blog-excerpt {
  margin-bottom: var(--spacing-sm);
}

.blog-link {
  color: var(--primary-3);
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-3-dark);
}

/* FAQ Section */
.faq-section {
  background-color: var(--primary-5);
  position: relative;
}

.accordion-item {
  margin-bottom: var(--spacing-sm);
  border-radius: 10px;
  overflow: hidden;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 1.2rem;
  font-weight: 600;
  background-color: white;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-3);
  background-color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-3);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234ecdc4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.2rem;
  background-color: white;
}

/* Gallery Section */
.gallery-section {
  background-color: white;
  position: relative;
}

.gallery-item {
  margin-bottom: var(--spacing-md);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  color: white;
  font-size: 2rem;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: var(--spacing-xl) 0;
  position: relative;
}

footer h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-xs);
}

footer h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-3);
}

footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-sm);
}

footer ul {
  padding: 0;
  list-style: none;
}

footer ul li {
  margin-bottom: var(--spacing-xs);
}

footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: var(--primary-3);
  padding-left: 5px;
}

footer .contact-info p {
  display: flex;
  align-items: center;
}

footer .contact-info p i {
  margin-right: 10px;
  color: var(--primary-3);
}

footer small {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Space Page */
#space {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Additional Pages */
.add-page-section {
  padding: var(--spacing-xl) 0;
}

.add-page-header {
  background-color: var(--primary-3);
  color: white;
  padding: var(--spacing-xl) 0;
  margin-bottom: var(--spacing-xl);
}

.add-page-header h1 {
  color: white;
  font-size: 2.5rem;
}

.add-page-card {
  background-color: white;
  border-radius: 10px;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.add-page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.add-page-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-1-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.add-page-icon i {
  font-size: 1.8rem;
  color: white;
}

.add-page-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-xs);
}

/* Utilities */
.text-primary {
  color: var(--primary-1) !important;
}

.bg-primary {
  background-color: var(--primary-1) !important;
}

.bg-light {
  background-color: var(--primary-5) !important;
}

.mb-5 {
  margin-bottom: var(--spacing-md) !important;
}

.py-5 {
  padding-top: var(--spacing-md) !important;
  padding-bottom: var(--spacing-md) !important;
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  animation: slideUp 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shape Elements */
.shape-blob1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: var(--primary-2-light);
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
}

.shape-blob2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: var(--primary-3-light);
  opacity: 0.1;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 0;
}

.shape-blob3 {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: var(--primary-4-light);
  opacity: 0.1;
  border-radius: 50% 50% 70% 30% / 30% 50% 50% 70%;
  z-index: 0;
}

/* Responsive Media Queries */
@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  section {
    padding: var(--spacing-lg) 0;
  }
  
  .hero-section {
    height: auto;
    padding: 120px 0 var(--spacing-xl);
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: var(--spacing-lg);
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .about-image {
    margin-bottom: var(--spacing-lg);
  }
  
  .priceplan-card.featured {
    transform: scale(1);
  }
  
  .priceplan-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content h4 {
    font-size: 1.1rem;
  }
  
  .contact-form {
    padding: var(--spacing-md);
  }
}

@media (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
} 