/* Bootstrap Custom Styles */

/* Color Palette */
:root {
  --primary-color: #14b8a6;
  --primary-dark: #0d9488;
  --primary-light: #2dd4bf;
  --text-dark: #15202b;
  --text-muted: #657786;
  --bg-light: #f8f9fa;
  --border-light: #e8ecf1;
}

/* Override Bootstrap Primary Color */
:root {
  --bs-primary: #14b8a6;
  --bs-secondary: #f5f7fa;
  --bs-light: #f8f9fa;
  --bs-border-color: #e8ecf1;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-dark);
}

.lead {
  color: #ffffff;
  font-size: 1.125rem;
}

/* Navigation */
.sticky-top {
  backdrop-filter: blur(12px);
  background: rgba(248, 249, 250, 0.8) !important;
}

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

.logo{
    height: 60px;
}

.logo-box {
  width: 100%;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Buttons */
.btn-primary {
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark)) !important;
  border: none !important;
}

.btn-primary:hover {
  box-shadow: 0 10px 20px rgba(20, 184, 166, 0.2);
  transform: translateY(-2px);
}

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

.btn-outline-primary:hover {
  background-color: rgba(20, 184, 166, 0.1);
}

.btn-primary.learn-more-btn {
  background: transparent !important;
  border: 1px solid var(--border-light) !important;
  color: var(--text-dark) !important;
}

.btn-primary.learn-more-btn:hover {
  background-color: #f5f7fa !important;
}

.arrow {
  transition: transform 0.3s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* Hero Section */
.hero-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.display-4 {
  color: var(--text-dark);
}

/* Cards */
.card {
  border: 1px solid var(--border-light) !important;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  background-color: white;
}

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

.feature-card {
  border-radius: 0.75rem !important;
  background-color: white;
}

.feature-card:hover {
  border-color: rgba(20, 184, 166, 0.2) !important;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(to bottom right, var(--primary-color), var(--primary-dark));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-color);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

/* Visual Card */
.visual-card {
  background: white !important;
  border-radius: 1.5rem !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

.visual-label {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

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

.visual-item {
  background: rgba(20, 184, 166, 0.1);
  border-radius: 0.5rem;
}

.visual-item-label {
  color: #0f766e;
  font-size: 0.75rem;
}

.visual-item-bar {
  height: 3rem;
  background: rgba(20, 184, 166, 0.2);
  border-radius: 0.5rem;
}

/* Pricing Section */
.pricing-card {
  border-radius: 1rem;
  border: 1px solid var(--border-light) !important;
}

.pricing-featured {
  border-width: 2px !important;
}

.pricing-featured .btn-primary {
  background: var(--primary-color) !important;
}

.badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
}

/* Sections */
.bg-light {
  background-color: var(--bg-light) !important;
}

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

/* CTA Box */
.bg-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
}

.rounded-3 {
  border-radius: 1.5rem !important;
}

/* Footer */
.footer-office {
  font-size: 0.875rem;
}

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

.footer-office a:hover {
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.75rem;
  }

  .hero-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .navbar-brand {
    font-size: 1rem;
  }

  .logo-box {
    width: 100%;
    height: 2rem;
    font-size: 0.875rem;
  }
}

/* Utility Classes */
.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 2rem !important;
}

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

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}
