/* Personal Knowledge-Base Setup Consulting Template - Main CSS */

/* Color Palette - Conservative & Professional */
:root {
  --primary-blue: #2b3643;
  --secondary-teal: #1e8e76;
  --accent-orange: #de8936;
  --neutral-gray: #959696;
  --light-cream: #F8F9FA;
  
  /* Light/Dark Shades */
  --primary-blue-light: #44606f;
  --primary-blue-dark: #1f2834;
  --secondary-teal-light: #28b097;
  --secondary-teal-dark: #1b9382;
  --accent-orange-light: #f5b620;
  --accent-orange-dark: #da5c00;
  --neutral-gray-light: #818c8f;
  --neutral-gray-dark: #52687d;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --line-height-base: 1.6;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--primary-blue);
  background-color: var(--light-cream);
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--primary-blue);
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue-light);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-blue-light);
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  color: var(--neutral-gray-dark);
  margin-bottom: 1rem;
}

/* Header & Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(39, 48, 62, 0.10);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--primary-blue);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-teal);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--light-cream) 0%, rgba(41, 173, 164, 0.10) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 100%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%2316A085" stroke-width="0.5" opacity="0.3"/></svg>');
  transform: rotate(15deg);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 200px;
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--secondary-teal);
  font-size: var(--font-size-large);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* About Features */
.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(44, 66, 79, 0.10);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--secondary-teal);
  margin-bottom: 1.5rem;
}

/* Services */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(53, 68, 82, 0.10);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-teal);
  box-shadow: 0 10px 30px rgba(9, 152, 147, 0.20);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-top: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--neutral-gray-dark);
}

.service-features li i {
  color: var(--secondary-teal);
  margin-right: 0.5rem;
}

/* Features Grid */
.feature-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  border-left: 4px solid var(--secondary-teal);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

/* Price Plans */
.price-card {
  background: white;
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(43, 57, 79, 0.10);
  margin-bottom: 2rem;
  position: relative;
  border: 2px solid var(--light-cream);
  transition: all 0.3s ease;
}

.price-card.featured {
  border-color: var(--secondary-teal);
  transform: scale(1.05);
}

.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-teal);
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  color: var(--neutral-gray-dark);
  border-bottom: 1px solid var(--light-cream);
}

.price-features li i {
  color: var(--secondary-teal);
  margin-right: 0.75rem;
}

/* Team Section */
.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(39, 55, 76, 0.10);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--secondary-teal);
}

.team-role {
  color: var(--secondary-teal);
  font-weight: 500;
  font-size: var(--font-size-small);
}

/* Reviews/Testimonials */
.review-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(38, 54, 84, 0.10);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--secondary-teal);
  opacity: 0.3;
}

.review-author {
  font-weight: 600;
  color: var(--primary-blue);
  margin-top: 1.5rem;
}

.review-text {
  font-style: italic;
  color: var(--neutral-gray-dark);
  line-height: 1.7;
}

/* Case Studies */
.case-study {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(51, 72, 88, 0.10);
  border-left: 5px solid var(--accent-orange);
}

.case-study-title {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
}

.process-step::before {
  content: counter(process-counter);
  counter-increment: process-counter;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--secondary-teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.process-container {
  counter-reset: process-counter;
}

.process-content {
  background: white;
  border-radius: 15px;
  padding: 3rem 2rem 2rem;
  box-shadow: 0 5px 15px rgba(63, 83, 99, 0.10);
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--secondary-teal);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 2px var(--secondary-teal);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 20px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--light-cream);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-content {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(44, 61, 84, 0.10);
}

/* Career Section */
.career-position {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(48, 71, 92, 0.10);
  border-top: 4px solid var(--accent-orange);
}

.career-role {
  color: var(--secondary-teal);
  font-weight: 600;
  font-size: var(--font-size-small);
}

/* Core Info */
.core-info-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 3px 10px rgba(51, 84, 102, 0.10);
  transition: transform 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-3px);
}

.core-info-item i {
  font-size: 2rem;
  color: var(--secondary-teal);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 5px 20px rgba(56, 71, 98, 0.10);
}

.form-control {
  border: 2px solid var(--light-cream);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary-teal);
  box-shadow: 0 0 0 0.2rem rgba(36, 159, 153, 0.20);
}

.btn-primary {
  background: var(--secondary-teal);
  border-color: var(--secondary-teal);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--secondary-teal-dark);
  border-color: var(--secondary-teal-dark);
  transform: translateY(-2px);
}

.contact-info {
  background: var(--primary-blue);
  color: white;
  border-radius: 15px;
  padding: 3rem 2rem;
}

.contact-info h4 {
  color: white;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1.25rem;
  color: var(--secondary-teal);
  margin-right: 1rem;
  width: 25px;
}

/* Blog Section */
.blog-post {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(50, 64, 80, 0.10);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--neutral-gray-dark);
  line-height: 1.6;
}

.blog-link {
  color: var(--secondary-teal);
  font-weight: 500;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(35, 50, 70, 0.10);
  overflow: hidden;
}

.faq-question {
  background: var(--light-cream);
  color: var(--primary-blue);
  font-weight: 600;
  padding: 1.5rem;
  margin: 0;
  border-bottom: 1px solid rgba(60, 76, 100, 0.10);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--neutral-gray-dark);
  line-height: 1.6;
  margin: 0;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--primary-blue);
  color: white;
  padding: 4rem 0 2rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer a {
  color: var(--neutral-gray-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--secondary-teal);
}

.footer-bottom {
  border-top: 1px solid var(--primary-blue-light);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-cream);
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb img {
  height: 20px;
  opacity: 0.7;
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-blue);
}

.text-secondary-custom {
  color: var(--secondary-teal);
}

.text-accent-custom {
  color: var(--accent-orange);
}

.bg-primary-custom {
  background-color: var(--primary-blue);
}

.bg-secondary-custom {
  background-color: var(--secondary-teal);
}

.bg-light-custom {
  background-color: var(--light-cream);
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
