/* ============================================
   Custom Footer & Homepage Styles
   Theme: Woostify
   ============================================ */

/* ============================================
   Footer
   ============================================ */
.site-footer{
  background-color:#fff !important;
}
.custom-footer {
  background: #fff;
  border-top: 1px solid #eee;
}

.custom-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 15px 40px;
}

/* Col 1: Logo */
.footer-col-logo .footer-logo {
  max-width: 140px;
  height: auto;
  margin-bottom: 15px;
}

.footer-col-logo .footer-intro {
  color: #8c8c8c;
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
}

/* Column titles */
.footer-col-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #2b2b2b;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #8c8c8c;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #1346af;
}

/* Contact col */
.footer-col p {
  margin-bottom: 8px;
  font-size: 13px;
  color: #8c8c8c;
  line-height: 1.7;
}

/* Newsletter */
.footer-newsletter {
  max-width: 500px;
  margin: 0 auto;
  padding: 30px 15px 35px;
  text-align: center;
  border-top: 1px solid #eee;
}

.newsletter-form {
  display: flex;
  max-width: 400px;
  margin: 15px auto 0;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 2px 0 0 2px;
  font-size: 13px;
  color: #555;
  outline: none;
  transition: border-color 0.2s ease;
}

.newsletter-form input[type="email"]:focus {
  border-color: #1346af;
}

.newsletter-form button {
  padding: 10px 24px;
  background: #1346af;
  color: #fff;
  border: none;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.newsletter-form button:hover {
  background: #0f3b96;
}

/* Credit bar */
.footer-credit {
  text-align: center;
  padding: 15px 15px;
  border-top: 1px solid #eee;
  color: #b0b0b0;
  font-size: 12px;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .custom-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .custom-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 8px;
  }

  .newsletter-form input[type="email"] {
    border-right: 1px solid #ddd;
    border-radius: 2px;
  }

  .newsletter-form button {
    border-radius: 2px;
  }
}

/* ============================================
   Front Page Sections
   ============================================ */

/* Hero Banner */
.hero-banner {
  width: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Section Shared */
.section-products,
.section-services,
.section-testimonials,
.section-contact {
  padding: 65px 0;
}



.section-contact {
  background: #f8f8f8;
}

/* Section Title */
.front-page-section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2b2b2b;
}

.front-page-section-subtitle {
  text-align: center;
  font-size: 14px;
  color: #8c8c8c;
  margin-bottom: 40px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.service-card {
  text-align: center;
  padding: 35px 25px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 2px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: #1346af;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: rgba(19, 70, 175, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-svg {
  width: 28px;
  height: 28px;
  color: #1346af;
}
.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2b2b2b;
}

.service-card p {
  color: #8c8c8c;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Contact Info */
.contact-info {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  color: #8c8c8c;
  line-height: 2;
}

/* Front Page Responsive */
@media (max-width: 768px) {
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
