/* Base Styles */
body {
  font-family: 'Montserrat', sans-serif;
  background: #f6f8fd;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Navigation */
.bg-nav {
  background-color: #f6f8fd;
}

.mt--2 {
  margin-top: -0.5rem !important;
}

.hr-dotted {
  border-top: 1px dotted;
  opacity: .25;
}

.navbar-light .navbar-nav .nav-link {
  color: #212529 !important;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s;
  padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #0d6efd !important;
}

/* Feature Icons */
.feature-icon-1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  font-size: 3rem;
  color: #fff;
  border-radius: 100%;
}

/* Social Media Buttons */
.btn-social-media {
  color: #31316a;
  background-color: #cdcfdf;
  border-color: #cdcfdf;
  width: 2rem;
  height: 2rem;
  padding: 1.2rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin: 0.25rem;
  transition: all 0.3s ease;
}

.btn-social-media:hover {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
  transform: translateY(-2px);
}

/* Footer */
.footer .copyright a {
  color: #0d6efd;
  text-decoration: none;
}

.footer .copyright a:hover {
  color: #0d6efd;
}

.footer .link a {
  color: #212529;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .link a:hover {
  color: #0d6efd;
}

/* RESPONSIVE STYLES */

/* Tablet Styles (768px and below) */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  .navbar-light .navbar-nav .nav-link {
    font-size: 14px;
    padding: 0.75rem 1rem;
  }
  
  .feature-icon-1 {
    width: 4rem;
    height: 4rem;
    font-size: 2.5rem;
  }
  
  .btn-social-media {
    width: 1.8rem;
    height: 1.8rem;
    padding: 1rem;
    margin: 0.2rem;
  }
}

/* Mobile Styles (576px and below) */
@media (max-width: 576px) {
  body {
    font-size: 13px;
  }
  
  /* Navigation adjustments for mobile */
  .navbar-nav {
    text-align: center;
    padding: 1rem 0;
  }
  
  .navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    display: block;
    width: 100%;
  }
  
  .navbar-light .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
  
  /* Feature icons for mobile */
  .feature-icon-1 {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 2rem;
    margin: 0.5rem;
  }
  
  /* Social media buttons for mobile */
  .btn-social-media {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.8rem;
    margin: 0.3rem;
    font-size: 1rem;
  }
  
  /* Footer adjustments */
  .footer {
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .footer .link {
    margin: 1rem 0;
  }
  
  .footer .link a {
    display: block;
    padding: 0.5rem 0;
  }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
  body {
    font-size: 12px;
  }
  
  .navbar-light .navbar-nav .nav-link {
    font-size: 14px;
    padding: 0.8rem;
  }
  
  .feature-icon-1 {
    width: 3rem;
    height: 3rem;
    font-size: 1.8rem;
  }
  
  .btn-social-media {
    width: 2.2rem;
    height: 2.2rem;
    padding: 0.6rem;
    margin: 0.2rem;
  }
  
  /* Responsive spacing */
  .mt--2 {
    margin-top: -0.25rem !important;
  }
}

/* Utility Classes for Mobile */
.mobile-center {
  text-align: center;
}

.mobile-full-width {
  width: 100%;
}

.mobile-padding {
  padding: 1rem;
}

.mobile-margin {
  margin: 1rem 0;
}

/* Touch-friendly interactive elements */
@media (pointer: coarse) {
  .btn-social-media,
  .navbar-light .navbar-nav .nav-link {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Hide elements on mobile if needed */
@media (max-width: 576px) {
  .hide-mobile {
    display: none !important;
  }
  
  .show-mobile {
    display: block !important;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .feature-icon-1 {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
  
  .navbar-light .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
  }
}