/* AI-Curated Influencer Campaign Tool - Main Styles */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-purple: #9180e0;
  --primary-blue: #8bb1e0;
  --primary-pink: #fbb3d9;
  --primary-green: #92d0c0;
  --primary-orange: #ffcfb5;
  
  /* Light/Dark Shades */
  --primary-purple-light: #9c8edc;
  --primary-purple-dark: #7061c0;
  --primary-blue-light: #91b9cb;
  --primary-blue-dark: #5584bb;
  --primary-pink-light: #ffd8ea;
  --primary-pink-dark: #f58cc8;
  --primary-green-light: #dffdf0;
  --primary-green-dark: #7dcaab;
  --primary-orange-light: #ffe6ca;
  --primary-orange-dark: #efba82;
  
  /* Typography */
  --font-size-brand: 1.25rem;
  --font-size-h1: 2rem;
  --font-size-h2: 1.5rem;
  --font-size-h3: 1.25rem;
  --font-size-p: 1rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
}

/* Reset & Base */
* {
  box-sizing: border-box;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-purple);
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  border-radius: 9px;
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  top: 6px;
  color: white;
  text-decoration: none;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #393939;
}

/* Typography - Conservative Sizes */
.navbar-brand {
  font-size: var(--font-size-brand) !important;
  font-weight: 600;
  color: var(--primary-purple);
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  margin-bottom: 0.97rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
  margin-bottom: 0.61rem;
}

p {
  font-size: var(--font-size-p);
  margin-bottom: 1rem;
}

/* Sections */
section {
  padding: var(--section-padding);
}

.section-title {
  color: var(--primary-purple);
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-blue-dark);
  text-align: center;
  margin-bottom: 2rem;
}

.section-desc {
  color: #706f6e;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-purple-light), var(--primary-blue-light));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: var(--primary-pink-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: var(--primary-green-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  z-index: 2;
  position: relative;
    padding-top: 227px;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(11px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--primary-purple-dark);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple);
}

/* Cards */
.service-card,
.feature-card,
.price-card,
.team-card,
.review-card,
.case-card,
.process-card,
.timeline-card,
.career-card,
.core-card,
.blog-card,
.faq-card {
  background: white;
  border: none;
  border-radius: 17px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  overflow: hidden;
}

.service-card:hover,
.feature-card:hover,
.price-card:hover,
.team-card:hover,
.case-card:hover,
.process-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Service Cards */
.service-card .card-body {
  padding: 2rem;
}

.service-price {
  font-size: 1.52rem;
  font-weight: 700;
  color: var(--primary-purple);
}

/* Price Plan Cards */
.price-card.featured {
  border: 2px solid var(--primary-purple);
  transform: scale(1.05);
}

/* Team Cards */
.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid #cfe0eb;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(122, 114, 195, 0.25);
}

.form-control:invalid {
  border-color: #d1234d;
}

.form-control:valid {
  border-color: #1c9f2f;
}

.form-check-input:checked {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
}

.form-check-input:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(141, 122, 209, 0.25);
}

/* Enhanced form validation feedback */
.form-control.is-invalid {
  border-color: #f42a3e;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 1.4 1.4m0-1.4L5.8 6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-valid {
  border-color: #38b764;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.13-.13L6.6 2.43c.2-.2.5-.2.7 0 .18.18.18.48 0 .66L3.66 6.73a.48.48 0 0 1-.68 0L1.66 5.41c-.2-.2-.2-.5 0-.7.18-.18.48-.18.66 0z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
  width: 100%;
  margin-top: 0.47rem;
  font-size: 0.875em;
  color: #c33328;
  display: block;
}

.valid-feedback {
  width: 100%;
  margin-top: 0.49rem;
  font-size: 0.875em;
  color: #30a153;
  display: block;
}

/* Loading button state */
.btn-primary:disabled {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-purple-dark), var(--primary-blue-dark));
  box-shadow: 0 5px 15px rgba(161, 133, 226, 0.40);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline-primary {
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  color: white;
  transform: translateY(-2px);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 1.70rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.gallery-item:hover {
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--primary-purple), var(--primary-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 0.1;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-purple-dark), var(--primary-blue-dark));
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-orange-light);
  margin-bottom: 1.58rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--primary-purple-light);
}

.breadcrumb-image {
  width: 100%;
  max-width: 200px;
  height: auto;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Utility Classes */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-purple-light), var(--primary-pink-light));
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-green-light));
}

.text-primary-custom {
  color: var(--primary-purple);
}

.text-secondary-custom {
  color: var(--primary-blue-dark);
} 


/* 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;
    }
}
