/* Karafoo Host - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #64748b;
  --success-color: #10b981;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --border-color: #e2e8f0;
  --text-color: #334155;
  --text-muted: #64748b;
  --white-75: rgba(255, 255, 255, 0.75);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

/* Typography */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

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

/* Navigation */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.2s ease;
  color: white; /*added by ssim */
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--dark-color) 0%, #334155 100%);
  position: relative;
  overflow: hidden;
  padding: 50px 0 50px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-stats {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.feature-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
}

.feature-badge:nth-child(1) {
  animation-delay: 0.2s;
  opacity: 0;
}

.feature-badge:nth-child(2) {
  animation-delay: 0.4s;
  opacity: 0;
}

.feature-badge:nth-child(3) {
  animation-delay: 0.6s;
  opacity: 0;
}

.feature-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.feature-badge i {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.feature-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border-color);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.pricing-card.popular {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
}

/* .pricing-header {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  padding: 2.5rem 2rem 2rem;
  position: relative;
} */

.pricing-header {
  background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
  border-bottom: 1px solid #e2e8f0;
}

.pricing-card.popular .pricing-header {
  padding-top: 3.5rem;
}

.pricing-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.pricing-amount {
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  vertical-align: top;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.period {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  padding: 0 2rem;
  flex-grow: 1;
}

.pricing-features ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-weight: 500;
}

.pricing-features ul li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  margin: 2rem;
  margin-top: auto;
}

/* Business Type Cards */
.business-type-card {
  padding: 2rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.business-type-card:hover {
  background: var(--light-color);
  border-color: var(--border-color);
  transform: translateY(-4px);
}

.business-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.business-type-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  border-radius: 8px;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  color: white;
}

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

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

.btn-outline-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
  transform: translateY(-2px);
}

.btn-light {
  background-color: white;
  border-color: white;
  color: var(--primary-color);
}

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

/* Footer */
.footer {
  background-color: var(--dark-color) !important;
}

.footer h5, .footer h6 {
  color: white;
  font-weight: 600;
}

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

.footer ul li a {
  color: var(--white-75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer ul li a:hover {
  color: white;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  color: white !important;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-icon {
    font-size: 6rem;
  }
  
  .pricing-card.popular {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
  
  .hero-stats {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 70px 0 30px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .pricing-header {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .pricing-features {
    padding: 0 1.5rem;
  }
  
  .pricing-card .btn {
    margin: 1.5rem;
  }
}

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

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

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

/* Loading States */
.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: currentColor;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  outline: none;
}

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

/* HOSTING PAGE STYLES */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--dark-color) 0%, #334155 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-header .container {
  position: relative;
  z-index: 2;
}

/* Included Features */
.included-feature {
  padding: 1.5rem 1rem;
}

.feature-icon-sm {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.included-feature h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

/* Detailed Pricing Cards */
.pricing-card-detailed {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card-detailed:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.pricing-card-detailed.popular {
  border-color: var(--primary-color);
  transform: scale(1.02);
}

.pricing-card-detailed.popular:hover {
  transform: scale(1.02) translateY(-8px);
}

.pricing-card-detailed .pricing-header {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  padding: 3rem 2rem 2rem;
  text-align: center;
  position: relative;
}

.pricing-card-detailed.popular .pricing-header {
  padding-top: 4rem;
}

.pricing-card-detailed .pricing-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.plan-description {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 1.1rem;
}

.pricing-card-detailed .pricing-features {
  padding: 2rem;
}

.feature-group {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.feature-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.feature-group h6 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.feature-group ul li {
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--text-color);
}

.feature-group ul li strong {
  color: var(--dark-color);
}

/* Add-on Cards */
.addon-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.addon-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
}

.addon-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.addon-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* FAQ Accordion */
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 8px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background-color: white;
  border: none;
  font-weight: 600;
  color: var(--dark-color);
  padding: 1.25rem 1.5rem;
}

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

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  border-color: var(--primary-color);
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* Responsive adjustments for detailed pricing cards */
@media (max-width: 768px) {
  .pricing-card-detailed.popular {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .pricing-card-detailed.popular:hover {
    transform: translateY(-8px);
  }
  
  .pricing-card-detailed .pricing-header {
    padding: 2.5rem 1.5rem 1.5rem;
  }
  
  .pricing-card-detailed.popular .pricing-header {
    padding-top: 3.5rem;
  }
  
  .pricing-card-detailed .pricing-features {
    padding: 1.5rem;
  }
  
  .feature-group h6 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-header {
    padding: 100px 0 60px;
  }
  
  .pricing-card-detailed .pricing-header h3 {
    font-size: 1.75rem;
  }
  
  .plan-description {
    font-size: 1rem;
  }
  
  .addon-card {
    padding: 1.5rem 1rem;
  }
  
  .addon-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}/* Karafoo Host - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #64748b;
  --success-color: #10b981;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --border-color: #e2e8f0;
  --text-color: #334155;
  --text-muted: #64748b;
  --white-75: rgba(255, 255, 255, 0.75);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

/* Typography */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

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

/* Navigation */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.2s ease;
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--dark-color) 0%, #334155 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 50px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-stats {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.feature-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
}

.feature-badge:nth-child(1) {
  animation-delay: 0.2s;
  opacity: 0;
}

.feature-badge:nth-child(2) {
  animation-delay: 0.4s;
  opacity: 0;
}

.feature-badge:nth-child(3) {
  animation-delay: 0.6s;
  opacity: 0;
}

.feature-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.feature-badge i {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.feature-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border-color);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.pricing-card.popular {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
}

.pricing-header {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  padding: 2.5rem 2rem 2rem;
  position: relative;
}

.pricing-card.popular .pricing-header {
  padding-top: 3.5rem;
}

.pricing-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.pricing-amount {
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  vertical-align: top;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.period {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  padding: 0 2rem;
  flex-grow: 1;
}

.pricing-features ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-weight: 500;
}

.pricing-features ul li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  margin: 2rem;
  margin-top: auto;
}

/* Business Type Cards */
.business-type-card {
  padding: 2rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.business-type-card:hover {
  background: var(--light-color);
  border-color: var(--border-color);
  transform: translateY(-4px);
}

.business-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.business-type-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  border-radius: 8px;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  color: white;
}

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

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

.btn-outline-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
  transform: translateY(-2px);
}

.btn-light {
  background-color: white;
  border-color: white;
  color: var(--primary-color);
}

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

