/* --- Master Footer Reset Layout --- */
.rs-m4-luxury-footer {
  width: 100%;
  background-color: #063430;
  position: relative;
  box-sizing: border-box;
  margin-top: 150px;
}

.rs-m4-luxury-footer * {
  box-sizing: border-box;
}

/* 1. Gold Belt Layer (पीली पट्टी) */
.rs-m4-footer-gold-belt {
  background-color: #F7A707; /* पीला/गोल्डन कलर */
  width: 100%;
  padding-bottom: 60px; /* नीचे स्पेस */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* 2. Central Pure-Black Block Box (50% ऊपर सरकाने का परफेक्ट कोड) */
.rs-m4-footer-black-box {
  background-color: #063430;
  width: 100%;
  max-width: 1300px; 
  margin: 0 40px; 
  padding: 70px 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  
  /* यह लॉजिक ब्लैक बॉक्स को आधा (50%) पीले बॉक्स से बाहर निकाल देगा */
  margin-top: -150px; 
  position: relative;
  z-index: 10;
}

/* Four-Column Framework Grid */
.rs-m4-footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.rs-m4-footer-col {
  flex: 1;
}

/* --- Typography Content Elements --- */
.rs-m4-footer-col-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: #ffffff;
  font-size: 1.25rem;
  letter-spacing: 1px;
  margin: 0 0 25px 0;
  font-weight: normal;
}

.rs-m4-footer-about-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #a3a3a3;
  margin: 0 0 20px 0;
}

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

.rs-m4-footer-links-list li {
  margin-bottom: 12px;
}

.rs-m4-footer-links-list a {
  color: #a3a3a3;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.rs-m4-footer-links-list a:hover {
  color: #cbac7e;
  transform: translateX(4px);
}

/* Social Icon Blocks */
.rs-m4-footer-socials {
  display: flex;
  gap: 15px;
}

.rs-m4-social-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-bottom: 1px solid #cbac7e;
  padding-bottom: 2px;
  transition: color 0.25s;
}

.rs-m4-social-link:hover {
  color: #cbac7e;
}

/* --- Luxury Minimalist Subscription Bar --- */
.rs-m4-footer-subscribe-wrapper {
  display: flex;
  border-bottom: 1px solid #cbac7e;
  padding: 5px 0;
}

.rs-m4-footer-input {
  background: transparent;
  border: none;
  flex: 1;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
}

.rs-m4-footer-input::placeholder {
  color: #555555;
}

.rs-m4-footer-submit-arrow {
  background: transparent;
  border: none;
  color: #cbac7e;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0 5px;
  transition: transform 0.2s;
}

.rs-m4-footer-submit-arrow:hover {
  transform: translateX(4px);
}

/* --- 3. Bottom Credits Signature Bar --- */
.rs-m4-footer-credits-bar {
  background-color: #063430;
  width: 100%;
  padding: 25px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rs-m4-credits-text {
  font-family: 'Playfair Display', Georgia, serif;
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: normal;
}

.rs-m4-heart {
  color: #ffffff;
}

.rs-m4-flag {
  font-size: 1.1rem;
}

/* Logo Wrapper */
.rs-m4-footer-logo-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.rs-m4-footer-brand-logo {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Mobile responsive optimization */
@media (max-width: 1024px) {
  .rs-m4-footer-black-box {
    margin: 0 20px;
    padding: 45px 30px;
    margin-top: -80px; /* मोबाइल में थोड़ा कम नेगेटिव मार्जिन */
  }

  .rs-m4-footer-grid {
    flex-direction: column;
    gap: 40px;
  }

  .rs-m4-footer-brand-logo {
    height: 38px;
  }

  .rs-m4-credits-text {
    font-size: 0.85rem;
    letter-spacing: 1px;
    flex-wrap: wrap;
    line-height: 1.5;
  }
}



/* दोनों इमेजेस का जनरल स्टाइल */
.rs-m4-icon {
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
}

/* हार्ट आइकॉन की साइज़िंग */
.rs-m4-heart-img {
  width: 16px;
  height: 16px;
}

/* फ्लैग आइकॉन की साइज़िंग */
.rs-m4-flag-img {
  width: 20px;
  height: 14px;
  border-radius: 2px; /* हल्का सा राउंड कॉर्नर देने के लिए */
}