/* Corporate Enterprise Design - Technology/Software Development */
/* Color Scheme: Navy #0f172a, Blue #3b82f6, Gray #6b7280, Light Gray #f8f9fa */

:root {
  --navy: #1a2335;
  --primary: #2563eb;
  --primary-light: #87ceeb;
  --gray: #4f5154;
  --light-gray: #c7c5b8;
  --bg-light: #f0f0f0;
  --border-color: #d3d3d3;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1f2937;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.text-navy {
  color: var(--navy) !important;
}

.text-light-gray {
  color: var(--light-gray) !important;
}

.bg-navy {
  background-color: var(--navy) !important;
}

.bg-primary-light {
  background-color: var(--primary-light) !important;
}

/* Buttons */
.btn-navy {
  background-color: var(--navy);
  border-color: var(--navy);
  color: #fff;
  padding: 14px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-navy:hover {
  background-color: #1e293b;
  border-color: #1e293b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 9px rgba(15, 23, 42, 0.2);
}

.btn-outline-navy {
  background-color: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 11px 27px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-outline-navy:hover {
  background-color: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

/* Logo */
.logo-img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

/* Header/Navigation */
.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  background-color: #fff !important;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-link {
  font-weight: 500;
  color: var(--gray) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.dropdown-menu {
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 4px;
}

.dropdown-item {
  padding: 0.75rem 1.25rem;
  transition: background-color 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  padding: 4rem 0;
}

.hero-content {
  padding-right: 2rem;
}

.hero-image img {
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.benefits-list li {
  font-size: 1rem;
  color: var(--gray);
}

.trust-badges {
  border-top: 1px solid var(--border-color);
}

.badge-item {
  display: flex;
  align-items: center;
}

/* Cards */
.card {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.feature-card,
.service-card,
.testimonial-card,
.team-card,
.blog-card,
.case-study-card,
.pricing-card {
  transition: all 0.3s ease;
}

.feature-icon,
.service-icon {
  width: 61px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%);
}

.stat-item {
  padding: 1rem;
}

.stat-icon {
  opacity: 0.9;
}

/* Testimonials */
.testimonial-card .stars {
  font-size: 0.875rem;
}

.testimonial-card img {
  object-fit: cover;
}

/* Team */
.team-card img {
  object-fit: cover;
}

.team-social a {
  display: inline-block;
  width: 31px;
  height: 33px;
  line-height: 29px;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

/* Pricing */
.pricing-card {
  position: relative;
}

.pricing-price h2 {
  font-size: 2.5rem;
}

.pricing-card .card-body ul li {
  padding: 0.5rem 0;
}

/* Integration Logos */
.integration-logo {
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 102px;
}

.integration-logo:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%);
}

/* FAQ Accordion */
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  color: var(--navy);
  background-color: #fff;
  padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--bg-light);
  color: var(--primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--border-color);
}

.accordion-body {
  padding: 1.25rem;
  color: var(--gray);
}

/* Process Steps */
.process-step {
  padding: 1rem;
}

.process-number {
  width: 79px;
  height: 80px;
  font-size: 2rem;
  box-shadow: 0 4px 11px rgba(59, 130, 246, 0.2);
}

/* Footer */
.footer {
  background-color: var(--navy);
  margin-top: 4rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
  color: #fff;
}

.footer-contact li {
  color: var(--light-gray);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 38px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary);
  color: #fff;
}

/* Contact Form */
.contact-form .form-control,
.contact-form .form-select {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.15);
}

.contact-icon {
  width: 49px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blog */
.blog-card .badge {
  font-weight: 500;
}

.blog-card img,
.case-study-card img,
.article-image img {
  object-fit: cover;
  width: 100%;
}

/* Service Pages */
.service-hero,
.page-hero {
  background-color: var(--bg-light);
}

.service-features .card-body,
.case-metrics {
  background-color: #fff;
}

/* Legal Pages */
.legal-page {
  padding: 3rem 0;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

/* Utility Classes */
.border {
  border: 1px solid var(--border-color) !important;
}

.shadow-sm {
  box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
}

.rounded {
  border-radius: 4px !important;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .process-step {
    margin-bottom: 2rem;
  }

  .navbar-collapse {
    padding: 1rem 0;
  }
}

@media (max-width: 767px) {
  .display-4 {
    font-size: 2rem;
  }

  .hero-section {
    padding: 2rem 0;
  }

  .pricing-price h2 {
    font-size: 2rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card,
.feature-card,
.service-card {
  animation: fadeIn 0.5s ease-out;
}

/* Ensure pseudo-elements don't block clicks */
.card::before,
.card::after,
.btn::before,
.btn::after,
.feature-icon::before,
.feature-icon::after {
  pointer-events: none;
}

/* Badge Styles */
.badge {
  border-radius: 4px;
  padding: 0.375rem 0.75rem;
  font-weight: 500;
}

.bg-primary-light {
  background-color: var(--primary-light) !important;
}

.text-primary {
  color: var(--primary) !important;
}

/* Table Styles */
.table {
  border-collapse: separate;
  border-spacing: 0;
}

.table-bordered {
  border: 1px solid var(--border-color);
}

.table-bordered th,
.table-bordered td {
  border: 1px solid var(--border-color);
  padding: 1rem;
}

.table-light {
  background-color: var(--bg-light);
}

/* Form Styles */
.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.form-control,
.form-select {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.15);
  outline: 0;
}

/* Metric Items */
.metric-item h4 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.metric-item small {
  font-size: 0.875rem;
}
