/* SaaS KPI Dashboard Template - Main Styles */
:root {
  /* Primary Color Palette - 5 colors + shades */
  --primary-blue: #2563eb;
  --primary-blue-light: #dbeafe;
  --primary-blue-dark: #1d4ed8;
  
  --primary-purple: #7c3aed;
  --primary-purple-light: #ede9fe;
  --primary-purple-dark: #6d28d9;
  
  --primary-green: #10b981;
  --primary-green-light: #d1fae5;
  --primary-green-dark: #059669;
  
  --primary-orange: #f59e0b;
  --primary-orange-light: #fef3c7;
  --primary-orange-dark: #d97706;
  
  --primary-gray: #6b7280;
  --primary-gray-light: #f9fafb;
  --primary-gray-dark: #374151;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
}

/* Global Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--primary-gray-dark);
}

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

h1, .h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--primary-gray-dark);
}

h2, .h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
}

h3, .h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
}

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

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

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-decorative-1 {
  background: var(--primary-blue);
  top: 10%;
  right: 10%;
}

.hero-decorative-2 {
  background: var(--primary-purple);
  bottom: 15%;
  left: 5%;
  width: 150px;
  height: 150px;
}

/* Service Cards */
.service-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

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

/* Feature Cards */
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Team Cards */
.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}

/* Pricing Cards */
.pricing-card {
  border: 2px solid var(--primary-gray-light);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

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

.pricing-card:hover {
  border-color: var(--primary-blue);
}

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

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

.footer-link:hover {
  color: white;
}

/* Contact Form */
.contact-form {
  background: var(--primary-gray-light);
  border-radius: 16px;
  padding: 2rem;
}

/* FAQ Cards */
.faq-card {
  border: 1px solid var(--primary-gray-light);
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Gallery Images */
.gallery-img {
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

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

/* Button Styles */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  font-weight: 500;
}

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

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

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

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

.section-padding-sm {
  padding: 3rem 0;
} 

.hero-section h1 {
    padding-top: 150px;
}


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