/* 
 * SaaS E-commerce KPI Dashboard Template - Main CSS
 * Built with Bootstrap 5 - NO OVERRIDES
 */

/* Color Palette Variables */
:root {
  --primary-color: #e8f4f8;      /* Light Blue */
  --secondary-color: #f0e6ff;    /* Light Purple */
  --accent-color: #fff2e6;       /* Light Orange */
  --success-color: #e8f5e8;      /* Light Green */
  --info-color: #ffe6f2;         /* Light Pink */
  
  /* Dark shades */
  --primary-dark: #4a90a4;       /* Dark Blue */
  --secondary-dark: #6b46c1;     /* Dark Purple */
  --accent-dark: #ea580c;        /* Dark Orange */
  --success-dark: #059669;       /* Dark Green */
  --info-dark: #e91e63;          /* Dark Pink */
  
  /* Light shades */
  --primary-light: #f0f9ff;      /* Very Light Blue */
  --secondary-light: #faf5ff;    /* Very Light Purple */
  --accent-light: #fffbeb;       /* Very Light Orange */
  --success-light: #f0fdf4;      /* Very Light Green */
  --info-light: #fdf2f8;         /* Very Light Pink */
}

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

/* Global Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
    overflow-x: hidden;
}

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

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  padding: 2rem 0;
    padding-top: 150px;
}

.hero-image {
  text-align: center;
}

.hero-decorative {
  position: relative;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  border-radius: 50%;
  top: -20px;
  right: -20px;
  z-index: -1;
}

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

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

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

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

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: white;
}

.about-feature {
  padding: 1.5rem;
  background: var(--success-light);
  border-radius: 8px;
  margin-bottom: 1rem;
}

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

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

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-dark);
}

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

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

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary-dark);
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background: white;
}

.review-card {
  background: var(--success-light);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

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

.case-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

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

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

.timeline-item {
  background: var(--info-light);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--info-dark);
}

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

.career-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}

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

.info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

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

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

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

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

.blog-card {
  background: var(--info-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.blog-content {
  padding: 2rem;
}

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

.faq-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

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

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

.gallery-item {
  background: var(--primary-color);
  height: 250px;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.2rem;
}

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

.footer a {
  color: var(--primary-light);
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

/* Utility Classes */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

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

.btn-custom:hover {
  background: var(--accent-color);
  color: var(--accent-dark);
  transform: translateY(-2px);
}

/* Breadcrumb Styles */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--primary-light);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 4px;
  display: inline-block;
} 


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

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

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

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

.x-link i {
    display: none;
}

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