:root {
  /* SaaS Contract Reminder Color Palette - 5 primary colors + shades */
  --primary-blue: #2b6df6;
  --primary-blue-light: #9dc9ff;
  --primary-blue-dark: #2f40c8;
  
  --accent-green: #02b88d;
  --accent-green-light: #81efd5;
  --accent-green-dark: #037a61;
  
  --warning-orange: #fa9b00;
  --warning-orange-light: #fed651;
  --warning-orange-dark: #dd6303;
  
  --neutral-gray: #565b68;
  --neutral-gray-light: #d6d9e5;
  --neutral-gray-dark: #343c54;
  
  --text-dark: #1f2835;
  --text-dark-light: #4f5f6f;
  --text-dark-dark: #06090e;
  
  /* Conservative Typography */
  --font-size-brand: 1.5rem;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
  --font-size-p: 1rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --element-spacing: 2rem;
}

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

/* Disable all animations sitewide */
* {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}

/* Make all elements with data-sal attributes visible */
[data-sal],
[data-sal-delay],
[data-sal-duration],
[data-sal-easing] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Conservative Typography */
.navbar-brand {
  font-size: var(--font-size-brand);
  font-weight: 600;
  color: var(--primary-blue);
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

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

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

/* Header Styles */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="3" fill="white" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="white" opacity="0.1"/></svg>');
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(360deg); }
}

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

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

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  border-color: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(61, 126, 222, 0.30);
}

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

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

/* Card Styles */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

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

.card-body {
  padding: 2rem;
}

/* Services Section */
.services-card {
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.services-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-8px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

/* Price Plan Cards */
.price-card {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
}

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

.price-header {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
  color: white;
  padding: 2rem;
  text-align: center;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}

.price-period {
  opacity: 0.8;
  font-size: 1rem;
}

/* Team Section */
.team-card {
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

/* Reviews Section */
.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  border-left: 4px solid var(--primary-blue);
}

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

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

/* FAQ Section */
.faq-card {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-blue);
  height: auto; /* Allow height to adjust to content */
  overflow: visible; /* Prevent content from being cut off */
}

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

.faq-answer {
  color: var(--text-dark-light);
  overflow: visible; /* Allow text to be fully visible */
}

/* Fix faq section to not overlap content below */
#faq {
  margin-bottom: 2rem; /* Add margin to prevent overlap */
  padding-bottom: 2rem;
  overflow: visible;
}

#faq .card {
  height: auto; /* Override height 100% from general card styles */
  min-height: 0; /* Allow cards to shrink to fit content */
}

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

.form-control {
  border-radius: 8px;
  border: 2px solid var(--neutral-gray-light);
  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(61, 149, 255, 0.25);
}

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

footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.footer-divider {
  border-color: var(--neutral-gray-dark);
  margin: 2rem 0 1rem;
}

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

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

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

/* Process Section */
.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

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

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

/* Blog Section */
.blog-card {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.blog-image {
  height: 200px;
  object-fit: cover;
}

/* Timeline Section */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

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

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--neutral-gray-light);
}

.timeline-item:last-child::after {
  display: none;
}

/* Career Section */
.career-card {
  border-radius: 12px;
  border: 2px solid var(--neutral-gray-light);
  transition: border-color 0.3s ease;
}

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

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

.bg-light-custom {
  background-color: #f8fafc;
}

.section-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
  border: none;
  border-radius: 2px;
  margin: 2rem auto;
  width: 60px;
} 


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