/* Remote Sales Training Bootcamp - Main Styles */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-blue: #4A90E2;
  --primary-green: #7ED321;
  --primary-purple: #9013FE;
  --primary-orange: #F5A623;
  --primary-red: #D0021B;
  
  /* Light Shades */
  --light-blue: #E8F4FD;
  --light-green: #F0FCE8;
  --light-purple: #F3E5F5;
  --light-orange: #FFF8E1;
  --light-red: #FFEBEE;
  
  /* Dark Shades */
  --dark-blue: #2C5282;
  --dark-green: #4A7C59;
  --dark-purple: #6A1B9A;
  --dark-orange: #E65100;
  --dark-red: #B71C1C;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #6C757D;
  --dark-gray: #343A40;
  --black: #000000;
  
  /* Conservative Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.75rem;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  font-size: var(--font-size-base);
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 600;
}

h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Header Styles */
#header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

#header .navbar-brand {
  color: var(--primary-blue);
}

#header .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

#header .nav-link:hover {
  color: var(--primary-blue);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--primary-blue);
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(15deg);
}

#hero .hero-content {
  position: relative;
  z-index: 2;
    padding-top: 200px;
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--gray);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

/* About Section */
#about {
  background: var(--white);
}

.feature-card {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  color: var(--primary-blue);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Services Section */
#services {
  background: var(--light-gray);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-price {
  color: var(--primary-green);
  font-size: var(--font-size-2xl);
  font-weight: 700;
}

/* Features Section */
#features {
  background: var(--white);
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-item i {
  color: var(--primary-purple);
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Price Plan Section */
#priceplan {
  background: var(--light-blue);
}

.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  height: 100%;
}

.price-card.featured {
  border: 3px solid var(--primary-blue);
  transform: scale(1.05);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.price-features li:before {
  content: '✓';
  color: var(--primary-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Team Section */
#team {
  background: var(--white);
}

.team-card {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-blue);
}

.team-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--gray);
  font-style: italic;
}

/* Reviews Section */
#reviews {
  background: var(--light-green);
}

.review-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-blue);
}

/* Case Study Section */
#casestudy {
  background: var(--white);
}

.case-card {
  background: var(--light-purple);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
}

/* Process Section */
#process {
  background: var(--light-orange);
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-orange);
  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 1rem;
}

/* Timeline Section */
#timeline {
  background: var(--white);
}

.timeline-item {
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Career Section */
#career {
  background: var(--light-red);
}

.career-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
}

/* Core Info Section */
#coreinfo {
  background: var(--white);
}

.info-card {
  background: var(--light-blue);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

.info-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Contact Section */
#contact {
  background: var(--light-gray);
}

.contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 8px;
  border: 2px solid var(--light-gray);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.btn-primary {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
}

.contact-info {
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
}

.contact-info h4 {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-item i {
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* Blog Section */
#blog {
  background: var(--white);
}

.blog-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  height: 100%;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  color: var(--gray);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  text-decoration: underline;
}

/* FAQ Section */
#faq {
  background: var(--light-gray);
}

.faq-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--gray);
}

/* Gallery Section */
#gallery {
  background: var(--white);
  padding: 4rem 0;
}

.gallery-item {
  margin-bottom: 1rem;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Footer */
#footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-section h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-link {
  color: var(--light-gray);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-container {
  background: var(--light-gray);
  padding: 1rem 0;
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: var(--font-size-2xl);
  }
  
  .price-card.featured {
    transform: none;
    margin-top: 1rem;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  section {
    padding: 2rem 0;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
