/* Data Visualization Design Studio - Main Styles */

/* CSS Variables - Color Palette */
:root {
  /* Primary Colors - Pastel High Contrast */
  --primary-blue: #4A90E2;
  --primary-purple: #9B59B6;
  --primary-teal: #1ABC9C;
  --primary-orange: #F39C12;
  --primary-coral: #E74C3C;
  
  /* Light Shades */
  --light-blue: #EBF3FD;
  --light-purple: #F4EFFF;
  --light-teal: #E8F8F5;
  --light-orange: #FDF2E9;
  --light-coral: #FDEDEC;
  
  /* Dark Shades */
  --dark-blue: #2C5282;
  --dark-purple: #6B46C1;
  --dark-teal: #047857;
  --dark-orange: #D97706;
  --dark-coral: #B91C1C;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #6C757D;
  --dark-gray: #343A40;
  --black: #000000;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-max-width: 1200px;
}

/* Base Styles */
* {
  box-sizing: border-box;
  animation: none !important;
  transition: none !important;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

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

h2 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.75rem;
  color: var(--dark-purple);
}

h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.5rem;
  color: var(--dark-teal);
}

h4 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.5rem;
}

h5 {
  font-size: 1.1rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.25rem;
}

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

/* Header Styles */
.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: var(--font-weight-bold);
  color: var(--primary-blue);
}

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

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

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

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-alt {
  background-color: var(--light-gray);
}

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

.section-purple {
  background-color: var(--light-purple);
}

.section-teal {
  background-color: var(--light-teal);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-teal);
  opacity: 0.1;
  border-radius: 50%;
  top: 10%;
  right: 15%;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--primary-orange);
  opacity: 0.1;
  border-radius: 50%;
  bottom: 20%;
  left: 10%;
  z-index: 1;
}

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

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

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

.card-header {
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 12px 12px 0 0;
  padding: 1.5rem;
}

.card-body {
  padding: 2rem;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: var(--light-blue);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

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

/* Feature Items */
.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

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

/* Team Cards */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border: 4px solid var(--primary-blue);
}

/* Pricing Cards */
.pricing-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.05);
}

.pricing-price {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-coral);
  margin: 1rem 0;
}

.pricing-card.featured .pricing-price {
  color: var(--white);
}

/* Review Cards */
.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--primary-purple);
}

.review-author {
  font-weight: var(--font-weight-bold);
  color: var(--primary-purple);
  margin-top: 1rem;
}

/* Process Timeline */
.process-item {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-teal);
}

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

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  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);
}

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

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

/* FAQ Cards */
.faq-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--light-gray);
}

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

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

/* Gallery */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

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

.footer h5 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

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

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

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

/* Blog */
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

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

.blog-content {
  padding: 1.5rem;
}

/* Animations - DISABLED */
.sal-animate,
[data-sal],
[data-sal-delay],
[data-sal-duration],
[data-sal-easing] {
  transition: none !important;
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Desktop - Disable Horizontal Scroll */
@media (min-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }
}

/* Mobile - Disable All Animations */
@media (max-width: 767.98px) {
  /* Disable ALL animation and transition properties */
  *,
  *::before,
  *::after {
    animation: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
    transform: none !important;
  }
  
  /* Disable hover effects completely */
  .card:hover,
  .service-card:hover,
  .gallery-item:hover,
  .blog-card:hover,
  .btn-primary:hover,
  .team-card:hover,
  .pricing-card:hover,
  .navbar-nav .nav-link:hover,
  .social-link:hover {
    transform: none !important;
    box-shadow: inherit !important;
    background-color: inherit !important;
    color: inherit !important;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .sal-animate {
    transition: none !important;
  }
}

/* Utility Classes */
.text-primary-blue { color: var(--primary-blue); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-teal { color: var(--primary-teal); }
.text-primary-orange { color: var(--primary-orange); }
.text-primary-coral { color: var(--primary-coral); }

.bg-primary-blue { background-color: var(--primary-blue); }
.bg-primary-purple { background-color: var(--primary-purple); }
.bg-primary-teal { background-color: var(--primary-teal); }
.bg-primary-orange { background-color: var(--primary-orange); }
.bg-primary-coral { background-color: var(--primary-coral); }

.bg-light-blue { background-color: var(--light-blue); }
.bg-light-purple { background-color: var(--light-purple); }
.bg-light-teal { background-color: var(--light-teal); }
.bg-light-orange { background-color: var(--light-orange); }
.bg-light-coral { background-color: var(--light-coral); }


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

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