/* Resume Writing Services Template - Main CSS */

:root {
  /* Primary Color Palette */
  --primary-blue: #225cd8;
  --primary-purple: #8225e0;
  --primary-teal: #129290;
  --primary-orange: #f57911;
  --primary-rose: #da3144;
  
  /* Light shades */
  --light-blue: #e5f1ff;
  --light-purple: #dfdef2;
  --light-teal: #ceede6;
  --light-orange: #f2c19d;
  --light-rose: #e7d5d6;
  
  /* Dark shades */
  --dark-blue: #1a4fa9;
  --dark-purple: #6a1ab0;
  --dark-teal: #0c6d6f;
  --dark-orange: #ba2206;
  --dark-rose: #a91e33;
  
  /* Neutral colors */
  --text-dark: #2d3c4b;
  --text-light: #6e7684;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #f2f2f2;
  
  /* Conservative font sizes */
  --font-size-base: 16px;
  --font-size-sm: 11px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 25px;
  --font-size-3xl: 28px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Styles */
.navbar-brand {
  font-size: var(--font-size-lg) !important;
  font-weight: 600;
  color: var(--primary-blue) !important;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
}

/* Conservative heading sizes */
h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: 1.20rem;
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  margin-bottom: 1.07rem;
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 0.86rem;
}

h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.78rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1.20rem;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../BEF_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: var(--white);
  margin-bottom: 1.74rem;
}

.hero-section p {
  color: var(--white);
  opacity: 0.9;
  font-size: var(--font-size-lg);
}

/* Decorative shapes */
.hero-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.07rem;
}

.section-subtitle {
  color: var(--primary-blue);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.67rem;
}

/* Services Section */
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid var(--gray-200);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 1.74rem;
  border-radius: 8px;
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-blue);
  margin-top: 1.21rem;
}

/* Features Section */
.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  font-size: 3.08rem;
  color: var(--primary-teal);
  margin-bottom: 1.20rem;
}

/* Price Plans */
.price-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 2px solid var(--gray-200);
  transition: border-color 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-blue);
}

.price-card.featured {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.price-amount {
  font-size: 3.08rem;
  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;
  border-bottom: 1px solid var(--gray-100);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-card {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  border: 4px solid var(--light-blue);
}

/* Reviews Section */
.review-card {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border-left: 4px solid var(--primary-rose);
}

.review-stars {
  color: var(--primary-orange);
  font-size: 1.36rem;
  margin-bottom: 1.20rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-blue);
  margin-top: 1.21rem;
}

/* Case Studies */
.case-study-card {
  background: linear-gradient(135deg, var(--light-purple), var(--light-teal));
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-lg);
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  border-left: 6px solid var(--primary-blue);
  padding-left: 2rem;
  margin-bottom: 2.17rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--primary-blue);
  border-radius: 50%;
  position: absolute;
  left: -7.5px;
  top: 0;
}

/* Contact Form */
.contact-form {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 2.5rem;
}

.form-control {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(50, 95, 215, 0.10);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--dark-blue), var(--dark-purple));
}

/* FAQ Section */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  margin-bottom: 1.20rem;
  overflow: hidden;
}

.faq-question {
  background: var(--gray-50);
  padding: 1.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
}

.faq-question:hover {
  background: var(--light-blue);
}

.faq-answer {
  padding: 1.25rem;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery */
.gallery-item {
  margin-bottom: 1.74rem;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Blog Section */
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--white);
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.20rem;
}

/* Breadcrumbs */
.breadcrumb-nav {
  background: var(--gray-50);
  padding: 1rem 0;
}

.breadcrumb-nav img {
  height: 24px;
  width: auto;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-orange));
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .hero-section {
  padding-top: 50px;
    min-height: 80vh;
    text-align: center;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .hero-shape {
    display: none;
  }
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
