:root {
  /* SaaS Contract Reminder Color Palette - 5 primary colors + shades */
  --primary-blue: #328ce7;
  --primary-blue-light: #8aaefa;
  --primary-blue-dark: #173ba9;
  
  --accent-green: #0ebb79;
  --accent-green-light: #7ce6af;
  --accent-green-dark: #046443;
  
  --warning-orange: #e59d00;
  --warning-orange-light: #ffb63a;
  --warning-orange-dark: #e28600;
  
  --neutral-gray: #535f6e;
  --neutral-gray-light: #f4f4f4;
  --neutral-gray-dark: #374559;
  
  --text-dark: #26323b;
  --text-dark-light: #445164;
  --text-dark-dark: #070c11;
  
  /* 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;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: 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: 100px;
}

/* 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(52, 149, 232, 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);
}

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

.faq-answer {
  color: var(--text-dark-light);
}

/* 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, 135, 227, 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-wrapper {
  background: #f8fafc;
  padding-top: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumb {
  background: transparent;
  padding: 15px 0;
}

.breadcrumb img {
  height: 30px;
  width: auto;
}

/* Inner pages content adjustments */
section {
  position: relative;
  overflow: visible;
  padding: 3rem 0;
}

.breadcrumb-wrapper + section {
  margin-top: 15px;
  padding-top: 0;
}

section:first-of-type {
  padding-top: 2rem;
}

/* FAQ Section - fix the card height and overflow issues */
#faq .faq-card {
  height: auto;
  overflow: visible;
  margin-bottom: 20px;
  padding: 15px 20px;
}

#faq h6 {
  font-weight: 600;
  margin-bottom: 10px;
}

#faq p {
  margin-bottom: 0;
}

/* Ensure the FAQ section doesn't overlap with content below */
#faq {
  margin-bottom: 20px;
  overflow: visible;
  padding-bottom: 30px;
}

/* 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 - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

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

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

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

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