/* AI Brand Voice Analysis - Main CSS */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-color: #6366f1;
  --primary-light: #a5b4fc;
  --primary-dark: #4338ca;
  
  --secondary-color: #10b981;
  --secondary-light: #6ee7b7;
  --secondary-dark: #059669;
  
  --accent-color: #f59e0b;
  --accent-light: #fbbf24;
  --accent-dark: #d97706;
  
  --info-color: #06b6d4;
  --info-light: #67e8f9;
  --info-dark: #0891b2;
  
  --neutral-color: #6b7280;
  --neutral-light: #d1d5db;
  --neutral-dark: #374151;
  
  /* Additional shades */
  --light-bg: #f8fafc;
  --white: #ffffff;
  --dark-bg: #1f2937;
  --text-dark: #111827;
  --text-muted: #6b7280;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 16px;
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

h1, .display-5 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2, .h3 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
}

h3, .h4 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

h4, .h5 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

h5, .h6 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

p, .lead {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.small {
  font-size: 0.875rem;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

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

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

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

/* Header Styles */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.sticky-top {
  backdrop-filter: blur(10px);
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

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

.py-5 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Card Styles */
.card {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-img-top {
  border-radius: 12px 12px 0 0;
  height: 200px;
  object-fit: cover;
}

/* Feature Icons */
.feature-icon,
.info-icon,
.resource-icon,
.download-icon,
.support-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: 50%;
  margin: 0 auto;
}

/* Process Numbers */
.process-number,
.practice-number,
.timeline-year {
  font-size: 1.25rem;
  font-weight: 700;
}

/* Team Photos */
.team-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

/* Testimonial Cards */
.testimonial-card {
  background-color: var(--white);
  border-left: 4px solid var(--primary-color);
}

/* Gallery Grid */
#gallery img {
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

/* Contact Form */
.form-control {
  border-radius: 8px;
  border: 2px solid var(--neutral-light);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.form-select {
  border-radius: 8px;
  border: 2px solid var(--neutral-light);
  padding: 0.75rem 1rem;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
#footer {
  background-color: #0f172a;
  color: #f1f5f9;
}

#footer h5,
#footer h6 {
  color: #ffffff;
  font-weight: 600;
}

#footer a {
  color: #e2e8f0;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: #a5b4fc;
  text-decoration: underline;
}

#footer .text-muted {
  color: #cbd5e1 !important;
}

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

.text-secondary {
  color: var(--secondary-color);
}

.text-muted {
  color: var(--text-muted);
}

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

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

.bg-dark {
  background-color: var(--dark-bg);
}

/* Shadow Utilities */
.shadow-sm {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Border Radius */
.rounded-3 {
  border-radius: 12px;
}

/* Integration Items */
.integration-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Download Items */
.download-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Support Items */
.support-item {
  padding: 1.5rem;
  border-radius: 8px;
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.support-item:hover {
  transform: translateY(-2px);
}

/* Responsive Grid Helper */
.col-lg-2-4 {
  flex: 0 0 auto;
  width: 20%;
}

@media (max-width: 991.98px) {
  .col-lg-2-4 {
    width: 50%;
  }
}

@media (max-width: 575.98px) {
  .col-lg-2-4 {
    width: 100%;
  }
}

/* Animation Respect */
@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;
  }
} 


/* 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);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

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