/* Custom Genemetrix Styles */

/* Hide sidebar completely */
.sidebar,
#menu-icon-wrapper,
.menu-icon-wrapper,
.menu-icon-trigger {
  display: none !important;
}

/* Global Typography */
body {
  font-family: 'Open Sans', sans-serif;
  color: #4a4a4a;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.title {
  font-family: 'Ubuntu', sans-serif !important;
  font-weight: 700 !important;
  color: #2c3e50 !important;
}

/* Navbar Improvements */
.navbar {
  background-color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  min-height: 4rem;
}

.navbar-item {
  color: #4a4a4a;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-item:hover {
  color: #008080 !important;
  background-color: transparent !important;
}

.navbar-item.is-social {
  padding: 0.5rem;
}

.navbar-item.is-social .icon {
  color: #4a4a4a;
  font-size: 1.25rem;
}

.navbar-item.is-social:hover .icon {
  color: #008080;
}

/* Hero Section */
.hero.is-white {
  background: linear-gradient(135deg, rgba(0,128,128,0.03) 0%, rgba(255,255,255,0) 100%);
  margin-top: 0;
}

.hero-body {
  padding: 6rem 1.5rem 3rem;
}

.hero .title {
  font-size: 2.5rem !important;
  color: #2c3e50 !important;
  margin-bottom: 1.5rem;
}

.hero .subtitle {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.button.cta {
  background-color: #008080 !important;
  color: white !important;
  border: none;
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.button.cta:hover {
  background-color: #006666 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,128,128,0.2);
}

.hero-image img {
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  max-width: 100%;
  height: auto;
}

/* Client Logos */
.hero-foot {
  background-color: #fafafa;
  padding: 2rem 0;
  border-top: 1px solid #e0e0e0;
}

.hero-foot img {
  max-height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.hero-foot img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Services Section */
.section {
  padding: 4rem 1.5rem;
}

.section-title {
  font-size: 2rem !important;
  text-align: center;
  margin-bottom: 1rem;
  color: #2c3e50 !important;
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Service Cards */
.feature-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-card .card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #008080, #006666);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card .card-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.feature-card .card-title h4 {
  font-size: 1.25rem !important;
  margin-bottom: 1rem;
  color: #2c3e50 !important;
  text-align: center;
}

.feature-card .card-text {
  color: #6c757d;
  text-align: center;
  line-height: 1.6;
}

/* Services Grid */
.service-grid {
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5));
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  font-size: 1.25rem !important;
  margin-bottom: 0.75rem;
  color: #2c3e50 !important;
}

.service-content p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-content ul {
  list-style: none;
  padding: 0;
}

.service-content ul li {
  color: #6c757d;
  font-size: 0.9rem;
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-content ul li:before {
  content: "•";
  color: #008080;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Contact Form */
#section5 {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-form {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}

.contact-form .field {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 0.75rem;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #008080;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,128,128,0.1);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .button.is-primary {
  background-color: #008080 !important;
  color: white !important;
  font-weight: 600;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  width: 100%;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form .button.is-primary:hover {
  background-color: #006666 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #008080 0%, #006666 100%);
  color: white;
  padding: 3rem 1.5rem 2rem;
}

.footer-logo img {
  filter: brightness(0) invert(1);
  max-height: 40px;
  margin-bottom: 1.5rem;
}

.footer-header h3 {
  color: white !important;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer .link-list li a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer .link-list li a:hover {
  color: white;
}

.footer .level-item {
  color: white;
  font-size: 1.25rem;
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-widget a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.whatsapp-widget a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.whatsapp-widget i {
  color: white;
  font-size: 2rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .hero .title {
    font-size: 2rem !important;
  }
  
  .hero .subtitle {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .service-image {
    height: 150px;
  }
}

/* Section backgrounds */
.section-feature-grey {
  background-color: #f8f9fa;
}

/* Fix text visibility */
.is-muted {
  color: #6c757d !important;
}

/* Media boxes */
.media.icon-box {
  margin-bottom: 2rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.icon-box-title {
  font-size: 1.125rem !important;
  font-weight: 600;
  color: #2c3e50 !important;
  display: block;
  margin-bottom: 0.5rem;
}

.icon-box-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}