/* Memory Jar Business Template - Main CSS */
:root {
  /* Primary Color Palette */
  --primary-purple: #6b46c1;
  --primary-purple-light: #a78bfa;
  --primary-purple-dark: #553c9a;
  
  --secondary-pink: #ec4899;
  --secondary-pink-light: #f9a8d4;
  --secondary-pink-dark: #be185d;
  
  --tertiary-amber: #f59e0b;
  --tertiary-amber-light: #fde047;
  --tertiary-amber-dark: #d97706;
  
  --quaternary-emerald: #10b981;
  --quaternary-emerald-light: #6ee7b7;
  --quaternary-emerald-dark: #059669;
  
  --quinary-indigo: #4f46e5;
  --quinary-indigo-light: #a5b4fc;
  --quinary-indigo-dark: #3730a3;
  
  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 30px;
  --font-size-4xl: 36px;
  --font-size-5xl: 48px;
  --font-size-6xl: 60px;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  overflow-x: hidden !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--white) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--tertiary-amber-light) !important;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-purple-light), var(--secondary-pink-light));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../REP_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: var(--font-size-lg);
  color: var(--white);
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: var(--primary-purple);
}

.section-subtitle {
  font-size: var(--font-size-xl);
  text-align: center;
  margin-bottom: 20px;
  color: var(--gray-600);
  font-weight: 500;
}

.section-description {
  font-size: var(--font-size-lg);
  text-align: center;
  margin-bottom: 50px;
  color: var(--gray-700);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
#about {
  background: linear-gradient(135deg, var(--gray-50), var(--quaternary-emerald-light));
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: var(--font-size-4xl);
  color: var(--primary-purple);
  margin-bottom: 20px;
}

.feature-item h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gray-800);
}

.feature-item p {
  font-size: var(--font-size-base);
  color: var(--gray-600);
}

/* Services Section */
#services {
  background: var(--white);
}

.service-item {
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: var(--primary-purple);
  transform: translateY(-5px);
}

.service-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.service-item h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-purple);
}

.service-item p {
  font-size: var(--font-size-base);
  color: var(--gray-600);
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  padding: 5px 0;
  color: var(--gray-700);
  font-size: var(--font-size-sm);
}

.service-features li:before {
  content: '✓';
  color: var(--quaternary-emerald);
  font-weight: bold;
  margin-right: 8px;
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--secondary-pink);
}

/* Features Section */
#features {
  background: linear-gradient(135deg, var(--quinary-indigo-light), var(--primary-purple-light));
}

/* Price Plan Section */
#priceplan {
  background: var(--white);
}

.price-item {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  border: 3px solid var(--gray-200);
  transition: all 0.3s ease;
}

.price-item:nth-child(2) {
  border-color: var(--primary-purple);
  transform: scale(1.05);
}

.price-item:hover {
  transform: translateY(-5px) scale(1.02);
}

.price-item h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gray-800);
}

.price-item .price {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  margin-bottom: 30px;
}

.price-features li {
  padding: 8px 0;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}

/* Team Section */
#team {
  background: linear-gradient(135deg, var(--gray-50), var(--tertiary-amber-light));
}

.team-member {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 4px solid var(--primary-purple);
}

.team-member h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gray-800);
}

.team-member p {
  font-size: var(--font-size-base);
  color: var(--gray-600);
}

/* Reviews Section */
#reviews {
  background: var(--white);
}

.review-item {
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-left: 5px solid var(--secondary-pink);
}

.review-text {
  font-size: var(--font-size-lg);
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--primary-purple);
}

/* Case Study Section */
#casestudy {
  background: linear-gradient(135deg, var(--quaternary-emerald-light), var(--tertiary-amber-light));
}

.case-item {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.case-item:hover {
  transform: translateY(-5px);
}

.case-item h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-purple);
}

.case-item p {
  font-size: var(--font-size-base);
  color: var(--gray-600);
}

/* Process Section */
#process {
  background: var(--white);
}

.process-item {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-item h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gray-800);
}

.process-item p {
  font-size: var(--font-size-base);
  color: var(--gray-600);
}

/* Timeline Section */
#timeline {
  background: linear-gradient(135deg, var(--gray-50), var(--quinary-indigo-light));
}

.timeline-item {
  position: relative;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-left: 5px solid var(--tertiary-amber);
}

.timeline-item h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-purple);
}

.timeline-item p {
  font-size: var(--font-size-base);
  color: var(--gray-600);
}

/* Career Section */
#career {
  background: var(--white);
}

.career-item {
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.career-item:hover {
  border-color: var(--quaternary-emerald);
  transform: translateY(-5px);
}

.career-item h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-purple);
}

.career-role {
  font-size: var(--font-size-base);
  color: var(--secondary-pink);
  font-weight: 500;
  margin-bottom: 15px;
}

.career-item p {
  font-size: var(--font-size-base);
  color: var(--gray-600);
}

/* Core Info Section */
#coreinfo {
  background: linear-gradient(135deg, var(--tertiary-amber-light), var(--secondary-pink-light));
}

.coreinfo-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-item i {
  font-size: var(--font-size-3xl);
  color: var(--primary-purple);
  margin-bottom: 20px;
}

.coreinfo-item h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gray-800);
}

.coreinfo-item p {
  font-size: var(--font-size-base);
  color: var(--gray-600);
}

/* Contact Section */
#contact {
  background: var(--white);
}

.contact-form {
  background: linear-gradient(135deg, var(--gray-50), var(--primary-purple-light));
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
  display: block;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-purple);
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
  color: var(--white);
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: var(--font-size-lg);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
}

.contact-info {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-info h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--primary-purple);
}

.contact-info p {
  font-size: var(--font-size-base);
  color: var(--gray-700);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: var(--secondary-pink);
  margin-right: 15px;
  font-size: var(--font-size-lg);
}

/* Blog Section */
#blog {
  background: linear-gradient(135deg, var(--gray-50), var(--quaternary-emerald-light));
}

.blog-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-item h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-purple);
}

.blog-item p {
  font-size: var(--font-size-base);
  color: var(--gray-600);
  margin-bottom: 20px;
}

.blog-link {
  color: var(--secondary-pink);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--secondary-pink-dark);
}

/* FAQ Section */
#faq {
  background: var(--white);
}

.faq-item {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-purple);
}

.faq-question {
  padding: 20px;
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  background: var(--gray-50);
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 20px;
  font-size: var(--font-size-base);
  color: var(--gray-600);
  border-top: 1px solid var(--gray-200);
  margin: 0;
}

/* Gallery Section */
#gallery {
  background: linear-gradient(135deg, var(--tertiary-amber-light), var(--quinary-indigo-light));
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--tertiary-amber);
}

.footer-section p,
.footer-section a {
  font-size: var(--font-size-base);
  color: var(--gray-300);
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--tertiary-amber);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--gray-600);
}

.footer-bottom small {
  color: var(--gray-400);
  font-size: var(--font-size-sm);
}

/* Breadcrumbs */
.breadcrumb {
  background: var(--gray-100);
  padding: 15px 0;
  margin-bottom: 0;
}

.breadcrumb img {
  max-height: 30px;
  width: auto;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--primary-purple-light), var(--secondary-pink-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease;
}

.slide-up.visible {
  transform: translateY(0);
  opacity: 1;
} 