/* Digital Etiquette Coaching - Main Styles */
/* Conservative typography with pastel high-contrast colors */

:root {
  /* 5-color pastel palette with high contrast */
  --primary-color: #847aee; /* Soft indigo */
  --secondary-color: #08dfe5; /* Soft cyan */
  --accent-color: #fc9600; /* Warm amber */
  --success-color: #10caa5; /* Soft emerald */
  --neutral-color: #697c8d; /* Cool slate */
  
  /* Light shades */
  --primary-light: #d3daec;
  --secondary-light: #cceff0;
  --accent-light: #e7e2a1;
  --success-light: #d1f9e4;
  --neutral-light: #f1f5f9;
  
  /* Dark shades */
  --primary-dark: #433ec9;
  --secondary-dark: #14c3ca;
  --accent-dark: #cc7807;
  --success-dark: #0f8365;
  --neutral-dark: #293340;
  
  /* Typography */
  --body-font: 'Inter', system-ui, -apple-system, sans-serif;
  --heading-font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Base styles */
body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--neutral-dark);
}

/* Conservative typography - avoiding large sizes */
.navbar-brand {
  font-size: 1.35rem !important; /* Only !important usage - overriding Bootstrap navbar-brand */
  font-weight: 600;
  color: var(--primary-color);
}

h1 {
  font-size: 2.55rem;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--primary-dark);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-dark);
}

h3 {
  font-size: 1.89rem;
  font-weight: 600;
  color: var(--neutral-dark);
}

h4 {
  font-size: 1.63rem;
  font-weight: 500;
  color: var(--neutral-dark);
}

h5 {
  font-size: 1.37rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  color: var(--neutral-color);
  margin-bottom: 1rem;
}

/* Hero section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  display: flex;
  align-items: center;
}

.hero-title {
  color: var(--primary-dark);
  margin-bottom: 1.74rem;
}

.hero-subtitle {
  color: var(--secondary-dark);
  font-size: 1.60rem;
  margin-bottom: 1rem;
}

.hero-desc {
  color: var(--neutral-color);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Decorative shapes */
.hero-shapes {
  position: relative;
  z-index: 1;
}

.hero-shapes::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--accent-light);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  opacity: 0.7;
  z-index: -1;
}

.hero-shapes::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--success-light);
  border-radius: 50%;
  bottom: -30px;
  left: -30px;
  opacity: 0.6;
  z-index: -1;
}

/* Section styling */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--secondary-dark);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--neutral-color);
}

/* Services cards */
.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 5px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  border: 1px solid var(--neutral-light);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 11px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.59rem;
}

.service-name {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.service-desc {
  margin-bottom: 1.62rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.69rem;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--neutral-color);
}

.service-features li::before {
  content: 'âœ“';
  color: var(--success-color);
  margin-right: 0.5rem;
}

.service-price {
  font-size: 1.61rem;
  font-weight: 700;
  color: var(--accent-dark);
}

/* About features */
.about-feature {
  text-align: center;
  padding: 2rem 1rem;
}

.about-feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-feature-name {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

/* Features section */
.features-section {
  background: var(--neutral-light);
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Price plan cards */
.priceplan-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  border: 2px solid var(--neutral-light);
  transition: border-color 0.2s ease;
}

.priceplan-card:hover {
  border-color: var(--primary-color);
}

.priceplan-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.priceplan-name {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.priceplan-price {
  font-size: 2.52rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 1.64rem;
}

.priceplan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.priceplan-features li {
  padding: 0.5rem 0;
  color: var(--neutral-color);
}

/* Team members */
.team-member {
  text-align: center;
  padding: 1rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 5px solid var(--primary-light);
}

.team-name {
  color: var(--primary-dark);
  margin-bottom: 0.69rem;
}

.team-role {
  color: var(--secondary-color);
  font-style: italic;
}

/* Reviews/Testimonials - Static cards only */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 9px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-text {
  font-style: italic;
  color: var(--neutral-color);
  margin-bottom: 1rem;
}

.review-author {
  color: var(--primary-dark);
  font-weight: 600;
}

/* Case studies */
.casestudy-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--neutral-light);
}

.casestudy-title {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

/* Process steps */
.process-item {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.52rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  border-left: 3px solid var(--primary-color);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: -7.5px;
  top: 0.5rem;
}

/* Career positions */
.career-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--neutral-light);
}

.career-title {
  color: var(--primary-dark);
  margin-bottom: 0.60rem;
}

.career-role {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Core info */
.coreinfo-item {
  text-align: center;
  padding: 2rem 1rem;
}

.coreinfo-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Contact form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-info {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.contact-item {
  display: flex;
  align-items: center;
  color: var(--neutral-dark);
  font-size: 1rem;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.40rem;
  width: 24px;
  flex-shrink: 0;
}

.form-control {
  border: 2px solid var(--neutral-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(112, 118, 236, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* FAQ - Static cards only */
.faq-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.59rem;
  border: 1px solid var(--neutral-light);
}

.faq-question {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--neutral-color);
}

/* Blog */
.blog-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.blog-item:hover {
  transform: translateY(-2px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--neutral-color);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--secondary-dark);
}

/* Footer */
.footer {
  background: var(--neutral-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--neutral-light);
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

.copyright {
  border-top: 1px solid var(--neutral-color);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  color: var(--neutral-light);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .service-card:hover,
  .blog-item:hover,
  .gallery-item:hover img {
    transform: none;
  }
}

/* Breadcrumbs - image only, no text */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
} 

.hero-content {
    padding-top: 175px;
}


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
