/* AI Competitor Tracking Tool - Main Styles */

/* Bootstrap 5 Integration */
@import 'https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css';
@import 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css';

/* Color Palette - Pastel High-Contrast */
:root {
  --primary-blue: #4A90E2;
  --primary-purple: #8B5DFF;
  --primary-teal: #50C9C3;
  --primary-coral: #FF6B6B;
  --primary-yellow: #FFD93D;
  
  /* Light shades */
  --light-blue: #E6F3FF;
  --light-purple: #F0EBFF;
  --light-teal: #E6FDFC;
  --light-coral: #FFE9E9;
  --light-yellow: #FFF9E6;
  
  /* Dark shades */
  --dark-blue: #2C5AA0;
  --dark-purple: #5D3FBB;
  --dark-teal: #3A9A96;
  --dark-coral: #E55555;
  --dark-yellow: #E6C235;
  
  /* Additional colors */
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --white: #FFFFFF;
  --black: #000000;
}

/* Global Typography - Conservative Sizes */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 16px;
    overflow-x: hidden;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

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

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

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

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

/* Conservative navbar-brand size */
.navbar-brand {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Prefers-reduced-motion support */
@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;
  }
}

/* Header Styles */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--primary-blue);
}

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

.navbar-nav .nav-link:hover {
  color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-teal) 100%);
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

.hero-content {
  z-index: 2;
    padding-top: 175px;
}

.hero-title {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: var(--primary-blue);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.hero-desc {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.hero-shape-1 {
  width: 80px;
  height: 80px;
  background: var(--primary-purple);
  top: 10%;
  right: 15%;
}

.hero-shape-2 {
  width: 120px;
  height: 120px;
  background: var(--primary-coral);
  bottom: 20%;
  left: 10%;
}

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

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* About Section */
.about-section {
  background-color: var(--white);
}

.feature-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--light-teal);
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

.feature-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.feature-desc {
  color: var(--text-light);
  line-height: 1.6;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-coral) 100%);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image i {
  font-size: 2rem;
  color: var(--primary-blue);
}

.service-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-teal);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Features Section */
.features-section {
  background-color: var(--white);
}

/* Price Plan Section */
.priceplan-section {
  background: linear-gradient(135deg, var(--light-yellow) 0%, var(--light-blue) 100%);
}

.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
  border: 3px solid var(--primary-purple);
  transform: scale(1.05);
}

.price-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-features li {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.price-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-purple);
}

/* Team Section */
.team-section {
  background-color: var(--white);
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: var(--light-teal);
  background-size: cover;
  background-position: center;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-teal);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, var(--light-coral) 0%, var(--light-yellow) 100%);
}

.review-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-text {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.review-author {
  font-weight: 600;
  color: var(--text-dark);
}

.review-stars {
  color: var(--primary-yellow);
  margin-bottom: 1rem;
}

/* Case Study Section */
.casestudy-section {
  background-color: var(--white);
}

.casestudy-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--primary-blue);
}

.casestudy-card:hover {
  transform: translateY(-5px);
}

.casestudy-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.casestudy-desc {
  color: var(--text-light);
  line-height: 1.6;
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, var(--light-teal) 0%, var(--light-purple) 100%);
}

.process-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1.5rem 0 1rem;
}

.process-desc {
  color: var(--text-light);
  line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--white);
}

.timeline-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-coral);
  transition: transform 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.timeline-desc {
  color: var(--text-light);
  line-height: 1.6;
}

/* Career Section */
.career-section {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-coral) 100%);
}

.career-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
}

.career-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.career-role {
  color: var(--primary-blue);
  font-weight: 500;
  margin-bottom: 1rem;
}

.career-desc {
  color: var(--text-light);
  line-height: 1.6;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--white);
}

.coreinfo-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.coreinfo-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.coreinfo-desc {
  color: var(--text-light);
  line-height: 1.6;
}

/* Blog Section */
.blog-section {
  background: linear-gradient(135deg, var(--light-yellow) 0%, var(--light-teal) 100%);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.blog-content {
  padding: 2rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--dark-blue);
}

/* FAQ Section */
.faq-section {
  background-color: var(--white);
}

.faq-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-yellow);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-blue) 100%);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 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 Section */
.contact-section {
  background-color: var(--white);
}

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

.form-control {
  border: 2px solid var(--light-teal);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(80, 201, 195, 0.25);
}

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

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

.contact-info {
  background: var(--light-blue);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
}

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

.contact-info-item i {
  color: var(--primary-blue);
  margin-right: 1rem;
  width: 20px;
}

.contact-info-item span {
  color: var(--text-dark);
  font-weight: 500;
}

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

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

.footer p, .footer a {
  color: #BDC3C7;
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid #34495E;
  padding-top: 1.5rem;
  margin-top: 2rem;
}

/* Buttons */
.btn {
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

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

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

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

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}



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