/* ====================================
   MAIN CSS - Remote UX Audit Firm
   Bootstrap 5 Based - NO OVERRIDES
   ==================================== */

/* Color Palette - Pastel High-Contrast */
:root {
  --primary-color: #6a63f0;
  --primary-light: #9daffb;
  --primary-dark: #4334db;
  
  --secondary-color: #ffa706;
  --secondary-light: #fdbe25;
  --secondary-dark: #c07700;
  
  --accent-color: #19a88d;
  --accent-light: #2bc196;
  --accent-dark: #089270;
  
  --neutral-color: #6f7684;
  --neutral-light: #e8e9ea;
  --neutral-dark: #2e3845;
  
  --info-color: #2869ef;
  --info-light: #a0c8f1;
  --info-dark: #1760e3;
  
  --bg-light: #f8fafc;
  --bg-dark: #152233;
  --text-light: #596c7e;
  --text-dark: #0b111d;
}

/* Conservative Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 16px;
}

/* Conservative heading sizes */
h1 { font-size: 2.31rem; font-weight: 600; }
h2 { font-size: 2.00rem; font-weight: 600; }
h3 { font-size: 1.58rem; font-weight: 600; }
h4 { font-size: 1.37rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

/* Conservative navbar brand size */
.navbar-brand {
  font-size: 1.59rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Paragraph conservative sizing */
p {
  font-size: 1rem;
  margin-bottom: 1.74rem;
  color: var(--text-light);
}

/* Hero Section - Fullscreen */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(113, 127, 228, 0.10) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(180deg); }
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  opacity: 0.1;
  animation: float 15s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 17px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(84, 104, 228, 0.10);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card .card-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-radius: 15px 15px 0 0;
  padding: 1.5rem;
  border: none;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.66rem;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 11px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

/* Review Cards */
.review-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--accent-color);
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.69rem;
}

.review-text {
  font-style: italic;
  color: var(--text-light);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.55rem;
  border: 1px solid rgba(107, 114, 255, 0.10);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.7;
}

/* Gallery */
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.form-control {
  border-radius: 15px;
  border: 2px solid rgba(113, 122, 231, 0.10);
  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(117, 97, 239, 0.25);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  border-radius: 13px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 20px rgba(119, 103, 247, 0.30);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  border: none;
  border-radius: 12px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(224, 169, 0, 0.30);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--neutral-dark), var(--bg-dark));
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--neutral-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-light);
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
  
  .hero-section::before,
  .hero-shape {
    animation: none;
  }
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-color);
}

.text-secondary-custom {
  color: var(--secondary-color);
}

.text-accent-custom {
  color: var(--accent-color);
}

.bg-primary-custom {
  background: var(--primary-color);
}

.bg-light-custom {
  background: var(--bg-light);
}

.section-title {
  font-size: 2.62rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.40rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.section-description {
  font-size: 1.16rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card .card-body {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.39rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--text-light);
  font-size: 1.06rem;
  line-height: 1.6;
}

/* Process Steps */
.process-step {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  height: 100%;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.31rem;
}

.process-step:nth-child(1)::before { content: '1'; }
.process-step:nth-child(2)::before { content: '2'; }
.process-step:nth-child(3)::before { content: '3'; }
.process-step:nth-child(4)::before { content: '4'; }
.process-step:nth-child(5)::before { content: '5'; }

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item {
  font-size: 0.94rem;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
} 

.hero-section h1 {
    padding-top: 225px;
}


/* 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;
    }
}
