/* Data-Driven Product Review Platform - Main Styles */

/* Color Palette - Pastel High-Contrast */
:root {
  /* Primary Colors */
  --primary-blue: #4A90E2;
  --primary-green: #7ED321;
  --primary-purple: #BD10E0;
  --primary-orange: #F5A623;
  --primary-teal: #50E3C2;
  
  /* Light Shades */
  --light-blue: #E3F2FD;
  --light-green: #F1F8E9;
  --light-purple: #F3E5F5;
  --light-orange: #FFF3E0;
  --light-teal: #E0F2F1;
  
  /* Dark Shades */
  --dark-blue: #1565C0;
  --dark-green: #388E3C;
  --dark-purple: #7B1FA2;
  --dark-orange: #E65100;
  --dark-teal: #00695C;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #6C757D;
  --dark-gray: #343A40;
  --black: #212529;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  margin: 0;
  padding: 0;
    overflow-x: hidden;
}

/* Conservative Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-gray);
  margin-bottom: 0.625rem;
}

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

/* Header Styles */
#header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
}

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

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-gray);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

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

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

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
}

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

.hero-desc {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

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

.hero-shape-1 {
  width: 200px;
  height: 200px;
  background-color: var(--primary-blue);
  top: 10%;
  right: 10%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--primary-teal);
  bottom: 20%;
  left: 5%;
}

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

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

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

.section-desc {
  text-align: center;
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
#about {
  background-color: var(--light-gray);
}

.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Services Section */
#services {
  background-color: var(--white);
}

.service-card {
  background: var(--white);
  border: 2px solid var(--light-blue);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 1rem;
}

/* Features Section */
#features {
  background-color: var(--light-teal);
}

.feature-item {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-teal);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
#priceplan {
  background-color: var(--white);
}

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

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

.pricing-card.featured {
  border-color: var(--primary-orange);
  background: var(--light-orange);
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-purple);
  margin: 1.5rem 0;
}

/* Team Section */
#team {
  background-color: var(--light-gray);
}

.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

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

/* Reviews Section */
#reviews {
  background-color: var(--white);
}

.review-card {
  background: var(--light-blue);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.review-author {
  font-weight: 600;
  color: var(--dark-blue);
  margin-top: 1rem;
}

.review-text {
  font-style: italic;
  color: var(--dark-gray);
  position: relative;
}

.review-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-blue);
  position: absolute;
  top: -20px;
  left: -10px;
}

/* Case Studies Section */
#casestudy {
  background-color: var(--light-green);
}

.case-study-item {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Process Section */
#process {
  background-color: var(--white);
}

.process-step {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.process-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-orange);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.process-container {
  counter-reset: step-counter;
}

/* Timeline Section */
#timeline {
  background-color: var(--light-purple);
}

.timeline-item {
  background: var(--white);
  border-left: 4px solid var(--primary-purple);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 0 12px 12px 0;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 2rem;
  width: 12px;
  height: 12px;
  background: var(--primary-purple);
  border-radius: 50%;
}

/* Career Section */
#career {
  background-color: var(--white);
}

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

/* Core Info Section */
#coreinfo {
  background-color: var(--light-gray);
}

.coreinfo-item {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.coreinfo-item i {
  font-size: 2rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

/* Contact Section */
#contacts {
  background-color: var(--white);
}

.contact-form {
  background: var(--light-blue);
  border-radius: 15px;
  padding: 3rem;
}

.contact-info {
  background: var(--light-teal);
  border-radius: 15px;
  padding: 3rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary-teal);
  margin-right: 1rem;
  width: 30px;
}

/* Blog Section */
#blog {
  background-color: var(--light-gray);
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

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

.faq-item {
  background: var(--light-purple);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

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

.faq-answer {
  color: var(--gray);
}

/* Gallery Section */
#gallery {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

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

.footer-content {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 2rem;
  text-align: center;
}

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

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

.btn-secondary {
  background-color: var(--primary-teal);
  border-color: var(--primary-teal);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 25px;
}

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

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

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

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

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

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

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

/* SAL.js Animation Styles - Currently Disabled */
/*
[data-sal] {
  transition-duration: 0.5s;
  transition-property: opacity, transform;
}

[data-sal][data-sal-duration="200"] {
  transition-duration: 0.2s;
}

[data-sal][data-sal-duration="500"] {
  transition-duration: 0.5s;
}

[data-sal][data-sal-duration="1000"] {
  transition-duration: 1s;
}

[data-sal][data-sal-easing="linear"] {
  transition-timing-function: linear;
}

[data-sal][data-sal-easing="ease"] {
  transition-timing-function: ease;
}

[data-sal][data-sal-easing="ease-in"] {
  transition-timing-function: ease-in;
}

[data-sal][data-sal-easing="ease-out"] {
  transition-timing-function: ease-out;
}

[data-sal][data-sal-easing="ease-in-out"] {
  transition-timing-function: ease-in-out;
}

.sal-animate {}
*/



/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

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

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

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

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

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

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

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

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
