/* ==========================================
   REMOTE COWORKER RECOGNITION BADGES SAAS
   Main CSS - Bootstrap 5 Compatible
   ========================================== */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-blue: #4ba6ea;
  --primary-green: #7ee737;
  --primary-purple: #921fe6;
  --primary-orange: #f37f16;
  --primary-pink: #b800f9;
  
  /* Light Shades */
  --light-blue: #e9f6ff;
  --light-green: #f5fff4;
  --light-purple: #fcf4ff;
  --light-orange: #ffeace;
  --light-pink: #ffe0eb;
  
  /* Dark Shades */
  --dark-blue: #216fbc;
  --dark-green: #3e8f37;
  --dark-purple: #611aa6;
  --dark-orange: #fd3300;
  --dark-pink: #700b42;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-h1: 2rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-brand: 1.25rem;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-max-width: 1200px;
}

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

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

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

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

/* Section Styling */
.section {
  padding: var(--section-padding);
}

.section-alt {
  background-color: #f8f9fa;
}

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

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-decoration-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-decoration-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

/* Services Cards */
.service-card {
  background: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Team Cards */
.team-card {
  background: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 2rem 1.5rem;
}

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

/* Review Cards - Static Bootstrap Cards */
.review-card {
  background: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  height: 100%;
  margin-bottom: 2rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-blue);
}

/* FAQ Cards - Static Bootstrap Cards */
.faq-card {
  background: white;
  border: 1px solid #e7f3ff;
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1.5rem;
}

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

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

/* Price Plan Cards */
.price-card {
  background: white;
  border: 2px solid transparent;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #d1d1d1;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(77, 132, 227, 0.25);
}

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

.btn-primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 500;
}

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

/* Footer */
.footer {
  background-color: #2c3a49;
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

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

.footer a:hover {
  color: white;
}

/* Gallery */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

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

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

/* Process/Timeline Items */
.process-item {
  background: white;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.process-number {
  position: absolute;
  top: -15px;
  left: 2rem;
  background: var(--primary-blue);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-decoration-1,
  .hero-decoration-2 {
    animation: none;
  }
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-blue);
}

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

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

/* Image Responsiveness */
.img-responsive {
  max-width: 100%;
  height: auto;
}

/* Icon Styling */
.fas, .far, .fab {
  margin-right: 0.5rem;
}

/* Custom spacing */
.py-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mb-section {
  margin-bottom: 5rem;
} 

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


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
