/* Footer Styles - Golden Clouds Theme */

/* Footer Container */
.site-footer {
  background: linear-gradient(135deg, #2c5f8d 0%, #1e4a6f 50%, #0f3554 100%);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

/* Footer Widgets Grid */
.footer-widgets {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Footer Column Styles */
.footer-column {
  color: white;
}

.footer-column .widget_text p {
  text-align: justify;
  margin-right: 20px;
}

/* Widget Titles */
.footer-column h3,
.footer-column h4,
.footer-column .widget-title {
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: none;
}

/* Widget Text Content */
.footer-column p,
.footer-column .textwidget p {
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* Widget Lists */
.footer-column ul,
.footer-column .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li,
.footer-column .menu li {
  margin-bottom: 0.5rem;
  list-style: none;
}

.footer-column ul li a,
.footer-column .menu li a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.95rem;
}

.footer-column ul li a:hover,
.footer-column .menu li a:hover {
  color: white;
  transform: translateX(5px);
}

/* Newsletter Widget */
.footer-column .widget_mc4wp_form_widget,
.footer-column .widget_mailchimp,
.footer-column form {
  margin-top: 1rem;
}

.footer-column input[type="email"],
.footer-column input[type="text"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.footer-column input[type="email"]:focus,
.footer-column input[type="text"]:focus {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  outline: none;
}

.footer-column input[type="email"]::placeholder,
.footer-column input[type="text"]::placeholder {
  color: rgba(255,255,255,0.6);
}

.footer-column button[type="submit"],
.footer-column input[type="submit"] {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: white;
  color: #1e4a6f;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column button[type="submit"]:hover,
.footer-column input[type="submit"]:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

/* Text Widget */
.footer-column .widget_text .textwidget {
  color: rgba(255,255,255,0.9);
}

/* Nav Menu Widget */
.footer-column .widget_nav_menu ul {
  list-style: none;
  padding: 0;
}

.footer-column .widget_nav_menu ul li {
  margin-bottom: 0.5rem;
}

.footer-column .widget_nav_menu ul li a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column .widget_nav_menu ul li a:hover {
  color: white;
  transform: translateX(5px);
}

/* Social Icons in Footer */
.footer-column .social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.footer-column .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
}

.footer-column .social-icon:hover {
  background: white;
  color: #1e4a6f;
  transform: translateY(-3px);
}

.footer-column .social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom .copyright,
.footer-bottom p {
  color: rgba(255,255,255,0.8);
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom .social-icons {
  display: flex;
  gap: 0.75rem;
}

/* Payment Icons */
.footer-bottom .payment-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer-bottom .payment-icons img {
  height: 30px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-bottom .payment-icons img:hover {
  opacity: 1;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-widgets {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .site-footer {
    padding: 3rem 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .site-footer {
    padding: 2rem 0 1rem;
    margin-top: 2rem;
  }
}

/* Widget Specific Overrides */
.footer-column .widget {
  margin-bottom: 0;
}

.footer-column .widget:last-child {
  margin-bottom: 0;
}

/* Remove default widget margins in footer */
.site-footer .widget {
  margin-bottom: 0;
}

.site-footer .widget-title {
  margin-top: 0;
}
