html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: #f8f9fa;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-icon {
  color: rgba(255, 255, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Statistics Cards */
.stats-section {
  margin-bottom: 3rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.stat-icon {
  margin-bottom: 1rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #2d3748;
}

.stat-label {
  color: #718096;
  font-size: 0.9rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Headers */
.section-header {
  margin-bottom: 1.5rem;
}

.section-header h2 {
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.section-header p {
  margin-bottom: 0;
}

/* Action Cards */
.action-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.action-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.action-card:hover .action-icon {
  transform: scale(1.1) rotate(5deg);
}

.action-card h4 {
  color: #2d3748;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.action-card p {
  color: #718096;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Activity Timeline */
.activity-timeline {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.05);
}

.timeline-item {
  display: flex;
  padding-bottom: 2rem;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 11px;
  top: 30px;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
}

.timeline-marker {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 1.5rem;
  flex-shrink: 0;
  border: 3px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1;
}

.timeline-content {
  flex: 1;
  padding-top: 2px;
}

.timeline-content h5 {
  color: #2d3748;
  font-size: 1rem;
  font-weight: 600;
}

/* Footer */
.footer {
  padding: 1.5rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 1.5rem;
  }
  
  .hero-icon {
    display: none;
  }
  
  .stat-value {
    font-size: 2rem;
  }
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Services Hero Section */
.services-hero {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  color: white;
  padding: 5rem 2rem;
  margin-bottom: 0;
}

.services-hero h1 {
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.services-hero .lead {
  font-weight: 400;
  opacity: 0.95;
}

.services-hero .btn {
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.services-hero .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Service Block */
.service-block {
  padding: 4rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-icon-large {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.service-icon-large:hover {
  transform: scale(1.05) rotate(-5deg);
}

.service-content {
  padding: 2rem;
}

.service-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.service-description {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-benefit {
  background: #f0fdf4;
  border-left: 4px solid #22c55e;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.service-benefit strong {
  font-size: 1.1rem;
}

.service-importance {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.importance-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #d97706;
  line-height: 1;
}

.stat-text {
  flex: 1;
  font-size: 1rem;
  color: #78350f;
  font-weight: 600;
}

/* Free Website Section */
.free-website-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 5rem 2rem;
  margin-top: 4rem;
}

.website-mockup {
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

.free-badge {
  display: inline-block;
  background: #22c55e;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

.free-website-content h2 {
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.free-website-content .lead {
  opacity: 0.95;
  font-size: 1.2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.feature-list li svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.feature-list li div {
  flex: 1;
}

.feature-list li strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.feature-list li p {
  margin: 0;
  opacity: 0.9;
  font-size: 1rem;
}

.value-callout {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-callout h4 {
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.value-callout p {
  color: white;
  opacity: 0.95;
}

/* Packages CTA Section */
.packages-cta-section {
  background: #f8f9fa;
  padding: 5rem 2rem;
}

.package-preview-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.package-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-color: #3b82f6;
}

.package-preview-card.featured {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.package-preview-card.featured h4,
.package-preview-card.featured p {
  color: white;
}

.package-preview-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #2d3748;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #22c55e;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

/* Responsive Services Page */
@media (max-width: 992px) {
  .service-block .col-lg-6 {
    margin-bottom: 2rem;
  }
  
  .service-icon-large {
    width: 100px;
    height: 100px;
  }
  
  .service-title {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 3rem 1.5rem;
  }
  
  .services-hero h1 {
    font-size: 2rem;
  }
  
  .service-block {
    padding: 2rem 0;
  }
  
  .free-website-section {
    padding: 3rem 1.5rem;
  }
  
  .website-mockup {
    display: none;
  }
  
  .packages-cta-section {
    padding: 3rem 1.5rem;
  }
}