/* AI-Powered Code Review Service - Main Styles */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-blue: #5d86da;
  --primary-purple: #8748ab;
  --primary-green: #47de74;
  --primary-orange: #f5901a;
  --primary-red: #df583a;
  
  /* Light Shades */
  --light-blue: #e5effc;
  --light-purple: #f4edf7;
  --light-green: #e6fff2;
  --light-orange: #fff3cf;
  --light-red: #ffe6e8;
  
  /* Dark Shades */
  --dark-blue: #304b94;
  --dark-purple: #8a4394;
  --dark-green: #2b8e57;
  --dark-orange: #bdb31e;
  --dark-red: #ac2d33;
  
  /* Neutral Colors */
  --text-dark: #223442;
  --text-light: #83898a;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --border-light: #f5f5f5;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.5rem;
  --font-size-h2: 2rem;
  --font-size-h1: 2.5rem;
}

/* Base Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: var(--font-size-base);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

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

.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 700;
  color: var(--primary-blue);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: var(--light-green);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(15deg);
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 250px;
}

/* Services Section */
.services-section {
  background: var(--bg-light);
  padding: 5rem 0;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-blue);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-green);
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

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

/* About Section */
.about-section {
  padding: 5rem 0;
  background: var(--light-blue);
}

.about-feature {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-blue);
}

/* Price Plan Section */
.priceplan-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.price-card {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-10px);
}

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

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.team-member {
  text-align: center;
  padding: 1rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-blue);
  margin-bottom: 1.5rem;
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background: var(--light-green);
}

.review-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Case Study Section */
.casestudy-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.case-card {
  background: var(--light-purple);
  padding: 2.5rem;
  border-radius: 12px;
  height: 100%;
  border: 1px solid var(--border-light);
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: var(--light-orange);
}

.process-step {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--border-light);
}

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

/* Timeline Section */
.timeline-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.timeline-item {
  background: var(--light-red);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-red);
}

/* Career Section */
.career-section {
  padding: 5rem 0;
  background: var(--light-purple);
}

.career-item {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  height: 100%;
}

/* Core Info Section */
.coreinfo-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.coreinfo-item {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  height: 100%;
  text-align: center;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: var(--light-blue);
}

.contact-form {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-info {
  background: var(--primary-green);
  color: white;
  padding: 3rem;
  border-radius: 12px;
}

.contact-info-item {
  margin-bottom: 2rem;
}

.contact-info-item i {
  margin-right: 1rem;
  color: var(--light-blue);
}

/* Blog Section */
.blog-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: var(--light-green);
}

.faq-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--light-blue);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-answer {
  padding: 1.5rem;
  margin: 0;
  border-top: 1px solid var(--border-light);
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.gallery-item {
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer p, .footer a {
  color: var(--text-light);
}

.footer a:hover {
  color: white;
  text-decoration: none;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

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

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

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

/* Form Controls */
.form-control {
  border: 2px solid var(--border-light);
  border-radius: 8px;
  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(74, 165, 236, 0.25);
}

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

/* Text Utilities */
.text-primary-blue {
  color: var(--primary-blue);
}

.text-primary-purple {
  color: var(--primary-purple);
}

.text-primary-green {
  color: var(--primary-green);
}

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

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

/* Animation Compatibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .service-card,
  .price-card,
  .contact-form {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
} 


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

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

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

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
