/* Career Transition Coaching - Main Styles */
:root {
  /* Pastel High-Contrast Color Palette */
  --primary-color: #4A90E2;
  --secondary-color: #7B68EE;
  --accent-color: #50C878;
  --warm-color: #F4A460;
  --neutral-color: #E6E6FA;
  
  /* Light Shades */
  --primary-light: #87CEEB;
  --secondary-light: #DDA0DD;
  --accent-light: #98FB98;
  --warm-light: #FFEFD5;
  --neutral-light: #F8F8FF;
  
  /* Dark Shades */
  --primary-dark: #2E5984;
  --secondary-dark: #4B0082;
  --accent-dark: #228B22;
  --warm-dark: #CD853F;
  --neutral-dark: #9370DB;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.375rem;
  --font-size-h2: 1.5rem;
  --font-size-h1: 1.75rem;
}

/* Conservative Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  margin-bottom: 0.625rem;
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Conservative Navbar Brand */
.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 600;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 15%;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: var(--warm-light);
}

/* Section Styling */
.section-padding {
  padding: 4rem 0;
}

.section-title {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.section-description {
  color: #666;
  font-size: var(--font-size-lg);
  margin-bottom: 3rem;
}

/* About Section */
.about-section {
  background: var(--neutral-light);
}

.feature-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.feature-icon {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: white;
}

.service-card {
  background: var(--neutral-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-price {
  color: var(--accent-dark);
  font-size: var(--font-size-xl);
  font-weight: 600;
}

/* Features Section */
.features-section {
  background: var(--primary-light);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="%23ffffff" opacity="0.1"/></svg>');
}

/* Price Plan Section */
.priceplan-section {
  background: white;
}

.price-card {
  background: var(--neutral-light);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  position: relative;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

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

.price-card.featured {
  border-color: var(--accent-color);
  background: var(--accent-light);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* Team Section */
.team-section {
  background: var(--secondary-light);
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-light);
}

/* Reviews Section */
.reviews-section {
  background: var(--warm-light);
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  position: relative;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-light);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
}

/* Case Study Section */
.casestudy-section {
  background: white;
}

.case-card {
  background: var(--neutral-light);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--accent-color);
}

/* Process Section */
.process-section {
  background: var(--accent-light);
}

.process-step {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.process-number {
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 1rem;
  font-size: var(--font-size-lg);
}

/* Timeline Section */
.timeline-section {
  background: white;
}

.timeline-item {
  background: var(--neutral-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--secondary-color);
}

/* Career Section */
.career-section {
  background: var(--warm-light);
}

.career-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Core Info Section */
.coreinfo-section {
  background: var(--primary-light);
}

.info-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  text-align: center;
}

/* Contact Section */
.contact-section {
  background: white;
}

.contact-form {
  background: var(--neutral-light);
  border-radius: 12px;
  padding: 2.5rem;
}

.contact-info {
  background: var(--primary-dark);
  color: white;
  border-radius: 12px;
  padding: 2.5rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  color: var(--accent-light);
  margin-right: 0.75rem;
  width: 20px;
}

/* Blog Section */
.blog-section {
  background: var(--secondary-light);
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background: white;
}

.faq-card {
  background: var(--neutral-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-color);
}

.faq-question {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: #555;
  margin: 0;
}

/* Gallery Section */
.gallery-section {
  background: var(--neutral-light);
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

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

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

/* Footer */
footer {
  background: var(--primary-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent-light);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 500;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

/* Form Controls */
.form-control {
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

/* Utilities */
.text-primary-custom {
  color: var(--primary-color);
}

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

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

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

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

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

.hero-section h1 {
    padding-top: 150px;
}


/* 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;
    }
}
