/* Memory Jar Business Template - Main CSS */
:root {
  /* Primary Color Palette */
  --primary-purple: #6854ba;
  --primary-purple-light: #7c70e1;
  --primary-purple-dark: #392b81;
  
  --secondary-pink: #e74a81;
  --secondary-pink-light: #ffb7d4;
  --secondary-pink-dark: #bc1c57;
  
  --tertiary-amber: #e97a00;
  --tertiary-amber-light: #ffbd30;
  --tertiary-amber-dark: #d65500;
  
  --quaternary-emerald: #21b371;
  --quaternary-emerald-light: #78ffcf;
  --quaternary-emerald-dark: #00806a;
  
  --quinary-indigo: #5033f1;
  --quinary-indigo-light: #b0b6eb;
  --quinary-indigo-dark: #4b36a5;
  
  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #c3c9da;
  --gray-300: #cfcfcf;
  --gray-400: #8c8f97;
  --gray-500: #737c86;
  --gray-600: #4e565c;
  --gray-700: #3b4755;
  --gray-800: #141820;
  --gray-900: #0c1117;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 22px;
  --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 {
  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 17px;
}

/* Header Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
  padding: 16px 0;
  box-shadow: 0 3px 12px 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 22px;
  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('../YIC_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: 21.00px;
  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: 31.00px;
  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: 17.00px;
  color: var(--primary-purple);
}

.section-subtitle {
  font-size: var(--font-size-xl);
  text-align: center;
  margin-bottom: 21.00px;
  color: var(--gray-600);
  font-weight: 500;
}

.section-description {
  font-size: var(--font-size-lg);
  text-align: center;
  margin-bottom: 52.00px;
  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: 16px;
  box-shadow: 0 11px 30px rgba(0,0,0,0.1);
  margin-bottom: 31.00px;
  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: 21.00px;
}

.feature-item h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 17.00px;
  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 19px 35px rgba(0,0,0,0.1);
  margin-bottom: 31.00px;
  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: 21.00px;
}

.service-item h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 17.00px;
  color: var(--primary-purple);
}

.service-item p {
  font-size: var(--font-size-base);
  color: var(--gray-600);
  margin-bottom: 21.00px;
}

.service-features {
  list-style: none;
  margin-bottom: 26.00px;
}

.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 */
#f0ebb2tures {
  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 16px 35px rgba(0,0,0,0.1);
  margin-bottom: 31.00px;
  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: 17.00px;
  color: var(--gray-800);
}

.price-item .price {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 21.00px;
}

.price-features {
  list-style: none;
  margin-bottom: 31.00px;
}

.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: 31.00px;
  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: 21.00px;
  border: 4px solid var(--primary-purple);
}

.team-member h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 13.00px;
  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: 31.00px;
  box-shadow: 0 15px 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: 21.00px;
  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: 31.00px;
  box-shadow: 0 15px 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: 17.00px;
  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: 31.00px;
}

.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: 17.00px;
  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: 31.00px;
  box-shadow: 0 11px 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: 17.00px;
  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: 31.00px;
  box-shadow: 0 11px 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: 13.00px;
  color: var(--primary-purple);
}

.career-role {
  font-size: var(--font-size-base);
  color: var(--secondary-pink);
  font-weight: 500;
  margin-bottom: 17.00px;
}

.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: 31.00px;
  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: 21.00px;
}

.coreinfo-item h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 17.00px;
  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: 26.00px;
}

.form-group label {
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 10.00px;
  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: 31.00px;
  color: var(--primary-purple);
}

.contact-info p {
  font-size: var(--font-size-base);
  color: var(--gray-700);
  margin-bottom: 17.00px;
  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: 31.00px;
  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: 17.00px;
  color: var(--primary-purple);
}

.blog-item p {
  font-size: var(--font-size-base);
  color: var(--gray-600);
  margin-bottom: 21.00px;
}

.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: 21.00px;
  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: 53.00px;
}

.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: 45.00px;
}

.footer-section h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 21.00px;
  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: 13.00px;
  display: block;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--tertiary-amber);
}

.footer-bottom {
  text-align: center;
  padding-top: 34.00px;
  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.43rem; }
.mb-2 { margin-bottom: 0.63rem; }
.mb-3 { margin-bottom: 1.13rem; }
.mb-4 { margin-bottom: 1.69rem; }
.mb-5 { margin-bottom: 3.09rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.48rem; }
.mt-2 { margin-top: 0.63rem; }
.mt-3 { margin-top: 1.23rem; }
.mt-4 { margin-top: 1.66rem; }
.mt-5 { margin-top: 3.07rem; }

.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;
}

/* Fallback for when JavaScript is disabled or not working */
.no-js .slide-up,
.slide-up.show-fallback {
  opacity: 1;
  transform: translateY(0);
}

.no-js .fade-in,
.fade-in.show-fallback {
  opacity: 1;
  transform: translateY(0);
}

/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
