/* ==========================================================================
   FOOTER STYLES - DeepLaxmi Textiles
   Traditional grid styles, Google Maps embeddings, bottom copyrights
   ========================================================================== */

.footer-section {
  background-color: var(--bg-dark);
  color: var(--bg-light);
  padding: 80px 24px 0 24px;
  position: relative;
  border-top: 4px solid var(--secondary-gold);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
}

/* Col styling */
.footer-col h3 {
  color: var(--secondary-gold);
  font-size: 1.25rem;
  margin-bottom: 24px;
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-red);
}

/* Brand col details */
.footer-logo-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo {
  height: 64px;
  width: auto;
}

.brand-pitch {
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-links-row {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 248, 240, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-light);
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 248, 240, 0.1);
}

.social-icon:hover {
  background-color: var(--primary-red);
  color: var(--bg-light);
  transform: translateY(-2px);
  border-color: var(--primary-red);
}

/* Contacts items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  color: var(--secondary-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-text h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--bg-light);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-text p {
  font-size: 0.88rem;
  font-weight: 300;
  opacity: 0.85;
  line-height: 1.5;
}

.contact-text a:hover {
  color: var(--secondary-gold);
}

/* Navigation lists */
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.92rem;
  font-weight: 300;
  opacity: 0.85;
  position: relative;
  padding-left: 12px;
}

.footer-links-list a::before {
  content: '›';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--secondary-gold);
  font-size: 1.1rem;
}

.footer-links-list a:hover {
  opacity: 1;
  color: var(--secondary-gold);
  padding-left: 16px;
}

/* Maps and Link Button */
.map-frame-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-map-link-btn {
  background-color: rgba(255, 248, 240, 0.08);
  border: 1px solid rgba(255, 248, 240, 0.1);
  color: var(--bg-light);
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--transition-fast);
}

.footer-map-link-btn:hover {
  background-color: var(--secondary-gold);
  color: var(--bg-dark);
  border-color: var(--secondary-gold);
}

/* Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 248, 240, 0.1);
  padding: 24px 0;
  margin-top: 40px;
}

.bottom-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.8;
}

.designer-tag span {
  color: var(--secondary-gold);
  font-weight: 600;
}
