/* =======================
   Bootstrap 5 + SaaS KPI Dashboard Theme
   ======================= */

/* Color Palette - Exactly 5 Primary Colors */
:root {
  /* Primary Colors */
  --primary-blue: #1141f6;
  --primary-purple: #5b27db;
  --primary-teal: #087b81;
  --primary-orange: #f44620;
  --primary-pink: #d93096;
  
  /* Light Shades */
  --light-blue: #d8ebff;
  --light-purple: #f5f1ff;
  --light-teal: #d6fff1;
  --light-orange: #f2dfb5;
  --light-pink: #efd1e4;
  
  /* Dark Shades */
  --dark-blue: #16369b;
  --dark-purple: #4c1b75;
  --dark-teal: #154c40;
  --dark-orange: #a32e1d;
  --dark-pink: #8a1841;
  
  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #f7fafd;
  --gray-300: #e3e6ec;
  --gray-400: #8ba3b9;
  --gray-500: #56607f;
  --gray-600: #444d59;
  --gray-700: #3f475d;
  --gray-800: #17212e;
  --gray-900: #101224;
}

/* Conservative Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-700);
  font-size: 16px;
}

/* Conservative Heading Sizes */
h1 { font-size: 2rem; font-weight: 700; color: var(--gray-900); }
h2 { font-size: 1.75rem; font-weight: 600; color: var(--gray-800); }
h3 { font-size: 1.5rem; font-weight: 600; color: var(--gray-800); }
h4 { font-size: 1.25rem; font-weight: 500; color: var(--gray-700); }
h5 { font-size: 1.125rem; font-weight: 500; color: var(--gray-700); }
h6 { font-size: 1rem; font-weight: 500; color: var(--gray-700); }

/* Conservative Navbar Brand */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: var(--light-teal);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Services Cards */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-top: 1rem;
}

/* Features Section */
.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
}

/* Price Plan Cards */
.price-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  height: 100%;
}

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

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
}

/* Team Cards */
.team-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-200);
}

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

/* Review Cards */
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  position: relative;
}

.review-stars {
  color: var(--primary-orange);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Case Study Cards */
.case-study-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-3px);
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-purple);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Timeline Items */
.timeline-item {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--primary-teal);
  border-radius: 50%;
}

/* Career Cards */
.career-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s ease;
}

.career-card:hover {
  border-color: var(--primary-blue);
}

/* Core Info Grid */
.core-info-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.core-info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-pink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(51, 141, 239, 0.10);
}

.btn-primary {
  background: var(--primary-blue);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background: var(--dark-blue);
}

/* Blog Cards */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* FAQ Cards */
.faq-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Gallery */
.gallery img {
  border-radius: 12px;
  transition: transform 0.3s ease;
}

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

/* Footer - No Gradients, High Contrast Colors */
.footer {
  background: var(--dark-teal);
  color: var(--gray-100);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--light-teal);
  margin-bottom: 1.5rem;
}

.footer a {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--white);
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

/* Utilities */
.text-primary { color: var(--primary-blue); }
.text-secondary { color: var(--primary-purple); }
.bg-light-primary { background: var(--light-blue); }
.bg-light-secondary { background: var(--light-purple); }

/* Breadcrumbs */
.breadcrumb-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
} 

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


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

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

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
