/* MAIN STYLESHEET FOR CORPORATE PENSION AUDIT WORKSHOPS TEMPLATE */

/* Color Palette Definition */
:root {
  --primary-1: #3a6ea5; /* Primary Blue */
  --primary-1-light: #5289c7;
  --primary-1-dark: #2d5580;
  
  --primary-2: #6e4a9e; /* Accent Purple */
  --primary-2-light: #8c65c1;
  --primary-2-dark: #533777;
  
  --primary-3: #e6a02d; /* Warm Yellow */
  --primary-3-light: #f5bc5e;
  --primary-3-dark: #c08216;
  
  --primary-4: #4a8776; /* Teal */
  --primary-4-light: #65a894;
  --primary-4-dark: #376859;
  
  --primary-5: #d64a4a; /* Accent Red */
  --primary-5-light: #e47070;
  --primary-5-dark: #ab3636;
  
  --neutral-100: #ffffff;
  --neutral-200: #f5f7fa;
  --neutral-300: #e9ecf1;
  --neutral-400: #d1d6dd;
  --neutral-500: #a9b0bc;
  --neutral-600: #7d8694;
  --neutral-700: #4e5561;
  --neutral-800: #31373f;
  --neutral-900: #1a1d23;
}

/* General Styling */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--neutral-800);
  background-color: var(--neutral-200);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.25;
  color: var(--neutral-900);
}

p {
  margin-bottom: 1.5rem;
}

section {
  padding: 6rem 0;
}

/* Header Styling */
header {
  background-color: var(--neutral-100);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-1);
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  color: var(--neutral-700);
  transition: color 0.3s ease;
}

.nav-link:hover, 
.nav-link:focus {
  color: var(--primary-1);
}

/* Hero Section */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-1-light);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title-1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--neutral-100);
}

.hero-subtitle-1 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--neutral-200);
}

.hero-desc-1 {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: var(--neutral-200);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-bg-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 70%;
  background-color: var(--primary-1);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: 0;
}

/* About Section */
.about-section {
  background-color: var(--neutral-100);
}

.about-feature {
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: var(--neutral-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-1);
}

/* Services Section */
.services-section {
  background-color: var(--neutral-200);
}

.services-card {
  padding: 2.5rem;
  border-radius: 0.75rem;
  background-color: var(--neutral-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.services-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.services-card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-1);
}

.services-card-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 1rem 0;
}

.services-card-features {
  margin: 1.5rem 0;
}

.services-card-features li {
  margin-bottom: 0.75rem;
}

.services-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--primary-3-light);
  opacity: 0.1;
  z-index: 0;
}

/* Features Section */
.features-section {
  background-color: var(--neutral-100);
}

.features-item {
  text-align: center;
  padding: 2rem;
}

.features-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-2);
  background: var(--neutral-200);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.priceplan-card {
  background-color: var(--neutral-100);
  border-radius: 1rem;
  padding: 3rem 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.priceplan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.priceplan-card-name {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary-1);
}

.priceplan-card-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1.5rem 0;
  color: var(--neutral-800);
}

.priceplan-card-features {
  margin: 2rem 0;
}

.priceplan-card-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-300);
}

.priceplan-shape {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-4-light);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

/* Team Section */
.team-section {
  background-color: var(--neutral-100);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border: 5px solid var(--neutral-100);
}

.team-member-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--neutral-900);
}

.team-member-role {
  color: var(--primary-1);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--neutral-200);
  position: relative;
}

.reviews-slider {
  overflow: hidden;
}

.review-item {
  background-color: var(--neutral-100);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-text::before,
.review-text::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-3-light);
  line-height: 0;
  position: absolute;
}

.review-text::before {
  left: -20px;
  top: 15px;
}

.review-text::after {
  right: -15px;
  bottom: 0;
}

.review-author {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--neutral-900);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--neutral-100);
}

.coreinfo-item {
  background-color: var(--neutral-200);
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-4);
}

/* Contact Section */
.contact-section {
  background-color: var(--neutral-200);
  position: relative;
}

.contact-form {
  background-color: var(--neutral-100);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-control {
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--neutral-400);
  border-radius: 0.5rem;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 3px rgba(58, 110, 165, 0.1);
}

.form-check-input:checked {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(58, 110, 165, 0.3);
}

/* Blog Section */
.blog-section {
  background-color: var(--neutral-100);
}

.blog-item {
  background-color: var(--neutral-200);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

.blog-excerpt {
  margin-bottom: 1.5rem;
  color: var(--neutral-700);
}

.blog-link {
  color: var(--primary-1);
  font-weight: 600;
  text-decoration: none;
}

.blog-link:hover {
  color: var(--primary-1-dark);
}

/* FAQ Section */
.faq-section {
  background-color: var(--neutral-200);
}

.accordion-button {
  padding: 1.25rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--neutral-800);
  background-color: var(--neutral-100);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-1);
  background-color: var(--neutral-100);
  box-shadow: none;
}

.accordion-button::after {
  background-size: 1.2rem;
}

.accordion-body {
  padding: 1.25rem;
  color: var(--neutral-700);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--neutral-100);
  padding-bottom: 5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: 5rem 0 2rem;
}

footer h5 {
  color: var(--neutral-100);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

footer p {
  color: var(--neutral-400);
}

footer a {
  color: var(--neutral-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-3);
}

#site-copyright {
  color: var(--neutral-500);
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--neutral-700);
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Additional Pages */
.page-header {
  background-color: var(--primary-1);
  padding: 6rem 0;
  color: var(--neutral-100);
}

/* Animations & Transitions */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments in responsive.css */ 