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

/* Color Palette - Conservative & Professional */
:root {
  --primary-blue: #293440;
  --secondary-teal: #139271;
  --accent-orange: #ff7f19;
  --neutral-gray: #7a7d7d;
  --light-cream: #F8F9FA;
  
  /* Light/Dark Shades */
  --primary-blue-light: #314f64;
  --primary-blue-dark: #1b2e3c;
  --secondary-teal-light: #09ac7d;
  --secondary-teal-dark: #1b9b8e;
  --accent-orange-light: #dd7a14;
  --accent-orange-dark: #ec4500;
  --neutral-gray-light: #9fb7b7;
  --neutral-gray-dark: #636d7d;
  
  /* 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(51, 73, 89, 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(37, 164, 138, 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: 150px;
}

/* 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(39, 61, 75, 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(41, 55, 78, 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(20, 164, 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(63, 83, 105, 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(36, 51, 72, 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(37, 51, 65, 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(44, 67, 80, 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(46, 70, 90, 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(49, 67, 103, 0.10);
}

/* Career Section */
.career-position {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(37, 53, 64, 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(38, 49, 63, 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(44, 62, 76, 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(14, 171, 140, 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(36, 54, 68, 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(30, 43, 63, 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(49, 74, 105, 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 - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