/* Footer */
.footer {
  background-color: var(--dark-color) !important;
}

.footer h5, .footer h6 {
  color: white;
  font-weight: 600;
}

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

.footer ul li a {
  color: var(--white-75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer ul li a:hover {
  color: white;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  color: white !important;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-icon {
    font-size: 6rem;
  }
  
  .pricing-card.popular {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
  
  .hero-stats {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 70px 0 30px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .pricing-header {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .pricing-features {
    padding: 0 1.5rem;
  }
  
  .pricing-card .btn {
    margin: 1.5rem;
  }
}

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

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

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

/* Loading States */
.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: currentColor;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  outline: none;
}

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

/* WEBDEV PAGE */
/* Website Mockup Styles */
.package-visual {
  position: relative;
  z-index: 2;
}

.webdev-cards{
  background-color: #fafafa;
  padding: 25px;
}

.website-mockup {
  max-width: 400px;
  margin: 0 auto;
}

.mockup-browser {
  background: white;
  border-radius: 12px 12px 8px 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.browser-header {
  background: #f0f0f0;
  padding: 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.browser-dots {
  display: flex;
  gap: 0.5rem;
}

.browser-url {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    color: rgba(64, 53, 112, 0.8);
    text-align: center;
    margin: 0 auto;
    max-width: 150px;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.browser-dots span:nth-child(1) {
  background: #ff5f57;
}

.browser-dots span:nth-child(2) {
  background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
  background: #28ca42;
}

.mockup-content {
  background: white;
  min-height: 300px;
  padding: 0;
}

.mockup-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  height: 120px;
  position: relative;
}

.mockup-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.mockup-sections {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mockup-section {
  height: 60px;
  background: #f8f9fa;
  border-radius: 6px;
  position: relative;
}

/* .mockup-section::b{} */

/* CONTACT PAGE STYLES */
/* Contact Page Styles */
.contact-option {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.contact-option-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.contact-option h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.contact-detail {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

/* Form Selector */
.form-selector .btn-group {
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.form-selector .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border: none;
}

.form-selector .btn-check:checked + .btn {
  background-color: var(--primary-color);
  color: white;
}

/* Contact Form Cards */
.contact-form-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 3rem 2.5rem;
  margin-top: 2rem;
}

.form-header h3 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

/* Form Styling */
.form-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.form-control, .form-select {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

/* Form Check Groups */
.form-check-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.form-check {
  background: var(--light-color);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.form-check:hover {
  background: white;
  border-color: var(--primary-color);
}

.form-check-input:checked + .form-check-label {
  color: var(--primary-color);
  font-weight: 600;
}

.form-check-input {
  margin-top: 0.25rem;
}

.form-check-label {
  font-weight: 500;
  margin-left: 0.5rem;
  cursor: pointer;
}

/* Business Info Cards */
.business-info-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

.business-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.business-info-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.business-info-card p {
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
  .contact-form-card {
    padding: 2rem 1.5rem;
  }
  
  .form-selector .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .form-selector .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .contact-option {
    padding: 2rem 1rem;
  }
  
  .contact-option-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
  
  .form-check-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .contact-form-card {
    padding: 1.5rem 1rem;
    margin-top: 1.5rem;
  }
  
  .form-header h3 {
    font-size: 1.5rem;
  }
  
  .contact-detail {
    font-size: 1.1rem;
  }
  
  .business-info-card {
    padding: 1.5rem 1rem;
  }
}/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--dark-color) 0%, #334155 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-header .container {
  position: relative;
  z-index: 2;
}

/* Included Features */
.included-feature {
  padding: 1.5rem 1rem;
}

.feature-icon-sm {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.included-feature h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

/* Detailed Pricing Cards */
.pricing-card-detailed {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card-detailed:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.pricing-card-detailed.popular {
  border-color: var(--primary-color);
  transform: scale(1.02);
}

.pricing-card-detailed.popular:hover {
  transform: scale(1.02) translateY(-8px);
}

.pricing-card-detailed .pricing-header {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  padding: 3rem 2rem 2rem;
  text-align: center;
  position: relative;
}

.pricing-card-detailed.popular .pricing-header {
  padding-top: 4rem;
}

.pricing-card-detailed .pricing-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.plan-description {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 1.1rem;
}

.pricing-card-detailed .pricing-features {
  padding: 2rem;
}

.feature-group {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.feature-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.feature-group h6 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.feature-group ul li {
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--text-color);
}

.feature-group ul li strong {
  color: var(--dark-color);
}

/* Add-on Cards */
.addon-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.addon-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
}

.addon-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.addon-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* FAQ Accordion */
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 8px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background-color: white;
  border: none;
  font-weight: 600;
  color: var(--dark-color);
  padding: 1.25rem 1.5rem;
}

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

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  border-color: var(--primary-color);
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* Responsive adjustments for detailed pricing cards */
@media (max-width: 768px) {
  .pricing-card-detailed.popular {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .pricing-card-detailed.popular:hover {
    transform: translateY(-8px);
  }
  
  .pricing-card-detailed .pricing-header {
    padding: 2.5rem 1.5rem 1.5rem;
  }
  
  .pricing-card-detailed.popular .pricing-header {
    padding-top: 3.5rem;
  }
  
  .pricing-card-detailed .pricing-features {
    padding: 1.5rem;
  }
  
  .feature-group h6 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-header {
    padding: 100px 0 60px;
  }
  
  .pricing-card-detailed .pricing-header h3 {
    font-size: 1.75rem;
  }
  
  .plan-description {
    font-size: 1rem;
  }
  
  .addon-card {
    padding: 1.5rem 1rem;
  }
  
  .addon-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}/* Karafoo Host - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #64748b;
  --success-color: #10b981;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --border-color: #e2e8f0;
  --text-color: #334155;
  --text-muted: #64748b;
  --white-75: rgba(255, 255, 255, 0.75);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

/* Typography */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

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

/* Navigation */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.2s ease;
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--dark-color) 0%, #334155 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 50px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-stats {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.feature-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
}

.feature-badge:nth-child(1) {
  animation-delay: 0.2s;
  opacity: 0;
}

.feature-badge:nth-child(2) {
  animation-delay: 0.4s;
  opacity: 0;
}

.feature-badge:nth-child(3) {
  animation-delay: 0.6s;
  opacity: 0;
}

.feature-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.feature-badge i {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.feature-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border-color);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.pricing-card.popular {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
}

.pricing-header {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  padding: 2.5rem 2rem 2rem;
  position: relative;
}

.pricing-card.popular .pricing-header {
  padding-top: 3.5rem;
}

.pricing-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.pricing-amount {
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  vertical-align: top;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.period {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  padding: 0 2rem;
  flex-grow: 1;
}

.pricing-features ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-weight: 500;
}

.pricing-features ul li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  margin: 2rem;
  margin-top: auto;
}

/* Business Type Cards */
.business-type-card {
  padding: 2rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.business-type-card:hover {
  background: var(--light-color);
  border-color: var(--border-color);
  transform: translateY(-4px);
}

.business-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.business-type-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  border-radius: 8px;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  color: white;
}

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

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

.btn-outline-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
  transform: translateY(-2px);
}

.btn-light {
  background-color: white;
  border-color: white;
  color: var(--primary-color);
}

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

/* Footer */
.footer {
  background-color: var(--dark-color) !important;
}

.footer h5, .footer h6 {
  color: white;
  font-weight: 600;
}

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

.footer ul li a {
  color: var(--white-75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer ul li a:hover {
  color: white;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  color: white !important;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-icon {
    font-size: 6rem;
  }
  
  .pricing-card.popular {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
  
  .hero-stats {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 70px 0 30px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .pricing-header {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .pricing-features {
    padding: 0 1.5rem;
  }
  
  .pricing-card .btn {
    margin: 1.5rem;
  }
}

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

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

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

/* Loading States */
.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: currentColor;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  outline: none;
}

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


/* ABOUT PAGE STYLES */
/* Contact Page Styles */
.contact-option {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.contact-option-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.contact-option h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.contact-detail {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

/* Form Selector */
.form-selector .btn-group {
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.form-selector .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border: none;
}

.form-selector .btn-check:checked + .btn {
  background-color: var(--primary-color);
  color: white;
}

/* Contact Form Cards */
.contact-form-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 3rem 2.5rem;
  margin-top: 2rem;
}

.form-header h3 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

/* Form Styling */
.form-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.form-control, .form-select {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

/* Form Check Groups */
.form-check-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.form-check {
  background: var(--light-color);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.form-check:hover {
  background: white;
  border-color: var(--primary-color);
}

.form-check-input:checked + .form-check-label {
  color: var(--primary-color);
  font-weight: 600;
}

.form-check-input {
  margin-top: 0.25rem;
}

.form-check-label {
  font-weight: 500;
  margin-left: 0.5rem;
  cursor: pointer;
}

/* Business Info Cards */
.business-info-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

.business-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.business-info-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.business-info-card p {
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
  .contact-form-card {
    padding: 2rem 1.5rem;
  }
  
  .form-selector .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .form-selector .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .contact-option {
    padding: 2rem 1rem;
  }
  
  .contact-option-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
  
  .form-check-group {
    grid-template-columns: 1fr;
  }
}

/* About Page Styles */
.about-stats {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  margin-top: 2rem;
}

.about-visual {
  position: relative;
  z-index: 2;
}

.about-image-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-image-placeholder i {
  font-size: 4rem;
  opacity: 0.8;
}

/* Story Section */
.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-point {
  text-align: center;
}

.story-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.story-point h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.story-point p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Value Cards */
.value-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: white;
}

.value-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.value-card p {
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Approach Section */
.approach-points {
  margin-top: 2rem;
}

.approach-point {
  position: relative;
}

.approach-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.approach-point h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.approach-point p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Approach Visual */
.approach-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-diagram {
  position: relative;
  width: 300px;
  height: 300px;
}

.diagram-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.diagram-center i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.diagram-center h6 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.diagram-center small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.diagram-orbit {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.orbit-item {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite;
  animation-delay: var(--delay);
}

.orbit-item:nth-child(1) {
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-item:nth-child(2) {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}

.orbit-item:nth-child(3) {
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-item:nth-child(4) {
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
}

.orbit-item i {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.orbit-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark-color);
}

/* Credentials */
.credential-item {
  text-align: center;
  padding: 1.5rem;
}

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

.credential-item h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.credential-item p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Commitment Cards */
.commitment-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.commitment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

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

.commitment-card h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.commitment-card p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments for About page */
@media (max-width: 768px) {
  .about-image-placeholder {
    padding: 2rem 1rem;
  }
  
  .about-image-placeholder i {
    font-size: 3rem;
  }
  
  .approach-diagram {
    width: 250px;
    height: 250px;
  }
  
  .diagram-center {
    width: 100px;
    height: 100px;
  }
  
  .orbit-item {
    width: 60px;
    height: 60px;
  }
  
  .orbit-item:nth-child(1) {
    top: -30px;
  }
  
  .orbit-item:nth-child(2) {
    right: -30px;
  }
  
  .orbit-item:nth-child(3) {
    bottom: -30px;
  }
  
  .orbit-item:nth-child(4) {
    left: -30px;
  }
  
  .story-point, .value-card, .credential-item, .commitment-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .approach-visual {
    height: 300px;
  }
  
  .approach-diagram {
    width: 200px;
    height: 200px;
  }
  
  .diagram-center {
    width: 80px;
    height: 80px;
  }
  
  .diagram-center i {
    font-size: 1.5rem;
  }
  
  .orbit-item {
    width: 50px;
    height: 50px;
  }
  
  .orbit-item span {
    font-size: 0.7rem;
  }
}/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--dark-color) 0%, #334155 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-header .container {
  position: relative;
  z-index: 2;
}

/* Included Features */
.included-feature {
  padding: 1.5rem 1rem;
}

.feature-icon-sm {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.included-feature h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

/* Detailed Pricing Cards */
.pricing-card-detailed {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card-detailed:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.pricing-card-detailed.popular {
  border-color: var(--primary-color);
  transform: scale(1.02);
}

.pricing-card-detailed.popular:hover {
  transform: scale(1.02) translateY(-8px);
}

.pricing-card-detailed .pricing-header {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  padding: 3rem 2rem 2rem;
  text-align: center;
  position: relative;
}

.pricing-card-detailed.popular .pricing-header {
  padding-top: 4rem;
}

.pricing-card-detailed .pricing-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.plan-description {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 1.1rem;
}

.pricing-card-detailed .pricing-features {
  padding: 2rem;
}

.feature-group {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.feature-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.feature-group h6 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.feature-group ul li {
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--text-color);
}

.feature-group ul li strong {
  color: var(--dark-color);
}

/* Add-on Cards */
.addon-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.addon-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
}

.addon-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.addon-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* FAQ Accordion */
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 8px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background-color: white;
  border: none;
  font-weight: 600;
  color: var(--dark-color);
  padding: 1.25rem 1.5rem;
}

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

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  border-color: var(--primary-color);
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* Responsive adjustments for detailed pricing cards */
@media (max-width: 768px) {
  .pricing-card-detailed.popular {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .pricing-card-detailed.popular:hover {
    transform: translateY(-8px);
  }
  
  .pricing-card-detailed .pricing-header {
    padding: 2.5rem 1.5rem 1.5rem;
  }
  
  .pricing-card-detailed.popular .pricing-header {
    padding-top: 3.5rem;
  }
  
  .pricing-card-detailed .pricing-features {
    padding: 1.5rem;
  }
  
  .feature-group h6 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-header {
    padding: 100px 0 60px;
  }
  
  .pricing-card-detailed .pricing-header h3 {
    font-size: 1.75rem;
  }
  
  .plan-description {
    font-size: 1rem;
  }
  
  .addon-card {
    padding: 1.5rem 1rem;
  }
  
  .addon-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}/* Karafoo Host - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #64748b;
  --success-color: #10b981;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --border-color: #e2e8f0;
  --text-color: #334155;
  --text-muted: #64748b;
  --white-75: rgba(255, 255, 255, 0.75);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

/* Typography */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

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

/* Navigation */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.2s ease;
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--dark-color) 0%, #334155 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 50px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-stats {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.feature-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
}

.feature-badge:nth-child(1) {
  animation-delay: 0.2s;
  opacity: 0;
}

.feature-badge:nth-child(2) {
  animation-delay: 0.4s;
  opacity: 0;
}

.feature-badge:nth-child(3) {
  animation-delay: 0.6s;
  opacity: 0;
}

.feature-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.feature-badge i {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.feature-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border-color);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.pricing-card.popular {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
}

.pricing-header {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  padding: 2.5rem 2rem 2rem;
  position: relative;
}

.pricing-card.popular .pricing-header {
  padding-top: 3.5rem;
}

.pricing-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.pricing-amount {
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  vertical-align: top;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.period {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  padding: 0 2rem;
  flex-grow: 1;
}

.pricing-features ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-weight: 500;
}

.pricing-features ul li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  margin: 2rem;
  margin-top: auto;
}

/* Business Type Cards */
.business-type-card {
  padding: 2rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.business-type-card:hover {
  background: var(--light-color);
  border-color: var(--border-color);
  transform: translateY(-4px);
}

.business-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.business-type-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  border-radius: 8px;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  color: white;
}

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

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

.btn-outline-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
  transform: translateY(-2px);
}

.btn-light {
  background-color: white;
  border-color: white;
  color: var(--primary-color);
}

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

/* Footer */
.footer {
  background-color: var(--dark-color) !important;
}

.footer h5, .footer h6 {
  color: white;
  font-weight: 600;
}

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

.footer ul li a {
  color: var(--white-75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer ul li a:hover {
  color: white;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  color: white !important;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-icon {
    font-size: 6rem;
  }
  
  .pricing-card.popular {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
  
  .hero-stats {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 70px 0 30px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .pricing-header {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .pricing-features {
    padding: 0 1.5rem;
  }
  
  .pricing-card .btn {
    margin: 1.5rem;
  }
}

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

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

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

/* Loading States */
.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: currentColor;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  outline: none;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}
  
/* Terms of Service Styles */
.terms-content {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.terms-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.terms-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-section h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.terms-section h5 {
  color: var(--dark-color);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.terms-section p {
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.terms-section ul {
  color: var(--text-color);
  line-height: 1.6;
}

.terms-section li {
  margin-bottom: 0.5rem;
}

.terms-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

/* Canada First Styles */
.canada-header {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
}

.canada-stats {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  margin-top: 2rem;
}

.canada-visual {
  position: relative;
  z-index: 2;
}

.canada-visual {
  position: relative;
  z-index: 2;
}

.canada-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  max-width: 300px;
  margin: 0 auto;
}

.canada-badge-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  width: 100%;
  justify-content: center;
}

.canada-badge-item:nth-child(1) {
  animation-delay: 0.2s;
  opacity: 0;
}

.canada-badge-item:nth-child(2) {
  animation-delay: 0.4s;
  opacity: 0;
}

.canada-badge-item:nth-child(3) {
  animation-delay: 0.6s;
  opacity: 0;
}

.canada-badge-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.canada-badge-item i {
  font-size: 1.5rem;
  color: #dc2626;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Canada Value Cards */
.canada-value-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.canada-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #dc2626;
}

.canada-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: white;
}

.canada-value-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.canada-value-card p {
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Commitment Items */
.commitment-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.commitment-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 1.25rem;
  color: white;
  flex-shrink: 0;
}

.commitment-item h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.commitment-item p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Canada Map Visual */
.canada-map-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.canada-outline {
  background: white;
  border: 3px solid #dc2626;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.canada-outline i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.canada-outline h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.location-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.dot {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #dc2626;
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  animation: pulse 2s infinite;
}

.dot.vancouver {
  top: 30%;
  left: 10%;
}

.dot.toronto {
  top: 50%;
  right: 20%;
}

.dot.montreal {
  top: 40%;
  right: 10%;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Support Cards */
.support-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.support-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.support-header i {
  font-size: 2rem;
  margin-right: 1rem;
}

.support-header h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0;
}

.support-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.support-list li {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.support-list li::before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Impact Stats */
.impact-stat {
  text-align: center;
  padding: 1.5rem;
}

.impact-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.impact-stat h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.impact-stat p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments for Canada First page */
@media (max-width: 768px) {
  .canada-features {
    max-width: 250px;
  }
  
  .canada-badge-item {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .canada-badge-item i {
    width: 35px;
    height: 35px;
    font-size: 1.25rem;
  }
  
  .canada-map-visual {
    height: 300px;
  }
  
  .map-container {
    width: 250px;
    height: 250px;
  }
  
  .canada-outline {
    padding: 1.5rem;
  }
  
  .commitment-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .commitment-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .support-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .canada-features {
    max-width: 200px;
  }
  
  .canada-badge-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .canada-badge-item i {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  
  .canada-map-visual {
    height: 250px;
  }
  
  .map-container {
    width: 200px;
    height: 200px;
  }
  
  .impact-number {
    font-size: 2.5rem;
  }
}
  /* Contact Page Styles */
.contact-option {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.contact-option-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.contact-option h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.contact-detail {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

/* Form Selector */
.form-selector .btn-group {
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.form-selector .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border: none;
}

.form-selector .btn-check:checked + .btn {
  background-color: var(--primary-color);
  color: white;
}

/* Contact Form Cards */
.contact-form-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 3rem 2.5rem;
  margin-top: 2rem;
}

.form-header h3 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

/* Form Styling */
.form-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.form-control, .form-select {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

/* Form Check Groups */
.form-check-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.form-check {
  background: var(--light-color);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.form-check:hover {
  background: white;
  border-color: var(--primary-color);
}

.form-check-input:checked + .form-check-label {
  color: var(--primary-color);
  font-weight: 600;
}

.form-check-input {
  margin-top: 0.25rem;
}

.form-check-label {
  font-weight: 500;
  margin-left: 0.5rem;
  cursor: pointer;
}

/* Business Info Cards */
.business-info-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

.business-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.business-info-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.business-info-card p {
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
  .contact-form-card {
    padding: 2rem 1.5rem;
  }
  
  .form-selector .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .form-selector .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .contact-option {
    padding: 2rem 1rem;
  }
  
  .contact-option-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
  
  .form-check-group {
    grid-template-columns: 1fr;
  }
}

/* About Page Styles */
.about-stats {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  margin-top: 2rem;
}

.about-visual {
  position: relative;
  z-index: 2;
}

.about-image-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-image-placeholder i {
  font-size: 4rem;
  opacity: 0.8;
}

/* Story Section */
.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-point {
  text-align: center;
}

.story-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.story-point h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.story-point p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Value Cards */
.value-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: white;
}

.value-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.value-card p {
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Approach Section */
.approach-points {
  margin-top: 2rem;
}

.approach-point {
  position: relative;
}

.approach-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.approach-point h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.approach-point p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Approach Visual */
.approach-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-diagram {
  position: relative;
  width: 300px;
  height: 300px;
}

.diagram-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.diagram-center i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.diagram-center h6 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.diagram-center small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.diagram-orbit {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.orbit-item {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite;
  animation-delay: var(--delay);
}

.orbit-item:nth-child(1) {
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-item:nth-child(2) {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}

.orbit-item:nth-child(3) {
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-item:nth-child(4) {
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
}

.orbit-item i {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.orbit-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark-color);
}

/* Credentials */
.credential-item {
  text-align: center;
  padding: 1.5rem;
}

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

.credential-item h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.credential-item p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Commitment Cards */
.commitment-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.commitment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

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

.commitment-card h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.commitment-card p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments for About page */
@media (max-width: 768px) {
  .about-image-placeholder {
    padding: 2rem 1rem;
  }
  
  .about-image-placeholder i {
    font-size: 3rem;
  }
  
  .approach-diagram {
    width: 250px;
    height: 250px;
  }
  
  .diagram-center {
    width: 100px;
    height: 100px;
  }
  
  .orbit-item {
    width: 60px;
    height: 60px;
  }
  
  .orbit-item:nth-child(1) {
    top: -30px;
  }
  
  .orbit-item:nth-child(2) {
    right: -30px;
  }
  
  .orbit-item:nth-child(3) {
    bottom: -30px;
  }
  
  .orbit-item:nth-child(4) {
    left: -30px;
  }
  
  .story-point, .value-card, .credential-item, .commitment-card {
    margin-bottom: 2rem;
  }
}

/* Client Area Styles */

/* Quick Access Cards */
.quick-access-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.quick-access-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.access-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.quick-access-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.quick-access-card p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Support Options */
.support-option {
  text-align: center;
  padding: 1.5rem 1rem;
}

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

.support-option h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.support-detail {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

/* Resource Sections */
.resource-section {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.resource-header {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.resource-header h4 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.resource-content {
  padding: 2rem;
}

/* Setup Cards */
.setup-card {
  background: var(--light-color);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.setup-card h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.setup-steps {
  margin-top: 1rem;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-number {
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  margin-right: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.step div {
  flex: 1;
}

.step strong {
  color: var(--dark-color);
  display: block;
  margin-bottom: 0.25rem;
}

.step code {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  padding: 0.125rem 0.25rem;
  border-radius: 3px;
  font-size: 0.875rem;
}

.step small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Management Items */
.management-item, .account-item {
  padding: 1rem;
  background: var(--light-color);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.management-item h6, .account-item h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.management-item p, .account-item p {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.management-item small, .account-item small {
  color: var(--text-muted);
}

/* Tip Cards */
.tip-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.tip-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.tip-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  color: white;
}

.tip-card h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.tip-card p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Responsive adjustments for Client Area */
@media (max-width: 768px) {
  .quick-access-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .access-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
  
  .resource-header {
    padding: 1.25rem 1.5rem;
  }
  
  .resource-content {
    padding: 1.5rem;
  }
  
  .setup-card {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .step {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .step-number {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
  
  .management-item, .account-item, .tip-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .quick-access-card {
    padding: 1.5rem 1rem;
  }
  
  .resource-header h4 {
    font-size: 1.25rem;
  }
  
  .resource-content {
    padding: 1rem;
  }
  
  .setup-card, .management-item, .account-item, .tip-card {
    padding: 1rem;
  }
  
  .support-option {
    padding: 1rem 0.5rem;
  }
  
  .support-detail {
    font-size: 1rem;
  }
}/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--dark-color) 0%, #334155 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-header .container {
  position: relative;
  z-index: 2;
}

/* Included Features */
.included-feature {
  padding: 1.5rem 1rem;
}

.feature-icon-sm {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.included-feature h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

/* Detailed Pricing Cards */
.pricing-card-detailed {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card-detailed:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.pricing-card-detailed.popular {
  border-color: var(--primary-color);
  transform: scale(1.02);
}

.pricing-card-detailed.popular:hover {
  transform: scale(1.02) translateY(-8px);
}

.pricing-card-detailed .pricing-header {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  padding: 3rem 2rem 2rem;
  text-align: center;
  position: relative;
}

.pricing-card-detailed.popular .pricing-header {
  padding-top: 4rem;
}

.pricing-card-detailed .pricing-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.plan-descround: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  margin-right: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.step div {
  flex: 1;
}

.step strong {
  color: var(--dark-color);
  display: block;
  margin-bottom: 0.25rem;
}

.step code {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  padding: 0.125rem 0.25rem;
  border-radius: 3px;
  font-size: 0.875rem;
}

.step small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Management Items */
.management-item, .account-item {
  padding: 1rem;
  background: var(--light-color);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.management-item h6, .account-item h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.management-item p, .account-item p {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.management-item small, .account-item small {
  color: var(--text-muted);
}

/* Tip Cards */
.tip-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.tip-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.tip-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  color: white;
}

.tip-card h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.tip-card p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Responsive adjustments for Client Area */
@media (max-width: 768px) {
  .quick-access-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .access-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
  
  .resource-header {
    padding: 1.25rem 1.5rem;
  }
  
  .resource-content {
    padding: 1.5rem;
  }
  
  .setup-card {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .step {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .step-number {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
  
  .management-item, .account-item, .tip-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .quick-access-card {
    padding: 1.5rem 1rem;
  }
  
  .resource-header h4 {
    font-size: 1.25rem;
  }
  
  .resource-content {
    padding: 1rem;
  }
  
  .setup-card, .management-item, .account-item, .tip-card {
    padding: 1rem;
  }
  
  .support-option {
    padding: 1rem 0.5rem;
  }
  
  .support-detail {
    font-size: 1rem;
  }
}/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--dark-color) 0%, #334155 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-header .container {
  position: relative;
  z-index: 2;
}

/* Included Features */
.included-feature {
  padding: 1.5rem 1rem;
}

.feature-icon-sm {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.included-feature h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

/* Detailed Pricing Cards */
.pricing-card-detailed {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card-detailed:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.pricing-card-detailed.popular {
  border-color: var(--primary-color);
  transform: scale(1.02);
}

.pricing-card-detailed.popular:hover {
  transform: scale(1.02) translateY(-8px);
}

.pricing-card-detailed .pricing-header {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  padding: 3rem 2rem 2rem;
  text-align: center;
  position: relative;
}

.pricing-card-detailed.popular .pricing-header {
  padding-top: 4rem;
}

.pricing-card-detailed .pricing-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.plan-description {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 1.1rem;
}

.pricing-card-detailed .pricing-features {
  padding: 2rem;
}

.feature-group {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.feature-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.feature-group h6 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.feature-group ul li {
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--text-color);
}

.feature-group ul li strong {
  color: var(--dark-color);
}

/* Add-on Cards */
.addon-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.addon-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
}

.addon-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.addon-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* FAQ Accordion */
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 8px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background-color: white;
  border: none;
  font-weight: 600;
  color: var(--dark-color);
  padding: 1.25rem 1.5rem;
}

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

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  border-color: var(--primary-color);
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* Responsive adjustments for detailed pricing cards */
@media (max-width: 768px) {
  .pricing-card-detailed.popular {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .pricing-card-detailed.popular:hover {
    transform: translateY(-8px);
  }
  
  .pricing-card-detailed .pricing-header {
    padding: 2.5rem 1.5rem 1.5rem;
  }
  
  .pricing-card-detailed.popular .pricing-header {
    padding-top: 3.5rem;
  }
  
  .pricing-card-detailed .pricing-features {
    padding: 1.5rem;
  }
  
  .feature-group h6 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-header {
    padding: 100px 0 60px;
  }
  
  .pricing-card-detailed .pricing-header h3 {
    font-size: 1.75rem;
  }
  
  .plan-description {
    font-size: 1rem;
  }
  
  .addon-card {
    padding: 1.5rem 1rem;
  }
  
  .addon-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}/* Karafoo Host - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #64748b;
  --success-color: #10b981;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --border-color: #e2e8f0;
  --text-color: #334155;
  --text-muted: #64748b;
  --white-75: rgba(255, 255, 255, 0.75);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

/* Typography */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

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

/* Navigation */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.2s ease;
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--dark-color) 0%, #334155 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 50px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-stats {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.feature-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
}

.feature-badge:nth-child(1) {
  animation-delay: 0.2s;
  opacity: 0;
}

.feature-badge:nth-child(2) {
  animation-delay: 0.4s;
  opacity: 0;
}

.feature-badge:nth-child(3) {
  animation-delay: 0.6s;
  opacity: 0;
}

.feature-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.feature-badge i {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.feature-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border-color);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.pricing-card.popular {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
}

.pricing-header {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  padding: 2.5rem 2rem 2rem;
  position: relative;
}

.pricing-card.popular .pricing-header {
  padding-top: 3.5rem;
}

.pricing-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.pricing-amount {
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  vertical-align: top;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.period {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  padding: 0 2rem;
  flex-grow: 1;
}

.pricing-features ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-weight: 500;
}

.pricing-features ul li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  margin: 2rem;
  margin-top: auto;
}

/* Business Type Cards */
.business-type-card {
  padding: 2rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.business-type-card:hover {
  background: var(--light-color);
  border-color: var(--border-color);
  transform: translateY(-4px);
}

.business-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.business-type-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  border-radius: 8px;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  color: white;
}

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

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

.btn-outline-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
  transform: translateY(-2px);
}

.btn-light {
  background-color: white;
  border-color: white;
  color: var(--primary-color);
}

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

/* Footer */
.footer {
  background-color: var(--dark-color) !important;
}

.footer h5, .footer h6 {
  color: white;
  font-weight: 600;
}

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

.footer ul li a {
  color: var(--white-75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer ul li a:hover {
  color: white;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  color: white !important;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-icon {
    font-size: 6rem;
  }
  
  .pricing-card.popular {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
  
  .hero-stats {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 70px 0 30px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .pricing-header {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .pricing-features {
    padding: 0 1.5rem;
  }
  
  .pricing-card .btn {
    margin: 1.5rem;
  }
}

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

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

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

/* Loading States */
.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: currentColor;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  outline: none;
}

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


/* PRIVACY POLICY STYLES */
/* Terms of Service Styles */
.terms-content {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.terms-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.terms-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-section h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.terms-section h5 {
  color: var(--dark-color);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.terms-section p {
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.terms-section ul {
  color: var(--text-color);
  line-height: 1.6;
}

.terms-section li {
  margin-bottom: 0.5rem;
}

.terms-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

/* Canada First Styles */
.canada-header {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
}

.canada-stats {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  margin-top: 2rem;
}

.canada-visual {
  position: relative;
  z-index: 2;
}

.canada-visual {
  position: relative;
  z-index: 2;
}

.canada-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  max-width: 300px;
  margin: 0 auto;
}

.canada-badge-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  width: 100%;
  justify-content: center;
}

.canada-badge-item:nth-child(1) {
  animation-delay: 0.2s;
  opacity: 0;
}

.canada-badge-item:nth-child(2) {
  animation-delay: 0.4s;
  opacity: 0;
}

.canada-badge-item:nth-child(3) {
  animation-delay: 0.6s;
  opacity: 0;
}

.canada-badge-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.canada-badge-item i {
  font-size: 1.5rem;
  color: #dc2626;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
  font-size: 1rem;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Canada Value Cards */
.canada-value-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.canada-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #dc2626;
}

.canada-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: white;
}

.canada-value-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.canada-value-card p {
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Commitment Items */
.commitment-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.commitment-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 1.25rem;
  color: white;
  flex-shrink: 0;
}

.commitment-item h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.commitment-item p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Canada Map Visual */
.canada-map-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.canada-outline {
  background: white;
  border: 3px solid #dc2626;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.canada-outline i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.canada-outline h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.location-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.dot {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #dc2626;
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  animation: pulse 2s infinite;
}

.dot.vancouver {
  top: 30%;
  left: 10%;
}

.dot.toronto {
  top: 50%;
  right: 20%;
}

.dot.montreal {
  top: 40%;
  right: 10%;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Support Cards */
.support-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.support-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.support-header i {
  font-size: 2rem;
  margin-right: 1rem;
}

.support-header h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0;
}

.support-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.support-list li {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.support-list li::before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Impact Stats */
.impact-stat {
  text-align: center;
  padding: 1.5rem;
}

.impact-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.impact-stat h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.impact-stat p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments for Canada First page */
@media (max-width: 768px) {
  .canada-features {
    max-width: 250px;
  }
  
  .canada-badge-item {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .canada-badge-item i {
    width: 35px;
    height: 35px;
    font-size: 1.25rem;
  }
  
  .canada-map-visual {
    height: 300px;
  }
  
  .map-container {
    width: 250px;
    height: 250px;
  }
  
  .canada-outline {
    padding: 1.5rem;
  }
  
  .commitment-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .commitment-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .support-card {
    margin-bottom: 2rem;
  }
}

/* Privacy Policy Styles */
.privacy-content {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.privacy-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-section h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.privacy-section h5 {
  color: var(--dark-color);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-section p {
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-section ul {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.privacy-section li {
  margin-bottom: 0.5rem;
}

.contact-info-box {
  background: var(--light-color);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin: 1.5rem 0;
}

.contact-info-box h6 {
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info-box ul li {
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.privacy-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

/* Responsive adjustments for Privacy Policy */
@media (max-width: 768px) {
  .privacy-content {
    padding: 2rem 1.5rem;
  }
  
  .privacy-section h3 {
    font-size: 1.5rem;
  }
  
  .contact-info-box {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .privacy-content {
    padding: 1.5rem 1rem;
  }
  
  .privacy-section h3 {
    font-size: 1.25rem;
  }
  
  .privacy-section h5 {
    font-size: 1.1rem;
  }
}
  /* Contact Page Styles */
.contact-option {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.contact-option-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.contact-option h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.contact-detail {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

/* Form Selector */
.form-selector .btn-group {
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.form-selector .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border: none;
}

.form-selector .btn-check:checked + .btn {
  background-color: var(--primary-color);
  color: white;
}

/* Contact Form Cards */
.contact-form-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 3rem 2.5rem;
  margin-top: 2rem;
}

.form-header h3 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

/* Form Styling */
.form-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.form-control, .form-select {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

/* Form Check Groups */
.form-check-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.form-check {
  background: var(--light-color);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.form-check:hover {
  background: white;
  border-color: var(--primary-color);
}

.form-check-input:checked + .form-check-label {
  color: var(--primary-color);
  font-weight: 600;
}

.form-check-input {
  margin-top: 0.25rem;
}

.form-check-label {
  font-weight: 500;
  margin-left: 0.5rem;
  cursor: pointer;
}

/* Business Info Cards */
.business-info-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

.business-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.business-info-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.business-info-card p {
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
  .contact-form-card {
    padding: 2rem 1.5rem;
  }
  
  .form-selector .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .form-selector .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .contact-option {
    padding: 2rem 1rem;
  }
  
  .contact-option-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
  
  .form-check-group {
    grid-template-columns: 1fr;
  }
}

/* About Page Styles */
.about-stats {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  margin-top: 2rem;
}

.about-visual {
  position: relative;
  z-index: 2;
}

.about-image-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-image-placeholder i {
  font-size: 4rem;
  opacity: 0.8;
}

/* Story Section */
.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-point {
  text-align: center;
}

.story-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.story-point h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.story-point p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Value Cards */
.value-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: white;
}

.value-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.value-card p {
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Approach Section */
.approach-points {
  margin-top: 2rem;
}

.approach-point {
  position: relative;
}

.approach-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.approach-point h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.approach-point p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Approach Visual */
.approach-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-diagram {
  position: relative;
  width: 300px;
  height: 300px;
}

.diagram-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.diagram-center i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.diagram-center h6 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.diagram-center small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.diagram-orbit {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.orbit-item {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite;
  animation-delay: var(--delay);
}

.orbit-item:nth-child(1) {
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-item:nth-child(2) {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}

.orbit-item:nth-child(3) {
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-item:nth-child(4) {
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
}

.orbit-item i {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.orbit-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark-color);
}

/* Credentials */
.credential-item {
  text-align: center;
  padding: 1.5rem;
}

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

.credential-item h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.credential-item p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Commitment Cards */
.commitment-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.commitment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

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

.commitment-card h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.commitment-card p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments for About page */
@media (max-width: 768px) {
  .about-image-placeholder {
    padding: 2rem 1rem;
  }
  
  .about-image-placeholder i {
    font-size: 3rem;
  }
  
  .approach-diagram {
    width: 250px;
    height: 250px;
  }
  
  .diagram-center {
    width: 100px;
    height: 100px;
  }
  
  .orbit-item {
    width: 60px;
    height: 60px;
  }
  
  .orbit-item:nth-child(1) {
    top: -30px;
  }
  
  .orbit-item:nth-child(2) {
    right: -30px;
  }
  
  .orbit-item:nth-child(3) {
    bottom: -30px;
  }
  
  .orbit-item:nth-child(4) {
    left: -30px;
  }
  
  .story-point, .value-card, .credential-item, .commitment-card {
    margin-bottom: 2rem;
  }
}

/* Client Area Styles */

/* Quick Access Cards */
.quick-access-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.quick-access-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.access-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.quick-access-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.quick-access-card p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Support Options */
.support-option {
  text-align: center;
  padding: 1.5rem 1rem;
}

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

.support-option h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.support-detail {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

/* Resource Sections */
.resource-section {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.resource-header {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.resource-header h4 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.resource-content {
  padding: 2rem;
}

/* Setup Cards */
.setup-card {
  background: var(--light-color);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.setup-card h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.setup-steps {
  margin-top: 1rem;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-number {
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  margin-right: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.step div {
  flex: 1;
}

.step strong {
  color: var(--dark-color);
  display: block;
  margin-bottom: 0.25rem;
}

.step code {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  padding: 0.125rem 0.25rem;
  border-radius: 3px;
  font-size: 0.875rem;
}

.step small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Management Items */
.management-item, .account-item {
  padding: 1rem;
  background: var(--light-color);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.management-item h6, .account-item h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.management-item p, .account-item p {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.management-item small, .account-item small {
  color: var(--text-muted);
}

/* Tip Cards */
.tip-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.tip-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.tip-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  color: white;
}

.tip-card h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.tip-card p {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Responsive adjustments for Client Area */
@media (max-width: 768px) {
  .quick-access-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .access-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
  
  .resource-header {
    padding: 1.25rem 1.5rem;
  }
  
  .resource-content {
    padding: 1.5rem;
  }
  
  .setup-card {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .step {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .step-number {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
  
  .management-item, .account-item, .tip-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .quick-access-card {
    padding: 1.5rem 1rem;
  }
  
  .resource-header h4 {
    font-size: 1.25rem;
  }
  
  .resource-content {
    padding: 1rem;
  }
  
  .setup-card, .management-item, .account-item, .tip-card {
    padding: 1rem;
  }
  
  .support-option {
    padding: 1rem 0.5rem;
  }
  
  .support-detail {
    font-size: 1rem;
  }
}/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--dark-color) 0%, #334155 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-header .container {
  position: relative;
  z-index: 2;
}

/* Included Features */
.included-feature {
  padding: 1.5rem 1rem;
}

.feature-icon-sm {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.included-feature h6 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

/* Detailed Pricing Cards */
.pricing-card-detailed {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card-detailed:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.pricing-card-detailed.popular {
  border-color: var(--primary-color);
  transform: scale(1.02);
}

.pricing-card-detailed.popular:hover {
  transform: scale(1.02) translateY(-8px);
}

.pricing-card-detailed .pricing-header {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  padding: 3rem 2rem 2rem;
  text-align: center;
  position: relative;
}

.pricing-card-detailed.popular .pricing-header {
  padding-top: 4rem;
}

.pricing-card-detailed .pricing-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.plan-description {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 1.1rem;
}

.pricing-card-detailed .pricing-features {
  padding: 2rem;
}

.feature-group {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.feature-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.feature-group h6 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.feature-group ul li {
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--text-color);
}

.feature-group ul li strong {
  color: var(--dark-color);
}

/* Add-on Cards */
.addon-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.addon-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
}

.addon-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.addon-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* FAQ Accordion */
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 8px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background-color: white;
  border: none;
  font-weight: 600;
  color: var(--dark-color);
  padding: 1.25rem 1.5rem;
}

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

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  border-color: var(--primary-color);
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* Responsive adjustments for detailed pricing cards */
@media (max-width: 768px) {
  .pricing-card-detailed.popular {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .pricing-card-detailed.popular:hover {
    transform: translateY(-8px);
  }
  
  .pricing-card-detailed .pricing-header {
    padding: 2.5rem 1.5rem 1.5rem;
  }
  
  .pricing-card-detailed.popular .pricing-header {
    padding-top: 3.5rem;
  }
  
  .pricing-card-detailed .pricing-features {
    padding: 1.5rem;
  }
  
  .feature-group h6 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-header {
    padding: 100px 0 60px;
  }
  
  .pricing-card-detailed .pricing-header h3 {
    font-size: 1.75rem;
  }
  
  .plan-description {
    font-size: 1rem;
  }
  
  .addon-card {
    padding: 1.5rem 1rem;
  }
  
  .addon-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}/* Karafoo Host - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #64748b;
  --success-color: #10b981;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --border-color: #e2e8f0;
  --text-color: #334155;
  --text-muted: #64748b;
  --white-75: rgba(255, 255, 255, 0.75);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

/* Typography */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

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

/* Navigation */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.2s ease;
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--dark-color) 0%, #334155 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 50px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-stats {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.feature-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
}

.feature-badge:nth-child(1) {
  animation-delay: 0.2s;
  opacity: 0;
}

.feature-badge:nth-child(2) {
  animation-delay: 0.4s;
  opacity: 0;
}

.feature-badge:nth-child(3) {
  animation-delay: 0.6s;
  opacity: 0;
}

.feature-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.feature-badge i {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.feature-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border-color);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.pricing-card.popular {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
}

.pricing-header {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  padding: 2.5rem 2rem 2rem;
  position: relative;
}

.pricing-card.popular .pricing-header {
  padding-top: 3.5rem;
}

.pricing-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.pricing-amount {
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  vertical-align: top;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.period {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  padding: 0 2rem;
  flex-grow: 1;
}

.pricing-features ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-weight: 500;
}

.pricing-features ul li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  margin: 2rem;
  margin-top: auto;
}

/* Business Type Cards */
.business-type-card {
  padding: 2rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.business-type-card:hover {
  background: var(--light-color);
  border-color: var(--border-color);
  transform: translateY(-4px);
}

.business-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.business-type-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  border-radius: 8px;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  color: white;
}

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

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

.btn-outline-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
  transform: translateY(-2px);
}

.btn-light {
  background-color: white;
  border-color: white;
  color: var(--primary-color);
}

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

/* Footer */
.footer {
  background-color: var(--dark-color) !important;
}

.footer h5, .footer h6 {
  color: white;
  font-weight: 600;
}

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

.footer ul li a {
  color: var(--white-75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer ul li a:hover {
  color: white;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  color: white !important;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-icon {
    font-size: 6rem;
  }
  
  .pricing-card.popular {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
  
  .hero-stats {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 70px 0 30px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .pricing-header {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .pricing-features {
    padding: 0 1.5rem;
  }
  
  .pricing-card .btn {
    margin: 1.5rem;
  }
}

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

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

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

/* Loading States */
.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: currentColor;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  outline: none;
}

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