/* Resume Writing & Career Coaching Template - Main CSS */

/* Color Palette - High Contrast Pastels */
:root {
  --primary-blue: #69b4f9;
  --primary-green: #71bf19;
  --primary-purple: #9a1cfb;
  --primary-orange: #ffcc38;
  --primary-pink: #d71d42;
  
  /* Light/Dark Shades */
  --light-blue: #d8e8f2;
  --dark-blue: #085ac3;
  --light-green: #e0e0e0;
  --dark-green: #58a34e;
  --light-purple: #f5ddfc;
  --dark-purple: #7b208d;
  --light-orange: #ffeac9;
  --dark-orange: #f76100;
  --light-pink: #ffffff;
  --dark-pink: #c90836;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #8a9196;
  --dark-gray: #30373e;
  --black: #000000;
  
  /* Font Sizes - Conservative */
  --fs-small: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 1rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  font-size: var(--fs-base);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-base); }

p {
  margin-bottom: 1rem;
  font-size: var(--fs-base);
}

/* Header */
.navbar-brand {
  font-size: var(--fs-xl) !important;
  font-weight: 700;
  color: var(--primary-blue) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-gray) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
}

/* Hero Section */
.hero-section {
  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-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

/* Sections */
section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-blue);
  font-size: var(--fs-lg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.110px;
  margin-bottom: 0.65rem;
}

/* Cards */
.card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 21px 40px rgba(0,0,0,0.15);
}

/* Services */
.services-card {
  background: var(--white);
  border-radius: 19px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.services-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1.73rem;
}

.services-price {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

/* Team */
.team-card {
  text-align: center;
  padding: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-blue);
}

/* Reviews/Testimonials */
.reviews-card {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  margin-bottom: 2rem;
}

.reviews-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 21px;
  font-size: 4rem;
  color: var(--primary-blue);
  opacity: 0.3;
}

/* FAQ */
.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-question {
  background: var(--primary-blue);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 10px 10px 0 0;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 1.5rem;
  border-radius: 0 0 10px 10px;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 23px 40px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(69, 125, 234, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
  border: none;
  border-radius: 25px;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-purple) 100%);
}

/* Footer */
footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-section h5 {
  color: var(--primary-blue);
  margin-bottom: 1.66rem;
}

.footer-section a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-blue);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 13px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Process/Timeline */
.process-item {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.process-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.process-number {
  position: absolute;
  top: -15px;
  left: 2rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.24rem;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
}

.shadow-custom {
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Additional color utilities */
.text-purple {
  color: var(--primary-purple) !important;
}

.bg-purple {
  background-color: var(--primary-purple) !important;
}

.border-purple {
  border-color: var(--primary-purple) !important;
}

/* Price Plan Cards Enhancement */
.priceplan-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.priceplan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* FAQ Functionality Styles */
.faq-answer {
  display: none;
}

.faq-question.active {
  background: var(--dark-blue) !important;
}

.faq-question:hover {
  background: var(--dark-blue);
}

/* Counter Animation Styles */
.counter {
  font-weight: bold;
}

/* Service Cards Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Team Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Features Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Enhanced Button Styles */
.btn-primary, .btn-outline-primary {
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover, .btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(80, 128, 203, 0.30);
}

/* Form Validation Styles */
.is-invalid {
  border-color: #cd3831 !important;
  box-shadow: 0 0 0 0.2rem rgba(236, 41, 49, 0.25) !important;
}

.error-message {
  font-size: 0.94rem;
  margin-top: 0.40rem;
}

/* Testimonial Dots Styling */
.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  background: #efefef;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  margin: 0 8px;
}

.testimonial-dots .dot:hover {
  transform: scale(1.2);
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loaded {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
  :root {
    --fs-4xl: 2rem;
    --fs-3xl: 1.75rem;
    --section-padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .process-number {
    left: 1rem;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .process-item {
    padding: 1.5rem;
  }
} 


/* 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;
}

.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;
    }
}
