/* 
UNIQUES SACCO - Homepage Enhancements
Custom styling for homepage components
*/

/* Request Form Enhancement */
.request-form {
  background: linear-gradient(135deg, #a4c639 0%, #8fb030 100%);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.request-form h4 {
  font-weight: 700;
  font-size: 26px;
}

.request-form .border-button {
  border: 2px solid #fff;
  padding: 12px 35px;
  font-weight: 600;
  transition: all 0.3s;
}

.request-form .border-button:hover {
  background: #fff;
  color: #a4c639;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Services Section Enhancement */
.services {
  background: #f9f9f9;
}

.service-item {
  transition: all 0.3s;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-item img {
  transition: all 0.3s;
}

.service-item:hover img {
  transform: scale(1.1);
}

.service-item .down-content {
  padding: 30px;
}

.service-item h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e1e1e;
}

.service-item .filled-button {
  margin-top: 15px;
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #a4c639 0%, #8fb030 100%);
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(164, 198, 57, 0.3);
}

.service-item .filled-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(164, 198, 57, 0.4);
}

/* More Info Section Enhancement */
.more-info {
  padding: 100px 0;
  background: #fff;
}

.more-info .left-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.more-info .right-content span {
  color: #a4c639;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.more-info .right-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 20px 0 25px;
}

.more-info .right-content h2 em {
  color: #a4c639;
}

/* Testimonials Enhancement */
.testimonials {
  background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
  padding: 100px 0;
}

.testimonial-item {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  margin: 15px;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-item .inner-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 5px;
}

.testimonial-item .inner-content span {
  color: #a4c639;
  font-weight: 600;
  font-size: 14px;
}

.testimonial-item .inner-content p {
  margin-top: 20px;
  font-style: italic;
  color: #666;
  line-height: 28px;
}

.testimonial-item img {
  border-radius: 50%;
  margin-top: 20px;
  border: 3px solid #a4c639;
}

/* Callback Form Enhancement */
.callback-form {
  background: #fff;
  padding: 100px 0;
}

.callback-form .section-heading h2 {
  font-size: 36px;
  font-weight: 800;
}

.callback-form .section-heading h2 em {
  color: #a4c639;
}

.callback-form .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  transition: all 0.3s;
}

.callback-form .form-control:focus {
  border-color: #a4c639;
  box-shadow: 0 0 10px rgba(164, 198, 57, 0.2);
}

.callback-form .border-button {
  background: linear-gradient(135deg, #a4c639 0%, #8fb030 100%);
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(164, 198, 57, 0.3);
}

.callback-form .border-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(164, 198, 57, 0.4);
}

/* Partners Section Enhancement */
.partners {
  background: #f9f9f9;
  padding: 60px 0;
}

.partner-item {
  padding: 20px;
  transition: all 0.3s;
  opacity: 0.7;
}

.partner-item:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Section Headings Enhancement */
.section-heading {
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1e1e1e;
}

.section-heading h2 em {
  color: #a4c639;
  font-style: normal;
}

.section-heading span {
  color: #777;
  font-size: 16px;
  font-weight: 400;
}

/* Footer Enhancement */
footer {
  background: #1e1e1e;
  padding: 80px 0 40px;
}

footer h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 25px;
}

footer p, footer .menu-list li a {
  color: #aaa;
  transition: all 0.3s;
}

footer .menu-list li a:hover {
  color: #a4c639;
  padding-left: 5px;
}

footer .social-icons li a {
  background: #333;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

footer .social-icons li a:hover {
  background: #a4c639;
  transform: translateY(-3px);
}

footer .form-control {
  background: #2a2a2a;
  border: 1px solid #444;
  color: #fff;
  border-radius: 8px;
  padding: 12px;
}

footer .form-control:focus {
  border-color: #a4c639;
  background: #333;
}

footer .filled-button {
  background: linear-gradient(135deg, #a4c639 0%, #8fb030 100%);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
}

footer .filled-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(164, 198, 57, 0.4);
}

.sub-footer {
  background: #151515;
  padding: 25px 0;
}

.sub-footer p {
  color: #888;
  margin: 0;
}

.sub-footer a {
  color: #a4c639;
  transition: all 0.3s;
}

.sub-footer a:hover {
  color: #8fb030;
}
